blob: 76eeb64650bafefb9903cb77ecff218252ed161d [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;
Matt Arsenault59d3ae62013-11-15 01:34:59 +000095
Elena Demikhovsky83952512013-07-31 11:35:14 +000096}
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
Matt Arsenault59d3ae62013-11-15 01:34:59 +00001768bool X86TargetLowering::isNoopAddrSpaceCast(unsigned SrcAS,
1769 unsigned DestAS) const {
1770 assert(SrcAS != DestAS && "Expected different address spaces!");
1771
1772 return SrcAS < 256 && DestAS < 256;
1773}
1774
Chris Lattner2b02a442007-02-25 08:29:00 +00001775//===----------------------------------------------------------------------===//
1776// Return Value Calling Convention Implementation
1777//===----------------------------------------------------------------------===//
1778
Chris Lattner59ed56b2007-02-28 04:55:35 +00001779#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001780
Michael J. Spencerec38de22010-10-10 22:04:20 +00001781bool
Eric Christopher471e4222011-06-08 23:55:35 +00001782X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
Craig Topper0fbf3642012-04-23 03:28:34 +00001783 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001784 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001785 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001786 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001787 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001788 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001789 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001790}
1791
Juergen Ributzkad4f5a612013-11-09 01:51:33 +00001792const uint16_t *X86TargetLowering::getScratchRegisters(CallingConv::ID) const {
1793 static const uint16_t ScratchRegs[] = { X86::R11, 0 };
1794 return ScratchRegs;
1795}
1796
Dan Gohman98ca4f22009-08-05 01:29:28 +00001797SDValue
1798X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001799 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001800 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001801 const SmallVectorImpl<SDValue> &OutVals,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001802 SDLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001803 MachineFunction &MF = DAG.getMachineFunction();
1804 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001805
Chris Lattner9774c912007-02-27 05:28:59 +00001806 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001807 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001808 RVLocs, *DAG.getContext());
1809 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001810
Dan Gohman475871a2008-07-27 21:46:04 +00001811 SDValue Flag;
Dan Gohman475871a2008-07-27 21:46:04 +00001812 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001813 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1814 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001815 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1816 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001817
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001818 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001819 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1820 CCValAssign &VA = RVLocs[i];
1821 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001822 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001823 EVT ValVT = ValToCopy.getValueType();
1824
Jakob Stoklund Olesenee66b412012-05-31 17:28:20 +00001825 // Promote values to the appropriate types
1826 if (VA.getLocInfo() == CCValAssign::SExt)
1827 ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1828 else if (VA.getLocInfo() == CCValAssign::ZExt)
1829 ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1830 else if (VA.getLocInfo() == CCValAssign::AExt)
1831 ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1832 else if (VA.getLocInfo() == CCValAssign::BCvt)
1833 ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1834
Dale Johannesenc4510512010-09-24 19:05:48 +00001835 // If this is x86-64, and we disabled SSE, we can't return FP values,
1836 // or SSE or MMX vectors.
1837 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1838 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001839 (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001840 report_fatal_error("SSE register return with SSE disabled");
1841 }
1842 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1843 // llvm-gcc has never done it right and no one has noticed, so this
1844 // should be OK for now.
1845 if (ValVT == MVT::f64 &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001846 (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001847 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001848
Chris Lattner447ff682008-03-11 03:23:40 +00001849 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1850 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001851 if (VA.getLocReg() == X86::ST0 ||
1852 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001853 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1854 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001855 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001856 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001857 RetOps.push_back(ValToCopy);
1858 // Don't emit a copytoreg.
1859 continue;
1860 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001861
Evan Cheng242b38b2009-02-23 09:03:22 +00001862 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1863 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001864 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001865 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001866 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001867 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001868 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1869 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001870 // If we don't have SSE2 available, convert to v4f32 so the generated
1871 // register is legal.
Craig Topper1accb7e2012-01-10 06:54:16 +00001872 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001873 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001874 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001875 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001876 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001877
Dale Johannesendd64c412009-02-04 00:33:20 +00001878 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001879 Flag = Chain.getValue(1);
Jakob Stoklund Olesenc3afc762013-02-05 17:59:48 +00001880 RetOps.push_back(DAG.getRegister(VA.getLocReg(), VA.getLocVT()));
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001881 }
Dan Gohman61a92132008-04-21 23:59:07 +00001882
Eli Benderskya5597f02013-01-25 22:07:43 +00001883 // The x86-64 ABIs require that for returning structs by value we copy
1884 // the sret argument into %rax/%eax (depending on ABI) for the return.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001885 // Win32 requires us to put the sret argument to %eax as well.
Eli Benderskya5597f02013-01-25 22:07:43 +00001886 // We saved the argument into a virtual register in the entry block,
1887 // so now we copy the value out and into %rax/%eax.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001888 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr() &&
1889 (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
Dan Gohman61a92132008-04-21 23:59:07 +00001890 MachineFunction &MF = DAG.getMachineFunction();
1891 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1892 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001893 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001894 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001895 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001896
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001897 unsigned RetValReg
1898 = (Subtarget->is64Bit() && !Subtarget->isTarget64BitILP32()) ?
1899 X86::RAX : X86::EAX;
Eli Benderskya5597f02013-01-25 22:07:43 +00001900 Chain = DAG.getCopyToReg(Chain, dl, RetValReg, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001901 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001902
Eli Benderskya5597f02013-01-25 22:07:43 +00001903 // RAX/EAX now acts like a return value.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00001904 RetOps.push_back(DAG.getRegister(RetValReg, getPointerTy()));
Dan Gohman61a92132008-04-21 23:59:07 +00001905 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001906
Chris Lattner447ff682008-03-11 03:23:40 +00001907 RetOps[0] = Chain; // Update chain.
1908
1909 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001910 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001911 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001912
1913 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001914 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001915}
1916
Evan Chengbf010eb2012-04-10 01:51:00 +00001917bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001918 if (N->getNumValues() != 1)
1919 return false;
1920 if (!N->hasNUsesOfValue(1, 0))
1921 return false;
1922
Evan Chengbf010eb2012-04-10 01:51:00 +00001923 SDValue TCChain = Chain;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001924 SDNode *Copy = *N->use_begin();
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001925 if (Copy->getOpcode() == ISD::CopyToReg) {
1926 // If the copy has a glue operand, we conservatively assume it isn't safe to
1927 // perform a tail call.
1928 if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1929 return false;
Evan Chengbf010eb2012-04-10 01:51:00 +00001930 TCChain = Copy->getOperand(0);
Chad Rosierc8d7eea2012-03-05 19:27:12 +00001931 } else if (Copy->getOpcode() != ISD::FP_EXTEND)
Chad Rosier74bab7f2012-03-02 02:50:46 +00001932 return false;
1933
Evan Cheng1bf891a2010-12-01 22:59:46 +00001934 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001935 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001936 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001937 if (UI->getOpcode() != X86ISD::RET_FLAG)
1938 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001939 HasRet = true;
1940 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001941
Evan Chengbf010eb2012-04-10 01:51:00 +00001942 if (!HasRet)
1943 return false;
1944
1945 Chain = TCChain;
1946 return true;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001947}
1948
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001949MVT
1950X86TargetLowering::getTypeForExtArgOrReturn(MVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001951 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001952 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001953 // TODO: Is this also valid on 32-bit?
1954 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001955 ReturnMVT = MVT::i8;
1956 else
1957 ReturnMVT = MVT::i32;
1958
Patrik Hagglunde5c65912012-12-19 12:02:25 +00001959 MVT MinVT = getRegisterType(ReturnMVT);
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001960 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001961}
1962
Dan Gohman98ca4f22009-08-05 01:29:28 +00001963/// LowerCallResult - Lower the result values of a call into the
1964/// appropriate copies out of appropriate physical registers.
1965///
1966SDValue
1967X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001968 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001969 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001970 SDLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001971 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001972
Chris Lattnere32bbf62007-02-28 07:09:55 +00001973 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001974 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001975 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001976 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00001977 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001978 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001979
Chris Lattner3085e152007-02-25 08:59:22 +00001980 // Copy all of the result registers out of their specified physreg.
Jakub Staszakc20323a2012-12-29 15:57:26 +00001981 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001982 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001983 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001984
Torok Edwin3f142c32009-02-01 18:15:56 +00001985 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001986 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Craig Topper1accb7e2012-01-10 06:54:16 +00001987 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001988 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001989 }
1990
Evan Cheng79fb3b42009-02-20 20:43:02 +00001991 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001992
1993 // If this is a call to a function that returns an fp value on the floating
Sylvestre Ledruc8e41c52012-07-23 08:51:15 +00001994 // point stack, we must guarantee the value is popped from the stack, so
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001995 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001996 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001997 // instead.
1998 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1999 // If we prefer to use the value in xmm registers, copy it out as f80 and
2000 // use a truncate to move it from fp stack reg to xmm reg.
2001 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00002002 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00002003 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
Michael Liao2a8bea72013-04-19 22:22:57 +00002004 MVT::Other, MVT::Glue, Ops), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00002005 Val = Chain.getValue(0);
2006
2007 // Round the f80 to the right size, which also moves it to the appropriate
2008 // xmm register.
2009 if (CopyVT != VA.getValVT())
2010 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
2011 // This truncation won't change the value.
2012 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00002013 } else {
2014 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
2015 CopyVT, InFlag).getValue(1);
2016 Val = Chain.getValue(0);
2017 }
Chris Lattner8e6da152008-03-10 21:08:41 +00002018 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002019 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00002020 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00002021
Dan Gohman98ca4f22009-08-05 01:29:28 +00002022 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00002023}
2024
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002025//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002026// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002027//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002028// StdCall calling convention seems to be standard for many Windows' API
2029// routines and around. It differs from C calling convention just a little:
2030// callee should clean up the stack, not caller. Symbols should be also
2031// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002032// For info on fast calling convention see Fast Calling Convention (tail call)
2033// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002034
Dan Gohman98ca4f22009-08-05 01:29:28 +00002035/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002036/// semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00002037enum StructReturnType {
2038 NotStructReturn,
2039 RegStructReturn,
2040 StackStructReturn
2041};
2042static StructReturnType
2043callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002044 if (Outs.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00002045 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00002046
Rafael Espindola1cee7102012-07-25 13:41:10 +00002047 const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
2048 if (!Flags.isSRet())
2049 return NotStructReturn;
2050 if (Flags.isInReg())
2051 return RegStructReturn;
2052 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00002053}
2054
Dan Gohman7e77b0f2009-08-01 19:14:37 +00002055/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002056/// return semantics.
Rafael Espindola1cee7102012-07-25 13:41:10 +00002057static StructReturnType
2058argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002059 if (Ins.empty())
Rafael Espindola1cee7102012-07-25 13:41:10 +00002060 return NotStructReturn;
Duncan Sands276dcbd2008-03-21 09:14:45 +00002061
Rafael Espindola1cee7102012-07-25 13:41:10 +00002062 const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
2063 if (!Flags.isSRet())
2064 return NotStructReturn;
2065 if (Flags.isInReg())
2066 return RegStructReturn;
2067 return StackStructReturn;
Gordon Henriksen86737662008-01-05 16:56:59 +00002068}
2069
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00002070/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
2071/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002072/// the specific parameter attribute. The copy will be passed as a byval
2073/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00002074static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00002075CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002076 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002077 SDLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00002078 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00002079
Dale Johannesendd64c412009-02-04 00:33:20 +00002080 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00002081 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002082 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002083}
2084
Chris Lattner29689432010-03-11 00:22:57 +00002085/// IsTailCallConvention - Return true if the calling convention is one that
2086/// supports tail call optimization.
2087static bool IsTailCallConvention(CallingConv::ID CC) {
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002088 return (CC == CallingConv::Fast || CC == CallingConv::GHC ||
2089 CC == CallingConv::HiPE);
Chris Lattner29689432010-03-11 00:22:57 +00002090}
2091
Charles Davisac226bb2013-07-12 06:02:35 +00002092/// \brief Return true if the calling convention is a C calling convention.
2093static bool IsCCallConvention(CallingConv::ID CC) {
2094 return (CC == CallingConv::C || CC == CallingConv::X86_64_Win64 ||
2095 CC == CallingConv::X86_64_SysV);
2096}
2097
Evan Cheng485fafc2011-03-21 01:19:09 +00002098bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
Nick Lewycky22de16d2012-01-19 00:34:10 +00002099 if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
Evan Cheng485fafc2011-03-21 01:19:09 +00002100 return false;
2101
2102 CallSite CS(CI);
2103 CallingConv::ID CalleeCC = CS.getCallingConv();
Charles Davisac226bb2013-07-12 06:02:35 +00002104 if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
Evan Cheng485fafc2011-03-21 01:19:09 +00002105 return false;
2106
2107 return true;
2108}
2109
Evan Cheng0c439eb2010-01-27 00:07:07 +00002110/// FuncIsMadeTailCallSafe - Return true if the function is being made into
2111/// a tailcall target by changing its ABI.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002112static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
2113 bool GuaranteedTailCallOpt) {
Chris Lattner29689432010-03-11 00:22:57 +00002114 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00002115}
2116
Dan Gohman98ca4f22009-08-05 01:29:28 +00002117SDValue
2118X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002119 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002120 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002121 SDLoc dl, SelectionDAG &DAG,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002122 const CCValAssign &VA,
2123 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00002124 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00002125 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002126 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002127 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
2128 getTargetMachine().Options.GuaranteedTailCallOpt);
Duncan Sands276dcbd2008-03-21 09:14:45 +00002129 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00002130 EVT ValVT;
2131
2132 // If value is passed by pointer we have address passed instead of the value
2133 // itself.
2134 if (VA.getLocInfo() == CCValAssign::Indirect)
2135 ValVT = VA.getLocVT();
2136 else
2137 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00002138
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002139 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00002140 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002141 // In case of tail call optimization mark all arguments mutable. Since they
2142 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00002143 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00002144 unsigned Bytes = Flags.getByValSize();
2145 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
2146 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00002147 return DAG.getFrameIndex(FI, getPointerTy());
2148 } else {
2149 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00002150 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00002151 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
2152 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002153 MachinePointerInfo::getFixedStack(FI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002154 false, false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00002155 }
Rafael Espindola7effac52007-09-14 15:48:13 +00002156}
2157
Dan Gohman475871a2008-07-27 21:46:04 +00002158SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002159X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002160 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002161 bool isVarArg,
2162 const SmallVectorImpl<ISD::InputArg> &Ins,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002163 SDLoc dl,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002164 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002165 SmallVectorImpl<SDValue> &InVals)
2166 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00002167 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00002168 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00002169
Gordon Henriksen86737662008-01-05 16:56:59 +00002170 const Function* Fn = MF.getFunction();
2171 if (Fn->hasExternalLinkage() &&
2172 Subtarget->isTargetCygMing() &&
2173 Fn->getName() == "main")
2174 FuncInfo->setForceFramePointer(true);
2175
Evan Cheng1bc78042006-04-26 01:20:17 +00002176 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00002177 bool Is64Bit = Subtarget->is64Bit();
Eli Friedman9a2478a2012-01-20 00:05:46 +00002178 bool IsWindows = Subtarget->isTargetWindows();
Charles Davisac226bb2013-07-12 06:02:35 +00002179 bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002180
Chris Lattner29689432010-03-11 00:22:57 +00002181 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002182 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002183
Chris Lattner638402b2007-02-28 07:00:42 +00002184 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002185 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002186 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002187 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002188
2189 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00002190 if (IsWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002191 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002192
Duncan Sands45907662010-10-31 13:21:44 +00002193 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002194
Chris Lattnerf39f7712007-02-28 05:46:49 +00002195 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002196 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00002197 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2198 CCValAssign &VA = ArgLocs[i];
2199 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
2200 // places.
2201 assert(VA.getValNo() != LastVal &&
2202 "Don't support value assigned to multiple locs yet");
Duncan Sands17001ce2011-10-18 12:44:00 +00002203 (void)LastVal;
Chris Lattnerf39f7712007-02-28 05:46:49 +00002204 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00002205
Chris Lattnerf39f7712007-02-28 05:46:49 +00002206 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00002207 EVT RegVT = VA.getLocVT();
Craig Topper44d23822012-02-22 05:59:10 +00002208 const TargetRegisterClass *RC;
Owen Anderson825b72b2009-08-11 20:47:22 +00002209 if (RegVT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +00002210 RC = &X86::GR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002211 else if (Is64Bit && RegVT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +00002212 RC = &X86::GR64RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002213 else if (RegVT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +00002214 RC = &X86::FR32RegClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00002215 else if (RegVT == MVT::f64)
Craig Topperc9099502012-04-20 06:31:50 +00002216 RC = &X86::FR64RegClass;
Elena Demikhovsky83952512013-07-31 11:35:14 +00002217 else if (RegVT.is512BitVector())
2218 RC = &X86::VR512RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00002219 else if (RegVT.is256BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00002220 RC = &X86::VR256RegClass;
Craig Topper7a9a28b2012-08-12 02:23:29 +00002221 else if (RegVT.is128BitVector())
Craig Topperc9099502012-04-20 06:31:50 +00002222 RC = &X86::VR128RegClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00002223 else if (RegVT == MVT::x86mmx)
Craig Topperc9099502012-04-20 06:31:50 +00002224 RC = &X86::VR64RegClass;
Elena Demikhovsky83952512013-07-31 11:35:14 +00002225 else if (RegVT == MVT::v8i1)
2226 RC = &X86::VK8RegClass;
2227 else if (RegVT == MVT::v16i1)
2228 RC = &X86::VK16RegClass;
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002229 else
Torok Edwinc23197a2009-07-14 16:55:14 +00002230 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002231
Devang Patel68e6bee2011-02-21 23:21:26 +00002232 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00002233 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002234
Chris Lattnerf39f7712007-02-28 05:46:49 +00002235 // If this is an 8 or 16-bit value, it is really passed promoted to 32
2236 // bits. Insert an assert[sz]ext to capture this, then truncate to the
2237 // right size.
2238 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00002239 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00002240 DAG.getValueType(VA.getValVT()));
2241 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00002242 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00002243 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002244 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002245 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00002246
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002247 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002248 // Handle MMX values passed in XMM regs.
Jakub Staszakc20323a2012-12-29 15:57:26 +00002249 if (RegVT.isVector())
2250 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(), ArgValue);
2251 else
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002252 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00002253 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00002254 } else {
2255 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00002256 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00002257 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002258
2259 // If value is passed via pointer - do a load.
2260 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00002261 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
Pete Cooperd752e0f2011-11-08 18:42:53 +00002262 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002263
Dan Gohman98ca4f22009-08-05 01:29:28 +00002264 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00002265 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002266
Eli Benderskya5597f02013-01-25 22:07:43 +00002267 // The x86-64 ABIs require that for returning structs by value we copy
2268 // the sret argument into %rax/%eax (depending on ABI) for the return.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00002269 // Win32 requires us to put the sret argument to %eax as well.
Eli Benderskya5597f02013-01-25 22:07:43 +00002270 // Save the argument into a virtual register so that we can access it
2271 // from the return points.
Timur Iskhodzhanova46f82d2013-03-28 21:30:04 +00002272 if (MF.getFunction()->hasStructRetAttr() &&
2273 (Subtarget->is64Bit() || Subtarget->isTargetWindows())) {
Dan Gohman61a92132008-04-21 23:59:07 +00002274 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2275 unsigned Reg = FuncInfo->getSRetReturnReg();
2276 if (!Reg) {
Eli Benderskya5597f02013-01-25 22:07:43 +00002277 MVT PtrTy = getPointerTy();
2278 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(PtrTy));
Dan Gohman61a92132008-04-21 23:59:07 +00002279 FuncInfo->setSRetReturnReg(Reg);
2280 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00002281 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00002282 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00002283 }
2284
Chris Lattnerf39f7712007-02-28 05:46:49 +00002285 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00002286 // Align stack specially for tail calls.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002287 if (FuncIsMadeTailCallSafe(CallConv,
2288 MF.getTarget().Options.GuaranteedTailCallOpt))
Gordon Henriksenae636f82008-01-03 16:47:34 +00002289 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00002290
Evan Cheng1bc78042006-04-26 01:20:17 +00002291 // If the function takes variable number of arguments, make a frame index for
2292 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002293 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002294 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
2295 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00002296 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00002297 }
2298 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002299 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
2300
2301 // FIXME: We should really autogenerate these arrays
Craig Topperc5eaae42012-03-11 07:57:25 +00002302 static const uint16_t GPR64ArgRegsWin64[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002303 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00002304 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002305 static const uint16_t GPR64ArgRegs64Bit[] = {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002306 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2307 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002308 static const uint16_t XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002309 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2310 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2311 };
Craig Topperc5eaae42012-03-11 07:57:25 +00002312 const uint16_t *GPR64ArgRegs;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002313 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002314
2315 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002316 // The XMM registers which might contain var arg parameters are shadowed
2317 // in their paired GPR. So we only need to save the GPR to their home
2318 // slots.
2319 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002320 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002321 } else {
2322 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
2323 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002324
Chad Rosier30450e82011-12-22 22:35:21 +00002325 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
2326 TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002327 }
2328 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
2329 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002330
Bill Wendling831737d2012-12-30 10:32:01 +00002331 bool NoImplicitFloatOps = Fn->getAttributes().
2332 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Craig Topper1accb7e2012-01-10 06:54:16 +00002333 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00002334 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002335 assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
2336 NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00002337 "SSE register cannot be used when SSE is disabled!");
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002338 if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
Craig Topper1accb7e2012-01-10 06:54:16 +00002339 !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00002340 // Kernel mode asks for SSE to be disabled, so don't push them
2341 // on the stack.
2342 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00002343
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002344 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002345 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002346 // Get to the caller-allocated home save location. Add 8 to account
2347 // for the return address.
2348 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002349 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00002350 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00002351 // Fixup to set vararg frame on shadow area (4 x i64).
2352 if (NumIntRegs < 4)
2353 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002354 } else {
2355 // For X86-64, if there are vararg parameters that are passed via
Chad Rosier30450e82011-12-22 22:35:21 +00002356 // registers, then we must store them to their spots on the stack so
2357 // they may be loaded by deferencing the result of va_next.
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002358 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2359 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2360 FuncInfo->setRegSaveFrameIndex(
2361 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00002362 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002363 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002364
Gordon Henriksen86737662008-01-05 16:56:59 +00002365 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002366 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00002367 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2368 getPointerTy());
2369 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002370 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00002371 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2372 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00002373 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002374 &X86::GR64RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00002375 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00002376 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00002377 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002378 MachinePointerInfo::getFixedStack(
2379 FuncInfo->getRegSaveFrameIndex(), Offset),
2380 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00002381 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002382 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00002383 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002384
Dan Gohmanface41a2009-08-16 21:24:25 +00002385 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2386 // Now store the XMM (fp + vector) parameter registers.
2387 SmallVector<SDValue, 11> SaveXMMOps;
2388 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002389
Craig Topperc9099502012-04-20 06:31:50 +00002390 unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002391 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2392 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00002393
Dan Gohman1e93df62010-04-17 14:41:14 +00002394 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2395 FuncInfo->getRegSaveFrameIndex()));
2396 SaveXMMOps.push_back(DAG.getIntPtrConstant(
2397 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00002398
Dan Gohmanface41a2009-08-16 21:24:25 +00002399 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00002400 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Craig Topperc9099502012-04-20 06:31:50 +00002401 &X86::VR128RegClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00002402 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2403 SaveXMMOps.push_back(Val);
2404 }
2405 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2406 MVT::Other,
2407 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00002408 }
Dan Gohmanface41a2009-08-16 21:24:25 +00002409
2410 if (!MemOps.empty())
2411 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2412 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002413 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002414 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002415
Gordon Henriksen86737662008-01-05 16:56:59 +00002416 // Some CCs need callee pop.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002417 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2418 MF.getTarget().Options.GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002419 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002420 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00002421 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00002422 // If this is an sret function, the return should pop the hidden pointer.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002423 if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002424 argsAreStructReturn(Ins) == StackStructReturn)
Dan Gohman1e93df62010-04-17 14:41:14 +00002425 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002426 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002427
Gordon Henriksen86737662008-01-05 16:56:59 +00002428 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00002429 // RegSaveFrameIndex is X86-64 only.
2430 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00002431 if (CallConv == CallingConv::X86_FastCall ||
2432 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00002433 // fastcc functions can't have varargs.
2434 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00002435 }
Evan Cheng25caf632006-05-23 21:06:34 +00002436
Rafael Espindola76927d752011-08-30 19:39:58 +00002437 FuncInfo->setArgumentStackSize(StackSize);
2438
Dan Gohman98ca4f22009-08-05 01:29:28 +00002439 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002440}
2441
Dan Gohman475871a2008-07-27 21:46:04 +00002442SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00002443X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2444 SDValue StackPtr, SDValue Arg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002445 SDLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00002446 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00002447 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002448 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00002449 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00002450 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002451 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00002452 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00002453
2454 return DAG.getStore(Chain, dl, Arg, PtrOff,
2455 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00002456 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00002457}
2458
Bill Wendling64e87322009-01-16 19:25:27 +00002459/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002460/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00002461SDValue
2462X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00002463 SDValue &OutRetAddr, SDValue Chain,
2464 bool IsTailCall, bool Is64Bit,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002465 int FPDiff, SDLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002466 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00002467 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002468 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00002469
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002470 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00002471 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002472 false, false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00002473 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002474}
2475
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002476/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002477/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00002478static SDValue
2479EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002480 SDValue Chain, SDValue RetAddrFrIdx, EVT PtrVT,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002481 unsigned SlotSize, int FPDiff, SDLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002482 // Store the return address to the appropriate stack slot.
2483 if (!FPDiff) return Chain;
2484 // Calculate the new stack slot for the return address.
Scott Michelfdc40a02009-02-17 22:15:04 +00002485 int NewReturnAddrFI =
Tim Northovera54b6622013-08-04 09:35:57 +00002486 MF.getFrameInfo()->CreateFixedObject(SlotSize, (int64_t)FPDiff - SlotSize,
2487 false);
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002488 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, PtrVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002489 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00002490 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00002491 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002492 return Chain;
2493}
2494
Dan Gohman98ca4f22009-08-05 01:29:28 +00002495SDValue
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002496X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
Dan Gohmand858e902010-04-17 15:26:15 +00002497 SmallVectorImpl<SDValue> &InVals) const {
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002498 SelectionDAG &DAG = CLI.DAG;
Craig Toppera0ec3f92013-07-14 04:42:23 +00002499 SDLoc &dl = CLI.DL;
2500 SmallVectorImpl<ISD::OutputArg> &Outs = CLI.Outs;
2501 SmallVectorImpl<SDValue> &OutVals = CLI.OutVals;
2502 SmallVectorImpl<ISD::InputArg> &Ins = CLI.Ins;
Justin Holewinskid2ea0e12012-05-25 16:35:28 +00002503 SDValue Chain = CLI.Chain;
2504 SDValue Callee = CLI.Callee;
2505 CallingConv::ID CallConv = CLI.CallConv;
2506 bool &isTailCall = CLI.IsTailCall;
2507 bool isVarArg = CLI.IsVarArg;
2508
Dan Gohman98ca4f22009-08-05 01:29:28 +00002509 MachineFunction &MF = DAG.getMachineFunction();
2510 bool Is64Bit = Subtarget->is64Bit();
Charles Davisac226bb2013-07-12 06:02:35 +00002511 bool IsWin64 = Subtarget->isCallingConvWin64(CallConv);
Eli Friedman9a2478a2012-01-20 00:05:46 +00002512 bool IsWindows = Subtarget->isTargetWindows();
Rafael Espindola1cee7102012-07-25 13:41:10 +00002513 StructReturnType SR = callIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00002514 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002515
Nick Lewycky22de16d2012-01-19 00:34:10 +00002516 if (MF.getTarget().Options.DisableTailCalls)
2517 isTailCall = false;
2518
Evan Cheng5f941932010-02-05 02:21:12 +00002519 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00002520 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00002521 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002522 isVarArg, SR != NotStructReturn,
Evan Chengb1cacc72012-09-25 05:32:34 +00002523 MF.getFunction()->hasStructRetAttr(), CLI.RetTy,
Rafael Espindola1cee7102012-07-25 13:41:10 +00002524 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00002525
2526 // Sibcalls are automatically detected tailcalls which do not require
2527 // ABI changes.
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002528 if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00002529 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00002530
2531 if (isTailCall)
2532 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00002533 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00002534
Chris Lattner29689432010-03-11 00:22:57 +00002535 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
Duncan Sandsdc7f1742012-11-16 12:36:39 +00002536 "Var args not supported with calling convention fastcc, ghc or hipe");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002537
Chris Lattner638402b2007-02-28 07:00:42 +00002538 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002539 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002540 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002541 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002542
2543 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00002544 if (IsWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002545 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002546
Duncan Sands45907662010-10-31 13:21:44 +00002547 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002548
Chris Lattner423c5f42007-02-28 05:31:48 +00002549 // Get a count of how many bytes are to be pushed on the stack.
2550 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002551 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002552 // This is a sibcall. The memory operands are available in caller's
2553 // own caller's stack.
2554 NumBytes = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002555 else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2556 IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002557 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002558
Gordon Henriksen86737662008-01-05 16:56:59 +00002559 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002560 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002561 // Lower arguments at fp - stackoffset + fpdiff.
Jakub Staszak96df4372012-10-29 22:02:26 +00002562 X86MachineFunctionInfo *X86Info = MF.getInfo<X86MachineFunctionInfo>();
2563 unsigned NumBytesCallerPushed = X86Info->getBytesToPopOnReturn();
2564
Gordon Henriksen86737662008-01-05 16:56:59 +00002565 FPDiff = NumBytesCallerPushed - NumBytes;
2566
2567 // Set the delta of movement of the returnaddr stackslot.
2568 // But only set if delta is greater than previous delta.
Jakub Staszak96df4372012-10-29 22:02:26 +00002569 if (FPDiff < X86Info->getTCReturnAddrDelta())
2570 X86Info->setTCReturnAddrDelta(FPDiff);
Gordon Henriksen86737662008-01-05 16:56:59 +00002571 }
2572
Evan Chengf22f9b32010-02-06 03:28:46 +00002573 if (!IsSibcall)
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002574 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true),
2575 dl);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002576
Dan Gohman475871a2008-07-27 21:46:04 +00002577 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002578 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002579 if (isTailCall && FPDiff)
2580 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2581 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002582
Dan Gohman475871a2008-07-27 21:46:04 +00002583 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2584 SmallVector<SDValue, 8> MemOpChains;
2585 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002586
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002587 // Walk the register/memloc assignments, inserting copies/loads. In the case
2588 // of tail call optimization arguments are handle later.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00002589 const X86RegisterInfo *RegInfo =
2590 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Chris Lattner423c5f42007-02-28 05:31:48 +00002591 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2592 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002593 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002594 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002595 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002596 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002597
Chris Lattner423c5f42007-02-28 05:31:48 +00002598 // Promote the value if needed.
2599 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002600 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002601 case CCValAssign::Full: break;
2602 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002603 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002604 break;
2605 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002606 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002607 break;
2608 case CCValAssign::AExt:
Craig Topper7a9a28b2012-08-12 02:23:29 +00002609 if (RegVT.is128BitVector()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002610 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002611 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002612 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2613 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002614 } else
2615 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2616 break;
2617 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002618 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002619 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002620 case CCValAssign::Indirect: {
2621 // Store the argument.
2622 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002623 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002624 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002625 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002626 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002627 Arg = SpillSlot;
2628 break;
2629 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002630 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002631
Chris Lattner423c5f42007-02-28 05:31:48 +00002632 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002633 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2634 if (isVarArg && IsWin64) {
2635 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2636 // shadow reg if callee is a varargs function.
2637 unsigned ShadowReg = 0;
2638 switch (VA.getLocReg()) {
2639 case X86::XMM0: ShadowReg = X86::RCX; break;
2640 case X86::XMM1: ShadowReg = X86::RDX; break;
2641 case X86::XMM2: ShadowReg = X86::R8; break;
2642 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002643 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002644 if (ShadowReg)
2645 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002646 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002647 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002648 assert(VA.isMemLoc());
2649 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002650 StackPtr = DAG.getCopyFromReg(Chain, dl, RegInfo->getStackRegister(),
2651 getPointerTy());
Evan Cheng5f941932010-02-05 02:21:12 +00002652 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2653 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002654 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002655 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002656
Evan Cheng32fe1032006-05-25 00:59:30 +00002657 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002658 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002659 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002660
Chris Lattner88e1fd52009-07-09 04:24:46 +00002661 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002662 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2663 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002664 if (!isTailCall) {
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002665 RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
Andrew Trickac6d9be2013-05-25 02:42:55 +00002666 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), getPointerTy())));
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002667 } else {
Bill Wendling01622262013-11-22 18:01:22 +00002668 // If we are tail calling and generating PIC/GOT style code load the
2669 // address of the callee into ECX. The value in ecx is used as target of
2670 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2671 // for tail calls on PIC/GOT architectures. Normally we would just put the
2672 // address of GOT into ebx and then call target@PLT. But for tail calls
2673 // ebx would be restored (since ebx is callee saved) before jumping to the
2674 // target@PLT.
2675
2676 // Note: The actual moving to ECX is done further down.
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002677 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
Bill Wendling01622262013-11-22 18:01:22 +00002678 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2679 !G->getGlobal()->hasProtectedVisibility())
2680 Callee = LowerGlobalAddress(Callee, DAG);
2681 else if (isa<ExternalSymbolSDNode>(Callee))
2682 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002683 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002684 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002685
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002686 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002687 // From AMD64 ABI document:
2688 // For calls that may call functions that use varargs or stdargs
2689 // (prototype-less calls or calls to functions containing ellipsis (...) in
2690 // the declaration) %al is used as hidden argument to specify the number
2691 // of SSE registers used. The contents of %al do not need to match exactly
2692 // the number of registers, but must be an ubound on the number of SSE
2693 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002694
Gordon Henriksen86737662008-01-05 16:56:59 +00002695 // Count the number of XMM registers allocated.
Craig Topperc5eaae42012-03-11 07:57:25 +00002696 static const uint16_t XMMArgRegs[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00002697 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2698 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2699 };
2700 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Craig Topper1accb7e2012-01-10 06:54:16 +00002701 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002702 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002703
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002704 RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2705 DAG.getConstant(NumXMMRegs, MVT::i8)));
Gordon Henriksen86737662008-01-05 16:56:59 +00002706 }
2707
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002708 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002709 if (isTailCall) {
2710 // Force all the incoming stack arguments to be loaded from the stack
2711 // before any new outgoing arguments are stored to the stack, because the
2712 // outgoing stack slots may alias the incoming argument stack slots, and
2713 // the alias isn't otherwise explicit. This is slightly more conservative
2714 // than necessary, because it means that each store effectively depends
2715 // on every argument instead of just those arguments it would clobber.
2716 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2717
Dan Gohman475871a2008-07-27 21:46:04 +00002718 SmallVector<SDValue, 8> MemOpChains2;
2719 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002720 int FI = 0;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002721 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002722 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2723 CCValAssign &VA = ArgLocs[i];
2724 if (VA.isRegLoc())
2725 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002726 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002727 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002728 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002729 // Create frame index.
2730 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002731 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002732 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002733 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002734
Duncan Sands276dcbd2008-03-21 09:14:45 +00002735 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002736 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002737 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002738 if (StackPtr.getNode() == 0)
Michael Liaoc5c970e2012-10-31 04:14:09 +00002739 StackPtr = DAG.getCopyFromReg(Chain, dl,
2740 RegInfo->getStackRegister(),
Dale Johannesendd64c412009-02-04 00:33:20 +00002741 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002742 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002743
Dan Gohman98ca4f22009-08-05 01:29:28 +00002744 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2745 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002746 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002747 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002748 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002749 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002750 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002751 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002752 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002753 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002754 }
2755 }
2756
2757 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002758 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002759 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002760
2761 // Store the return address to the appropriate stack slot.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002762 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx,
2763 getPointerTy(), RegInfo->getSlotSize(),
Dale Johannesenace16102009-02-03 19:33:06 +00002764 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002765 }
2766
Jakob Stoklund Olesenb8720782012-07-04 19:28:31 +00002767 // Build a sequence of copy-to-reg nodes chained together with token chain
2768 // and flag operands which copy the outgoing args into registers.
2769 SDValue InFlag;
2770 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2771 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2772 RegsToPass[i].second, InFlag);
2773 InFlag = Chain.getValue(1);
2774 }
2775
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002776 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2777 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2778 // In the 64-bit large code model, we have to make all calls
2779 // through a register, since the call instruction's 32-bit
2780 // pc-relative offset may not be large enough to hold the whole
2781 // address.
2782 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002783 // If the callee is a GlobalAddress node (quite common, every direct call
2784 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2785 // it.
2786
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002787 // We should use extra load for direct calls to dllimported functions in
2788 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002789 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002790 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002791 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002792 bool ExtraLoad = false;
2793 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002794
Chris Lattner48a7d022009-07-09 05:02:21 +00002795 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2796 // external symbols most go through the PLT in PIC mode. If the symbol
2797 // has hidden or protected visibility, or if it is static or local, then
2798 // we don't need to use the PLT - we can directly call it.
2799 if (Subtarget->isTargetELF() &&
2800 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002801 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002802 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002803 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002804 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002805 (!Subtarget->getTargetTriple().isMacOSX() ||
2806 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002807 // PC-relative references to external symbols should go through $stub,
2808 // unless we're building with the leopard linker or later, which
2809 // automatically synthesizes these stubs.
2810 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002811 } else if (Subtarget->isPICStyleRIPRel() &&
2812 isa<Function>(GV) &&
Bill Wendling831737d2012-12-30 10:32:01 +00002813 cast<Function>(GV)->getAttributes().
2814 hasAttribute(AttributeSet::FunctionIndex,
2815 Attribute::NonLazyBind)) {
John McCall3a3465b2011-06-15 20:36:13 +00002816 // If the function is marked as non-lazy, generate an indirect call
2817 // which loads from the GOT directly. This avoids runtime overhead
2818 // at the cost of eager binding (and one extra byte of encoding).
2819 OpFlags = X86II::MO_GOTPCREL;
2820 WrapperKind = X86ISD::WrapperRIP;
2821 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002822 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002823
Devang Patel0d881da2010-07-06 22:08:15 +00002824 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002825 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002826
2827 // Add a wrapper if needed.
2828 if (WrapperKind != ISD::DELETED_NODE)
2829 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2830 // Add extra indirection if needed.
2831 if (ExtraLoad)
2832 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2833 MachinePointerInfo::getGOT(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00002834 false, false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002835 }
Bill Wendling056292f2008-09-16 21:48:12 +00002836 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002837 unsigned char OpFlags = 0;
2838
Evan Cheng1bf891a2010-12-01 22:59:46 +00002839 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2840 // external symbols should go through the PLT.
2841 if (Subtarget->isTargetELF() &&
2842 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2843 OpFlags = X86II::MO_PLT;
2844 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002845 (!Subtarget->getTargetTriple().isMacOSX() ||
2846 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002847 // PC-relative references to external symbols should go through $stub,
2848 // unless we're building with the leopard linker or later, which
2849 // automatically synthesizes these stubs.
2850 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002851 }
Eric Christopherfd179292009-08-27 18:07:15 +00002852
Chris Lattner48a7d022009-07-09 05:02:21 +00002853 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2854 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002855 }
2856
Chris Lattnerd96d0722007-02-25 06:40:16 +00002857 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002858 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002859 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002860
Evan Chengf22f9b32010-02-06 03:28:46 +00002861 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002862 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002863 DAG.getIntPtrConstant(0, true), InFlag, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002864 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002865 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002866
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002867 Ops.push_back(Chain);
2868 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002869
Dan Gohman98ca4f22009-08-05 01:29:28 +00002870 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002871 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002872
Gordon Henriksen86737662008-01-05 16:56:59 +00002873 // Add argument registers to the end of the list so that they are known live
2874 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002875 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2876 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2877 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002878
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +00002879 // Add a register mask operand representing the call-preserved registers.
2880 const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2881 const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2882 assert(Mask && "Missing call preserved mask for calling convention");
2883 Ops.push_back(DAG.getRegisterMask(Mask));
Jakob Stoklund Olesenc38c4562012-01-18 23:52:22 +00002884
Gabor Greifba36cb52008-08-28 21:40:38 +00002885 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002886 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002887
Dan Gohman98ca4f22009-08-05 01:29:28 +00002888 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002889 // We used to do:
2890 //// If this is the first return lowered for this function, add the regs
2891 //// to the liveout set for the function.
2892 // This isn't right, although it's probably harmless on x86; liveouts
2893 // should be computed from returns not tail calls. Consider a void
2894 // function making a tail call to a function returning int.
Jakub Staszak30fcfc32013-02-16 13:34:26 +00002895 return DAG.getNode(X86ISD::TC_RETURN, dl, NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002896 }
2897
Dale Johannesenace16102009-02-03 19:33:06 +00002898 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002899 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002900
Chris Lattner2d297092006-05-23 18:50:38 +00002901 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002902 unsigned NumBytesForCalleeToPush;
Nick Lewycky8a8d4792011-12-02 22:16:29 +00002903 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2904 getTargetMachine().Options.GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002905 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Eli Friedman9a2478a2012-01-20 00:05:46 +00002906 else if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
Rafael Espindola1cee7102012-07-25 13:41:10 +00002907 SR == StackStructReturn)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002908 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002909 // pops the hidden struct pointer, so we have to push it back.
2910 // This is common for Darwin/X86, Linux & Mingw32 targets.
Eli Friedman9a2478a2012-01-20 00:05:46 +00002911 // For MSVC Win32 targets, the caller pops the hidden struct pointer.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002912 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002913 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002914 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002915
Gordon Henriksenae636f82008-01-03 16:47:34 +00002916 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002917 if (!IsSibcall) {
2918 Chain = DAG.getCALLSEQ_END(Chain,
2919 DAG.getIntPtrConstant(NumBytes, true),
2920 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2921 true),
Andrew Trick6e0b2a02013-05-29 22:03:55 +00002922 InFlag, dl);
Evan Chengf22f9b32010-02-06 03:28:46 +00002923 InFlag = Chain.getValue(1);
2924 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002925
Chris Lattner3085e152007-02-25 08:59:22 +00002926 // Handle result values, copying them out of physregs into vregs that we
2927 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002928 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2929 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002930}
2931
Evan Cheng25ab6902006-09-08 06:48:29 +00002932//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002933// Fast Calling Convention (tail call) implementation
2934//===----------------------------------------------------------------------===//
2935
2936// Like std call, callee cleans arguments, convention except that ECX is
2937// reserved for storing the tail called function address. Only 2 registers are
2938// free for argument passing (inreg). Tail call optimization is performed
2939// provided:
2940// * tailcallopt is enabled
2941// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002942// On X86_64 architecture with GOT-style position independent code only local
2943// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002944// To keep the stack aligned according to platform abi the function
2945// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2946// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002947// If a tail called function callee has more arguments than the caller the
2948// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002949// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002950// original REtADDR, but before the saved framepointer or the spilled registers
2951// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2952// stack layout:
2953// arg1
2954// arg2
2955// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002956// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002957// move area ]
2958// (possible EBP)
2959// ESI
2960// EDI
2961// local1 ..
2962
2963/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2964/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002965unsigned
2966X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2967 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002968 MachineFunction &MF = DAG.getMachineFunction();
2969 const TargetMachine &TM = MF.getTarget();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00002970 const X86RegisterInfo *RegInfo =
2971 static_cast<const X86RegisterInfo*>(TM.getRegisterInfo());
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002972 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002973 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002974 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002975 int64_t Offset = StackSize;
Michael Liaoaa3c2c02012-10-25 06:29:14 +00002976 unsigned SlotSize = RegInfo->getSlotSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002977 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2978 // Number smaller than 12 so just add the difference.
2979 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2980 } else {
2981 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002982 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002983 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002984 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002985 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002986}
2987
Evan Cheng5f941932010-02-05 02:21:12 +00002988/// MatchingStackOffset - Return true if the given stack call argument is
2989/// already available in the same position (relatively) of the caller's
2990/// incoming argument stack.
2991static
2992bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2993 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2994 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002995 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2996 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002997 if (Arg.getOpcode() == ISD::CopyFromReg) {
2998 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002999 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00003000 return false;
3001 MachineInstr *Def = MRI->getVRegDef(VR);
3002 if (!Def)
3003 return false;
3004 if (!Flags.isByVal()) {
3005 if (!TII->isLoadFromStackSlot(Def, FI))
3006 return false;
3007 } else {
3008 unsigned Opcode = Def->getOpcode();
3009 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
3010 Def->getOperand(1).isFI()) {
3011 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00003012 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00003013 } else
3014 return false;
3015 }
Evan Cheng4cae1332010-03-05 08:38:04 +00003016 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
3017 if (Flags.isByVal())
3018 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00003019 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00003020 // define @foo(%struct.X* %A) {
3021 // tail call @bar(%struct.X* byval %A)
3022 // }
Evan Cheng5f941932010-02-05 02:21:12 +00003023 return false;
3024 SDValue Ptr = Ld->getBasePtr();
3025 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
3026 if (!FINode)
3027 return false;
3028 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00003029 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00003030 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00003031 FI = FINode->getIndex();
3032 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00003033 } else
3034 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00003035
Evan Cheng4cae1332010-03-05 08:38:04 +00003036 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00003037 if (!MFI->isFixedObjectIndex(FI))
3038 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00003039 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00003040}
3041
Dan Gohman98ca4f22009-08-05 01:29:28 +00003042/// IsEligibleForTailCallOptimization - Check whether the call is eligible
3043/// for tail call optimization. Targets which want to do tail call
3044/// optimization should implement this function.
3045bool
3046X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003047 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00003048 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00003049 bool isCalleeStructRet,
3050 bool isCallerStructRet,
Evan Chengb1cacc72012-09-25 05:32:34 +00003051 Type *RetTy,
Evan Chengb1712452010-01-27 06:25:16 +00003052 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00003053 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00003054 const SmallVectorImpl<ISD::InputArg> &Ins,
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003055 SelectionDAG &DAG) const {
Charles Davisac226bb2013-07-12 06:02:35 +00003056 if (!IsTailCallConvention(CalleeCC) && !IsCCallConvention(CalleeCC))
Evan Chengb1712452010-01-27 06:25:16 +00003057 return false;
3058
Evan Cheng7096ae42010-01-29 06:45:59 +00003059 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00003060 const MachineFunction &MF = DAG.getMachineFunction();
Charles Davisac226bb2013-07-12 06:02:35 +00003061 const Function *CallerF = MF.getFunction();
Evan Chengb1cacc72012-09-25 05:32:34 +00003062
3063 // If the function return type is x86_fp80 and the callee return type is not,
3064 // then the FP_EXTEND of the call result is not a nop. It's not safe to
3065 // perform a tailcall optimization here.
3066 if (CallerF->getReturnType()->isX86_FP80Ty() && !RetTy->isX86_FP80Ty())
3067 return false;
3068
Evan Cheng13617962010-04-30 01:12:32 +00003069 CallingConv::ID CallerCC = CallerF->getCallingConv();
3070 bool CCMatch = CallerCC == CalleeCC;
Charles Davisac226bb2013-07-12 06:02:35 +00003071 bool IsCalleeWin64 = Subtarget->isCallingConvWin64(CalleeCC);
3072 bool IsCallerWin64 = Subtarget->isCallingConvWin64(CallerCC);
Evan Cheng13617962010-04-30 01:12:32 +00003073
Nick Lewycky8a8d4792011-12-02 22:16:29 +00003074 if (getTargetMachine().Options.GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00003075 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00003076 return true;
3077 return false;
3078 }
3079
Dale Johannesen2f05cc02010-05-28 23:24:28 +00003080 // Look for obvious safe cases to perform tail call optimization that do not
3081 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00003082
Evan Cheng2c12cb42010-03-26 16:26:03 +00003083 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
3084 // emit a special epilogue.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00003085 const X86RegisterInfo *RegInfo =
3086 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Evan Cheng2c12cb42010-03-26 16:26:03 +00003087 if (RegInfo->needsStackRealignment(MF))
3088 return false;
3089
Evan Chenga375d472010-03-15 18:54:48 +00003090 // Also avoid sibcall optimization if either caller or callee uses struct
3091 // return semantics.
3092 if (isCalleeStructRet || isCallerStructRet)
3093 return false;
3094
Chad Rosier2416da32011-06-24 21:15:36 +00003095 // An stdcall caller is expected to clean up its arguments; the callee
3096 // isn't going to do that.
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003097 if (!CCMatch && CallerCC == CallingConv::X86_StdCall)
Chad Rosier2416da32011-06-24 21:15:36 +00003098 return false;
3099
Chad Rosier871f6642011-05-18 19:59:50 +00003100 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00003101 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00003102 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00003103
3104 // Optimizing for varargs on Win64 is unlikely to be safe without
3105 // additional testing.
Charles Davisac226bb2013-07-12 06:02:35 +00003106 if (IsCalleeWin64 || IsCallerWin64)
Chad Rosiera1660892011-05-20 00:59:28 +00003107 return false;
3108
Chad Rosier871f6642011-05-18 19:59:50 +00003109 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003110 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003111 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00003112
Chad Rosier871f6642011-05-18 19:59:50 +00003113 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
3114 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
3115 if (!ArgLocs[i].isRegLoc())
3116 return false;
3117 }
3118
Chad Rosier30450e82011-12-22 22:35:21 +00003119 // If the call result is in ST0 / ST1, it needs to be popped off the x87
3120 // stack. Therefore, if it's not used by the call it is not safe to optimize
3121 // this into a sibcall.
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003122 bool Unused = false;
3123 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
3124 if (!Ins[i].Used) {
3125 Unused = true;
3126 break;
3127 }
3128 }
3129 if (Unused) {
3130 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003131 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003132 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003133 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00003134 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00003135 CCValAssign &VA = RVLocs[i];
3136 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
3137 return false;
3138 }
3139 }
3140
Evan Cheng13617962010-04-30 01:12:32 +00003141 // If the calling conventions do not match, then we'd better make sure the
3142 // results are returned in the same way as what the caller expects.
3143 if (!CCMatch) {
3144 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00003145 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003146 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00003147 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
3148
3149 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00003150 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003151 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00003152 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
3153
3154 if (RVLocs1.size() != RVLocs2.size())
3155 return false;
3156 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
3157 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
3158 return false;
3159 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
3160 return false;
3161 if (RVLocs1[i].isRegLoc()) {
3162 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
3163 return false;
3164 } else {
3165 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
3166 return false;
3167 }
3168 }
3169 }
3170
Evan Chenga6bff982010-01-30 01:22:00 +00003171 // If the callee takes no arguments then go on to check the results of the
3172 // call.
3173 if (!Outs.empty()) {
3174 // Check if stack adjustment is needed. For now, do not do this if any
3175 // argument is passed on the stack.
3176 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00003177 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
Craig Topper0fbf3642012-04-23 03:28:34 +00003178 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003179
3180 // Allocate shadow area for Win64
Charles Davisac226bb2013-07-12 06:02:35 +00003181 if (IsCalleeWin64)
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003182 CCInfo.AllocateStack(32, 8);
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00003183
Duncan Sands45907662010-10-31 13:21:44 +00003184 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00003185 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00003186 MachineFunction &MF = DAG.getMachineFunction();
3187 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
3188 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00003189
3190 // Check if the arguments are already laid out in the right way as
3191 // the caller's fixed stack objects.
3192 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00003193 const MachineRegisterInfo *MRI = &MF.getRegInfo();
3194 const X86InstrInfo *TII =
Roman Divacky59324292012-09-05 22:26:57 +00003195 ((const X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00003196 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3197 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00003198 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00003199 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00003200 if (VA.getLocInfo() == CCValAssign::Indirect)
3201 return false;
3202 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00003203 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
3204 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00003205 return false;
3206 }
3207 }
3208 }
Evan Cheng9c044672010-05-29 01:35:22 +00003209
3210 // If the tailcall address may be in a register, then make sure it's
3211 // possible to register allocate for it. In 32-bit, the call address can
3212 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00003213 // callee-saved registers are restored. These happen to be the same
3214 // registers used to pass 'inreg' arguments so watch out for those.
3215 if (!Subtarget->is64Bit() &&
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003216 ((!isa<GlobalAddressSDNode>(Callee) &&
3217 !isa<ExternalSymbolSDNode>(Callee)) ||
3218 getTargetMachine().getRelocationModel() == Reloc::PIC_)) {
Evan Cheng9c044672010-05-29 01:35:22 +00003219 unsigned NumInRegs = 0;
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003220 // In PIC we need an extra register to formulate the address computation
3221 // for the callee.
3222 unsigned MaxInRegs =
3223 (getTargetMachine().getRelocationModel() == Reloc::PIC_) ? 2 : 3;
3224
Evan Cheng9c044672010-05-29 01:35:22 +00003225 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
3226 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00003227 if (!VA.isRegLoc())
3228 continue;
3229 unsigned Reg = VA.getLocReg();
3230 switch (Reg) {
3231 default: break;
3232 case X86::EAX: case X86::EDX: case X86::ECX:
Nick Lewycky48aaf5f2013-02-13 21:59:15 +00003233 if (++NumInRegs == MaxInRegs)
Evan Cheng9c044672010-05-29 01:35:22 +00003234 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00003235 break;
Evan Cheng9c044672010-05-29 01:35:22 +00003236 }
3237 }
3238 }
Evan Chenga6bff982010-01-30 01:22:00 +00003239 }
Evan Chengb1712452010-01-27 06:25:16 +00003240
Evan Cheng86809cc2010-02-03 03:28:02 +00003241 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00003242}
3243
Dan Gohman3df24e62008-09-03 23:12:08 +00003244FastISel *
Bob Wilsond49edb72012-08-03 04:06:28 +00003245X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
3246 const TargetLibraryInfo *libInfo) const {
3247 return X86::createFastISel(funcInfo, libInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00003248}
3249
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00003250//===----------------------------------------------------------------------===//
3251// Other Lowering Hooks
3252//===----------------------------------------------------------------------===//
3253
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00003254static bool MayFoldLoad(SDValue Op) {
3255 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
3256}
3257
3258static bool MayFoldIntoStore(SDValue Op) {
3259 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
3260}
3261
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003262static bool isTargetShuffle(unsigned Opcode) {
3263 switch(Opcode) {
3264 default: return false;
3265 case X86ISD::PSHUFD:
3266 case X86ISD::PSHUFHW:
3267 case X86ISD::PSHUFLW:
Craig Topperb3982da2011-12-31 23:50:21 +00003268 case X86ISD::SHUFP:
Craig Topper4aee1bb2013-01-28 06:48:25 +00003269 case X86ISD::PALIGNR:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003270 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003271 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003272 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003273 case X86ISD::MOVLPS:
3274 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003275 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003276 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003277 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003278 case X86ISD::MOVSS:
3279 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003280 case X86ISD::UNPCKL:
3281 case X86ISD::UNPCKH:
Craig Topper316cd2a2011-11-30 06:25:25 +00003282 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +00003283 case X86ISD::VPERM2X128:
Craig Topperbdcbcb32012-05-06 18:54:26 +00003284 case X86ISD::VPERMI:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003285 return true;
3286 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003287}
3288
Andrew Trickac6d9be2013-05-25 02:42:55 +00003289static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003290 SDValue V1, SelectionDAG &DAG) {
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003291 switch(Opc) {
3292 default: llvm_unreachable("Unknown x86 shuffle node");
3293 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00003294 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00003295 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003296 return DAG.getNode(Opc, dl, VT, V1);
3297 }
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00003298}
3299
Andrew Trickac6d9be2013-05-25 02:42:55 +00003300static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003301 SDValue V1, unsigned TargetMask,
3302 SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003303 switch(Opc) {
3304 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003305 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003306 case X86ISD::PSHUFHW:
3307 case X86ISD::PSHUFLW:
Craig Topper316cd2a2011-11-30 06:25:25 +00003308 case X86ISD::VPERMILP:
Craig Topper8325c112012-04-16 00:41:45 +00003309 case X86ISD::VPERMI:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003310 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
3311 }
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00003312}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00003313
Andrew Trickac6d9be2013-05-25 02:42:55 +00003314static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper3d092db2012-03-21 02:14:01 +00003315 SDValue V1, SDValue V2, unsigned TargetMask,
3316 SelectionDAG &DAG) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003317 switch(Opc) {
3318 default: llvm_unreachable("Unknown x86 shuffle node");
Craig Topper4aee1bb2013-01-28 06:48:25 +00003319 case X86ISD::PALIGNR:
Craig Topperb3982da2011-12-31 23:50:21 +00003320 case X86ISD::SHUFP:
Craig Topperec24e612011-11-30 07:47:51 +00003321 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003322 return DAG.getNode(Opc, dl, VT, V1, V2,
3323 DAG.getConstant(TargetMask, MVT::i8));
3324 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003325}
3326
Andrew Trickac6d9be2013-05-25 02:42:55 +00003327static SDValue getTargetShuffleNode(unsigned Opc, SDLoc dl, EVT VT,
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003328 SDValue V1, SDValue V2, SelectionDAG &DAG) {
3329 switch(Opc) {
3330 default: llvm_unreachable("Unknown x86 shuffle node");
3331 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00003332 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00003333 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003334 case X86ISD::MOVLPS:
3335 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003336 case X86ISD::MOVSS:
3337 case X86ISD::MOVSD:
Craig Topper34671b82011-12-06 08:21:25 +00003338 case X86ISD::UNPCKL:
3339 case X86ISD::UNPCKH:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003340 return DAG.getNode(Opc, dl, VT, V1, V2);
3341 }
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00003342}
3343
Dan Gohmand858e902010-04-17 15:26:15 +00003344SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003345 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +00003346 const X86RegisterInfo *RegInfo =
3347 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003348 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
3349 int ReturnAddrIndex = FuncInfo->getRAIndex();
3350
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003351 if (ReturnAddrIndex == 0) {
3352 // Set up a frame object for the return address.
Michael Liaoaa3c2c02012-10-25 06:29:14 +00003353 unsigned SlotSize = RegInfo->getSlotSize();
Tim Northovera54b6622013-08-04 09:35:57 +00003354 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize,
3355 -(int64_t)SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00003356 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00003357 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003358 }
3359
Evan Cheng25ab6902006-09-08 06:48:29 +00003360 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00003361}
3362
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003363bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
3364 bool hasSymbolicDisplacement) {
3365 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00003366 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00003367 return false;
3368
3369 // If we don't have a symbolic displacement - we don't have any extra
3370 // restrictions.
3371 if (!hasSymbolicDisplacement)
3372 return true;
3373
3374 // FIXME: Some tweaks might be needed for medium code model.
3375 if (M != CodeModel::Small && M != CodeModel::Kernel)
3376 return false;
3377
3378 // For small code model we assume that latest object is 16MB before end of 31
3379 // bits boundary. We may also accept pretty large negative constants knowing
3380 // that all objects are in the positive half of address space.
3381 if (M == CodeModel::Small && Offset < 16*1024*1024)
3382 return true;
3383
3384 // For kernel code model we know that all object resist in the negative half
3385 // of 32bits address space. We may not accept negative offsets, since they may
3386 // be just off and we may accept pretty large positive ones.
3387 if (M == CodeModel::Kernel && Offset > 0)
3388 return true;
3389
3390 return false;
3391}
3392
Evan Chengef41ff62011-06-23 17:54:54 +00003393/// isCalleePop - Determines whether the callee is required to pop its
3394/// own arguments. Callee pop is necessary to support tail calls.
3395bool X86::isCalleePop(CallingConv::ID CallingConv,
3396 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3397 if (IsVarArg)
3398 return false;
3399
3400 switch (CallingConv) {
3401 default:
3402 return false;
3403 case CallingConv::X86_StdCall:
3404 return !is64Bit;
3405 case CallingConv::X86_FastCall:
3406 return !is64Bit;
3407 case CallingConv::X86_ThisCall:
3408 return !is64Bit;
3409 case CallingConv::Fast:
3410 return TailCallOpt;
3411 case CallingConv::GHC:
3412 return TailCallOpt;
Duncan Sandsdc7f1742012-11-16 12:36:39 +00003413 case CallingConv::HiPE:
3414 return TailCallOpt;
Evan Chengef41ff62011-06-23 17:54:54 +00003415 }
3416}
3417
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003418/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3419/// specific condition code, returning the condition code and the LHS/RHS of the
3420/// comparison to make.
3421static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3422 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00003423 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003424 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3425 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3426 // X > -1 -> X == 0, jump !sign.
3427 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003428 return X86::COND_NS;
Craig Topper69947b92012-04-23 06:57:04 +00003429 }
3430 if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003431 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003432 return X86::COND_S;
Craig Topper69947b92012-04-23 06:57:04 +00003433 }
3434 if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00003435 // X < 1 -> X <= 0
3436 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003437 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00003438 }
Chris Lattnerf9570512006-09-13 03:22:10 +00003439 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003440
Evan Chengd9558e02006-01-06 00:43:03 +00003441 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003442 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003443 case ISD::SETEQ: return X86::COND_E;
3444 case ISD::SETGT: return X86::COND_G;
3445 case ISD::SETGE: return X86::COND_GE;
3446 case ISD::SETLT: return X86::COND_L;
3447 case ISD::SETLE: return X86::COND_LE;
3448 case ISD::SETNE: return X86::COND_NE;
3449 case ISD::SETULT: return X86::COND_B;
3450 case ISD::SETUGT: return X86::COND_A;
3451 case ISD::SETULE: return X86::COND_BE;
3452 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00003453 }
Chris Lattner4c78e022008-12-23 23:42:27 +00003454 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003455
Chris Lattner4c78e022008-12-23 23:42:27 +00003456 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00003457
Chris Lattner4c78e022008-12-23 23:42:27 +00003458 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00003459 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3460 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00003461 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3462 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00003463 }
3464
Chris Lattner4c78e022008-12-23 23:42:27 +00003465 switch (SetCCOpcode) {
3466 default: break;
3467 case ISD::SETOLT:
3468 case ISD::SETOLE:
3469 case ISD::SETUGT:
3470 case ISD::SETUGE:
3471 std::swap(LHS, RHS);
3472 break;
3473 }
3474
3475 // On a floating point condition, the flags are set as follows:
3476 // ZF PF CF op
3477 // 0 | 0 | 0 | X > Y
3478 // 0 | 0 | 1 | X < Y
3479 // 1 | 0 | 0 | X == Y
3480 // 1 | 1 | 1 | unordered
3481 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003482 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00003483 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003484 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00003485 case ISD::SETOLT: // flipped
3486 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003487 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00003488 case ISD::SETOLE: // flipped
3489 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003490 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003491 case ISD::SETUGT: // flipped
3492 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003493 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00003494 case ISD::SETUGE: // flipped
3495 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003496 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003497 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003498 case ISD::SETNE: return X86::COND_NE;
3499 case ISD::SETUO: return X86::COND_P;
3500 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00003501 case ISD::SETOEQ:
3502 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00003503 }
Evan Chengd9558e02006-01-06 00:43:03 +00003504}
3505
Evan Cheng4a460802006-01-11 00:33:36 +00003506/// hasFPCMov - is there a floating point cmov for the specific X86 condition
3507/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00003508/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00003509static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00003510 switch (X86CC) {
3511 default:
3512 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003513 case X86::COND_B:
3514 case X86::COND_BE:
3515 case X86::COND_E:
3516 case X86::COND_P:
3517 case X86::COND_A:
3518 case X86::COND_AE:
3519 case X86::COND_NE:
3520 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003521 return true;
3522 }
3523}
3524
Evan Chengeb2f9692009-10-27 19:56:55 +00003525/// isFPImmLegal - Returns true if the target can instruction select the
3526/// specified FP immediate natively. If false, the legalizer will
3527/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003528bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003529 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3530 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3531 return true;
3532 }
3533 return false;
3534}
3535
Nate Begeman9008ca62009-04-27 18:41:29 +00003536/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3537/// the specified range (L, H].
3538static bool isUndefOrInRange(int Val, int Low, int Hi) {
3539 return (Val < 0) || (Val >= Low && Val < Hi);
3540}
3541
3542/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3543/// specified value.
3544static bool isUndefOrEqual(int Val, int CmpVal) {
Jakub Staszakb2af3a02012-12-06 18:22:59 +00003545 return (Val < 0 || Val == CmpVal);
Evan Chengc5cdff22006-04-07 21:53:05 +00003546}
3547
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00003548/// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
Bruno Cardoso Lopes4002d7e2011-08-12 21:54:42 +00003549/// from position Pos and ending in Pos+Size, falls within the specified
3550/// sequential range (L, L+Pos]. or is undef.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00003551static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
Craig Topperb6072642012-05-03 07:26:59 +00003552 unsigned Pos, unsigned Size, int Low) {
3553 for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003554 if (!isUndefOrEqual(Mask[i], Low))
3555 return false;
3556 return true;
3557}
3558
Nate Begeman9008ca62009-04-27 18:41:29 +00003559/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3560/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3561/// the second operand.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003562static bool isPSHUFDMask(ArrayRef<int> Mask, MVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003563 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003564 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003565 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003566 return (Mask[0] < 2 && Mask[1] < 2);
3567 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003568}
3569
Nate Begeman9008ca62009-04-27 18:41:29 +00003570/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3571/// is suitable for input to PSHUFHW.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003572static bool isPSHUFHWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003573 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng0188ecb2006-03-22 18:59:22 +00003574 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003575
Nate Begeman9008ca62009-04-27 18:41:29 +00003576 // Lower quadword copied in order or undef.
Craig Topperc612d792012-01-02 09:17:37 +00003577 if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3578 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003579
Evan Cheng506d3df2006-03-29 23:07:14 +00003580 // Upper quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003581 for (unsigned i = 4; i != 8; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003582 if (!isUndefOrInRange(Mask[i], 4, 8))
Evan Cheng506d3df2006-03-29 23:07:14 +00003583 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003584
Craig Toppera9a568a2012-05-02 08:03:44 +00003585 if (VT == MVT::v16i16) {
3586 // Lower quadword copied in order or undef.
3587 if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3588 return false;
3589
3590 // Upper quadword shuffled.
3591 for (unsigned i = 12; i != 16; ++i)
3592 if (!isUndefOrInRange(Mask[i], 12, 16))
3593 return false;
3594 }
3595
Evan Cheng506d3df2006-03-29 23:07:14 +00003596 return true;
3597}
3598
Nate Begeman9008ca62009-04-27 18:41:29 +00003599/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3600/// is suitable for input to PSHUFLW.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003601static bool isPSHUFLWMask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003602 if (VT != MVT::v8i16 && (!HasInt256 || VT != MVT::v16i16))
Evan Cheng506d3df2006-03-29 23:07:14 +00003603 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003604
Rafael Espindola15684b22009-04-24 12:40:33 +00003605 // Upper quadword copied in order.
Craig Topperc612d792012-01-02 09:17:37 +00003606 if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3607 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003608
Rafael Espindola15684b22009-04-24 12:40:33 +00003609 // Lower quadword shuffled.
Craig Topperc612d792012-01-02 09:17:37 +00003610 for (unsigned i = 0; i != 4; ++i)
Craig Toppera9a568a2012-05-02 08:03:44 +00003611 if (!isUndefOrInRange(Mask[i], 0, 4))
Rafael Espindola15684b22009-04-24 12:40:33 +00003612 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003613
Craig Toppera9a568a2012-05-02 08:03:44 +00003614 if (VT == MVT::v16i16) {
3615 // Upper quadword copied in order.
3616 if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3617 return false;
3618
3619 // Lower quadword shuffled.
3620 for (unsigned i = 8; i != 12; ++i)
3621 if (!isUndefOrInRange(Mask[i], 8, 12))
3622 return false;
3623 }
3624
Rafael Espindola15684b22009-04-24 12:40:33 +00003625 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003626}
3627
Nate Begemana09008b2009-10-19 02:17:23 +00003628/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3629/// is suitable for input to PALIGNR.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003630static bool isPALIGNRMask(ArrayRef<int> Mask, MVT VT,
Craig Topper0e2037b2012-01-20 05:53:00 +00003631 const X86Subtarget *Subtarget) {
Craig Topper5a529e42013-01-18 06:44:29 +00003632 if ((VT.is128BitVector() && !Subtarget->hasSSSE3()) ||
3633 (VT.is256BitVector() && !Subtarget->hasInt256()))
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003634 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003635
Craig Topper0e2037b2012-01-20 05:53:00 +00003636 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003637 unsigned NumLanes = VT.is512BitVector() ? 1: VT.getSizeInBits()/128;
Craig Topper0e2037b2012-01-20 05:53:00 +00003638 unsigned NumLaneElts = NumElts/NumLanes;
3639
3640 // Do not handle 64-bit element shuffles with palignr.
3641 if (NumLaneElts == 2)
Nate Begemana09008b2009-10-19 02:17:23 +00003642 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003643
Craig Topper0e2037b2012-01-20 05:53:00 +00003644 for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3645 unsigned i;
3646 for (i = 0; i != NumLaneElts; ++i) {
3647 if (Mask[i+l] >= 0)
3648 break;
3649 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00003650
Craig Topper0e2037b2012-01-20 05:53:00 +00003651 // Lane is all undef, go to next lane
3652 if (i == NumLaneElts)
3653 continue;
Nate Begemana09008b2009-10-19 02:17:23 +00003654
Craig Topper0e2037b2012-01-20 05:53:00 +00003655 int Start = Mask[i+l];
Nate Begemana09008b2009-10-19 02:17:23 +00003656
Craig Topper0e2037b2012-01-20 05:53:00 +00003657 // Make sure its in this lane in one of the sources
3658 if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3659 !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
Nate Begemana09008b2009-10-19 02:17:23 +00003660 return false;
Craig Topper0e2037b2012-01-20 05:53:00 +00003661
3662 // If not lane 0, then we must match lane 0
3663 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3664 return false;
3665
3666 // Correct second source to be contiguous with first source
3667 if (Start >= (int)NumElts)
3668 Start -= NumElts - NumLaneElts;
3669
3670 // Make sure we're shifting in the right direction.
3671 if (Start <= (int)(i+l))
3672 return false;
3673
3674 Start -= i;
3675
3676 // Check the rest of the elements to see if they are consecutive.
3677 for (++i; i != NumLaneElts; ++i) {
3678 int Idx = Mask[i+l];
3679
3680 // Make sure its in this lane
3681 if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3682 !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3683 return false;
3684
3685 // If not lane 0, then we must match lane 0
3686 if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3687 return false;
3688
3689 if (Idx >= (int)NumElts)
3690 Idx -= NumElts - NumLaneElts;
3691
3692 if (!isUndefOrEqual(Idx, Start+i))
3693 return false;
3694
3695 }
Nate Begemana09008b2009-10-19 02:17:23 +00003696 }
Craig Topper0e2037b2012-01-20 05:53:00 +00003697
Nate Begemana09008b2009-10-19 02:17:23 +00003698 return true;
3699}
3700
Craig Topper1a7700a2012-01-19 08:19:12 +00003701/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3702/// the two vector operands have swapped position.
3703static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3704 unsigned NumElems) {
3705 for (unsigned i = 0; i != NumElems; ++i) {
3706 int idx = Mask[i];
3707 if (idx < 0)
3708 continue;
3709 else if (idx < (int)NumElems)
3710 Mask[i] = idx + NumElems;
3711 else
3712 Mask[i] = idx - NumElems;
3713 }
3714}
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003715
Craig Topper1a7700a2012-01-19 08:19:12 +00003716/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3717/// specifies a shuffle of elements that is suitable for input to 128/256-bit
3718/// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3719/// reverse of what x86 shuffles want.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003720static bool isSHUFPMask(ArrayRef<int> Mask, MVT VT, bool Commuted = false) {
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003721
Craig Topper1a7700a2012-01-19 08:19:12 +00003722 unsigned NumElems = VT.getVectorNumElements();
3723 unsigned NumLanes = VT.getSizeInBits()/128;
3724 unsigned NumLaneElems = NumElems/NumLanes;
3725
3726 if (NumLaneElems != 2 && NumLaneElems != 4)
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003727 return false;
3728
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003729 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
3730 bool symetricMaskRequired =
3731 (VT.getSizeInBits() >= 256) && (EltSize == 32);
3732
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003733 // VSHUFPSY divides the resulting vector into 4 chunks.
3734 // The sources are also splitted into 4 chunks, and each destination
3735 // chunk must come from a different source chunk.
3736 //
3737 // SRC1 => X7 X6 X5 X4 X3 X2 X1 X0
3738 // SRC2 => Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y9
3739 //
3740 // DST => Y7..Y4, Y7..Y4, X7..X4, X7..X4,
3741 // Y3..Y0, Y3..Y0, X3..X0, X3..X0
3742 //
Craig Topper9d7025b2011-11-27 21:41:12 +00003743 // VSHUFPDY divides the resulting vector into 4 chunks.
3744 // The sources are also splitted into 4 chunks, and each destination
3745 // chunk must come from a different source chunk.
3746 //
3747 // SRC1 => X3 X2 X1 X0
3748 // SRC2 => Y3 Y2 Y1 Y0
3749 //
3750 // DST => Y3..Y2, X3..X2, Y1..Y0, X1..X0
3751 //
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003752 SmallVector<int, 4> MaskVal(NumLaneElems, -1);
Craig Topper1a7700a2012-01-19 08:19:12 +00003753 unsigned HalfLaneElems = NumLaneElems/2;
3754 for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3755 for (unsigned i = 0; i != NumLaneElems; ++i) {
3756 int Idx = Mask[i+l];
3757 unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3758 if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3759 return false;
3760 // For VSHUFPSY, the mask of the second half must be the same as the
3761 // first but with the appropriate offsets. This works in the same way as
3762 // VPERMILPS works with masks.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003763 if (!symetricMaskRequired || Idx < 0)
Craig Topper1a7700a2012-01-19 08:19:12 +00003764 continue;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00003765 if (MaskVal[i] < 0) {
3766 MaskVal[i] = Idx - l;
3767 continue;
3768 }
3769 if ((signed)(Idx - l) != MaskVal[i])
Craig Topper1a7700a2012-01-19 08:19:12 +00003770 return false;
Craig Topper1ff73d72011-12-06 04:59:07 +00003771 }
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003772 }
3773
3774 return true;
3775}
3776
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003777/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3778/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003779static bool isMOVHLPSMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003780 if (!VT.is128BitVector())
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003781 return false;
3782
Craig Topper7a9a28b2012-08-12 02:23:29 +00003783 unsigned NumElems = VT.getVectorNumElements();
3784
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003785 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003786 return false;
3787
Evan Cheng2064a2b2006-03-28 06:50:32 +00003788 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Craig Topperdd637ae2012-02-19 05:41:45 +00003789 return isUndefOrEqual(Mask[0], 6) &&
3790 isUndefOrEqual(Mask[1], 7) &&
3791 isUndefOrEqual(Mask[2], 2) &&
3792 isUndefOrEqual(Mask[3], 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003793}
3794
Nate Begeman0b10b912009-11-07 23:17:15 +00003795/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3796/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3797/// <2, 3, 2, 3>
Craig Toppercc60bbc2013-08-14 05:58:39 +00003798static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003799 if (!VT.is128BitVector())
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003800 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003801
Craig Topper7a9a28b2012-08-12 02:23:29 +00003802 unsigned NumElems = VT.getVectorNumElements();
3803
Nate Begeman0b10b912009-11-07 23:17:15 +00003804 if (NumElems != 4)
3805 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003806
Craig Topperdd637ae2012-02-19 05:41:45 +00003807 return isUndefOrEqual(Mask[0], 2) &&
3808 isUndefOrEqual(Mask[1], 3) &&
3809 isUndefOrEqual(Mask[2], 2) &&
3810 isUndefOrEqual(Mask[3], 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003811}
3812
Evan Cheng5ced1d82006-04-06 23:23:56 +00003813/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3814/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003815static bool isMOVLPMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003816 if (!VT.is128BitVector())
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00003817 return false;
3818
Craig Topperdd637ae2012-02-19 05:41:45 +00003819 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003820
Evan Cheng5ced1d82006-04-06 23:23:56 +00003821 if (NumElems != 2 && NumElems != 4)
3822 return false;
3823
Chad Rosier238ae312012-04-30 17:47:15 +00003824 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003825 if (!isUndefOrEqual(Mask[i], i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003826 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003827
Chad Rosier238ae312012-04-30 17:47:15 +00003828 for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003829 if (!isUndefOrEqual(Mask[i], i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003830 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003831
3832 return true;
3833}
3834
Nate Begeman0b10b912009-11-07 23:17:15 +00003835/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3836/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003837static bool isMOVLHPSMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00003838 if (!VT.is128BitVector())
3839 return false;
3840
Craig Topperdd637ae2012-02-19 05:41:45 +00003841 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003842
Craig Topper7a9a28b2012-08-12 02:23:29 +00003843 if (NumElems != 2 && NumElems != 4)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003844 return false;
3845
Chad Rosier238ae312012-04-30 17:47:15 +00003846 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00003847 if (!isUndefOrEqual(Mask[i], i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003848 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003849
Chad Rosier238ae312012-04-30 17:47:15 +00003850 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3851 if (!isUndefOrEqual(Mask[i + e], i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003852 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003853
3854 return true;
3855}
3856
Elena Demikhovsky15963732012-06-26 08:04:10 +00003857//
3858// Some special combinations that can be optimized.
3859//
3860static
3861SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3862 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00003863 MVT VT = SVOp->getSimpleValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00003864 SDLoc dl(SVOp);
Elena Demikhovsky15963732012-06-26 08:04:10 +00003865
3866 if (VT != MVT::v8i32 && VT != MVT::v8f32)
3867 return SDValue();
3868
3869 ArrayRef<int> Mask = SVOp->getMask();
3870
3871 // These are the special masks that may be optimized.
3872 static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3873 static const int MaskToOptimizeOdd[] = {1, 9, 3, 11, 5, 13, 7, 15};
3874 bool MatchEvenMask = true;
3875 bool MatchOddMask = true;
3876 for (int i=0; i<8; ++i) {
3877 if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3878 MatchEvenMask = false;
3879 if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3880 MatchOddMask = false;
3881 }
Elena Demikhovsky15963732012-06-26 08:04:10 +00003882
Elena Demikhovsky32510202012-09-04 12:49:02 +00003883 if (!MatchEvenMask && !MatchOddMask)
Elena Demikhovsky15963732012-06-26 08:04:10 +00003884 return SDValue();
Michael Liao471b9172012-10-03 23:43:52 +00003885
Elena Demikhovsky15963732012-06-26 08:04:10 +00003886 SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3887
Elena Demikhovsky32510202012-09-04 12:49:02 +00003888 SDValue Op0 = SVOp->getOperand(0);
3889 SDValue Op1 = SVOp->getOperand(1);
3890
3891 if (MatchEvenMask) {
3892 // Shift the second operand right to 32 bits.
3893 static const int ShiftRightMask[] = {-1, 0, -1, 2, -1, 4, -1, 6 };
3894 Op1 = DAG.getVectorShuffle(VT, dl, Op1, UndefNode, ShiftRightMask);
3895 } else {
3896 // Shift the first operand left to 32 bits.
3897 static const int ShiftLeftMask[] = {1, -1, 3, -1, 5, -1, 7, -1 };
3898 Op0 = DAG.getVectorShuffle(VT, dl, Op0, UndefNode, ShiftLeftMask);
3899 }
3900 static const int BlendMask[] = {0, 9, 2, 11, 4, 13, 6, 15};
3901 return DAG.getVectorShuffle(VT, dl, Op0, Op1, BlendMask);
Elena Demikhovsky15963732012-06-26 08:04:10 +00003902}
3903
Evan Cheng0038e592006-03-28 00:39:58 +00003904/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3905/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003906static bool isUNPCKLMask(ArrayRef<int> Mask, MVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003907 bool HasInt256, bool V2IsSplat = false) {
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003908
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003909 assert(VT.getSizeInBits() >= 128 &&
3910 "Unsupported vector type for unpckl");
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003911
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003912 // AVX defines UNPCK* to operate independently on 128-bit lanes.
3913 unsigned NumLanes;
3914 unsigned NumOf256BitLanes;
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00003915 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003916 if (VT.is256BitVector()) {
3917 if (NumElts != 4 && NumElts != 8 &&
3918 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng0038e592006-03-28 00:39:58 +00003919 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003920 NumLanes = 2;
3921 NumOf256BitLanes = 1;
3922 } else if (VT.is512BitVector()) {
3923 assert(VT.getScalarType().getSizeInBits() >= 32 &&
3924 "Unsupported vector type for unpckh");
3925 NumLanes = 2;
3926 NumOf256BitLanes = 2;
3927 } else {
3928 NumLanes = 1;
3929 NumOf256BitLanes = 1;
3930 }
Eric Christopherfd179292009-08-27 18:07:15 +00003931
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003932 unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3933 unsigned NumLaneElts = NumEltsInStride/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003934
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003935 for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3936 for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3937 for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
3938 int BitI = Mask[l256*NumEltsInStride+l+i];
3939 int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3940 if (!isUndefOrEqual(BitI, j+l256*NumElts))
David Greenea20244d2011-03-02 17:23:43 +00003941 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003942 if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3943 return false;
3944 if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
David Greenea20244d2011-03-02 17:23:43 +00003945 return false;
3946 }
Evan Cheng39623da2006-04-20 08:58:49 +00003947 }
Evan Cheng0038e592006-03-28 00:39:58 +00003948 }
Evan Cheng0038e592006-03-28 00:39:58 +00003949 return true;
3950}
3951
Evan Cheng4fcb9222006-03-28 02:43:26 +00003952/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3953/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Craig Toppercc60bbc2013-08-14 05:58:39 +00003954static bool isUNPCKHMask(ArrayRef<int> Mask, MVT VT,
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00003955 bool HasInt256, bool V2IsSplat = false) {
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003956 assert(VT.getSizeInBits() >= 128 &&
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003957 "Unsupported vector type for unpckh");
3958
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003959 // AVX defines UNPCK* to operate independently on 128-bit lanes.
3960 unsigned NumLanes;
3961 unsigned NumOf256BitLanes;
3962 unsigned NumElts = VT.getVectorNumElements();
3963 if (VT.is256BitVector()) {
3964 if (NumElts != 4 && NumElts != 8 &&
3965 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng4fcb9222006-03-28 02:43:26 +00003966 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003967 NumLanes = 2;
3968 NumOf256BitLanes = 1;
3969 } else if (VT.is512BitVector()) {
3970 assert(VT.getScalarType().getSizeInBits() >= 32 &&
3971 "Unsupported vector type for unpckh");
3972 NumLanes = 2;
3973 NumOf256BitLanes = 2;
3974 } else {
3975 NumLanes = 1;
3976 NumOf256BitLanes = 1;
3977 }
Eric Christopherfd179292009-08-27 18:07:15 +00003978
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003979 unsigned NumEltsInStride = NumElts/NumOf256BitLanes;
3980 unsigned NumLaneElts = NumEltsInStride/NumLanes;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003981
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003982 for (unsigned l256 = 0; l256 < NumOf256BitLanes; l256 += 1) {
3983 for (unsigned l = 0; l != NumEltsInStride; l += NumLaneElts) {
3984 for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
3985 int BitI = Mask[l256*NumEltsInStride+l+i];
3986 int BitI1 = Mask[l256*NumEltsInStride+l+i+1];
3987 if (!isUndefOrEqual(BitI, j+l256*NumElts))
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003988 return false;
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00003989 if (V2IsSplat && !isUndefOrEqual(BitI1, NumElts))
3990 return false;
3991 if (!isUndefOrEqual(BitI1, j+l256*NumElts+NumEltsInStride))
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003992 return false;
3993 }
Evan Cheng39623da2006-04-20 08:58:49 +00003994 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003995 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003996 return true;
3997}
3998
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003999/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
4000/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
4001/// <0, 0, 1, 1>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004002static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00004003 unsigned NumElts = VT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00004004 bool Is256BitVec = VT.is256BitVector();
Craig Topper94438ba2011-12-16 08:06:31 +00004005
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004006 if (VT.is512BitVector())
4007 return false;
Craig Topper94438ba2011-12-16 08:06:31 +00004008 assert((VT.is128BitVector() || VT.is256BitVector()) &&
4009 "Unsupported vector type for unpckh");
4010
Craig Topper5a529e42013-01-18 06:44:29 +00004011 if (Is256BitVec && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004012 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00004013 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004014
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004015 // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
4016 // FIXME: Need a better way to get rid of this, there's no latency difference
4017 // between UNPCKLPD and MOVDDUP, the later should always be checked first and
4018 // the former later. We should also remove the "_undef" special mask.
Craig Topper5a529e42013-01-18 06:44:29 +00004019 if (NumElts == 4 && Is256BitVec)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004020 return false;
4021
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00004022 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4023 // independently on 128-bit lanes.
Craig Topper94438ba2011-12-16 08:06:31 +00004024 unsigned NumLanes = VT.getSizeInBits()/128;
4025 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00004026
Craig Topper59235472013-08-06 07:23:12 +00004027 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4028 for (unsigned i = 0, j = l; i != NumLaneElts; i += 2, ++j) {
4029 int BitI = Mask[l+i];
4030 int BitI1 = Mask[l+i+1];
David Greenea20244d2011-03-02 17:23:43 +00004031
4032 if (!isUndefOrEqual(BitI, j))
4033 return false;
4034 if (!isUndefOrEqual(BitI1, j))
4035 return false;
4036 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00004037 }
David Greenea20244d2011-03-02 17:23:43 +00004038
Rafael Espindola15684b22009-04-24 12:40:33 +00004039 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00004040}
4041
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004042/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
4043/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
4044/// <2, 2, 3, 3>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004045static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, MVT VT, bool HasInt256) {
Craig Topper94438ba2011-12-16 08:06:31 +00004046 unsigned NumElts = VT.getVectorNumElements();
4047
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004048 if (VT.is512BitVector())
4049 return false;
4050
Craig Topper94438ba2011-12-16 08:06:31 +00004051 assert((VT.is128BitVector() || VT.is256BitVector()) &&
4052 "Unsupported vector type for unpckh");
4053
Craig Topper5a529e42013-01-18 06:44:29 +00004054 if (VT.is256BitVector() && NumElts != 4 && NumElts != 8 &&
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004055 (!HasInt256 || (NumElts != 16 && NumElts != 32)))
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004056 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004057
Craig Topper94438ba2011-12-16 08:06:31 +00004058 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
4059 // independently on 128-bit lanes.
4060 unsigned NumLanes = VT.getSizeInBits()/128;
4061 unsigned NumLaneElts = NumElts/NumLanes;
4062
Craig Topper59235472013-08-06 07:23:12 +00004063 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
4064 for (unsigned i = 0, j = l+NumLaneElts/2; i != NumLaneElts; i += 2, ++j) {
4065 int BitI = Mask[l+i];
4066 int BitI1 = Mask[l+i+1];
Craig Topper94438ba2011-12-16 08:06:31 +00004067 if (!isUndefOrEqual(BitI, j))
4068 return false;
4069 if (!isUndefOrEqual(BitI1, j))
4070 return false;
4071 }
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004072 }
Rafael Espindola15684b22009-04-24 12:40:33 +00004073 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00004074}
4075
Evan Cheng017dcc62006-04-21 01:05:10 +00004076/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
4077/// specifies a shuffle of elements that is suitable for input to MOVSS,
4078/// MOVSD, and MOVD, i.e. setting the lowest element.
Benjamin Kramered4c8c62012-01-15 13:16:05 +00004079static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00004080 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004081 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00004082 if (!VT.is128BitVector())
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00004083 return false;
Eli Friedman10415532009-06-06 06:05:10 +00004084
Craig Topperc612d792012-01-02 09:17:37 +00004085 unsigned NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004086
Nate Begeman9008ca62009-04-27 18:41:29 +00004087 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004088 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004089
Craig Topperc612d792012-01-02 09:17:37 +00004090 for (unsigned i = 1; i != NumElts; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004091 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004092 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004093
Evan Chengd6d1cbd2006-04-11 00:19:04 +00004094 return true;
4095}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00004096
Craig Topper70b883b2011-11-28 10:14:51 +00004097/// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004098/// as permutations between 128-bit chunks or halves. As an example: this
4099/// shuffle bellow:
4100/// vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
4101/// The first half comes from the second half of V1 and the second half from the
4102/// the second half of V2.
Craig Topper8d725b92013-08-15 05:33:45 +00004103static bool isVPERM2X128Mask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004104 if (!HasFp256 || !VT.is256BitVector())
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004105 return false;
4106
4107 // The shuffle result is divided into half A and half B. In total the two
4108 // sources have 4 halves, namely: C, D, E, F. The final values of A and
4109 // B must come from C, D, E or F.
Craig Topperc612d792012-01-02 09:17:37 +00004110 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004111 bool MatchA = false, MatchB = false;
4112
4113 // Check if A comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00004114 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004115 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
4116 MatchA = true;
4117 break;
4118 }
4119 }
4120
4121 // Check if B comes from one of C, D, E, F.
Craig Topperc612d792012-01-02 09:17:37 +00004122 for (unsigned Half = 0; Half != 4; ++Half) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004123 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
4124 MatchB = true;
4125 break;
4126 }
4127 }
4128
4129 return MatchA && MatchB;
4130}
4131
Craig Topper70b883b2011-11-28 10:14:51 +00004132/// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
4133/// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
Craig Topperd93e4c32011-12-11 19:12:35 +00004134static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004135 MVT VT = SVOp->getSimpleValueType(0);
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004136
Craig Topperc612d792012-01-02 09:17:37 +00004137 unsigned HalfSize = VT.getVectorNumElements()/2;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004138
Craig Topperc612d792012-01-02 09:17:37 +00004139 unsigned FstHalf = 0, SndHalf = 0;
4140 for (unsigned i = 0; i < HalfSize; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004141 if (SVOp->getMaskElt(i) > 0) {
4142 FstHalf = SVOp->getMaskElt(i)/HalfSize;
4143 break;
4144 }
4145 }
Craig Topperc612d792012-01-02 09:17:37 +00004146 for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004147 if (SVOp->getMaskElt(i) > 0) {
4148 SndHalf = SVOp->getMaskElt(i)/HalfSize;
4149 break;
4150 }
4151 }
4152
4153 return (FstHalf | (SndHalf << 4));
4154}
4155
Craig Topperd36e1ef2013-08-15 08:38:25 +00004156// Symetric in-lane mask. Each lane has 4 elements (for imm8)
Craig Topper8d725b92013-08-15 05:33:45 +00004157static bool isPermImmMask(ArrayRef<int> Mask, MVT VT, unsigned& Imm8) {
Craig Topperd36e1ef2013-08-15 08:38:25 +00004158 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4159 if (EltSize < 32)
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004160 return false;
4161
Craig Topperd36e1ef2013-08-15 08:38:25 +00004162 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004163 Imm8 = 0;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004164 if (VT.is128BitVector() || (VT.is256BitVector() && EltSize == 64)) {
4165 for (unsigned i = 0; i != NumElts; ++i) {
4166 if (Mask[i] < 0)
4167 continue;
4168 Imm8 |= Mask[i] << (i*2);
4169 }
4170 return true;
4171 }
4172
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004173 unsigned LaneSize = 4;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004174 SmallVector<int, 4> MaskVal(LaneSize, -1);
4175
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004176 for (unsigned l = 0; l != NumElts; l += LaneSize) {
4177 for (unsigned i = 0; i != LaneSize; ++i) {
4178 if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
4179 return false;
Craig Topperd36e1ef2013-08-15 08:38:25 +00004180 if (Mask[i+l] < 0)
4181 continue;
4182 if (MaskVal[i] < 0) {
4183 MaskVal[i] = Mask[i+l] - l;
4184 Imm8 |= MaskVal[i] << (i*2);
4185 continue;
4186 }
4187 if (Mask[i+l] != (signed)(MaskVal[i]+l))
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004188 return false;
4189 }
4190 }
4191 return true;
4192}
4193
Craig Topper70b883b2011-11-28 10:14:51 +00004194/// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004195/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
4196/// Note that VPERMIL mask matching is different depending whether theunderlying
4197/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
4198/// to the same elements of the low, but to the higher half of the source.
4199/// In VPERMILPD the two lanes could be shuffled independently of each other
Craig Topperdbd98a42012-02-07 06:28:42 +00004200/// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004201static bool isVPERMILPMask(ArrayRef<int> Mask, MVT VT) {
4202 unsigned EltSize = VT.getVectorElementType().getSizeInBits();
4203 if (VT.getSizeInBits() < 256 || EltSize < 32)
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004204 return false;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004205 bool symetricMaskRequired = (EltSize == 32);
Craig Topperc612d792012-01-02 09:17:37 +00004206 unsigned NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004207
Craig Topperc612d792012-01-02 09:17:37 +00004208 unsigned NumLanes = VT.getSizeInBits()/128;
4209 unsigned LaneSize = NumElts/NumLanes;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004210 // 2 or 4 elements in one lane
4211
4212 SmallVector<int, 4> ExpectedMaskVal(LaneSize, -1);
Craig Topper1a7700a2012-01-19 08:19:12 +00004213 for (unsigned l = 0; l != NumElts; l += LaneSize) {
Craig Topperc612d792012-01-02 09:17:37 +00004214 for (unsigned i = 0; i != LaneSize; ++i) {
Craig Topper1a7700a2012-01-19 08:19:12 +00004215 if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
Craig Topper70b883b2011-11-28 10:14:51 +00004216 return false;
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004217 if (symetricMaskRequired) {
4218 if (ExpectedMaskVal[i] < 0 && Mask[i+l] >= 0) {
4219 ExpectedMaskVal[i] = Mask[i+l] - l;
4220 continue;
4221 }
4222 if (!isUndefOrEqual(Mask[i+l], ExpectedMaskVal[i]+l))
4223 return false;
4224 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004225 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004226 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004227 return true;
4228}
4229
Craig Topper5aaffa82012-02-19 02:53:47 +00004230/// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
Evan Cheng017dcc62006-04-21 01:05:10 +00004231/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00004232/// element of vector 2 and the other elements to come from vector 1 in order.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004233static bool isCommutedMOVLMask(ArrayRef<int> Mask, MVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00004234 bool V2IsSplat = false, bool V2IsUndef = false) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004235 if (!VT.is128BitVector())
Craig Topper97327dc2012-03-18 22:50:10 +00004236 return false;
Craig Topper7a9a28b2012-08-12 02:23:29 +00004237
4238 unsigned NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00004239 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00004240 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004241
Nate Begeman9008ca62009-04-27 18:41:29 +00004242 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00004243 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004244
Craig Topperc612d792012-01-02 09:17:37 +00004245 for (unsigned i = 1; i != NumOps; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004246 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
4247 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
4248 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00004249 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00004250
Evan Cheng39623da2006-04-20 08:58:49 +00004251 return true;
4252}
4253
Evan Chengd9539472006-04-14 21:59:03 +00004254/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4255/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004256/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004257static bool isMOVSHDUPMask(ArrayRef<int> Mask, MVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00004258 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00004259 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00004260 return false;
4261
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004262 unsigned NumElems = VT.getVectorNumElements();
4263
Craig Topper5a529e42013-01-18 06:44:29 +00004264 if ((VT.is128BitVector() && NumElems != 4) ||
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004265 (VT.is256BitVector() && NumElems != 8) ||
4266 (VT.is512BitVector() && NumElems != 16))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004267 return false;
4268
4269 // "i+1" is the value the indexed mask element must have
Craig Topperdd637ae2012-02-19 05:41:45 +00004270 for (unsigned i = 0; i != NumElems; i += 2)
4271 if (!isUndefOrEqual(Mask[i], i+1) ||
4272 !isUndefOrEqual(Mask[i+1], i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00004273 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004274
4275 return true;
Evan Chengd9539472006-04-14 21:59:03 +00004276}
4277
4278/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4279/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004280/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
Craig Toppercc60bbc2013-08-14 05:58:39 +00004281static bool isMOVSLDUPMask(ArrayRef<int> Mask, MVT VT,
Craig Topper5aaffa82012-02-19 02:53:47 +00004282 const X86Subtarget *Subtarget) {
Craig Topperd0a31172012-01-10 06:37:29 +00004283 if (!Subtarget->hasSSE3())
Evan Chengd9539472006-04-14 21:59:03 +00004284 return false;
4285
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004286 unsigned NumElems = VT.getVectorNumElements();
4287
Craig Topper5a529e42013-01-18 06:44:29 +00004288 if ((VT.is128BitVector() && NumElems != 4) ||
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00004289 (VT.is256BitVector() && NumElems != 8) ||
4290 (VT.is512BitVector() && NumElems != 16))
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004291 return false;
4292
4293 // "i" is the value the indexed mask element must have
Craig Topperc612d792012-01-02 09:17:37 +00004294 for (unsigned i = 0; i != NumElems; i += 2)
Craig Topperdd637ae2012-02-19 05:41:45 +00004295 if (!isUndefOrEqual(Mask[i], i) ||
4296 !isUndefOrEqual(Mask[i+1], i))
Nate Begeman9008ca62009-04-27 18:41:29 +00004297 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00004298
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00004299 return true;
Evan Chengd9539472006-04-14 21:59:03 +00004300}
4301
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004302/// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4303/// specifies a shuffle of elements that is suitable for input to 256-bit
4304/// version of MOVDDUP.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004305static bool isMOVDDUPYMask(ArrayRef<int> Mask, MVT VT, bool HasFp256) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004306 if (!HasFp256 || !VT.is256BitVector())
Craig Topper7a9a28b2012-08-12 02:23:29 +00004307 return false;
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004308
Craig Topper7a9a28b2012-08-12 02:23:29 +00004309 unsigned NumElts = VT.getVectorNumElements();
4310 if (NumElts != 4)
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004311 return false;
4312
Craig Topperc612d792012-01-02 09:17:37 +00004313 for (unsigned i = 0; i != NumElts/2; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00004314 if (!isUndefOrEqual(Mask[i], 0))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004315 return false;
Craig Topperc612d792012-01-02 09:17:37 +00004316 for (unsigned i = NumElts/2; i != NumElts; ++i)
Craig Topperbeabc6c2011-12-05 06:56:46 +00004317 if (!isUndefOrEqual(Mask[i], NumElts/2))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00004318 return false;
4319 return true;
4320}
4321
Evan Cheng0b457f02008-09-25 20:50:48 +00004322/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00004323/// specifies a shuffle of elements that is suitable for input to 128-bit
4324/// version of MOVDDUP.
Craig Toppercc60bbc2013-08-14 05:58:39 +00004325static bool isMOVDDUPMask(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004326 if (!VT.is128BitVector())
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00004327 return false;
4328
Craig Topperc612d792012-01-02 09:17:37 +00004329 unsigned e = VT.getVectorNumElements() / 2;
4330 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004331 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00004332 return false;
Craig Topperc612d792012-01-02 09:17:37 +00004333 for (unsigned i = 0; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004334 if (!isUndefOrEqual(Mask[e+i], i))
Evan Cheng0b457f02008-09-25 20:50:48 +00004335 return false;
4336 return true;
4337}
4338
Elena Demikhovsky83952512013-07-31 11:35:14 +00004339/// isVEXTRACTIndex - Return true if the specified
David Greenec38a03e2011-02-03 15:50:00 +00004340/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
Elena Demikhovsky83952512013-07-31 11:35:14 +00004341/// suitable for instruction that extract 128 or 256 bit vectors
4342static bool isVEXTRACTIndex(SDNode *N, unsigned vecWidth) {
4343 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
David Greenec38a03e2011-02-03 15:50:00 +00004344 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4345 return false;
4346
Elena Demikhovsky83952512013-07-31 11:35:14 +00004347 // The index should be aligned on a vecWidth-bit boundary.
David Greenec38a03e2011-02-03 15:50:00 +00004348 uint64_t Index =
4349 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4350
Craig Topper5a0910b2013-08-15 02:33:50 +00004351 MVT VT = N->getSimpleValueType(0);
Craig Topper5141d972013-01-18 08:41:28 +00004352 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00004353 bool Result = (Index * ElSize) % vecWidth == 0;
David Greenec38a03e2011-02-03 15:50:00 +00004354
4355 return Result;
4356}
4357
Elena Demikhovsky83952512013-07-31 11:35:14 +00004358/// isVINSERTIndex - Return true if the specified INSERT_SUBVECTOR
David Greeneccacdc12011-02-04 16:08:29 +00004359/// operand specifies a subvector insert that is suitable for input to
Elena Demikhovsky83952512013-07-31 11:35:14 +00004360/// insertion of 128 or 256-bit subvectors
4361static bool isVINSERTIndex(SDNode *N, unsigned vecWidth) {
4362 assert((vecWidth == 128 || vecWidth == 256) && "Unexpected vector width");
David Greeneccacdc12011-02-04 16:08:29 +00004363 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4364 return false;
Elena Demikhovsky83952512013-07-31 11:35:14 +00004365 // The index should be aligned on a vecWidth-bit boundary.
David Greeneccacdc12011-02-04 16:08:29 +00004366 uint64_t Index =
4367 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4368
Craig Topper5a0910b2013-08-15 02:33:50 +00004369 MVT VT = N->getSimpleValueType(0);
Craig Topper5141d972013-01-18 08:41:28 +00004370 unsigned ElSize = VT.getVectorElementType().getSizeInBits();
Elena Demikhovsky83952512013-07-31 11:35:14 +00004371 bool Result = (Index * ElSize) % vecWidth == 0;
David Greeneccacdc12011-02-04 16:08:29 +00004372
4373 return Result;
4374}
4375
Elena Demikhovsky83952512013-07-31 11:35:14 +00004376bool X86::isVINSERT128Index(SDNode *N) {
4377 return isVINSERTIndex(N, 128);
4378}
4379
4380bool X86::isVINSERT256Index(SDNode *N) {
4381 return isVINSERTIndex(N, 256);
4382}
4383
4384bool X86::isVEXTRACT128Index(SDNode *N) {
4385 return isVEXTRACTIndex(N, 128);
4386}
4387
4388bool X86::isVEXTRACT256Index(SDNode *N) {
4389 return isVEXTRACTIndex(N, 256);
4390}
4391
Evan Cheng63d33002006-03-22 08:01:21 +00004392/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004393/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Craig Topper1a7700a2012-01-19 08:19:12 +00004394/// Handles 128-bit and 256-bit.
Craig Topper5aaffa82012-02-19 02:53:47 +00004395static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004396 MVT VT = N->getSimpleValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00004397
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004398 assert((VT.getSizeInBits() >= 128) &&
Craig Topper1a7700a2012-01-19 08:19:12 +00004399 "Unsupported vector type for PSHUF/SHUFP");
4400
4401 // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
4402 // independently on 128-bit lanes.
4403 unsigned NumElts = VT.getVectorNumElements();
4404 unsigned NumLanes = VT.getSizeInBits()/128;
4405 unsigned NumLaneElts = NumElts/NumLanes;
4406
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004407 assert((NumLaneElts == 2 || NumLaneElts == 4 || NumLaneElts == 8) &&
4408 "Only supports 2, 4 or 8 elements per lane");
Craig Topper1a7700a2012-01-19 08:19:12 +00004409
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004410 unsigned Shift = (NumLaneElts >= 4) ? 1 : 0;
Evan Chengb9df0ca2006-03-22 02:53:00 +00004411 unsigned Mask = 0;
Craig Topper1a7700a2012-01-19 08:19:12 +00004412 for (unsigned i = 0; i != NumElts; ++i) {
4413 int Elt = N->getMaskElt(i);
4414 if (Elt < 0) continue;
Craig Topper6b28d352012-05-03 07:12:59 +00004415 Elt &= NumLaneElts - 1;
4416 unsigned ShAmt = (i << Shift) % 8;
Craig Topper1a7700a2012-01-19 08:19:12 +00004417 Mask |= Elt << ShAmt;
Evan Cheng36b27f32006-03-28 23:41:33 +00004418 }
Craig Topper1a7700a2012-01-19 08:19:12 +00004419
Evan Cheng63d33002006-03-22 08:01:21 +00004420 return Mask;
4421}
4422
Evan Cheng506d3df2006-03-29 23:07:14 +00004423/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004424/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004425static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004426 MVT VT = N->getSimpleValueType(0);
Craig Topper6b28d352012-05-03 07:12:59 +00004427
4428 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4429 "Unsupported vector type for PSHUFHW");
4430
4431 unsigned NumElts = VT.getVectorNumElements();
4432
Evan Cheng506d3df2006-03-29 23:07:14 +00004433 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004434 for (unsigned l = 0; l != NumElts; l += 8) {
4435 // 8 nodes per lane, but we only care about the last 4.
4436 for (unsigned i = 0; i < 4; ++i) {
4437 int Elt = N->getMaskElt(l+i+4);
4438 if (Elt < 0) continue;
4439 Elt &= 0x3; // only 2-bits.
4440 Mask |= Elt << (i * 2);
4441 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004442 }
Craig Topper6b28d352012-05-03 07:12:59 +00004443
Evan Cheng506d3df2006-03-29 23:07:14 +00004444 return Mask;
4445}
4446
4447/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004448/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Craig Topperdd637ae2012-02-19 05:41:45 +00004449static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004450 MVT VT = N->getSimpleValueType(0);
Craig Topper6b28d352012-05-03 07:12:59 +00004451
4452 assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4453 "Unsupported vector type for PSHUFHW");
4454
4455 unsigned NumElts = VT.getVectorNumElements();
4456
Evan Cheng506d3df2006-03-29 23:07:14 +00004457 unsigned Mask = 0;
Craig Topper6b28d352012-05-03 07:12:59 +00004458 for (unsigned l = 0; l != NumElts; l += 8) {
4459 // 8 nodes per lane, but we only care about the first 4.
4460 for (unsigned i = 0; i < 4; ++i) {
4461 int Elt = N->getMaskElt(l+i);
4462 if (Elt < 0) continue;
4463 Elt &= 0x3; // only 2-bits
4464 Mask |= Elt << (i * 2);
4465 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004466 }
Craig Topper6b28d352012-05-03 07:12:59 +00004467
Evan Cheng506d3df2006-03-29 23:07:14 +00004468 return Mask;
4469}
4470
Nate Begemana09008b2009-10-19 02:17:23 +00004471/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4472/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
Craig Topperd93e4c32011-12-11 19:12:35 +00004473static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004474 MVT VT = SVOp->getSimpleValueType(0);
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004475 unsigned EltSize = VT.is512BitVector() ? 1 :
4476 VT.getVectorElementType().getSizeInBits() >> 3;
Nate Begemana09008b2009-10-19 02:17:23 +00004477
Craig Topper0e2037b2012-01-20 05:53:00 +00004478 unsigned NumElts = VT.getVectorNumElements();
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00004479 unsigned NumLanes = VT.is512BitVector() ? 1 : VT.getSizeInBits()/128;
Craig Topper0e2037b2012-01-20 05:53:00 +00004480 unsigned NumLaneElts = NumElts/NumLanes;
4481
4482 int Val = 0;
4483 unsigned i;
4484 for (i = 0; i != NumElts; ++i) {
Nate Begemana09008b2009-10-19 02:17:23 +00004485 Val = SVOp->getMaskElt(i);
4486 if (Val >= 0)
4487 break;
4488 }
Craig Topper0e2037b2012-01-20 05:53:00 +00004489 if (Val >= (int)NumElts)
4490 Val -= NumElts - NumLaneElts;
4491
Eli Friedman63f8dde2011-07-25 21:36:45 +00004492 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00004493 return (Val - i) * EltSize;
4494}
4495
Elena Demikhovsky83952512013-07-31 11:35:14 +00004496static unsigned getExtractVEXTRACTImmediate(SDNode *N, unsigned vecWidth) {
4497 assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
David Greenec38a03e2011-02-03 15:50:00 +00004498 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
Elena Demikhovsky83952512013-07-31 11:35:14 +00004499 llvm_unreachable("Illegal extract subvector for VEXTRACT");
David Greenec38a03e2011-02-03 15:50:00 +00004500
4501 uint64_t Index =
4502 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4503
Craig Topper5a0910b2013-08-15 02:33:50 +00004504 MVT VecVT = N->getOperand(0).getSimpleValueType();
Craig Toppercfcab212013-01-19 08:27:45 +00004505 MVT ElVT = VecVT.getVectorElementType();
David Greenec38a03e2011-02-03 15:50:00 +00004506
Elena Demikhovsky83952512013-07-31 11:35:14 +00004507 unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00004508 return Index / NumElemsPerChunk;
4509}
4510
Elena Demikhovsky83952512013-07-31 11:35:14 +00004511static unsigned getInsertVINSERTImmediate(SDNode *N, unsigned vecWidth) {
4512 assert((vecWidth == 128 || vecWidth == 256) && "Unsupported vector width");
David Greeneccacdc12011-02-04 16:08:29 +00004513 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
Elena Demikhovsky83952512013-07-31 11:35:14 +00004514 llvm_unreachable("Illegal insert subvector for VINSERT");
David Greeneccacdc12011-02-04 16:08:29 +00004515
4516 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00004517 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00004518
Craig Topper5a0910b2013-08-15 02:33:50 +00004519 MVT VecVT = N->getSimpleValueType(0);
Craig Toppercfcab212013-01-19 08:27:45 +00004520 MVT ElVT = VecVT.getVectorElementType();
David Greeneccacdc12011-02-04 16:08:29 +00004521
Elena Demikhovsky83952512013-07-31 11:35:14 +00004522 unsigned NumElemsPerChunk = vecWidth / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00004523 return Index / NumElemsPerChunk;
4524}
4525
Elena Demikhovsky83952512013-07-31 11:35:14 +00004526/// getExtractVEXTRACT128Immediate - Return the appropriate immediate
4527/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4528/// and VINSERTI128 instructions.
4529unsigned X86::getExtractVEXTRACT128Immediate(SDNode *N) {
4530 return getExtractVEXTRACTImmediate(N, 128);
4531}
4532
4533/// getExtractVEXTRACT256Immediate - Return the appropriate immediate
4534/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF64x4
4535/// and VINSERTI64x4 instructions.
4536unsigned X86::getExtractVEXTRACT256Immediate(SDNode *N) {
4537 return getExtractVEXTRACTImmediate(N, 256);
4538}
4539
4540/// getInsertVINSERT128Immediate - Return the appropriate immediate
4541/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4542/// and VINSERTI128 instructions.
4543unsigned X86::getInsertVINSERT128Immediate(SDNode *N) {
4544 return getInsertVINSERTImmediate(N, 128);
4545}
4546
4547/// getInsertVINSERT256Immediate - Return the appropriate immediate
4548/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF46x4
4549/// and VINSERTI64x4 instructions.
4550unsigned X86::getInsertVINSERT256Immediate(SDNode *N) {
4551 return getInsertVINSERTImmediate(N, 256);
4552}
4553
Evan Cheng37b73872009-07-30 08:33:02 +00004554/// isZeroNode - Returns true if Elt is a constant zero or a floating point
4555/// constant +0.0.
4556bool X86::isZeroNode(SDValue Elt) {
Jakub Staszak30fcfc32013-02-16 13:34:26 +00004557 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Elt))
4558 return CN->isNullValue();
4559 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(Elt))
4560 return CFP->getValueAPF().isPosZero();
4561 return false;
Evan Cheng37b73872009-07-30 08:33:02 +00004562}
4563
Nate Begeman9008ca62009-04-27 18:41:29 +00004564/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4565/// their permute mask.
4566static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4567 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004568 MVT VT = SVOp->getSimpleValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004569 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004570 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00004571
Nate Begeman5a5ca152009-04-29 05:20:52 +00004572 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00004573 int Idx = SVOp->getMaskElt(i);
4574 if (Idx >= 0) {
4575 if (Idx < (int)NumElems)
4576 Idx += NumElems;
4577 else
4578 Idx -= NumElems;
4579 }
4580 MaskVec.push_back(Idx);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004581 }
Andrew Trickac6d9be2013-05-25 02:42:55 +00004582 return DAG.getVectorShuffle(VT, SDLoc(SVOp), SVOp->getOperand(1),
Nate Begeman9008ca62009-04-27 18:41:29 +00004583 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004584}
4585
Evan Cheng533a0aa2006-04-19 20:35:22 +00004586/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4587/// match movhlps. The lower half elements should come from upper half of
4588/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004589/// half of V2 (and in order).
Craig Toppercc60bbc2013-08-14 05:58:39 +00004590static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004591 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004592 return false;
4593 if (VT.getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00004594 return false;
4595 for (unsigned i = 0, e = 2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004596 if (!isUndefOrEqual(Mask[i], i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004597 return false;
4598 for (unsigned i = 2; i != 4; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004599 if (!isUndefOrEqual(Mask[i], i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004600 return false;
4601 return true;
4602}
4603
Evan Cheng5ced1d82006-04-06 23:23:56 +00004604/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00004605/// is promoted to a vector. It also returns the LoadSDNode by reference if
4606/// required.
4607static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00004608 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4609 return false;
4610 N = N->getOperand(0).getNode();
4611 if (!ISD::isNON_EXTLoad(N))
4612 return false;
4613 if (LD)
4614 *LD = cast<LoadSDNode>(N);
4615 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004616}
4617
Dan Gohman65fd6562011-11-03 21:49:52 +00004618// Test whether the given value is a vector value which will be legalized
4619// into a load.
4620static bool WillBeConstantPoolLoad(SDNode *N) {
4621 if (N->getOpcode() != ISD::BUILD_VECTOR)
4622 return false;
4623
4624 // Check for any non-constant elements.
4625 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4626 switch (N->getOperand(i).getNode()->getOpcode()) {
4627 case ISD::UNDEF:
4628 case ISD::ConstantFP:
4629 case ISD::Constant:
4630 break;
4631 default:
4632 return false;
4633 }
4634
4635 // Vectors of all-zeros and all-ones are materialized with special
4636 // instructions rather than being loaded.
4637 return !ISD::isBuildVectorAllZeros(N) &&
4638 !ISD::isBuildVectorAllOnes(N);
4639}
4640
Evan Cheng533a0aa2006-04-19 20:35:22 +00004641/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4642/// match movlp{s|d}. The lower half elements should come from lower half of
4643/// V1 (and in order), and the upper half elements should come from the upper
4644/// half of V2 (and in order). And since V1 will become the source of the
4645/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004646static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
Craig Toppercc60bbc2013-08-14 05:58:39 +00004647 ArrayRef<int> Mask, MVT VT) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00004648 if (!VT.is128BitVector())
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004649 return false;
4650
Evan Cheng466685d2006-10-09 20:57:25 +00004651 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004652 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00004653 // Is V2 is a vector load, don't do this transformation. We will try to use
4654 // load folding shufps op.
Dan Gohman65fd6562011-11-03 21:49:52 +00004655 if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
Evan Cheng23425f52006-10-09 21:39:25 +00004656 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004657
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004658 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004659
Evan Cheng533a0aa2006-04-19 20:35:22 +00004660 if (NumElems != 2 && NumElems != 4)
4661 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004662 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004663 if (!isUndefOrEqual(Mask[i], i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004664 return false;
Chad Rosier238ae312012-04-30 17:47:15 +00004665 for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
Craig Topperdd637ae2012-02-19 05:41:45 +00004666 if (!isUndefOrEqual(Mask[i], i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004667 return false;
4668 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004669}
4670
Evan Cheng39623da2006-04-20 08:58:49 +00004671/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4672/// all the same.
4673static bool isSplatVector(SDNode *N) {
4674 if (N->getOpcode() != ISD::BUILD_VECTOR)
4675 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004676
Dan Gohman475871a2008-07-27 21:46:04 +00004677 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00004678 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4679 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00004680 return false;
4681 return true;
4682}
4683
Evan Cheng213d2cf2007-05-17 18:45:50 +00004684/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00004685/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00004686/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00004687static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00004688 SDValue V1 = N->getOperand(0);
4689 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004690 unsigned NumElems = N->getValueType(0).getVectorNumElements();
4691 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004692 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004693 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004694 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00004695 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4696 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004697 if (Opc != ISD::BUILD_VECTOR ||
4698 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00004699 return false;
4700 } else if (Idx >= 0) {
4701 unsigned Opc = V1.getOpcode();
4702 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4703 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004704 if (Opc != ISD::BUILD_VECTOR ||
4705 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00004706 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00004707 }
4708 }
4709 return true;
4710}
4711
4712/// getZeroVector - Returns a vector of specified type with all zero elements.
4713///
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004714static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004715 SelectionDAG &DAG, SDLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004716 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004717
Dale Johannesen0488fb62010-09-30 23:57:10 +00004718 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004719 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00004720 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004721 if (VT.is128BitVector()) { // SSE
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00004722 if (Subtarget->hasSSE2()) { // SSE2
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004723 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4724 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4725 } else { // SSE1
4726 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4727 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4728 }
Craig Topper5a529e42013-01-18 06:44:29 +00004729 } else if (VT.is256BitVector()) { // AVX
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004730 if (Subtarget->hasInt256()) { // AVX2
Craig Topper12216172012-01-13 08:12:35 +00004731 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
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::v8i32, Ops,
4734 array_lengthof(Ops));
Craig Topper12216172012-01-13 08:12:35 +00004735 } else {
4736 // 256-bit logic and arithmetic instructions in AVX are all
4737 // floating-point, no support for integer ops. Emit fp zeroed vectors.
4738 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4739 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004740 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops,
4741 array_lengthof(Ops));
Craig Topper12216172012-01-13 08:12:35 +00004742 }
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00004743 } else if (VT.is512BitVector()) { // AVX-512
4744 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4745 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
4746 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4747 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v16i32, Ops, 16);
Craig Topper9d352402012-04-23 07:24:41 +00004748 } else
4749 llvm_unreachable("Unexpected vector type");
4750
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004751 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004752}
4753
Chris Lattner8a594482007-11-25 00:24:49 +00004754/// getOnesVector - Returns a vector of specified type with all bits set.
Craig Topper745a86b2011-11-19 22:34:59 +00004755/// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4756/// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4757/// Then bitcast to their original type, ensuring they get CSE'd.
Craig Topper45e1c752013-01-20 00:38:18 +00004758static SDValue getOnesVector(MVT VT, bool HasInt256, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00004759 SDLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004760 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004761
Owen Anderson825b72b2009-08-11 20:47:22 +00004762 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Craig Topper745a86b2011-11-19 22:34:59 +00004763 SDValue Vec;
Craig Topper5a529e42013-01-18 06:44:29 +00004764 if (VT.is256BitVector()) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00004765 if (HasInt256) { // AVX2
Craig Topper745a86b2011-11-19 22:34:59 +00004766 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
Michael Liao0ee17002013-04-19 04:03:37 +00004767 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops,
4768 array_lengthof(Ops));
Craig Topper745a86b2011-11-19 22:34:59 +00004769 } else { // AVX
4770 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper4c7972d2012-04-22 18:15:59 +00004771 Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
Craig Topper745a86b2011-11-19 22:34:59 +00004772 }
Craig Topper5a529e42013-01-18 06:44:29 +00004773 } else if (VT.is128BitVector()) {
Craig Topper745a86b2011-11-19 22:34:59 +00004774 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Craig Topper9d352402012-04-23 07:24:41 +00004775 } else
4776 llvm_unreachable("Unexpected vector type");
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004777
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004778 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004779}
4780
Evan Cheng39623da2006-04-20 08:58:49 +00004781/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4782/// that point to V2 points to its first element.
Craig Topper39a9e482012-02-11 06:24:48 +00004783static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00004784 for (unsigned i = 0; i != NumElems; ++i) {
Craig Topper39a9e482012-02-11 06:24:48 +00004785 if (Mask[i] > (int)NumElems) {
4786 Mask[i] = NumElems;
Evan Cheng39623da2006-04-20 08:58:49 +00004787 }
Evan Cheng39623da2006-04-20 08:58:49 +00004788 }
Evan Cheng39623da2006-04-20 08:58:49 +00004789}
4790
Evan Cheng017dcc62006-04-21 01:05:10 +00004791/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4792/// operation of specified width.
Andrew Trickac6d9be2013-05-25 02:42:55 +00004793static SDValue getMOVL(SelectionDAG &DAG, SDLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004794 SDValue V2) {
4795 unsigned NumElems = VT.getVectorNumElements();
4796 SmallVector<int, 8> Mask;
4797 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004798 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004799 Mask.push_back(i);
4800 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004801}
4802
Nate Begeman9008ca62009-04-27 18:41:29 +00004803/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Craig Topper8d725b92013-08-15 05:33:45 +00004804static SDValue getUnpackl(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004805 SDValue V2) {
4806 unsigned NumElems = VT.getVectorNumElements();
4807 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004808 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004809 Mask.push_back(i);
4810 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004811 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004812 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004813}
4814
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004815/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Craig Topper8d725b92013-08-15 05:33:45 +00004816static SDValue getUnpackh(SelectionDAG &DAG, SDLoc dl, MVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004817 SDValue V2) {
4818 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004819 SmallVector<int, 8> Mask;
Chad Rosier238ae312012-04-30 17:47:15 +00004820 for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004821 Mask.push_back(i + Half);
4822 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004823 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004824 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004825}
4826
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004827// PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004828// a generic shuffle instruction because the target has no such instructions.
4829// Generate shuffles which repeat i16 and i8 several times until they can be
4830// represented by v4f32 and then be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004831static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
Craig Topper8d725b92013-08-15 05:33:45 +00004832 MVT VT = V.getSimpleValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004833 int NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004834 SDLoc dl(V);
Rafael Espindola15684b22009-04-24 12:40:33 +00004835
Nate Begeman9008ca62009-04-27 18:41:29 +00004836 while (NumElems > 4) {
4837 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004838 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004839 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004840 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004841 EltNo -= NumElems/2;
4842 }
4843 NumElems >>= 1;
4844 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004845 return V;
4846}
Eric Christopherfd179292009-08-27 18:07:15 +00004847
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004848/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4849static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004850 MVT VT = V.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00004851 SDLoc dl(V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004852
Craig Topper5a529e42013-01-18 06:44:29 +00004853 if (VT.is128BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004854 V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004855 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004856 V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4857 &SplatMask[0]);
Craig Topper5a529e42013-01-18 06:44:29 +00004858 } else if (VT.is256BitVector()) {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004859 // To use VPERMILPS to splat scalars, the second half of indicies must
4860 // refer to the higher part, which is a duplication of the lower one,
4861 // because VPERMILPS can only handle in-lane permutations.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004862 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4863 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004864
4865 V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4866 V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4867 &SplatMask[0]);
Craig Topper9d352402012-04-23 07:24:41 +00004868 } else
4869 llvm_unreachable("Vector size not supported");
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004870
4871 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4872}
4873
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004874/// PromoteSplat - Splat is promoted to target supported vector shuffles.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004875static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004876 MVT SrcVT = SV->getSimpleValueType(0);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004877 SDValue V1 = SV->getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004878 SDLoc dl(SV);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004879
4880 int EltNo = SV->getSplatIndex();
4881 int NumElems = SrcVT.getVectorNumElements();
Craig Topper5a529e42013-01-18 06:44:29 +00004882 bool Is256BitVec = SrcVT.is256BitVector();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004883
Craig Topper5a529e42013-01-18 06:44:29 +00004884 assert(((SrcVT.is128BitVector() && NumElems > 4) || Is256BitVec) &&
4885 "Unknown how to promote splat for type");
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004886
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004887 // Extract the 128-bit part containing the splat element and update
4888 // the splat element index when it refers to the higher register.
Craig Topper5a529e42013-01-18 06:44:29 +00004889 if (Is256BitVec) {
Craig Topper7d1e3dc2012-04-30 05:17:10 +00004890 V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4891 if (EltNo >= NumElems/2)
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004892 EltNo -= NumElems/2;
4893 }
4894
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004895 // All i16 and i8 vector types can't be used directly by a generic shuffle
4896 // instruction because the target has no such instruction. Generate shuffles
4897 // which repeat i16 and i8 several times until they fit in i32, and then can
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004898 // be manipulated by target suported shuffles.
Craig Topperf3d98a82013-08-14 07:04:42 +00004899 MVT EltVT = SrcVT.getVectorElementType();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004900 if (EltVT == MVT::i8 || EltVT == MVT::i16)
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004901 V1 = PromoteSplati8i16(V1, DAG, EltNo);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004902
4903 // Recreate the 256-bit vector and place the same 128-bit vector
4904 // into the low and high part. This is necessary because we want
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004905 // to use VPERM* to shuffle the vectors
Craig Topper5a529e42013-01-18 06:44:29 +00004906 if (Is256BitVec) {
Craig Topper4c7972d2012-04-22 18:15:59 +00004907 V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004908 }
4909
4910 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004911}
4912
Evan Chengba05f722006-04-21 23:03:30 +00004913/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004914/// vector of zero or undef vector. This produces a shuffle where the low
4915/// element of V2 is swizzled into the zero/undef vector, landing at element
4916/// 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 +00004917static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Craig Topper12216172012-01-13 08:12:35 +00004918 bool IsZero,
4919 const X86Subtarget *Subtarget,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004920 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00004921 MVT VT = V2.getSimpleValueType();
Craig Topper12216172012-01-13 08:12:35 +00004922 SDValue V1 = IsZero
Andrew Trickac6d9be2013-05-25 02:42:55 +00004923 ? getZeroVector(VT, Subtarget, DAG, SDLoc(V2)) : DAG.getUNDEF(VT);
Nate Begeman9008ca62009-04-27 18:41:29 +00004924 unsigned NumElems = VT.getVectorNumElements();
4925 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004926 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004927 // If this is the insertion idx, put the low elt of V2 here.
4928 MaskVec.push_back(i == Idx ? NumElems : i);
Andrew Trickac6d9be2013-05-25 02:42:55 +00004929 return DAG.getVectorShuffle(VT, SDLoc(V2), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004930}
4931
Craig Toppera1ffc682012-03-20 06:42:26 +00004932/// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4933/// target specific opcode. Returns true if the Mask could be calculated.
Craig Topper89f4e662012-03-20 07:17:59 +00004934/// Sets IsUnary to true if only uses one source.
Craig Topperd978c542012-05-06 19:46:21 +00004935static bool getTargetShuffleMask(SDNode *N, MVT VT,
Craig Topper89f4e662012-03-20 07:17:59 +00004936 SmallVectorImpl<int> &Mask, bool &IsUnary) {
Craig Toppera1ffc682012-03-20 06:42:26 +00004937 unsigned NumElems = VT.getVectorNumElements();
4938 SDValue ImmN;
4939
Craig Topper89f4e662012-03-20 07:17:59 +00004940 IsUnary = false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004941 switch(N->getOpcode()) {
4942 case X86ISD::SHUFP:
4943 ImmN = N->getOperand(N->getNumOperands()-1);
4944 DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4945 break;
4946 case X86ISD::UNPCKH:
4947 DecodeUNPCKHMask(VT, Mask);
4948 break;
4949 case X86ISD::UNPCKL:
4950 DecodeUNPCKLMask(VT, Mask);
4951 break;
4952 case X86ISD::MOVHLPS:
4953 DecodeMOVHLPSMask(NumElems, Mask);
4954 break;
4955 case X86ISD::MOVLHPS:
4956 DecodeMOVLHPSMask(NumElems, Mask);
4957 break;
Craig Topper4aee1bb2013-01-28 06:48:25 +00004958 case X86ISD::PALIGNR:
Benjamin Kramer200b3062013-01-26 13:31:37 +00004959 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Topper4aee1bb2013-01-28 06:48:25 +00004960 DecodePALIGNRMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Benjamin Kramer200b3062013-01-26 13:31:37 +00004961 break;
Craig Toppera1ffc682012-03-20 06:42:26 +00004962 case X86ISD::PSHUFD:
4963 case X86ISD::VPERMILP:
4964 ImmN = N->getOperand(N->getNumOperands()-1);
4965 DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004966 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004967 break;
4968 case X86ISD::PSHUFHW:
4969 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004970 DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004971 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004972 break;
4973 case X86ISD::PSHUFLW:
4974 ImmN = N->getOperand(N->getNumOperands()-1);
Craig Toppera9a568a2012-05-02 08:03:44 +00004975 DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper89f4e662012-03-20 07:17:59 +00004976 IsUnary = true;
Craig Toppera1ffc682012-03-20 06:42:26 +00004977 break;
Craig Topperbdcbcb32012-05-06 18:54:26 +00004978 case X86ISD::VPERMI:
4979 ImmN = N->getOperand(N->getNumOperands()-1);
4980 DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4981 IsUnary = true;
4982 break;
Craig Toppera1ffc682012-03-20 06:42:26 +00004983 case X86ISD::MOVSS:
4984 case X86ISD::MOVSD: {
4985 // The index 0 always comes from the first element of the second source,
4986 // this is why MOVSS and MOVSD are used in the first place. The other
4987 // elements come from the other positions of the first source vector
4988 Mask.push_back(NumElems);
4989 for (unsigned i = 1; i != NumElems; ++i) {
4990 Mask.push_back(i);
4991 }
4992 break;
4993 }
4994 case X86ISD::VPERM2X128:
4995 ImmN = N->getOperand(N->getNumOperands()-1);
4996 DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
Craig Topper2091df32012-04-17 05:54:54 +00004997 if (Mask.empty()) return false;
Craig Toppera1ffc682012-03-20 06:42:26 +00004998 break;
4999 case X86ISD::MOVDDUP:
5000 case X86ISD::MOVLHPD:
5001 case X86ISD::MOVLPD:
5002 case X86ISD::MOVLPS:
5003 case X86ISD::MOVSHDUP:
5004 case X86ISD::MOVSLDUP:
Craig Toppera1ffc682012-03-20 06:42:26 +00005005 // Not yet implemented
5006 return false;
5007 default: llvm_unreachable("unknown target shuffle node");
5008 }
5009
5010 return true;
5011}
5012
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005013/// getShuffleScalarElt - Returns the scalar element that will make up the ith
5014/// element of the result of the vector shuffle.
Craig Topper3d092db2012-03-21 02:14:01 +00005015static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
Benjamin Kramer050db522011-03-26 12:38:19 +00005016 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005017 if (Depth == 6)
5018 return SDValue(); // Limit search depth.
5019
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005020 SDValue V = SDValue(N, 0);
5021 EVT VT = V.getValueType();
5022 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005023
5024 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
5025 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
Craig Topper3d092db2012-03-21 02:14:01 +00005026 int Elt = SV->getMaskElt(Index);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005027
Craig Topper3d092db2012-03-21 02:14:01 +00005028 if (Elt < 0)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005029 return DAG.getUNDEF(VT.getVectorElementType());
5030
Craig Topperd156dc12012-02-06 07:17:51 +00005031 unsigned NumElems = VT.getVectorNumElements();
Craig Topper3d092db2012-03-21 02:14:01 +00005032 SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
5033 : SV->getOperand(1);
5034 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00005035 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005036
5037 // Recurse into target specific vector shuffles to find scalars.
5038 if (isTargetShuffle(Opcode)) {
Craig Topper5a0910b2013-08-15 02:33:50 +00005039 MVT ShufVT = V.getSimpleValueType();
Craig Topperd978c542012-05-06 19:46:21 +00005040 unsigned NumElems = ShufVT.getVectorNumElements();
Craig Toppera1ffc682012-03-20 06:42:26 +00005041 SmallVector<int, 16> ShuffleMask;
Craig Topper89f4e662012-03-20 07:17:59 +00005042 bool IsUnary;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005043
Craig Topperd978c542012-05-06 19:46:21 +00005044 if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
Craig Toppera1ffc682012-03-20 06:42:26 +00005045 return SDValue();
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005046
Craig Topper3d092db2012-03-21 02:14:01 +00005047 int Elt = ShuffleMask[Index];
5048 if (Elt < 0)
Craig Topperd978c542012-05-06 19:46:21 +00005049 return DAG.getUNDEF(ShufVT.getVectorElementType());
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005050
Craig Topper3d092db2012-03-21 02:14:01 +00005051 SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
Craig Topperd978c542012-05-06 19:46:21 +00005052 : N->getOperand(1);
Craig Topper3d092db2012-03-21 02:14:01 +00005053 return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005054 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005055 }
5056
5057 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005058 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005059 V = V.getOperand(0);
5060 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005061 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005062
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005063 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005064 return SDValue();
5065 }
5066
5067 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5068 return (Index == 0) ? V.getOperand(0)
Craig Topper3d092db2012-03-21 02:14:01 +00005069 : DAG.getUNDEF(VT.getVectorElementType());
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005070
5071 if (V.getOpcode() == ISD::BUILD_VECTOR)
5072 return V.getOperand(Index);
5073
5074 return SDValue();
5075}
5076
5077/// getNumOfConsecutiveZeros - Return the number of elements of a vector
5078/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00005079/// search can start in two different directions, from left or right.
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005080/// We count undefs as zeros until PreferredNum is reached.
5081static unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp,
5082 unsigned NumElems, bool ZerosFromLeft,
5083 SelectionDAG &DAG,
5084 unsigned PreferredNum = -1U) {
5085 unsigned NumZeros = 0;
5086 for (unsigned i = 0; i != NumElems; ++i) {
5087 unsigned Index = ZerosFromLeft ? i : NumElems - i - 1;
Craig Topper3d092db2012-03-21 02:14:01 +00005088 SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005089 if (!Elt.getNode())
5090 break;
5091
5092 if (X86::isZeroNode(Elt))
5093 ++NumZeros;
5094 else if (Elt.getOpcode() == ISD::UNDEF) // Undef as zero up to PreferredNum.
5095 NumZeros = std::min(NumZeros + 1, PreferredNum);
5096 else
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005097 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005098 }
5099
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005100 return NumZeros;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005101}
5102
Craig Topper3d092db2012-03-21 02:14:01 +00005103/// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
5104/// correspond consecutively to elements from one of the vector operands,
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005105/// starting from its index OpIdx. Also tell OpNum which source vector operand.
5106static
Craig Topper3d092db2012-03-21 02:14:01 +00005107bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
5108 unsigned MaskI, unsigned MaskE, unsigned OpIdx,
5109 unsigned NumElems, unsigned &OpNum) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005110 bool SeenV1 = false;
5111 bool SeenV2 = false;
5112
Craig Topper3d092db2012-03-21 02:14:01 +00005113 for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005114 int Idx = SVOp->getMaskElt(i);
5115 // Ignore undef indicies
5116 if (Idx < 0)
5117 continue;
5118
Craig Topper3d092db2012-03-21 02:14:01 +00005119 if (Idx < (int)NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005120 SeenV1 = true;
5121 else
5122 SeenV2 = true;
5123
5124 // Only accept consecutive elements from the same vector
5125 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
5126 return false;
5127 }
5128
5129 OpNum = SeenV1 ? 0 : 1;
5130 return true;
5131}
5132
5133/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
5134/// logical left shift of a vector.
5135static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5136 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Craig Topperd36b53e2013-08-14 06:21:10 +00005137 unsigned NumElems =
Craig Topper5a0910b2013-08-15 02:33:50 +00005138 SVOp->getSimpleValueType(0).getVectorNumElements();
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005139 unsigned NumZeros = getNumOfConsecutiveZeros(
5140 SVOp, NumElems, false /* check zeros from right */, DAG,
5141 SVOp->getMaskElt(0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005142 unsigned OpSrc;
5143
5144 if (!NumZeros)
5145 return false;
5146
5147 // Considering the elements in the mask that are not consecutive zeros,
5148 // check if they consecutively come from only one of the source vectors.
5149 //
5150 // V1 = {X, A, B, C} 0
5151 // \ \ \ /
5152 // vector_shuffle V1, V2 <1, 2, 3, X>
5153 //
5154 if (!isShuffleMaskConsecutive(SVOp,
5155 0, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00005156 NumElems-NumZeros, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005157 NumZeros, // Where to start looking in the src vector
5158 NumElems, // Number of elements in vector
5159 OpSrc)) // Which source operand ?
5160 return false;
5161
5162 isLeft = false;
5163 ShAmt = NumZeros;
5164 ShVal = SVOp->getOperand(OpSrc);
5165 return true;
5166}
5167
5168/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
5169/// logical left shift of a vector.
5170static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
5171 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Craig Topperd36b53e2013-08-14 06:21:10 +00005172 unsigned NumElems =
Craig Topper5a0910b2013-08-15 02:33:50 +00005173 SVOp->getSimpleValueType(0).getVectorNumElements();
Benjamin Kramera0de26c2013-05-17 14:48:34 +00005174 unsigned NumZeros = getNumOfConsecutiveZeros(
5175 SVOp, NumElems, true /* check zeros from left */, DAG,
5176 NumElems - SVOp->getMaskElt(NumElems - 1) - 1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005177 unsigned OpSrc;
5178
5179 if (!NumZeros)
5180 return false;
5181
5182 // Considering the elements in the mask that are not consecutive zeros,
5183 // check if they consecutively come from only one of the source vectors.
5184 //
5185 // 0 { A, B, X, X } = V2
5186 // / \ / /
5187 // vector_shuffle V1, V2 <X, X, 4, 5>
5188 //
5189 if (!isShuffleMaskConsecutive(SVOp,
5190 NumZeros, // Mask Start Index
Craig Topper3d092db2012-03-21 02:14:01 +00005191 NumElems, // Mask End Index(exclusive)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005192 0, // Where to start looking in the src vector
5193 NumElems, // Number of elements in vector
5194 OpSrc)) // Which source operand ?
5195 return false;
5196
5197 isLeft = true;
5198 ShAmt = NumZeros;
5199 ShVal = SVOp->getOperand(OpSrc);
5200 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00005201}
5202
5203/// isVectorShift - Returns true if the shuffle can be implemented as a
5204/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00005205static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00005206 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005207 // Although the logic below support any bitwidth size, there are no
5208 // shift instructions which handle more than 128-bit vectors.
Craig Topper5a0910b2013-08-15 02:33:50 +00005209 if (!SVOp->getSimpleValueType(0).is128BitVector())
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005210 return false;
5211
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005212 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
5213 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
5214 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00005215
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00005216 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00005217}
5218
Evan Chengc78d3b42006-04-24 18:01:45 +00005219/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
5220///
Dan Gohman475871a2008-07-27 21:46:04 +00005221static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00005222 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00005223 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005224 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00005225 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00005226 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00005227 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00005228
Andrew Trickac6d9be2013-05-25 02:42:55 +00005229 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005230 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005231 bool First = true;
5232 for (unsigned i = 0; i < 16; ++i) {
5233 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
5234 if (ThisIsNonZero && First) {
5235 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005236 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00005237 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005238 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00005239 First = false;
5240 }
5241
5242 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00005243 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005244 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
5245 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005246 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005247 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00005248 }
5249 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005250 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
5251 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
5252 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00005253 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00005254 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00005255 } else
5256 ThisElt = LastElt;
5257
Gabor Greifba36cb52008-08-28 21:40:38 +00005258 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00005259 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00005260 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00005261 }
5262 }
5263
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005264 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00005265}
5266
Bill Wendlinga348c562007-03-22 18:42:45 +00005267/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00005268///
Dan Gohman475871a2008-07-27 21:46:04 +00005269static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00005270 unsigned NumNonZero, unsigned NumZero,
5271 SelectionDAG &DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005272 const X86Subtarget* Subtarget,
Dan Gohmand858e902010-04-17 15:26:15 +00005273 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00005274 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00005275 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00005276
Andrew Trickac6d9be2013-05-25 02:42:55 +00005277 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005278 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00005279 bool First = true;
5280 for (unsigned i = 0; i < 8; ++i) {
5281 bool isNonZero = (NonZeros & (1 << i)) != 0;
5282 if (isNonZero) {
5283 if (First) {
5284 if (NumZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005285 V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00005286 else
Owen Anderson825b72b2009-08-11 20:47:22 +00005287 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00005288 First = false;
5289 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005290 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005291 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00005292 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00005293 }
5294 }
5295
5296 return V;
5297}
5298
Evan Chengf26ffe92008-05-29 08:22:04 +00005299/// getVShift - Return a vector logical shift node.
5300///
Owen Andersone50ed302009-08-10 22:56:29 +00005301static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00005302 unsigned NumBits, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00005303 const TargetLowering &TLI, SDLoc dl) {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005304 assert(VT.is128BitVector() && "Unknown type for VShift");
Dale Johannesen0488fb62010-09-30 23:57:10 +00005305 EVT ShVT = MVT::v2i64;
Craig Toppered2e13d2012-01-22 19:15:14 +00005306 unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005307 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5308 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005309 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00005310 DAG.getConstant(NumBits,
Michael Liaoa6b20ce2013-03-01 18:40:30 +00005311 TLI.getScalarShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00005312}
5313
Craig Topperff79bc62013-08-18 08:53:01 +00005314static SDValue
5315LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) {
Michael J. Spencerec38de22010-10-10 22:04:20 +00005316
Evan Chengc3630942009-12-09 21:00:30 +00005317 // Check if the scalar load can be widened into a vector load. And if
5318 // the address is "base + cst" see if the cst can be "absorbed" into
5319 // the shuffle mask.
5320 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5321 SDValue Ptr = LD->getBasePtr();
5322 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5323 return SDValue();
5324 EVT PVT = LD->getValueType(0);
5325 if (PVT != MVT::i32 && PVT != MVT::f32)
5326 return SDValue();
5327
5328 int FI = -1;
5329 int64_t Offset = 0;
5330 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5331 FI = FINode->getIndex();
5332 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00005333 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00005334 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5335 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5336 Offset = Ptr.getConstantOperandVal(1);
5337 Ptr = Ptr.getOperand(0);
5338 } else {
5339 return SDValue();
5340 }
5341
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005342 // FIXME: 256-bit vector instructions don't require a strict alignment,
5343 // improve this code to support it better.
5344 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00005345 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005346 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00005347 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005348 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00005349 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00005350 // Can't change the alignment. FIXME: It's possible to compute
5351 // the exact stack offset and reference FI + adjust offset instead.
5352 // If someone *really* cares about this. That's the way to implement it.
5353 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005354 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005355 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00005356 }
5357 }
5358
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005359 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00005360 // Ptr + (Offset & ~15).
5361 if (Offset < 0)
5362 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005363 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00005364 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005365 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00005366 if (StartOffset)
Andrew Trickac6d9be2013-05-25 02:42:55 +00005367 Ptr = DAG.getNode(ISD::ADD, SDLoc(Ptr), Ptr.getValueType(),
Evan Chengc3630942009-12-09 21:00:30 +00005368 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5369
5370 int EltNo = (Offset - StartOffset) >> 2;
Craig Topper66ddd152012-04-27 22:54:43 +00005371 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005372
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005373 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5374 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00005375 LD->getPointerInfo().getWithOffset(StartOffset),
Pete Cooperd752e0f2011-11-08 18:42:53 +00005376 false, false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00005377
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00005378 SmallVector<int, 8> Mask;
5379 for (unsigned i = 0; i != NumElems; ++i)
5380 Mask.push_back(EltNo);
5381
Craig Toppercc3000632012-01-30 07:50:31 +00005382 return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
Evan Chengc3630942009-12-09 21:00:30 +00005383 }
5384
5385 return SDValue();
5386}
5387
Michael J. Spencerec38de22010-10-10 22:04:20 +00005388/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5389/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00005390/// load which has the same value as a build_vector whose operands are 'elts'.
5391///
5392/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00005393///
Nate Begeman1449f292010-03-24 22:19:06 +00005394/// FIXME: we'd also like to handle the case where the last elements are zero
5395/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5396/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005397static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Bill Wendling2ca55e92013-12-20 04:29:56 +00005398 SDLoc &DL, SelectionDAG &DAG,
5399 bool isAfterLegalize) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005400 EVT EltVT = VT.getVectorElementType();
5401 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005402
Nate Begemanfdea31a2010-03-24 20:49:50 +00005403 LoadSDNode *LDBase = NULL;
5404 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005405
Nate Begeman1449f292010-03-24 22:19:06 +00005406 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00005407 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00005408 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005409 for (unsigned i = 0; i < NumElems; ++i) {
5410 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00005411
Nate Begemanfdea31a2010-03-24 20:49:50 +00005412 if (!Elt.getNode() ||
5413 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5414 return SDValue();
5415 if (!LDBase) {
5416 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5417 return SDValue();
5418 LDBase = cast<LoadSDNode>(Elt.getNode());
5419 LastLoadedElt = i;
5420 continue;
5421 }
5422 if (Elt.getOpcode() == ISD::UNDEF)
5423 continue;
5424
5425 LoadSDNode *LD = cast<LoadSDNode>(Elt);
5426 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5427 return SDValue();
5428 LastLoadedElt = i;
5429 }
Nate Begeman1449f292010-03-24 22:19:06 +00005430
5431 // If we have found an entire vector of loads and undefs, then return a large
5432 // load of the entire vector width starting at the base pointer. If we found
5433 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005434 if (LastLoadedElt == NumElems - 1) {
Bill Wendling2ca55e92013-12-20 04:29:56 +00005435
5436 if (isAfterLegalize &&
5437 !DAG.getTargetLoweringInfo().isOperationLegal(ISD::LOAD, VT))
5438 return SDValue();
5439
Nadav Rotem23d1d5e2013-05-22 19:28:41 +00005440 SDValue NewLd = SDValue();
Bill Wendling2ca55e92013-12-20 04:29:56 +00005441
Nate Begemanfdea31a2010-03-24 20:49:50 +00005442 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Nadav Rotem23d1d5e2013-05-22 19:28:41 +00005443 NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5444 LDBase->getPointerInfo(),
5445 LDBase->isVolatile(), LDBase->isNonTemporal(),
5446 LDBase->isInvariant(), 0);
5447 NewLd = DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5448 LDBase->getPointerInfo(),
5449 LDBase->isVolatile(), LDBase->isNonTemporal(),
5450 LDBase->isInvariant(), LDBase->getAlignment());
5451
5452 if (LDBase->hasAnyUseOfValue(1)) {
5453 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5454 SDValue(LDBase, 1),
5455 SDValue(NewLd.getNode(), 1));
5456 DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5457 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5458 SDValue(NewLd.getNode(), 1));
5459 }
5460
5461 return NewLd;
Craig Topper69947b92012-04-23 06:57:04 +00005462 }
5463 if (NumElems == 4 && LastLoadedElt == 1 &&
5464 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005465 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5466 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Eli Friedman322ea082011-09-14 23:42:45 +00005467 SDValue ResNode =
Michael Liao0ee17002013-04-19 04:03:37 +00005468 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops,
5469 array_lengthof(Ops), MVT::i64,
Eli Friedman322ea082011-09-14 23:42:45 +00005470 LDBase->getPointerInfo(),
5471 LDBase->getAlignment(),
5472 false/*isVolatile*/, true/*ReadMem*/,
5473 false/*WriteMem*/);
Manman Ren2b7a2e82012-08-31 23:16:57 +00005474
5475 // Make sure the newly-created LOAD is in the same position as LDBase in
5476 // terms of dependency. We create a TokenFactor for LDBase and ResNode, and
5477 // update uses of LDBase's output chain to use the TokenFactor.
5478 if (LDBase->hasAnyUseOfValue(1)) {
5479 SDValue NewChain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
5480 SDValue(LDBase, 1), SDValue(ResNode.getNode(), 1));
5481 DAG.ReplaceAllUsesOfValueWith(SDValue(LDBase, 1), NewChain);
5482 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(LDBase, 1),
5483 SDValue(ResNode.getNode(), 1));
5484 }
5485
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005486 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00005487 }
5488 return SDValue();
5489}
5490
Nadav Rotem9d68b062012-04-08 12:54:54 +00005491/// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
5492/// to generate a splat value for the following cases:
5493/// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005494/// 2. A splat shuffle which uses a scalar_to_vector node which comes from
Nadav Rotem9d68b062012-04-08 12:54:54 +00005495/// a scalar load, or a constant.
5496/// The VBROADCAST node is returned when a pattern is found,
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005497/// or SDValue() otherwise.
Craig Topper158ec072013-08-14 07:34:43 +00005498static SDValue LowerVectorBroadcast(SDValue Op, const X86Subtarget* Subtarget,
5499 SelectionDAG &DAG) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005500 if (!Subtarget->hasFp256())
Craig Toppera9376332012-01-10 08:23:59 +00005501 return SDValue();
5502
Craig Topper5a0910b2013-08-15 02:33:50 +00005503 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00005504 SDLoc dl(Op);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005505
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005506 assert((VT.is128BitVector() || VT.is256BitVector() || VT.is512BitVector()) &&
Craig Topper5da8a802012-05-04 05:49:51 +00005507 "Unsupported vector type for broadcast.");
5508
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005509 SDValue Ld;
Nadav Rotem9d68b062012-04-08 12:54:54 +00005510 bool ConstSplatVal;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005511
Nadav Rotem9d68b062012-04-08 12:54:54 +00005512 switch (Op.getOpcode()) {
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005513 default:
5514 // Unknown pattern found.
5515 return SDValue();
5516
5517 case ISD::BUILD_VECTOR: {
5518 // The BUILD_VECTOR node must be a splat.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005519 if (!isSplatVector(Op.getNode()))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005520 return SDValue();
5521
Nadav Rotem9d68b062012-04-08 12:54:54 +00005522 Ld = Op.getOperand(0);
5523 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5524 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005525
5526 // The suspected load node has several users. Make sure that all
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005527 // of its users are from the BUILD_VECTOR node.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005528 // Constants may have multiple users.
5529 if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005530 return SDValue();
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005531 break;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005532 }
5533
5534 case ISD::VECTOR_SHUFFLE: {
5535 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5536
5537 // Shuffles must have a splat mask where the first element is
5538 // broadcasted.
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005539 if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005540 return SDValue();
5541
5542 SDValue Sc = Op.getOperand(0);
Nadav Rotemb88e8dd2012-05-10 12:50:02 +00005543 if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005544 Sc.getOpcode() != ISD::BUILD_VECTOR) {
5545
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005546 if (!Subtarget->hasInt256())
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005547 return SDValue();
5548
5549 // Use the register form of the broadcast instruction available on AVX2.
Elena Demikhovsky55db69c2013-08-11 12:29:16 +00005550 if (VT.getSizeInBits() >= 256)
Elena Demikhovsky8f40f7b2012-07-01 06:12:26 +00005551 Sc = Extract128BitVector(Sc, 0, DAG, dl);
5552 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5553 }
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005554
5555 Ld = Sc.getOperand(0);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005556 ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
Nadav Rotem154819d2012-04-09 07:45:58 +00005557 Ld.getOpcode() == ISD::ConstantFP);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005558
5559 // The scalar_to_vector node and the suspected
5560 // load node must have exactly one user.
Nadav Rotem9d68b062012-04-08 12:54:54 +00005561 // Constants may have multiple users.
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005562
5563 // AVX-512 has register version of the broadcast
5564 bool hasRegVer = Subtarget->hasAVX512() && VT.is512BitVector() &&
5565 Ld.getValueType().getSizeInBits() >= 32;
5566 if (!ConstSplatVal && ((!Sc.hasOneUse() || !Ld.hasOneUse()) &&
5567 !hasRegVer))
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005568 return SDValue();
5569 break;
5570 }
5571 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005572
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005573 bool IsGE256 = (VT.getSizeInBits() >= 256);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005574
5575 // Handle the broadcasting a single constant scalar from the constant pool
5576 // into a vector. On Sandybridge it is still better to load a constant vector
5577 // from the constant pool and not to broadcast it from a scalar.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005578 if (ConstSplatVal && Subtarget->hasInt256()) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005579 EVT CVT = Ld.getValueType();
5580 assert(!CVT.isVector() && "Must not broadcast a vector type");
5581 unsigned ScalarSize = CVT.getSizeInBits();
5582
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005583 if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)) {
Nadav Rotem9d68b062012-04-08 12:54:54 +00005584 const Constant *C = 0;
5585 if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5586 C = CI->getConstantIntValue();
5587 else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5588 C = CF->getConstantFPValue();
5589
5590 assert(C && "Invalid constant type");
5591
Craig Topper158ec072013-08-14 07:34:43 +00005592 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5593 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
Nadav Rotem9d68b062012-04-08 12:54:54 +00005594 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
Nadav Rotem154819d2012-04-09 07:45:58 +00005595 Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
Craig Topper6643d9c2012-05-04 06:18:33 +00005596 MachinePointerInfo::getConstantPool(),
5597 false, false, false, Alignment);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005598
Nadav Rotem9d68b062012-04-08 12:54:54 +00005599 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5600 }
5601 }
5602
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005603 bool IsLoad = ISD::isNormalLoad(Ld.getNode());
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005604 unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5605
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005606 // Handle AVX2 in-register broadcasts.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005607 if (!IsLoad && Subtarget->hasInt256() &&
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005608 (ScalarSize == 32 || (IsGE256 && ScalarSize == 64)))
Nadav Rotem4fc8a5d2012-05-19 19:57:37 +00005609 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5610
5611 // The scalar source must be a normal load.
5612 if (!IsLoad)
5613 return SDValue();
5614
Elena Demikhovsky207600d2013-08-07 12:34:55 +00005615 if (ScalarSize == 32 || (IsGE256 && ScalarSize == 64))
Nadav Rotem9d68b062012-04-08 12:54:54 +00005616 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005617
Craig Toppera9376332012-01-10 08:23:59 +00005618 // The integer check is needed for the 64-bit into 128-bit so it doesn't match
Craig Topper5da8a802012-05-04 05:49:51 +00005619 // double since there is no vbroadcastsd xmm
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005620 if (Subtarget->hasInt256() && Ld.getValueType().isInteger()) {
Craig Topper5da8a802012-05-04 05:49:51 +00005621 if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
Nadav Rotem9d68b062012-04-08 12:54:54 +00005622 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
Craig Toppera9376332012-01-10 08:23:59 +00005623 }
Nadav Rotemcbbe33f2011-11-18 02:49:55 +00005624
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005625 // Unsupported broadcast.
5626 return SDValue();
5627}
5628
Craig Topper158ec072013-08-14 07:34:43 +00005629static SDValue buildFromShuffleMostly(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00005630 MVT VT = Op.getSimpleValueType();
Michael Liaofacace82012-10-19 17:15:18 +00005631
5632 // Skip if insert_vec_elt is not supported.
Craig Topper158ec072013-08-14 07:34:43 +00005633 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
5634 if (!TLI.isOperationLegalOrCustom(ISD::INSERT_VECTOR_ELT, VT))
Michael Liaofacace82012-10-19 17:15:18 +00005635 return SDValue();
5636
Andrew Trickac6d9be2013-05-25 02:42:55 +00005637 SDLoc DL(Op);
Michael Liaofacace82012-10-19 17:15:18 +00005638 unsigned NumElems = Op.getNumOperands();
5639
5640 SDValue VecIn1;
5641 SDValue VecIn2;
5642 SmallVector<unsigned, 4> InsertIndices;
5643 SmallVector<int, 8> Mask(NumElems, -1);
5644
5645 for (unsigned i = 0; i != NumElems; ++i) {
5646 unsigned Opc = Op.getOperand(i).getOpcode();
5647
5648 if (Opc == ISD::UNDEF)
5649 continue;
5650
5651 if (Opc != ISD::EXTRACT_VECTOR_ELT) {
5652 // Quit if more than 1 elements need inserting.
5653 if (InsertIndices.size() > 1)
5654 return SDValue();
5655
5656 InsertIndices.push_back(i);
5657 continue;
5658 }
5659
5660 SDValue ExtractedFromVec = Op.getOperand(i).getOperand(0);
5661 SDValue ExtIdx = Op.getOperand(i).getOperand(1);
5662
5663 // Quit if extracted from vector of different type.
5664 if (ExtractedFromVec.getValueType() != VT)
5665 return SDValue();
5666
5667 // Quit if non-constant index.
5668 if (!isa<ConstantSDNode>(ExtIdx))
5669 return SDValue();
5670
5671 if (VecIn1.getNode() == 0)
5672 VecIn1 = ExtractedFromVec;
5673 else if (VecIn1 != ExtractedFromVec) {
5674 if (VecIn2.getNode() == 0)
5675 VecIn2 = ExtractedFromVec;
5676 else if (VecIn2 != ExtractedFromVec)
5677 // Quit if more than 2 vectors to shuffle
5678 return SDValue();
5679 }
5680
5681 unsigned Idx = cast<ConstantSDNode>(ExtIdx)->getZExtValue();
5682
5683 if (ExtractedFromVec == VecIn1)
5684 Mask[i] = Idx;
5685 else if (ExtractedFromVec == VecIn2)
5686 Mask[i] = Idx + NumElems;
5687 }
5688
5689 if (VecIn1.getNode() == 0)
5690 return SDValue();
5691
5692 VecIn2 = VecIn2.getNode() ? VecIn2 : DAG.getUNDEF(VT);
5693 SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]);
5694 for (unsigned i = 0, e = InsertIndices.size(); i != e; ++i) {
5695 unsigned Idx = InsertIndices[i];
5696 NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5697 DAG.getIntPtrConstant(Idx));
5698 }
5699
5700 return NV;
5701}
5702
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005703// Lower BUILD_VECTOR operation for v8i1 and v16i1 types.
5704SDValue
5705X86TargetLowering::LowerBUILD_VECTORvXi1(SDValue Op, SelectionDAG &DAG) const {
5706
Craig Topper5a0910b2013-08-15 02:33:50 +00005707 MVT VT = Op.getSimpleValueType();
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005708 assert((VT.getVectorElementType() == MVT::i1) && (VT.getSizeInBits() <= 16) &&
5709 "Unexpected type in LowerBUILD_VECTORvXi1!");
5710
5711 SDLoc dl(Op);
5712 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5713 SDValue Cst = DAG.getTargetConstant(0, MVT::i1);
5714 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5715 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5716 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5717 Ops, VT.getVectorNumElements());
5718 }
5719
5720 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5721 SDValue Cst = DAG.getTargetConstant(1, MVT::i1);
5722 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst,
5723 Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
5724 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT,
5725 Ops, VT.getVectorNumElements());
5726 }
5727
5728 bool AllContants = true;
5729 uint64_t Immediate = 0;
5730 for (unsigned idx = 0, e = Op.getNumOperands(); idx < e; ++idx) {
5731 SDValue In = Op.getOperand(idx);
5732 if (In.getOpcode() == ISD::UNDEF)
5733 continue;
5734 if (!isa<ConstantSDNode>(In)) {
5735 AllContants = false;
5736 break;
5737 }
5738 if (cast<ConstantSDNode>(In)->getZExtValue())
Aaron Ballman2a37c7e2013-08-05 13:47:03 +00005739 Immediate |= (1ULL << idx);
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005740 }
5741
5742 if (AllContants) {
5743 SDValue FullMask = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1,
5744 DAG.getConstant(Immediate, MVT::i16));
5745 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, FullMask,
Craig Topper89717172013-08-14 07:35:18 +00005746 DAG.getIntPtrConstant(0));
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005747 }
5748
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005749 // Splat vector (with undefs)
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005750 SDValue In = Op.getOperand(0);
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005751 for (unsigned i = 1, e = Op.getNumOperands(); i != e; ++i) {
5752 if (Op.getOperand(i) != In && Op.getOperand(i).getOpcode() != ISD::UNDEF)
5753 llvm_unreachable("Unsupported predicate operation");
5754 }
5755
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005756 SDValue EFLAGS, X86CC;
5757 if (In.getOpcode() == ISD::SETCC) {
5758 SDValue Op0 = In.getOperand(0);
5759 SDValue Op1 = In.getOperand(1);
5760 ISD::CondCode CC = cast<CondCodeSDNode>(In.getOperand(2))->get();
5761 bool isFP = Op1.getValueType().isFloatingPoint();
5762 unsigned X86CCVal = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5763
5764 assert(X86CCVal != X86::COND_INVALID && "Unsupported predicate operation");
5765
5766 X86CC = DAG.getConstant(X86CCVal, MVT::i8);
5767 EFLAGS = EmitCmp(Op0, Op1, X86CCVal, DAG);
5768 EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
5769 } else if (In.getOpcode() == X86ISD::SETCC) {
5770 X86CC = In.getOperand(0);
5771 EFLAGS = In.getOperand(1);
5772 } else {
5773 // The algorithm:
5774 // Bit1 = In & 0x1
5775 // if (Bit1 != 0)
5776 // ZF = 0
5777 // else
5778 // ZF = 1
5779 // if (ZF == 0)
5780 // res = allOnes ### CMOVNE -1, %res
5781 // else
5782 // res = allZero
Craig Topper5a0910b2013-08-15 02:33:50 +00005783 MVT InVT = In.getSimpleValueType();
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005784 SDValue Bit1 = DAG.getNode(ISD::AND, dl, InVT, In, DAG.getConstant(1, InVT));
5785 EFLAGS = EmitTest(Bit1, X86::COND_NE, DAG);
5786 X86CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5787 }
5788
5789 if (VT == MVT::v16i1) {
5790 SDValue Cst1 = DAG.getConstant(-1, MVT::i16);
5791 SDValue Cst0 = DAG.getConstant(0, MVT::i16);
5792 SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i16,
5793 Cst0, Cst1, X86CC, EFLAGS);
5794 return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5795 }
5796
5797 if (VT == MVT::v8i1) {
5798 SDValue Cst1 = DAG.getConstant(-1, MVT::i32);
5799 SDValue Cst0 = DAG.getConstant(0, MVT::i32);
5800 SDValue CmovOp = DAG.getNode(X86ISD::CMOV, dl, MVT::i32,
5801 Cst0, Cst1, X86CC, EFLAGS);
5802 CmovOp = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, CmovOp);
5803 return DAG.getNode(ISD::BITCAST, dl, VT, CmovOp);
5804 }
5805 llvm_unreachable("Unsupported predicate operation");
5806}
5807
Michael Liaofacace82012-10-19 17:15:18 +00005808SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005809X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00005810 SDLoc dl(Op);
David Greenea5f26012011-02-07 19:36:54 +00005811
Craig Topper5a0910b2013-08-15 02:33:50 +00005812 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00005813 MVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00005814 unsigned NumElems = Op.getNumOperands();
5815
Elena Demikhovsky13e6e912013-08-05 08:52:21 +00005816 // Generate vectors for predicate vectors.
5817 if (VT.getScalarType() == MVT::i1 && Subtarget->hasAVX512())
5818 return LowerBUILD_VECTORvXi1(Op, DAG);
5819
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005820 // Vectors containing all zeros can be matched by pxor and xorps later
5821 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5822 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5823 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00005824 if (VT == MVT::v4i32 || VT == MVT::v8i32 || VT == MVT::v16i32)
Chris Lattner8a594482007-11-25 00:24:49 +00005825 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005826
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005827 return getZeroVector(VT, Subtarget, DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00005828 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005829
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005830 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
Craig Topper745a86b2011-11-19 22:34:59 +00005831 // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5832 // vpcmpeqd on 256-bit vectors.
Michael Liaod09318f2013-02-25 23:16:36 +00005833 if (Subtarget->hasSSE2() && ISD::isBuildVectorAllOnes(Op.getNode())) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00005834 if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasInt256()))
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005835 return Op;
5836
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005837 if (!VT.is512BitVector())
5838 return getOnesVector(VT, Subtarget->hasInt256(), DAG, dl);
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005839 }
5840
Craig Topper158ec072013-08-14 07:34:43 +00005841 SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00005842 if (Broadcast.getNode())
5843 return Broadcast;
Nadav Rotemf8c10e52011-11-15 22:50:37 +00005844
Owen Andersone50ed302009-08-10 22:56:29 +00005845 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005846
Evan Cheng0db9fe62006-04-25 20:13:52 +00005847 unsigned NumZero = 0;
5848 unsigned NumNonZero = 0;
5849 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005850 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005851 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005852 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005853 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00005854 if (Elt.getOpcode() == ISD::UNDEF)
5855 continue;
5856 Values.insert(Elt);
5857 if (Elt.getOpcode() != ISD::Constant &&
5858 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005859 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00005860 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00005861 NumZero++;
5862 else {
5863 NonZeros |= (1 << i);
5864 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005865 }
5866 }
5867
Chris Lattner97a2a562010-08-26 05:24:29 +00005868 // All undef vector. Return an UNDEF. All zero vectors were handled above.
5869 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00005870 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005871
Chris Lattner67f453a2008-03-09 05:42:06 +00005872 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00005873 if (NumNonZero == 1) {
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005874 unsigned Idx = countTrailingZeros(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00005875 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005876
Chris Lattner62098042008-03-09 01:05:04 +00005877 // If this is an insertion of an i64 value on x86-32, and if the top bits of
5878 // the value are obviously zero, truncate the value to i32 and do the
5879 // insertion that way. Only do this if the value is non-constant or if the
5880 // value is a constant being inserted into element 0. It is cheaper to do
5881 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00005882 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00005883 (!IsAllConstants || Idx == 0)) {
5884 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00005885 // Handle SSE only.
5886 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5887 EVT VecVT = MVT::v4i32;
5888 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00005889
Chris Lattner62098042008-03-09 01:05:04 +00005890 // Truncate the value (which may itself be a constant) to i32, and
5891 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00005892 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00005893 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Craig Topper12216172012-01-13 08:12:35 +00005894 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005895
Chris Lattner62098042008-03-09 01:05:04 +00005896 // Now we have our 32-bit value zero extended in the low element of
5897 // a vector. If Idx != 0, swizzle it into place.
5898 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005899 SmallVector<int, 4> Mask;
5900 Mask.push_back(Idx);
5901 for (unsigned i = 1; i != VecElts; ++i)
5902 Mask.push_back(i);
Craig Topperdf966f62012-04-22 19:17:57 +00005903 Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
Nate Begeman9008ca62009-04-27 18:41:29 +00005904 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00005905 }
Craig Topper07a27622012-01-22 03:07:48 +00005906 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Chris Lattner62098042008-03-09 01:05:04 +00005907 }
5908 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005909
Chris Lattner19f79692008-03-08 22:59:52 +00005910 // If we have a constant or non-constant insertion into the low element of
5911 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5912 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00005913 // depending on what the source datatype is.
5914 if (Idx == 0) {
Craig Topperd62c16e2011-12-29 03:20:51 +00005915 if (NumZero == 0)
Eli Friedman10415532009-06-06 06:05:10 +00005916 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Craig Topperd62c16e2011-12-29 03:20:51 +00005917
5918 if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005919 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Elena Demikhovsky41f7baf2013-08-25 12:54:30 +00005920 if (VT.is256BitVector() || VT.is512BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005921 SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
Nadav Rotem394a1f52012-01-11 14:07:51 +00005922 return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5923 Item, DAG.getIntPtrConstant(0));
Elena Demikhovsky021c0a22011-12-28 08:14:01 +00005924 }
Craig Topper7a9a28b2012-08-12 02:23:29 +00005925 assert(VT.is128BitVector() && "Expected an SSE value type!");
Eli Friedman10415532009-06-06 06:05:10 +00005926 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5927 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Craig Topper12216172012-01-13 08:12:35 +00005928 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topperd62c16e2011-12-29 03:20:51 +00005929 }
5930
5931 if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005932 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Craig Topper3224e6b2011-12-29 03:09:33 +00005933 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
Craig Topper7a9a28b2012-08-12 02:23:29 +00005934 if (VT.is256BitVector()) {
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00005935 SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +00005936 Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
Craig Topper19ec2a92011-12-29 03:34:54 +00005937 } else {
Craig Topper7a9a28b2012-08-12 02:23:29 +00005938 assert(VT.is128BitVector() && "Expected an SSE value type!");
Craig Topper12216172012-01-13 08:12:35 +00005939 Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
Craig Topper19ec2a92011-12-29 03:34:54 +00005940 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005941 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00005942 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005943 }
Evan Chengf26ffe92008-05-29 08:22:04 +00005944
5945 // Is it a vector logical left shift?
5946 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00005947 X86::isZeroNode(Op.getOperand(0)) &&
5948 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005949 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00005950 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00005951 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005952 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00005953 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005954 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005955
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005956 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00005957 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005958
Chris Lattner19f79692008-03-08 22:59:52 +00005959 // Otherwise, if this is a vector with i32 or f32 elements, and the element
5960 // is a non-constant being inserted into an element other than the low one,
5961 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
5962 // movd/movss) to move this into the low element, then shuffle it into
5963 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005964 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00005965 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00005966
Evan Cheng0db9fe62006-04-25 20:13:52 +00005967 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Craig Topper12216172012-01-13 08:12:35 +00005968 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00005969 SmallVector<int, 8> MaskVec;
Craig Topper31a207a2012-05-04 06:39:13 +00005970 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005971 MaskVec.push_back(i == Idx ? 0 : 1);
5972 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005973 }
5974 }
5975
Chris Lattner67f453a2008-03-09 05:42:06 +00005976 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00005977 if (Values.size() == 1) {
5978 if (EVTBits == 32) {
5979 // Instead of a shuffle like this:
5980 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5981 // Check if it's possible to issue this instead.
5982 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
Michael J. Spencerc6af2432013-05-24 22:23:49 +00005983 unsigned Idx = countTrailingZeros(NonZeros);
Evan Chengc3630942009-12-09 21:00:30 +00005984 SDValue Item = Op.getOperand(Idx);
5985 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5986 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5987 }
Dan Gohman475871a2008-07-27 21:46:04 +00005988 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005989 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005990
Dan Gohmana3941172007-07-24 22:55:08 +00005991 // A vector full of immediates; various special cases are already
5992 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005993 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00005994 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00005995
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005996 // For AVX-length vectors, build the individual 128-bit pieces and use
5997 // shuffles to put them in place.
Craig Topper7a9a28b2012-08-12 02:23:29 +00005998 if (VT.is256BitVector()) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005999 SmallVector<SDValue, 32> V;
Craig Topperfa5b70e2012-02-03 06:32:21 +00006000 for (unsigned i = 0; i != NumElems; ++i)
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006001 V.push_back(Op.getOperand(i));
6002
6003 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
6004
6005 // Build both the lower and upper subvector.
6006 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
6007 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
6008 NumElems/2);
6009
6010 // Recreate the wider vector with the lower and upper part.
Craig Topper4c7972d2012-04-22 18:15:59 +00006011 return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006012 }
6013
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00006014 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00006015 if (EVTBits == 64) {
6016 if (NumNonZero == 1) {
6017 // One half is zero or undef.
Michael J. Spencerc6af2432013-05-24 22:23:49 +00006018 unsigned Idx = countTrailingZeros(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00006019 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00006020 Op.getOperand(Idx));
Craig Topper12216172012-01-13 08:12:35 +00006021 return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00006022 }
Dan Gohman475871a2008-07-27 21:46:04 +00006023 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00006024 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006025
6026 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00006027 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006028 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006029 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00006030 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006031 }
6032
Bill Wendling826f36f2007-03-28 00:57:11 +00006033 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00006034 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006035 Subtarget, *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00006036 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006037 }
6038
6039 // If element VT is == 32 bits, turn it into a number of shuffles.
Benjamin Kramer9c683542012-01-30 15:16:21 +00006040 SmallVector<SDValue, 8> V(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006041 if (NumElems == 4 && NumZero > 0) {
6042 for (unsigned i = 0; i < 4; ++i) {
6043 bool isZero = !(NonZeros & (1 << i));
6044 if (isZero)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00006045 V[i] = getZeroVector(VT, Subtarget, DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006046 else
Dale Johannesenace16102009-02-03 19:33:06 +00006047 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006048 }
6049
6050 for (unsigned i = 0; i < 2; ++i) {
6051 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
6052 default: break;
6053 case 0:
6054 V[i] = V[i*2]; // Must be a zero vector.
6055 break;
6056 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00006057 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006058 break;
6059 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00006060 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006061 break;
6062 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00006063 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006064 break;
6065 }
6066 }
6067
Benjamin Kramer9c683542012-01-30 15:16:21 +00006068 bool Reverse1 = (NonZeros & 0x3) == 2;
6069 bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
6070 int MaskVec[] = {
6071 Reverse1 ? 1 : 0,
6072 Reverse1 ? 0 : 1,
Benjamin Kramer630ecf02012-01-30 20:01:35 +00006073 static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
6074 static_cast<int>(Reverse2 ? NumElems : NumElems+1)
Benjamin Kramer9c683542012-01-30 15:16:21 +00006075 };
Nate Begeman9008ca62009-04-27 18:41:29 +00006076 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006077 }
6078
Craig Topper7a9a28b2012-08-12 02:23:29 +00006079 if (Values.size() > 1 && VT.is128BitVector()) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00006080 // Check for a build vector of consecutive loads.
6081 for (unsigned i = 0; i < NumElems; ++i)
6082 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006083
Nate Begemanfdea31a2010-03-24 20:49:50 +00006084 // Check for elements which are consecutive loads.
Bill Wendling2ca55e92013-12-20 04:29:56 +00006085 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG, false);
Nate Begemanfdea31a2010-03-24 20:49:50 +00006086 if (LD.getNode())
6087 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006088
Michael Liaofacace82012-10-19 17:15:18 +00006089 // Check for a build vector from mostly shuffle plus few inserting.
6090 SDValue Sh = buildFromShuffleMostly(Op, DAG);
6091 if (Sh.getNode())
6092 return Sh;
6093
Michael J. Spencerec38de22010-10-10 22:04:20 +00006094 // For SSE 4.1, use insertps to put the high elements into the low element.
Craig Topperd0a31172012-01-10 06:37:29 +00006095 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00006096 SDValue Result;
6097 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
6098 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
6099 else
6100 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006101
Chris Lattner24faf612010-08-28 17:59:08 +00006102 for (unsigned i = 1; i < NumElems; ++i) {
6103 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
6104 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00006105 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00006106 }
6107 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00006108 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006109
Chris Lattner6e80e442010-08-28 17:15:43 +00006110 // Otherwise, expand into a number of unpckl*, start by extending each of
6111 // our (non-undef) elements to the full vector width with the element in the
6112 // bottom slot of the vector (which generates no code for SSE).
6113 for (unsigned i = 0; i < NumElems; ++i) {
6114 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
6115 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
6116 else
6117 V[i] = DAG.getUNDEF(VT);
6118 }
6119
6120 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00006121 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
6122 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
6123 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00006124 unsigned EltStride = NumElems >> 1;
6125 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00006126 for (unsigned i = 0; i < EltStride; ++i) {
6127 // If V[i+EltStride] is undef and this is the first round of mixing,
6128 // then it is safe to just drop this shuffle: V[i] is already in the
6129 // right place, the one element (since it's the first round) being
6130 // inserted as undef can be dropped. This isn't safe for successive
6131 // rounds because they will permute elements within both vectors.
6132 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
6133 EltStride == NumElems/2)
6134 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006135
Chris Lattner6e80e442010-08-28 17:15:43 +00006136 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00006137 }
Chris Lattner6e80e442010-08-28 17:15:43 +00006138 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006139 }
6140 return V[0];
6141 }
Dan Gohman475871a2008-07-27 21:46:04 +00006142 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006143}
6144
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006145// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
6146// to create 256-bit vectors from two other 128-bit ones.
6147static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00006148 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00006149 MVT ResVT = Op.getSimpleValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006150
Elena Demikhovsky83952512013-07-31 11:35:14 +00006151 assert((ResVT.is256BitVector() ||
6152 ResVT.is512BitVector()) && "Value type must be 256-/512-bit wide");
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006153
6154 SDValue V1 = Op.getOperand(0);
6155 SDValue V2 = Op.getOperand(1);
6156 unsigned NumElems = ResVT.getVectorNumElements();
Elena Demikhovsky83952512013-07-31 11:35:14 +00006157 if(ResVT.is256BitVector())
6158 return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006159
Elena Demikhovsky83952512013-07-31 11:35:14 +00006160 return Concat256BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006161}
6162
Craig Topper55b24052012-09-11 06:15:32 +00006163static SDValue LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006164 assert(Op.getNumOperands() == 2);
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006165
Elena Demikhovsky83952512013-07-31 11:35:14 +00006166 // AVX/AVX-512 can use the vinsertf128 instruction to create 256-bit vectors
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00006167 // from two other 128-bit ones.
6168 return LowerAVXCONCAT_VECTORS(Op, DAG);
6169}
6170
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006171// Try to lower a shuffle node into a simple blend instruction.
Craig Topper55b24052012-09-11 06:15:32 +00006172static SDValue
6173LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
6174 const X86Subtarget *Subtarget, SelectionDAG &DAG) {
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006175 SDValue V1 = SVOp->getOperand(0);
6176 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006177 SDLoc dl(SVOp);
Craig Topper5a0910b2013-08-15 02:33:50 +00006178 MVT VT = SVOp->getSimpleValueType(0);
Craig Topper657a99c2013-01-19 23:36:09 +00006179 MVT EltVT = VT.getVectorElementType();
Craig Topper1842ba02012-04-23 06:38:28 +00006180 unsigned NumElems = VT.getVectorNumElements();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006181
Elena Demikhovskya6269ee2013-10-06 06:11:18 +00006182 // There is no blend with immediate in AVX-512.
6183 if (VT.is512BitVector())
6184 return SDValue();
6185
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006186 if (!Subtarget->hasSSE41() || EltVT == MVT::i8)
6187 return SDValue();
6188 if (!Subtarget->hasInt256() && VT == MVT::v16i16)
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006189 return SDValue();
6190
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006191 // Check the mask for BLEND and build the value.
6192 unsigned MaskValue = 0;
6193 // There are 2 lanes if (NumElems > 8), and 1 lane otherwise.
Craig Topper9b33ef72013-01-21 06:57:59 +00006194 unsigned NumLanes = (NumElems-1)/8 + 1;
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006195 unsigned NumElemsInLane = NumElems / NumLanes;
Nadav Roteme6113782012-04-11 06:40:27 +00006196
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006197 // Blend for v16i16 should be symetric for the both lanes.
6198 for (unsigned i = 0; i < NumElemsInLane; ++i) {
Nadav Roteme6113782012-04-11 06:40:27 +00006199
Craig Topper9b33ef72013-01-21 06:57:59 +00006200 int SndLaneEltIdx = (NumLanes == 2) ?
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006201 SVOp->getMaskElt(i + NumElemsInLane) : -1;
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006202 int EltIdx = SVOp->getMaskElt(i);
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006203
Craig Topper04f74a12013-01-21 07:25:16 +00006204 if ((EltIdx < 0 || EltIdx == (int)i) &&
6205 (SndLaneEltIdx < 0 || SndLaneEltIdx == (int)(i + NumElemsInLane)))
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006206 continue;
6207
Craig Topper9b33ef72013-01-21 06:57:59 +00006208 if (((unsigned)EltIdx == (i + NumElems)) &&
Craig Topper04f74a12013-01-21 07:25:16 +00006209 (SndLaneEltIdx < 0 ||
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006210 (unsigned)SndLaneEltIdx == i + NumElems + NumElemsInLane))
6211 MaskValue |= (1<<i);
Craig Topper9b33ef72013-01-21 06:57:59 +00006212 else
Craig Topper1842ba02012-04-23 06:38:28 +00006213 return SDValue();
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006214 }
6215
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006216 // Convert i32 vectors to floating point if it is not AVX2.
6217 // AVX2 introduced VPBLENDD instruction for 128 and 256-bit vectors.
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006218 MVT BlendVT = VT;
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006219 if (EltVT == MVT::i64 || (EltVT == MVT::i32 && !Subtarget->hasInt256())) {
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006220 BlendVT = MVT::getVectorVT(MVT::getFloatingPointVT(EltVT.getSizeInBits()),
6221 NumElems);
Elena Demikhovsky226e0e62012-12-05 09:24:57 +00006222 V1 = DAG.getNode(ISD::BITCAST, dl, VT, V1);
6223 V2 = DAG.getNode(ISD::BITCAST, dl, VT, V2);
6224 }
Craig Topper9b33ef72013-01-21 06:57:59 +00006225
Craig Topperbbf9d3e2013-01-21 07:19:54 +00006226 SDValue Ret = DAG.getNode(X86ISD::BLENDI, dl, BlendVT, V1, V2,
6227 DAG.getConstant(MaskValue, MVT::i32));
Nadav Roteme6113782012-04-11 06:40:27 +00006228 return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00006229}
6230
Nate Begemanb9a47b82009-02-23 08:49:38 +00006231// v8i16 shuffles - Prefer shuffles in the following order:
6232// 1. [all] pshuflw, pshufhw, optional move
6233// 2. [ssse3] 1 x pshufb
6234// 3. [ssse3] 2 x pshufb + 1 x por
6235// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Craig Topper55b24052012-09-11 06:15:32 +00006236static SDValue
6237LowerVECTOR_SHUFFLEv8i16(SDValue Op, const X86Subtarget *Subtarget,
6238 SelectionDAG &DAG) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00006239 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00006240 SDValue V1 = SVOp->getOperand(0);
6241 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006242 SDLoc dl(SVOp);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006243 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00006244
Nate Begemanb9a47b82009-02-23 08:49:38 +00006245 // Determine if more than 1 of the words in each of the low and high quadwords
6246 // of the result come from the same quadword of one of the two inputs. Undef
6247 // mask values count as coming from any quadword, for better codegen.
Benjamin Kramer003fad92011-10-15 13:28:31 +00006248 unsigned LoQuad[] = { 0, 0, 0, 0 };
6249 unsigned HiQuad[] = { 0, 0, 0, 0 };
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00006250 std::bitset<4> InputQuads;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006251 for (unsigned i = 0; i < 8; ++i) {
Benjamin Kramer003fad92011-10-15 13:28:31 +00006252 unsigned *Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00006253 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006254 MaskVals.push_back(EltIdx);
6255 if (EltIdx < 0) {
6256 ++Quad[0];
6257 ++Quad[1];
6258 ++Quad[2];
6259 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00006260 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006261 }
6262 ++Quad[EltIdx / 4];
6263 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00006264 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006265
Nate Begemanb9a47b82009-02-23 08:49:38 +00006266 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00006267 unsigned MaxQuad = 1;
6268 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006269 if (LoQuad[i] > MaxQuad) {
6270 BestLoQuad = i;
6271 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00006272 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006273 }
6274
Nate Begemanb9a47b82009-02-23 08:49:38 +00006275 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00006276 MaxQuad = 1;
6277 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006278 if (HiQuad[i] > MaxQuad) {
6279 BestHiQuad = i;
6280 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00006281 }
6282 }
6283
Nate Begemanb9a47b82009-02-23 08:49:38 +00006284 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00006285 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00006286 // single pshufb instruction is necessary. If There are more than 2 input
6287 // quads, disable the next transformation since it does not help SSSE3.
6288 bool V1Used = InputQuads[0] || InputQuads[1];
6289 bool V2Used = InputQuads[2] || InputQuads[3];
Craig Topperd0a31172012-01-10 06:37:29 +00006290 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006291 if (InputQuads.count() == 2 && V1Used && V2Used) {
Benjamin Kramer699ddcb2012-02-06 12:06:18 +00006292 BestLoQuad = InputQuads[0] ? 0 : 1;
6293 BestHiQuad = InputQuads[2] ? 2 : 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006294 }
6295 if (InputQuads.count() > 2) {
6296 BestLoQuad = -1;
6297 BestHiQuad = -1;
6298 }
6299 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006300
Nate Begemanb9a47b82009-02-23 08:49:38 +00006301 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
6302 // the shuffle mask. If a quad is scored as -1, that means that it contains
6303 // words from all 4 input quadwords.
6304 SDValue NewV;
6305 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006306 int MaskV[] = {
6307 BestLoQuad < 0 ? 0 : BestLoQuad,
6308 BestHiQuad < 0 ? 1 : BestHiQuad
6309 };
Eric Christopherfd179292009-08-27 18:07:15 +00006310 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006311 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
6312 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
6313 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00006314
Nate Begemanb9a47b82009-02-23 08:49:38 +00006315 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
6316 // source words for the shuffle, to aid later transformations.
6317 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00006318 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00006319 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006320 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00006321 if (idx != (int)i)
6322 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006323 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00006324 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006325 AllWordsInNewV = false;
6326 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00006327 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00006328
Nate Begemanb9a47b82009-02-23 08:49:38 +00006329 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
6330 if (AllWordsInNewV) {
6331 for (int i = 0; i != 8; ++i) {
6332 int idx = MaskVals[i];
6333 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00006334 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006335 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006336 if ((idx != i) && idx < 4)
6337 pshufhw = false;
6338 if ((idx != i) && idx > 3)
6339 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00006340 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006341 V1 = NewV;
6342 V2Used = false;
6343 BestLoQuad = 0;
6344 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006345 }
Evan Cheng14b32e12007-12-11 01:46:18 +00006346
Nate Begemanb9a47b82009-02-23 08:49:38 +00006347 // If we've eliminated the use of V2, and the new mask is a pshuflw or
6348 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00006349 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00006350 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
6351 unsigned TargetMask = 0;
6352 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00006353 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Craig Topperdd637ae2012-02-19 05:41:45 +00006354 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
6355 TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
6356 getShufflePSHUFLWImmediate(SVOp);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00006357 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006358 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00006359 }
Evan Cheng14b32e12007-12-11 01:46:18 +00006360 }
Eric Christopherfd179292009-08-27 18:07:15 +00006361
Benjamin Kramer11f2bf72013-01-26 11:44:21 +00006362 // Promote splats to a larger type which usually leads to more efficient code.
6363 // FIXME: Is this true if pshufb is available?
6364 if (SVOp->isSplat())
6365 return PromoteSplat(SVOp, DAG);
6366
Nate Begemanb9a47b82009-02-23 08:49:38 +00006367 // If we have SSSE3, and all words of the result are from 1 input vector,
6368 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
6369 // is present, fall back to case 4.
Craig Topperd0a31172012-01-10 06:37:29 +00006370 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006371 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00006372
Nate Begemanb9a47b82009-02-23 08:49:38 +00006373 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00006374 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00006375 // mask, and elements that come from V1 in the V2 mask, so that the two
6376 // results can be OR'd together.
6377 bool TwoInputs = V1Used && V2Used;
6378 for (unsigned i = 0; i != 8; ++i) {
6379 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00006380 int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
6381 int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
Craig Toppere6d8fa72013-01-18 07:27:20 +00006382 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
Craig Topperbe97ae92012-05-18 07:07:36 +00006383 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006384 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006385 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00006386 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00006387 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006388 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006389 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006390 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00006391
Nate Begemanb9a47b82009-02-23 08:49:38 +00006392 // Calculate the shuffle mask for the second input, shuffle it, and
6393 // OR it with the first shuffled input.
6394 pshufbMask.clear();
6395 for (unsigned i = 0; i != 8; ++i) {
6396 int EltIdx = MaskVals[i] * 2;
Craig Topperbe97ae92012-05-18 07:07:36 +00006397 int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
6398 int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
6399 pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
6400 pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006401 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006402 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00006403 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00006404 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006405 MVT::v16i8, &pshufbMask[0], 16));
6406 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006407 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006408 }
6409
6410 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
6411 // and update MaskVals with new element order.
Benjamin Kramer9c683542012-01-30 15:16:21 +00006412 std::bitset<8> InOrder;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006413 if (BestLoQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006414 int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00006415 for (int i = 0; i != 4; ++i) {
6416 int idx = MaskVals[i];
6417 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006418 InOrder.set(i);
6419 } else if ((idx / 4) == BestLoQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006420 MaskV[i] = idx & 3;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006421 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006422 }
6423 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006424 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00006425 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006426
Craig Topperdd637ae2012-02-19 05:41:45 +00006427 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6428 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006429 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00006430 NewV.getOperand(0),
6431 getShufflePSHUFLWImmediate(SVOp), DAG);
6432 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006433 }
Eric Christopherfd179292009-08-27 18:07:15 +00006434
Nate Begemanb9a47b82009-02-23 08:49:38 +00006435 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
6436 // and update MaskVals with the new element order.
6437 if (BestHiQuad >= 0) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006438 int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
Nate Begemanb9a47b82009-02-23 08:49:38 +00006439 for (unsigned i = 4; i != 8; ++i) {
6440 int idx = MaskVals[i];
6441 if (idx < 0) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006442 InOrder.set(i);
6443 } else if ((idx / 4) == BestHiQuad) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006444 MaskV[i] = (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006445 InOrder.set(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006446 }
6447 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006448 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00006449 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006450
Craig Topperdd637ae2012-02-19 05:41:45 +00006451 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
6452 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00006453 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
Craig Topperdd637ae2012-02-19 05:41:45 +00006454 NewV.getOperand(0),
6455 getShufflePSHUFHWImmediate(SVOp), DAG);
6456 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00006457 }
Eric Christopherfd179292009-08-27 18:07:15 +00006458
Nate Begemanb9a47b82009-02-23 08:49:38 +00006459 // In case BestHi & BestLo were both -1, which means each quadword has a word
6460 // from each of the four input quadwords, calculate the InOrder bitvector now
6461 // before falling through to the insert/extract cleanup.
6462 if (BestLoQuad == -1 && BestHiQuad == -1) {
6463 NewV = V1;
6464 for (int i = 0; i != 8; ++i)
6465 if (MaskVals[i] < 0 || MaskVals[i] == i)
6466 InOrder.set(i);
6467 }
Eric Christopherfd179292009-08-27 18:07:15 +00006468
Nate Begemanb9a47b82009-02-23 08:49:38 +00006469 // The other elements are put in the right place using pextrw and pinsrw.
6470 for (unsigned i = 0; i != 8; ++i) {
6471 if (InOrder[i])
6472 continue;
6473 int EltIdx = MaskVals[i];
6474 if (EltIdx < 0)
6475 continue;
Craig Topper6643d9c2012-05-04 06:18:33 +00006476 SDValue ExtOp = (EltIdx < 8) ?
6477 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
6478 DAG.getIntPtrConstant(EltIdx)) :
6479 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006480 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00006481 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006482 DAG.getIntPtrConstant(i));
6483 }
6484 return NewV;
6485}
6486
6487// v16i8 shuffles - Prefer shuffles in the following order:
6488// 1. [ssse3] 1 x pshufb
6489// 2. [ssse3] 2 x pshufb + 1 x por
6490// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
Craig Topper158ec072013-08-14 07:34:43 +00006491static SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
6492 const X86Subtarget* Subtarget,
6493 SelectionDAG &DAG) {
6494 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Nate Begeman9008ca62009-04-27 18:41:29 +00006495 SDValue V1 = SVOp->getOperand(0);
6496 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006497 SDLoc dl(SVOp);
Benjamin Kramered4c8c62012-01-15 13:16:05 +00006498 ArrayRef<int> MaskVals = SVOp->getMask();
Eric Christopherfd179292009-08-27 18:07:15 +00006499
Benjamin Kramer11f2bf72013-01-26 11:44:21 +00006500 // Promote splats to a larger type which usually leads to more efficient code.
6501 // FIXME: Is this true if pshufb is available?
6502 if (SVOp->isSplat())
6503 return PromoteSplat(SVOp, DAG);
6504
Nate Begemanb9a47b82009-02-23 08:49:38 +00006505 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00006506 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00006507 // present, fall back to case 3.
Eric Christopherfd179292009-08-27 18:07:15 +00006508
Nate Begemanb9a47b82009-02-23 08:49:38 +00006509 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
Craig Topper158ec072013-08-14 07:34:43 +00006510 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00006511 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00006512
Nate Begemanb9a47b82009-02-23 08:49:38 +00006513 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00006514 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006515 //
6516 // Otherwise, we have elements from both input vectors, and must zero out
6517 // elements that come from V2 in the first mask, and V1 in the second mask
6518 // so that we can OR them together.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006519 for (unsigned i = 0; i != 16; ++i) {
6520 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00006521 if (EltIdx < 0 || EltIdx >= 16)
6522 EltIdx = 0x80;
Owen Anderson825b72b2009-08-11 20:47:22 +00006523 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006524 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006525 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00006526 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006527 MVT::v16i8, &pshufbMask[0], 16));
Michael Liao265bcb12012-08-31 20:12:31 +00006528
6529 // As PSHUFB will zero elements with negative indices, it's safe to ignore
6530 // the 2nd operand if it's undefined or zero.
6531 if (V2.getOpcode() == ISD::UNDEF ||
6532 ISD::isBuildVectorAllZeros(V2.getNode()))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006533 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00006534
Nate Begemanb9a47b82009-02-23 08:49:38 +00006535 // Calculate the shuffle mask for the second input, shuffle it, and
6536 // OR it with the first shuffled input.
6537 pshufbMask.clear();
6538 for (unsigned i = 0; i != 16; ++i) {
6539 int EltIdx = MaskVals[i];
Craig Topperb82b5ab2012-05-18 06:42:06 +00006540 EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
Craig Topper85b9e562012-05-22 06:09:38 +00006541 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006542 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006543 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00006544 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006545 MVT::v16i8, &pshufbMask[0], 16));
6546 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006547 }
Eric Christopherfd179292009-08-27 18:07:15 +00006548
Nate Begemanb9a47b82009-02-23 08:49:38 +00006549 // No SSSE3 - Calculate in place words and then fix all out of place words
6550 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
6551 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006552 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
6553 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Craig Topperb82b5ab2012-05-18 06:42:06 +00006554 SDValue NewV = V1;
Nate Begemanb9a47b82009-02-23 08:49:38 +00006555 for (int i = 0; i != 8; ++i) {
6556 int Elt0 = MaskVals[i*2];
6557 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00006558
Nate Begemanb9a47b82009-02-23 08:49:38 +00006559 // This word of the result is all undef, skip it.
6560 if (Elt0 < 0 && Elt1 < 0)
6561 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006562
Nate Begemanb9a47b82009-02-23 08:49:38 +00006563 // This word of the result is already in the correct place, skip it.
Craig Topperb82b5ab2012-05-18 06:42:06 +00006564 if ((Elt0 == i*2) && (Elt1 == i*2+1))
Nate Begemanb9a47b82009-02-23 08:49:38 +00006565 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00006566
Nate Begemanb9a47b82009-02-23 08:49:38 +00006567 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6568 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6569 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00006570
6571 // If Elt0 and Elt1 are defined, are consecutive, and can be load
6572 // using a single extract together, load it and store it.
6573 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006574 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006575 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00006576 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00006577 DAG.getIntPtrConstant(i));
6578 continue;
6579 }
6580
Nate Begemanb9a47b82009-02-23 08:49:38 +00006581 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00006582 // source byte is not also odd, shift the extracted word left 8 bits
6583 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00006584 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006585 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006586 DAG.getIntPtrConstant(Elt1 / 2));
6587 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006588 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00006589 DAG.getConstant(8,
6590 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006591 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006592 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6593 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00006594 }
6595 // If Elt0 is defined, extract it from the appropriate source. If the
6596 // source byte is not also even, shift the extracted word right 8 bits. If
6597 // Elt1 was also defined, OR the extracted values together before
6598 // inserting them in the result.
6599 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006600 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006601 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6602 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006603 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00006604 DAG.getConstant(8,
6605 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00006606 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006607 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6608 DAG.getConstant(0x00FF, MVT::i16));
6609 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00006610 : InsElt0;
6611 }
Owen Anderson825b72b2009-08-11 20:47:22 +00006612 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00006613 DAG.getIntPtrConstant(i));
6614 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006615 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00006616}
6617
Elena Demikhovsky41789462012-09-06 12:42:01 +00006618// v32i8 shuffles - Translate to VPSHUFB if possible.
6619static
6620SDValue LowerVECTOR_SHUFFLEv32i8(ShuffleVectorSDNode *SVOp,
Craig Topper55b24052012-09-11 06:15:32 +00006621 const X86Subtarget *Subtarget,
6622 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00006623 MVT VT = SVOp->getSimpleValueType(0);
Elena Demikhovsky41789462012-09-06 12:42:01 +00006624 SDValue V1 = SVOp->getOperand(0);
6625 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006626 SDLoc dl(SVOp);
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006627 SmallVector<int, 32> MaskVals(SVOp->getMask().begin(), SVOp->getMask().end());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006628
6629 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006630 bool V1IsAllZero = ISD::isBuildVectorAllZeros(V1.getNode());
6631 bool V2IsAllZero = ISD::isBuildVectorAllZeros(V2.getNode());
Elena Demikhovsky41789462012-09-06 12:42:01 +00006632
Michael Liao471b9172012-10-03 23:43:52 +00006633 // VPSHUFB may be generated if
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006634 // (1) one of input vector is undefined or zeroinitializer.
6635 // The mask value 0x80 puts 0 in the corresponding slot of the vector.
6636 // And (2) the mask indexes don't cross the 128-bit lane.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00006637 if (VT != MVT::v32i8 || !Subtarget->hasInt256() ||
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006638 (!V2IsUndef && !V2IsAllZero && !V1IsAllZero))
Elena Demikhovsky41789462012-09-06 12:42:01 +00006639 return SDValue();
6640
Elena Demikhovsky8100d242012-09-10 12:13:11 +00006641 if (V1IsAllZero && !V2IsAllZero) {
6642 CommuteVectorShuffleMask(MaskVals, 32);
6643 V1 = V2;
6644 }
6645 SmallVector<SDValue, 32> pshufbMask;
Elena Demikhovsky41789462012-09-06 12:42:01 +00006646 for (unsigned i = 0; i != 32; i++) {
6647 int EltIdx = MaskVals[i];
6648 if (EltIdx < 0 || EltIdx >= 32)
6649 EltIdx = 0x80;
6650 else {
6651 if ((EltIdx >= 16 && i < 16) || (EltIdx < 16 && i >= 16))
6652 // Cross lane is not allowed.
6653 return SDValue();
6654 EltIdx &= 0xf;
6655 }
6656 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
6657 }
6658 return DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, V1,
6659 DAG.getNode(ISD::BUILD_VECTOR, dl,
6660 MVT::v32i8, &pshufbMask[0], 32));
6661}
6662
Evan Cheng7a831ce2007-12-15 03:00:47 +00006663/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006664/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00006665/// done when every pair / quad of shuffle mask elements point to elements in
6666/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00006667/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00006668static
Nate Begeman9008ca62009-04-27 18:41:29 +00006669SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Craig Topper3b2aba02013-01-20 00:43:42 +00006670 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00006671 MVT VT = SVOp->getSimpleValueType(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006672 SDLoc dl(SVOp);
Nate Begeman9008ca62009-04-27 18:41:29 +00006673 unsigned NumElems = VT.getVectorNumElements();
Craig Topper11ac1f82012-05-04 04:08:44 +00006674 MVT NewVT;
6675 unsigned Scale;
6676 switch (VT.SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +00006677 default: llvm_unreachable("Unexpected!");
Craig Topperf3640d72012-05-04 04:44:49 +00006678 case MVT::v4f32: NewVT = MVT::v2f64; Scale = 2; break;
6679 case MVT::v4i32: NewVT = MVT::v2i64; Scale = 2; break;
6680 case MVT::v8i16: NewVT = MVT::v4i32; Scale = 2; break;
6681 case MVT::v16i8: NewVT = MVT::v4i32; Scale = 4; break;
6682 case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6683 case MVT::v32i8: NewVT = MVT::v8i32; Scale = 4; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00006684 }
6685
Nate Begeman9008ca62009-04-27 18:41:29 +00006686 SmallVector<int, 8> MaskVec;
Craig Topper11ac1f82012-05-04 04:08:44 +00006687 for (unsigned i = 0; i != NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006688 int StartIdx = -1;
Craig Topper11ac1f82012-05-04 04:08:44 +00006689 for (unsigned j = 0; j != Scale; ++j) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006690 int EltIdx = SVOp->getMaskElt(i+j);
6691 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00006692 continue;
Craig Topper11ac1f82012-05-04 04:08:44 +00006693 if (StartIdx < 0)
6694 StartIdx = (EltIdx / Scale);
6695 if (EltIdx != (int)(StartIdx*Scale + j))
Dan Gohman475871a2008-07-27 21:46:04 +00006696 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006697 }
Craig Topper11ac1f82012-05-04 04:08:44 +00006698 MaskVec.push_back(StartIdx);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006699 }
6700
Craig Topper11ac1f82012-05-04 04:08:44 +00006701 SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6702 SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
Nate Begeman9008ca62009-04-27 18:41:29 +00006703 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00006704}
6705
Evan Chengd880b972008-05-09 21:53:03 +00006706/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00006707///
Craig Topper8d725b92013-08-15 05:33:45 +00006708static SDValue getVZextMovL(MVT VT, MVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00006709 SDValue SrcOp, SelectionDAG &DAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00006710 const X86Subtarget *Subtarget, SDLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006711 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006712 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00006713 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00006714 LD = dyn_cast<LoadSDNode>(SrcOp);
6715 if (!LD) {
6716 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6717 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00006718 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00006719 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00006720 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006721 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00006722 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006723 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00006724 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006725 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006726 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6727 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6728 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00006729 SrcOp.getOperand(0)
6730 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006731 }
6732 }
6733 }
6734
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006735 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00006736 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006737 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00006738 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00006739}
6740
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006741/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6742/// which could not be matched by any known target speficic shuffle
6743static SDValue
6744LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Elena Demikhovsky15963732012-06-26 08:04:10 +00006745
6746 SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6747 if (NewOp.getNode())
6748 return NewOp;
6749
Craig Topper5a0910b2013-08-15 02:33:50 +00006750 MVT VT = SVOp->getSimpleValueType(0);
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00006751
Craig Topper8f35c132012-01-20 09:29:03 +00006752 unsigned NumElems = VT.getVectorNumElements();
6753 unsigned NumLaneElems = NumElems / 2;
6754
Andrew Trickac6d9be2013-05-25 02:42:55 +00006755 SDLoc dl(SVOp);
Craig Topper657a99c2013-01-19 23:36:09 +00006756 MVT EltVT = VT.getVectorElementType();
6757 MVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
Craig Topper8ae97ba2012-05-21 06:40:16 +00006758 SDValue Output[2];
Craig Topper8f35c132012-01-20 09:29:03 +00006759
Craig Topper9a2b6e12012-04-06 07:45:23 +00006760 SmallVector<int, 16> Mask;
Craig Topper8f35c132012-01-20 09:29:03 +00006761 for (unsigned l = 0; l < 2; ++l) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006762 // Build a shuffle mask for the output, discovering on the fly which
6763 // input vectors to use as shuffle operands (recorded in InputUsed).
6764 // If building a suitable shuffle vector proves too hard, then bail
Craig Topper8ae97ba2012-05-21 06:40:16 +00006765 // out with UseBuildVector set.
6766 bool UseBuildVector = false;
Benjamin Kramer9e5512a2012-04-06 13:33:52 +00006767 int InputUsed[2] = { -1, -1 }; // Not yet discovered.
Craig Topper9a2b6e12012-04-06 07:45:23 +00006768 unsigned LaneStart = l * NumLaneElems;
6769 for (unsigned i = 0; i != NumLaneElems; ++i) {
6770 // The mask element. This indexes into the input.
6771 int Idx = SVOp->getMaskElt(i+LaneStart);
6772 if (Idx < 0) {
6773 // the mask element does not index into any input vector.
6774 Mask.push_back(-1);
6775 continue;
6776 }
Craig Topper8f35c132012-01-20 09:29:03 +00006777
Craig Topper9a2b6e12012-04-06 07:45:23 +00006778 // The input vector this mask element indexes into.
6779 int Input = Idx / NumLaneElems;
Craig Topper8f35c132012-01-20 09:29:03 +00006780
Craig Topper9a2b6e12012-04-06 07:45:23 +00006781 // Turn the index into an offset from the start of the input vector.
6782 Idx -= Input * NumLaneElems;
6783
6784 // Find or create a shuffle vector operand to hold this input.
6785 unsigned OpNo;
6786 for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6787 if (InputUsed[OpNo] == Input)
6788 // This input vector is already an operand.
6789 break;
6790 if (InputUsed[OpNo] < 0) {
6791 // Create a new operand for this input vector.
6792 InputUsed[OpNo] = Input;
6793 break;
6794 }
6795 }
6796
6797 if (OpNo >= array_lengthof(InputUsed)) {
Craig Topper8ae97ba2012-05-21 06:40:16 +00006798 // More than two input vectors used! Give up on trying to create a
6799 // shuffle vector. Insert all elements into a BUILD_VECTOR instead.
6800 UseBuildVector = true;
6801 break;
Craig Topper9a2b6e12012-04-06 07:45:23 +00006802 }
6803
6804 // Add the mask index for the new shuffle vector.
6805 Mask.push_back(Idx + OpNo * NumLaneElems);
6806 }
6807
Craig Topper8ae97ba2012-05-21 06:40:16 +00006808 if (UseBuildVector) {
6809 SmallVector<SDValue, 16> SVOps;
6810 for (unsigned i = 0; i != NumLaneElems; ++i) {
6811 // The mask element. This indexes into the input.
6812 int Idx = SVOp->getMaskElt(i+LaneStart);
6813 if (Idx < 0) {
6814 SVOps.push_back(DAG.getUNDEF(EltVT));
6815 continue;
6816 }
6817
6818 // The input vector this mask element indexes into.
6819 int Input = Idx / NumElems;
6820
6821 // Turn the index into an offset from the start of the input vector.
6822 Idx -= Input * NumElems;
6823
6824 // Extract the vector element by hand.
6825 SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6826 SVOp->getOperand(Input),
6827 DAG.getIntPtrConstant(Idx)));
6828 }
6829
6830 // Construct the output using a BUILD_VECTOR.
6831 Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6832 SVOps.size());
6833 } else if (InputUsed[0] < 0) {
Craig Topper9a2b6e12012-04-06 07:45:23 +00006834 // No input vectors were used! The result is undefined.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006835 Output[l] = DAG.getUNDEF(NVT);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006836 } else {
6837 SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006838 (InputUsed[0] % 2) * NumLaneElems,
6839 DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006840 // If only one input was used, use an undefined vector for the other.
6841 SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6842 Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
Craig Topperb14940a2012-04-22 20:55:18 +00006843 (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006844 // At least one input vector was used. Create a new shuffle vector.
Craig Topper8ae97ba2012-05-21 06:40:16 +00006845 Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
Craig Topper9a2b6e12012-04-06 07:45:23 +00006846 }
6847
6848 Mask.clear();
6849 }
Craig Topper8f35c132012-01-20 09:29:03 +00006850
6851 // Concatenate the result back
Craig Topper8ae97ba2012-05-21 06:40:16 +00006852 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006853}
6854
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006855/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6856/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00006857static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006858LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006859 SDValue V1 = SVOp->getOperand(0);
6860 SDValue V2 = SVOp->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00006861 SDLoc dl(SVOp);
Craig Topper5a0910b2013-08-15 02:33:50 +00006862 MVT VT = SVOp->getSimpleValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00006863
Craig Topper7a9a28b2012-08-12 02:23:29 +00006864 assert(VT.is128BitVector() && "Unsupported vector size");
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006865
Benjamin Kramer9c683542012-01-30 15:16:21 +00006866 std::pair<int, int> Locs[4];
6867 int Mask1[] = { -1, -1, -1, -1 };
Benjamin Kramered4c8c62012-01-15 13:16:05 +00006868 SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
Nate Begeman9008ca62009-04-27 18:41:29 +00006869
Evan Chengace3c172008-07-22 21:13:36 +00006870 unsigned NumHi = 0;
6871 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00006872 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006873 int Idx = PermMask[i];
6874 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006875 Locs[i] = std::make_pair(-1, -1);
6876 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00006877 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6878 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006879 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00006880 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006881 NumLo++;
6882 } else {
6883 Locs[i] = std::make_pair(1, NumHi);
6884 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00006885 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006886 NumHi++;
6887 }
6888 }
6889 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006890
Evan Chengace3c172008-07-22 21:13:36 +00006891 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006892 // If no more than two elements come from either vector. This can be
6893 // implemented with two shuffles. First shuffle gather the elements.
6894 // The second shuffle, which takes the first shuffle as both of its
6895 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00006896 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006897
Benjamin Kramer9c683542012-01-30 15:16:21 +00006898 int Mask2[] = { -1, -1, -1, -1 };
Eric Christopherfd179292009-08-27 18:07:15 +00006899
Benjamin Kramer9c683542012-01-30 15:16:21 +00006900 for (unsigned i = 0; i != 4; ++i)
6901 if (Locs[i].first != -1) {
Evan Chengace3c172008-07-22 21:13:36 +00006902 unsigned Idx = (i < 2) ? 0 : 4;
6903 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006904 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006905 }
Evan Chengace3c172008-07-22 21:13:36 +00006906
Nate Begeman9008ca62009-04-27 18:41:29 +00006907 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Craig Topper69947b92012-04-23 06:57:04 +00006908 }
6909
6910 if (NumLo == 3 || NumHi == 3) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006911 // Otherwise, we must have three elements from one vector, call it X, and
6912 // one element from the other, call it Y. First, use a shufps to build an
6913 // intermediate vector with the one element from Y and the element from X
6914 // that will be in the same half in the final destination (the indexes don't
6915 // matter). Then, use a shufps to build the final vector, taking the half
6916 // containing the element from Y from the intermediate, and the other half
6917 // from X.
6918 if (NumHi == 3) {
6919 // Normalize it so the 3 elements come from V1.
Craig Topperbeabc6c2011-12-05 06:56:46 +00006920 CommuteVectorShuffleMask(PermMask, 4);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006921 std::swap(V1, V2);
6922 }
6923
6924 // Find the element from V2.
6925 unsigned HiIndex;
6926 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006927 int Val = PermMask[HiIndex];
6928 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006929 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006930 if (Val >= 4)
6931 break;
6932 }
6933
Nate Begeman9008ca62009-04-27 18:41:29 +00006934 Mask1[0] = PermMask[HiIndex];
6935 Mask1[1] = -1;
6936 Mask1[2] = PermMask[HiIndex^1];
6937 Mask1[3] = -1;
6938 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006939
6940 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006941 Mask1[0] = PermMask[0];
6942 Mask1[1] = PermMask[1];
6943 Mask1[2] = HiIndex & 1 ? 6 : 4;
6944 Mask1[3] = HiIndex & 1 ? 4 : 6;
6945 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006946 }
Craig Topper69947b92012-04-23 06:57:04 +00006947
6948 Mask1[0] = HiIndex & 1 ? 2 : 0;
6949 Mask1[1] = HiIndex & 1 ? 0 : 2;
6950 Mask1[2] = PermMask[2];
6951 Mask1[3] = PermMask[3];
6952 if (Mask1[2] >= 0)
6953 Mask1[2] += 4;
6954 if (Mask1[3] >= 0)
6955 Mask1[3] += 4;
6956 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006957 }
6958
6959 // Break it into (shuffle shuffle_hi, shuffle_lo).
Benjamin Kramer9c683542012-01-30 15:16:21 +00006960 int LoMask[] = { -1, -1, -1, -1 };
6961 int HiMask[] = { -1, -1, -1, -1 };
Nate Begeman9008ca62009-04-27 18:41:29 +00006962
Benjamin Kramer9c683542012-01-30 15:16:21 +00006963 int *MaskPtr = LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00006964 unsigned MaskIdx = 0;
6965 unsigned LoIdx = 0;
6966 unsigned HiIdx = 2;
6967 for (unsigned i = 0; i != 4; ++i) {
6968 if (i == 2) {
Benjamin Kramer9c683542012-01-30 15:16:21 +00006969 MaskPtr = HiMask;
Evan Chengace3c172008-07-22 21:13:36 +00006970 MaskIdx = 1;
6971 LoIdx = 0;
6972 HiIdx = 2;
6973 }
Nate Begeman9008ca62009-04-27 18:41:29 +00006974 int Idx = PermMask[i];
6975 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006976 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00006977 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006978 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006979 MaskPtr[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006980 LoIdx++;
6981 } else {
6982 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006983 MaskPtr[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006984 HiIdx++;
6985 }
6986 }
6987
Nate Begeman9008ca62009-04-27 18:41:29 +00006988 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6989 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
Benjamin Kramer9c683542012-01-30 15:16:21 +00006990 int MaskOps[] = { -1, -1, -1, -1 };
6991 for (unsigned i = 0; i != 4; ++i)
6992 if (Locs[i].first != -1)
6993 MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006994 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006995}
6996
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006997static bool MayFoldVectorLoad(SDValue V) {
Jakub Staszaka24262a2012-10-30 00:01:57 +00006998 while (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006999 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00007000
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00007001 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
7002 V = V.getOperand(0);
Evan Cheng7bc389b2011-11-08 00:31:58 +00007003 if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
7004 V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
7005 // BUILD_VECTOR (load), undef
7006 V = V.getOperand(0);
Jakub Staszaka24262a2012-10-30 00:01:57 +00007007
7008 return MayFoldLoad(V);
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00007009}
7010
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007011static
Andrew Trickac6d9be2013-05-25 02:42:55 +00007012SDValue getMOVDDup(SDValue &Op, SDLoc &dl, SDValue V1, SelectionDAG &DAG) {
Craig Topper8d725b92013-08-15 05:33:45 +00007013 MVT VT = Op.getSimpleValueType();
Evan Cheng835580f2010-10-07 20:50:20 +00007014
7015 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007016 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
7017 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00007018 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
7019 V1, DAG));
7020}
7021
7022static
Andrew Trickac6d9be2013-05-25 02:42:55 +00007023SDValue getMOVLowToHigh(SDValue &Op, SDLoc &dl, SelectionDAG &DAG,
Craig Topper1accb7e2012-01-10 06:54:16 +00007024 bool HasSSE2) {
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007025 SDValue V1 = Op.getOperand(0);
7026 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00007027 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007028
7029 assert(VT != MVT::v2i64 && "unsupported shuffle type");
7030
Craig Topper1accb7e2012-01-10 06:54:16 +00007031 if (HasSSE2 && VT == MVT::v2f64)
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007032 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
7033
Evan Cheng0899f5c2011-08-31 02:05:24 +00007034 // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
7035 return DAG.getNode(ISD::BITCAST, dl, VT,
7036 getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
7037 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
7038 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007039}
7040
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007041static
Andrew Trickac6d9be2013-05-25 02:42:55 +00007042SDValue getMOVHighToLow(SDValue &Op, SDLoc &dl, SelectionDAG &DAG) {
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007043 SDValue V1 = Op.getOperand(0);
7044 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00007045 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007046
7047 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
7048 "unsupported shuffle type");
7049
7050 if (V2.getOpcode() == ISD::UNDEF)
7051 V2 = V1;
7052
7053 // v4i32 or v4f32
7054 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
7055}
7056
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007057static
Andrew Trickac6d9be2013-05-25 02:42:55 +00007058SDValue getMOVLP(SDValue &Op, SDLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007059 SDValue V1 = Op.getOperand(0);
7060 SDValue V2 = Op.getOperand(1);
Craig Topper8d725b92013-08-15 05:33:45 +00007061 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007062 unsigned NumElems = VT.getVectorNumElements();
7063
7064 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
7065 // operand of these instructions is only memory, so check if there's a
7066 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
7067 // same masks.
7068 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007069
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00007070 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00007071 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007072 CanFoldLoad = true;
7073
7074 // When V1 is a load, it can be folded later into a store in isel, example:
7075 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
7076 // turns into:
7077 // (MOVLPSmr addr:$src1, VR128:$src2)
7078 // So, recognize this potential and also use MOVLPS or MOVLPD
Evan Cheng7bc389b2011-11-08 00:31:58 +00007079 else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007080 CanFoldLoad = true;
7081
Dan Gohman65fd6562011-11-03 21:49:52 +00007082 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007083 if (CanFoldLoad) {
Craig Topper1accb7e2012-01-10 06:54:16 +00007084 if (HasSSE2 && NumElems == 2)
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007085 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
7086
7087 if (NumElems == 4)
Benjamin Kramerd9b0b022012-06-02 10:20:22 +00007088 // If we don't care about the second element, proceed to use movss.
Dan Gohman65fd6562011-11-03 21:49:52 +00007089 if (SVOp->getMaskElt(1) != -1)
7090 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007091 }
7092
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007093 // movl and movlp will both match v2i64, but v2i64 is never matched by
7094 // movl earlier because we make it strict to avoid messing with the movlp load
7095 // folding logic (see the code above getMOVLP call). Match it here then,
7096 // this is horrible, but will stay like this until we move all shuffle
7097 // matching to x86 specific nodes. Note that for the 1st condition all
7098 // types are matched with movsd.
Craig Topper1accb7e2012-01-10 06:54:16 +00007099 if (HasSSE2) {
Bruno Cardoso Lopes5ca0d142011-09-14 02:36:14 +00007100 // FIXME: isMOVLMask should be checked and matched before getMOVLP,
7101 // as to remove this logic from here, as much as possible
Craig Topper5aaffa82012-02-19 02:53:47 +00007102 if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00007103 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007104 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00007105 }
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007106
7107 assert(VT != MVT::v4i32 && "unsupported shuffle type");
7108
7109 // Invert the operand order and use SHUFPS to match it.
Craig Topperb3982da2011-12-31 23:50:21 +00007110 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007111 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00007112}
7113
Michael Liaod9d09602012-10-23 17:34:00 +00007114// Reduce a vector shuffle to zext.
Craig Topper158ec072013-08-14 07:34:43 +00007115static SDValue LowerVectorIntExtend(SDValue Op, const X86Subtarget *Subtarget,
7116 SelectionDAG &DAG) {
Michael Liaod9d09602012-10-23 17:34:00 +00007117 // PMOVZX is only available from SSE41.
7118 if (!Subtarget->hasSSE41())
7119 return SDValue();
7120
Craig Topper8d725b92013-08-15 05:33:45 +00007121 MVT VT = Op.getSimpleValueType();
Michael Liaod9d09602012-10-23 17:34:00 +00007122
7123 // Only AVX2 support 256-bit vector integer extending.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007124 if (!Subtarget->hasInt256() && VT.is256BitVector())
Michael Liaod9d09602012-10-23 17:34:00 +00007125 return SDValue();
7126
7127 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007128 SDLoc DL(Op);
Michael Liaod9d09602012-10-23 17:34:00 +00007129 SDValue V1 = Op.getOperand(0);
7130 SDValue V2 = Op.getOperand(1);
7131 unsigned NumElems = VT.getVectorNumElements();
7132
7133 // Extending is an unary operation and the element type of the source vector
7134 // won't be equal to or larger than i64.
7135 if (V2.getOpcode() != ISD::UNDEF || !VT.isInteger() ||
7136 VT.getVectorElementType() == MVT::i64)
7137 return SDValue();
7138
7139 // Find the expansion ratio, e.g. expanding from i8 to i32 has a ratio of 4.
7140 unsigned Shift = 1; // Start from 2, i.e. 1 << 1.
Duncan Sands34739052012-10-29 11:29:53 +00007141 while ((1U << Shift) < NumElems) {
7142 if (SVOp->getMaskElt(1U << Shift) == 1)
Michael Liaod9d09602012-10-23 17:34:00 +00007143 break;
7144 Shift += 1;
7145 // The maximal ratio is 8, i.e. from i8 to i64.
7146 if (Shift > 3)
7147 return SDValue();
7148 }
7149
7150 // Check the shuffle mask.
7151 unsigned Mask = (1U << Shift) - 1;
7152 for (unsigned i = 0; i != NumElems; ++i) {
7153 int EltIdx = SVOp->getMaskElt(i);
7154 if ((i & Mask) != 0 && EltIdx != -1)
7155 return SDValue();
Matt Beaumont-Gaya999de02012-10-23 19:46:36 +00007156 if ((i & Mask) == 0 && (unsigned)EltIdx != (i >> Shift))
Michael Liaod9d09602012-10-23 17:34:00 +00007157 return SDValue();
7158 }
7159
7160 unsigned NBits = VT.getVectorElementType().getSizeInBits() << Shift;
Craig Topper8d725b92013-08-15 05:33:45 +00007161 MVT NeVT = MVT::getIntegerVT(NBits);
7162 MVT NVT = MVT::getVectorVT(NeVT, NumElems >> Shift);
Michael Liaod9d09602012-10-23 17:34:00 +00007163
Craig Topper158ec072013-08-14 07:34:43 +00007164 if (!DAG.getTargetLoweringInfo().isTypeLegal(NVT))
Michael Liaod9d09602012-10-23 17:34:00 +00007165 return SDValue();
7166
7167 // Simplify the operand as it's prepared to be fed into shuffle.
7168 unsigned SignificantBits = NVT.getSizeInBits() >> Shift;
7169 if (V1.getOpcode() == ISD::BITCAST &&
7170 V1.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
7171 V1.getOperand(0).getOperand(0).getOpcode() == ISD::EXTRACT_VECTOR_ELT &&
Craig Topper8d725b92013-08-15 05:33:45 +00007172 V1.getOperand(0).getOperand(0)
7173 .getSimpleValueType().getSizeInBits() == SignificantBits) {
Michael Liaod9d09602012-10-23 17:34:00 +00007174 // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast x)
7175 SDValue V = V1.getOperand(0).getOperand(0).getOperand(0);
Michael Liao07872742012-10-23 21:40:15 +00007176 ConstantSDNode *CIdx =
7177 dyn_cast<ConstantSDNode>(V1.getOperand(0).getOperand(0).getOperand(1));
Michael Liaod9d09602012-10-23 17:34:00 +00007178 // If it's foldable, i.e. normal load with single use, we will let code
7179 // selection to fold it. Otherwise, we will short the conversion sequence.
Michael Liao07872742012-10-23 21:40:15 +00007180 if (CIdx && CIdx->getZExtValue() == 0 &&
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007181 (!ISD::isNormalLoad(V.getNode()) || !V.hasOneUse())) {
Craig Topper8d725b92013-08-15 05:33:45 +00007182 MVT FullVT = V.getSimpleValueType();
7183 MVT V1VT = V1.getSimpleValueType();
7184 if (FullVT.getSizeInBits() > V1VT.getSizeInBits()) {
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007185 // The "ext_vec_elt" node is wider than the result node.
7186 // In this case we should extract subvector from V.
7187 // (bitcast (sclr2vec (ext_vec_elt x))) -> (bitcast (extract_subvector x)).
Craig Topper8d725b92013-08-15 05:33:45 +00007188 unsigned Ratio = FullVT.getSizeInBits() / V1VT.getSizeInBits();
7189 MVT SubVecVT = MVT::getVectorVT(FullVT.getVectorElementType(),
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007190 FullVT.getVectorNumElements()/Ratio);
Matt Arsenault225ed702013-05-18 00:21:46 +00007191 V = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, SubVecVT, V,
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007192 DAG.getIntPtrConstant(0));
7193 }
Craig Topper8d725b92013-08-15 05:33:45 +00007194 V1 = DAG.getNode(ISD::BITCAST, DL, V1VT, V);
Elena Demikhovsky60b3e182013-02-14 08:20:26 +00007195 }
Michael Liaod9d09602012-10-23 17:34:00 +00007196 }
7197
7198 return DAG.getNode(ISD::BITCAST, DL, VT,
7199 DAG.getNode(X86ISD::VZEXT, DL, NVT, V1));
7200}
7201
Craig Topper158ec072013-08-14 07:34:43 +00007202static SDValue
7203NormalizeVectorShuffle(SDValue Op, const X86Subtarget *Subtarget,
7204 SelectionDAG &DAG) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007205 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00007206 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007207 SDLoc dl(Op);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007208 SDValue V1 = Op.getOperand(0);
7209 SDValue V2 = Op.getOperand(1);
7210
7211 if (isZeroShuffle(SVOp))
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +00007212 return getZeroVector(VT, Subtarget, DAG, dl);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007213
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007214 // Handle splat operations
7215 if (SVOp->isSplat()) {
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00007216 // Use vbroadcast whenever the splat comes from a foldable load
Craig Topper158ec072013-08-14 07:34:43 +00007217 SDValue Broadcast = LowerVectorBroadcast(Op, Subtarget, DAG);
Nadav Rotem9d68b062012-04-08 12:54:54 +00007218 if (Broadcast.getNode())
7219 return Broadcast;
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007220 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007221
Michael Liaod9d09602012-10-23 17:34:00 +00007222 // Check integer expanding shuffles.
Craig Topper158ec072013-08-14 07:34:43 +00007223 SDValue NewOp = LowerVectorIntExtend(Op, Subtarget, DAG);
Michael Liaod9d09602012-10-23 17:34:00 +00007224 if (NewOp.getNode())
7225 return NewOp;
7226
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007227 // If the shuffle can be profitably rewritten as a narrower shuffle, then
7228 // do it!
Craig Topperf3640d72012-05-04 04:44:49 +00007229 if (VT == MVT::v8i16 || VT == MVT::v16i8 ||
7230 VT == MVT::v16i16 || VT == MVT::v32i8) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007231 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007232 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007233 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00007234 } else if ((VT == MVT::v4i32 ||
Craig Topper1accb7e2012-01-10 06:54:16 +00007235 (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007236 // FIXME: Figure out a cleaner way to do this.
7237 // Try to make use of movq to zero out the top part.
7238 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007239 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007240 if (NewOp.getNode()) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007241 MVT NewVT = NewOp.getSimpleValueType();
Craig Topper5aaffa82012-02-19 02:53:47 +00007242 if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
7243 NewVT, true, false))
7244 return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007245 DAG, Subtarget, dl);
7246 }
7247 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
Craig Topper3b2aba02013-01-20 00:43:42 +00007248 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG);
Craig Topper5aaffa82012-02-19 02:53:47 +00007249 if (NewOp.getNode()) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007250 MVT NewVT = NewOp.getSimpleValueType();
Craig Topper5aaffa82012-02-19 02:53:47 +00007251 if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
7252 return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
7253 DAG, Subtarget, dl);
7254 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007255 }
7256 }
7257 return SDValue();
7258}
7259
Dan Gohman475871a2008-07-27 21:46:04 +00007260SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007261X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00007262 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00007263 SDValue V1 = Op.getOperand(0);
7264 SDValue V2 = Op.getOperand(1);
Craig Topper5a0910b2013-08-15 02:33:50 +00007265 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007266 SDLoc dl(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00007267 unsigned NumElems = VT.getVectorNumElements();
Elena Demikhovsky16db7102012-01-12 20:33:10 +00007268 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007269 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00007270 bool V1IsSplat = false;
7271 bool V2IsSplat = false;
Craig Topper1accb7e2012-01-10 06:54:16 +00007272 bool HasSSE2 = Subtarget->hasSSE2();
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007273 bool HasFp256 = Subtarget->hasFp256();
7274 bool HasInt256 = Subtarget->hasInt256();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007275 MachineFunction &MF = DAG.getMachineFunction();
Bill Wendling831737d2012-12-30 10:32:01 +00007276 bool OptForSize = MF.getFunction()->getAttributes().
7277 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007278
Craig Topper3426a3e2011-11-14 06:46:21 +00007279 assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00007280
Elena Demikhovsky16db7102012-01-12 20:33:10 +00007281 if (V1IsUndef && V2IsUndef)
7282 return DAG.getUNDEF(VT);
7283
7284 assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
Craig Topper38034c52011-11-26 22:55:48 +00007285
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007286 // Vector shuffle lowering takes 3 steps:
7287 //
7288 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
7289 // narrowing and commutation of operands should be handled.
7290 // 2) Matching of shuffles with known shuffle masks to x86 target specific
7291 // shuffle nodes.
7292 // 3) Rewriting of unmatched masks into new generic shuffle operations,
7293 // so the shuffle can be broken into other shuffles and the legalizer can
7294 // try the lowering again.
7295 //
Craig Topper3426a3e2011-11-14 06:46:21 +00007296 // The general idea is that no vector_shuffle operation should be left to
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007297 // be matched during isel, all of them must be converted to a target specific
7298 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00007299
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007300 // Normalize the input vectors. Here splats, zeroed vectors, profitable
7301 // narrowing and commutation of operands should be handled. The actual code
7302 // doesn't include all of those, work in progress...
Craig Topper158ec072013-08-14 07:34:43 +00007303 SDValue NewOp = NormalizeVectorShuffle(Op, Subtarget, DAG);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00007304 if (NewOp.getNode())
7305 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00007306
Craig Topper5aaffa82012-02-19 02:53:47 +00007307 SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
7308
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00007309 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
7310 // unpckh_undef). Only use pshufd if speed is more important than size.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007311 if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007312 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007313 if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007314 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00007315
Craig Topperdd637ae2012-02-19 05:41:45 +00007316 if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
Jakub Staszakd3a05632012-12-06 19:05:46 +00007317 V2IsUndef && MayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00007318 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007319
Craig Topperdd637ae2012-02-19 05:41:45 +00007320 if (isMOVHLPS_v_undef_Mask(M, VT))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007321 return getMOVHighToLow(Op, dl, DAG);
7322
7323 // Use to match splats
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007324 if (HasSSE2 && isUNPCKHMask(M, VT, HasInt256) && V2IsUndef &&
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007325 (VT == MVT::v2f64 || VT == MVT::v2i64))
Craig Topper34671b82011-12-06 08:21:25 +00007326 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00007327
Craig Topper5aaffa82012-02-19 02:53:47 +00007328 if (isPSHUFDMask(M, VT)) {
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007329 // The actual implementation will match the mask in the if above and then
7330 // during isel it can match several different instructions, not only pshufd
7331 // as its name says, sad but true, emulate the behavior for now...
Craig Topperdd637ae2012-02-19 05:41:45 +00007332 if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
7333 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007334
Craig Topper5aaffa82012-02-19 02:53:47 +00007335 unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007336
Craig Topper1accb7e2012-01-10 06:54:16 +00007337 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007338 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
7339
Nadav Roteme4ccfef2012-12-07 19:01:13 +00007340 if (HasFp256 && (VT == MVT::v4f32 || VT == MVT::v2f64))
7341 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask,
7342 DAG);
7343
Craig Topperb3982da2011-12-31 23:50:21 +00007344 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00007345 TargetMask, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00007346 }
Eric Christopherfd179292009-08-27 18:07:15 +00007347
Benjamin Kramera0de26c2013-05-17 14:48:34 +00007348 if (isPALIGNRMask(M, VT, Subtarget))
7349 return getTargetShuffleNode(X86ISD::PALIGNR, dl, VT, V1, V2,
7350 getShufflePALIGNRImmediate(SVOp),
7351 DAG);
7352
Evan Chengf26ffe92008-05-29 08:22:04 +00007353 // Check if this can be converted into a logical shift.
7354 bool isLeft = false;
7355 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00007356 SDValue ShVal;
Craig Topper1accb7e2012-01-10 06:54:16 +00007357 bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00007358 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007359 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00007360 // v_set0 + movlhps or movhlps, etc.
Craig Topper657a99c2013-01-19 23:36:09 +00007361 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007362 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00007363 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00007364 }
Eric Christopherfd179292009-08-27 18:07:15 +00007365
Craig Topper5aaffa82012-02-19 02:53:47 +00007366 if (isMOVLMask(M, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00007367 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00007368 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Craig Topperdd637ae2012-02-19 05:41:45 +00007369 if (!isMOVLPMask(M, VT)) {
Craig Topper1accb7e2012-01-10 06:54:16 +00007370 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00007371 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
7372
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00007373 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00007374 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
7375 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00007376 }
Eric Christopherfd179292009-08-27 18:07:15 +00007377
Nate Begeman9008ca62009-04-27 18:41:29 +00007378 // FIXME: fold these into legal mask.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007379 if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasInt256))
Craig Topper1accb7e2012-01-10 06:54:16 +00007380 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00007381
Craig Topperdd637ae2012-02-19 05:41:45 +00007382 if (isMOVHLPSMask(M, VT))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007383 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00007384
Craig Topperdd637ae2012-02-19 05:41:45 +00007385 if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007386 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00007387
Craig Topperdd637ae2012-02-19 05:41:45 +00007388 if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00007389 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00007390
Craig Topperdd637ae2012-02-19 05:41:45 +00007391 if (isMOVLPMask(M, VT))
Craig Topper1accb7e2012-01-10 06:54:16 +00007392 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007393
Craig Topperdd637ae2012-02-19 05:41:45 +00007394 if (ShouldXformToMOVHLPS(M, VT) ||
7395 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
Nate Begeman9008ca62009-04-27 18:41:29 +00007396 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007397
Evan Chengf26ffe92008-05-29 08:22:04 +00007398 if (isShift) {
Craig Toppered2e13d2012-01-22 19:15:14 +00007399 // No better options. Use a vshldq / vsrldq.
Craig Topper657a99c2013-01-19 23:36:09 +00007400 MVT EltVT = VT.getVectorElementType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007401 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00007402 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00007403 }
Eric Christopherfd179292009-08-27 18:07:15 +00007404
Evan Cheng9eca5e82006-10-25 21:49:50 +00007405 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00007406 // FIXME: This should also accept a bitcast of a splat? Be careful, not
7407 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00007408 V1IsSplat = isSplatVector(V1.getNode());
7409 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00007410
Chris Lattner8a594482007-11-25 00:24:49 +00007411 // Canonicalize the splat or undef, if present, to be on the RHS.
Craig Topper39a9e482012-02-11 06:24:48 +00007412 if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
7413 CommuteVectorShuffleMask(M, NumElems);
7414 std::swap(V1, V2);
Evan Cheng9bbbb982006-10-25 20:48:19 +00007415 std::swap(V1IsSplat, V2IsSplat);
Evan Cheng9eca5e82006-10-25 21:49:50 +00007416 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00007417 }
7418
Craig Topperbeabc6c2011-12-05 06:56:46 +00007419 if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00007420 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00007421 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00007422 return V1;
7423 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
7424 // the instruction selector will not match, so get a canonical MOVL with
7425 // swapped operands to undo the commute.
7426 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00007427 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007428
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007429 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007430 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007431
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007432 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007433 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00007434
Evan Cheng9bbbb982006-10-25 20:48:19 +00007435 if (V2IsSplat) {
7436 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007437 // element then try to match unpck{h|l} again. If match, return a
Craig Topper39a9e482012-02-11 06:24:48 +00007438 // new vector_shuffle with the corrected mask.p
7439 SmallVector<int, 8> NewMask(M.begin(), M.end());
7440 NormalizeMask(NewMask, NumElems);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007441 if (isUNPCKLMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00007442 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007443 if (isUNPCKHMask(NewMask, VT, HasInt256, true))
Craig Topper39a9e482012-02-11 06:24:48 +00007444 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007445 }
7446
Evan Cheng9eca5e82006-10-25 21:49:50 +00007447 if (Commuted) {
7448 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00007449 // FIXME: this seems wrong.
Craig Topper39a9e482012-02-11 06:24:48 +00007450 CommuteVectorShuffleMask(M, NumElems);
7451 std::swap(V1, V2);
7452 std::swap(V1IsSplat, V2IsSplat);
7453 Commuted = false;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007454
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007455 if (isUNPCKLMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00007456 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00007457
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007458 if (isUNPCKHMask(M, VT, HasInt256))
Craig Topper39a9e482012-02-11 06:24:48 +00007459 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00007460 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007461
Nate Begeman9008ca62009-04-27 18:41:29 +00007462 // Normalize the node to match x86 shuffle ops if needed
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007463 if (!V2IsUndef && (isSHUFPMask(M, VT, /* Commuted */ true)))
Nate Begeman9008ca62009-04-27 18:41:29 +00007464 return CommuteVectorShuffle(SVOp, DAG);
7465
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00007466 // The checks below are all present in isShuffleMaskLegal, but they are
7467 // inlined here right now to enable us to directly emit target specific
7468 // nodes, and remove one by one until they don't return Op anymore.
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00007469
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00007470 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
7471 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Craig Topperbeabc6c2011-12-05 06:56:46 +00007472 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Craig Topper34671b82011-12-06 08:21:25 +00007473 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00007474 }
7475
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007476 if (isPSHUFHWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007477 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007478 getShufflePSHUFHWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007479 DAG);
7480
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007481 if (isPSHUFLWMask(M, VT, HasInt256))
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007482 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007483 getShufflePSHUFLWImmediate(SVOp),
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00007484 DAG);
7485
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007486 if (isSHUFPMask(M, VT))
Craig Topperb3982da2011-12-31 23:50:21 +00007487 return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
Craig Topper5aaffa82012-02-19 02:53:47 +00007488 getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00007489
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007490 if (isUNPCKL_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007491 return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007492 if (isUNPCKH_v_undef_Mask(M, VT, HasInt256))
Craig Topper34671b82011-12-06 08:21:25 +00007493 return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00007494
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007495 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007496 // Generate target specific nodes for 128 or 256-bit shuffles only
7497 // supported in the AVX instruction set.
7498 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007499
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00007500 // Handle VMOVDDUPY permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007501 if (V2IsUndef && isMOVDDUPYMask(M, VT, HasFp256))
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00007502 return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
7503
Craig Topper70b883b2011-11-28 10:14:51 +00007504 // Handle VPERMILPS/D* permutations
Elena Demikhovsky92bfb542013-08-26 12:45:35 +00007505 if (isVPERMILPMask(M, VT)) {
7506 if ((HasInt256 && VT == MVT::v8i32) || VT == MVT::v16i32)
Craig Topperdbd98a42012-02-07 06:28:42 +00007507 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007508 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topper316cd2a2011-11-30 06:25:25 +00007509 return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
Craig Topper5aaffa82012-02-19 02:53:47 +00007510 getShuffleSHUFImmediate(SVOp), DAG);
Craig Topperdbd98a42012-02-07 06:28:42 +00007511 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007512
Craig Topper70b883b2011-11-28 10:14:51 +00007513 // Handle VPERM2F128/VPERM2I128 permutations
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007514 if (isVPERM2X128Mask(M, VT, HasFp256))
Craig Topperec24e612011-11-30 07:47:51 +00007515 return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
Craig Topper70b883b2011-11-28 10:14:51 +00007516 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007517
Craig Topper1842ba02012-04-23 06:38:28 +00007518 SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
Nadav Roteme80aa7c2012-04-09 08:33:21 +00007519 if (BlendOp.getNode())
7520 return BlendOp;
Craig Topper095c5282012-04-15 23:48:57 +00007521
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007522 unsigned Imm8;
7523 if (V2IsUndef && HasInt256 && isPermImmMask(M, VT, Imm8))
7524 return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1, Imm8, DAG);
Craig Topper095c5282012-04-15 23:48:57 +00007525
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007526 if ((V2IsUndef && HasInt256 && VT.is256BitVector() && NumElems == 8) ||
7527 VT.is512BitVector()) {
Craig Topper8d725b92013-08-15 05:33:45 +00007528 MVT MaskEltVT = MVT::getIntegerVT(VT.getVectorElementType().getSizeInBits());
7529 MVT MaskVectorVT = MVT::getVectorVT(MaskEltVT, NumElems);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +00007530 SmallVector<SDValue, 16> permclMask;
7531 for (unsigned i = 0; i != NumElems; ++i) {
7532 permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MaskEltVT));
7533 }
7534
7535 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MaskVectorVT,
7536 &permclMask[0], NumElems);
7537 if (V2IsUndef)
7538 // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
7539 return DAG.getNode(X86ISD::VPERMV, dl, VT,
7540 DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
7541 return DAG.getNode(X86ISD::VPERMV3, dl, VT,
7542 DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1, V2);
7543 }
Elena Demikhovsky73c504a2012-04-15 11:18:59 +00007544
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00007545 //===--------------------------------------------------------------------===//
7546 // Since no target specific shuffle was selected for this generic one,
7547 // lower it into other known shuffles. FIXME: this isn't true yet, but
7548 // this is the plan.
7549 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00007550
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007551 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7552 if (VT == MVT::v8i16) {
Craig Topper55b24052012-09-11 06:15:32 +00007553 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, Subtarget, DAG);
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007554 if (NewOp.getNode())
7555 return NewOp;
7556 }
7557
7558 if (VT == MVT::v16i8) {
Craig Topper158ec072013-08-14 07:34:43 +00007559 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, Subtarget, DAG);
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007560 if (NewOp.getNode())
7561 return NewOp;
7562 }
7563
Elena Demikhovsky41789462012-09-06 12:42:01 +00007564 if (VT == MVT::v32i8) {
Craig Topper55b24052012-09-11 06:15:32 +00007565 SDValue NewOp = LowerVECTOR_SHUFFLEv32i8(SVOp, Subtarget, DAG);
Elena Demikhovsky41789462012-09-06 12:42:01 +00007566 if (NewOp.getNode())
7567 return NewOp;
7568 }
7569
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007570 // Handle all 128-bit wide vectors with 4 elements, and match them with
7571 // several different shuffle types.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007572 if (NumElems == 4 && VT.is128BitVector())
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00007573 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7574
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00007575 // Handle general 256-bit shuffles
7576 if (VT.is256BitVector())
7577 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7578
Dan Gohman475871a2008-07-27 21:46:04 +00007579 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007580}
7581
Craig Topperf84b7502013-01-20 00:50:58 +00007582static SDValue LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007583 MVT VT = Op.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007584 SDLoc dl(Op);
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007585
Craig Topper5a0910b2013-08-15 02:33:50 +00007586 if (!Op.getOperand(0).getSimpleValueType().is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007587 return SDValue();
7588
Duncan Sands83ec4b62008-06-06 12:08:01 +00007589 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007590 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007591 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007592 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007593 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007594 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007595 }
7596
7597 if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00007598 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7599 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7600 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007601 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7602 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007603 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007604 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00007605 Op.getOperand(0)),
7606 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007607 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Craig Topper7c022842012-09-12 06:20:41 +00007608 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00007609 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007610 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007611 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007612 }
7613
7614 if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00007615 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7616 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007617 // result has a single use which is a store or a bitcast to i32. And in
7618 // the case of a store, it's not worth it if the index is a constant 0,
7619 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00007620 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00007621 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00007622 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00007623 if ((User->getOpcode() != ISD::STORE ||
7624 (isa<ConstantSDNode>(Op.getOperand(1)) &&
7625 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007626 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00007627 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00007628 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00007629 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007630 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00007631 Op.getOperand(0)),
7632 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007633 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Craig Topper69947b92012-04-23 06:57:04 +00007634 }
7635
7636 if (VT == MVT::i32 || VT == MVT::i64) {
Pete Coopera77214a2011-11-14 19:38:42 +00007637 // ExtractPS/pextrq works with constant index.
Mon P Wangf0fcdd82009-01-15 21:10:20 +00007638 if (isa<ConstantSDNode>(Op.getOperand(1)))
7639 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007640 }
Dan Gohman475871a2008-07-27 21:46:04 +00007641 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007642}
7643
Dan Gohman475871a2008-07-27 21:46:04 +00007644SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007645X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7646 SelectionDAG &DAG) const {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007647 SDLoc dl(Op);
David Greene74a579d2011-02-10 16:57:36 +00007648 SDValue Vec = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00007649 MVT VecVT = Vec.getSimpleValueType();
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007650 SDValue Idx = Op.getOperand(1);
7651 if (!isa<ConstantSDNode>(Idx)) {
7652 if (VecVT.is512BitVector() ||
7653 (VecVT.is256BitVector() && Subtarget->hasInt256() &&
7654 VecVT.getVectorElementType().getSizeInBits() == 32)) {
7655
7656 MVT MaskEltVT =
7657 MVT::getIntegerVT(VecVT.getVectorElementType().getSizeInBits());
7658 MVT MaskVT = MVT::getVectorVT(MaskEltVT, VecVT.getSizeInBits() /
7659 MaskEltVT.getSizeInBits());
7660
Michael Liaobfa7b1e2013-10-15 17:51:58 +00007661 Idx = DAG.getZExtOrTrunc(Idx, dl, MaskEltVT);
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007662 SDValue Mask = DAG.getNode(X86ISD::VINSERT, dl, MaskVT,
7663 getZeroVector(MaskVT, Subtarget, DAG, dl),
7664 Idx, DAG.getConstant(0, getPointerTy()));
7665 SDValue Perm = DAG.getNode(X86ISD::VPERMV, dl, VecVT, Mask, Vec);
7666 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(),
7667 Perm, DAG.getConstant(0, getPointerTy()));
7668 }
7669 return SDValue();
7670 }
David Greene74a579d2011-02-10 16:57:36 +00007671
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007672 // If this is a 256-bit vector result, first extract the 128-bit vector and
7673 // then extract the element from the 128-bit vector.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007674 if (VecVT.is256BitVector() || VecVT.is512BitVector()) {
David Greene74a579d2011-02-10 16:57:36 +00007675
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +00007676 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
David Greene74a579d2011-02-10 16:57:36 +00007677 // Get the 128-bit vector.
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007678 Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
Craig Topper8d725b92013-08-15 05:33:45 +00007679 MVT EltVT = VecVT.getVectorElementType();
David Greene74a579d2011-02-10 16:57:36 +00007680
Elena Demikhovsky83952512013-07-31 11:35:14 +00007681 unsigned ElemsPerChunk = 128 / EltVT.getSizeInBits();
7682
7683 //if (IdxVal >= NumElems/2)
7684 // IdxVal -= NumElems/2;
7685 IdxVal -= (IdxVal/ElemsPerChunk)*ElemsPerChunk;
David Greene74a579d2011-02-10 16:57:36 +00007686 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007687 DAG.getConstant(IdxVal, MVT::i32));
David Greene74a579d2011-02-10 16:57:36 +00007688 }
7689
Craig Topper7a9a28b2012-08-12 02:23:29 +00007690 assert(VecVT.is128BitVector() && "Unexpected vector length");
David Greene74a579d2011-02-10 16:57:36 +00007691
Craig Topperd0a31172012-01-10 06:37:29 +00007692 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00007693 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007694 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00007695 return Res;
7696 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00007697
Craig Topper5a0910b2013-08-15 02:33:50 +00007698 MVT VT = Op.getSimpleValueType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007699 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00007700 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00007701 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007702 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00007703 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00007704 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7705 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007706 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007707 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00007708 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007709 // Transform it so it match pextrw which produces a 32-bit result.
Craig Topper45e1c752013-01-20 00:38:18 +00007710 MVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00007711 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Craig Topper7c022842012-09-12 06:20:41 +00007712 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00007713 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Craig Topper7c022842012-09-12 06:20:41 +00007714 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00007715 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Craig Topper69947b92012-04-23 06:57:04 +00007716 }
7717
7718 if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007719 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007720 if (Idx == 0)
7721 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00007722
Evan Cheng0db9fe62006-04-25 20:13:52 +00007723 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00007724 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Craig Topper5a0910b2013-08-15 02:33:50 +00007725 MVT VVT = Op.getOperand(0).getSimpleValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00007726 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007727 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007728 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007729 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00007730 }
7731
7732 if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007733 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7734 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7735 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007736 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007737 if (Idx == 0)
7738 return Op;
7739
7740 // UNPCKHPD the element to the lowest double word, then movsd.
7741 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7742 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00007743 int Mask[2] = { 1, -1 };
Craig Topper5a0910b2013-08-15 02:33:50 +00007744 MVT VVT = Op.getOperand(0).getSimpleValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00007745 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00007746 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00007747 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00007748 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007749 }
7750
Dan Gohman475871a2008-07-27 21:46:04 +00007751 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007752}
7753
Craig Topperf84b7502013-01-20 00:50:58 +00007754static SDValue LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00007755 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00007756 MVT EltVT = VT.getVectorElementType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00007757 SDLoc dl(Op);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007758
Dan Gohman475871a2008-07-27 21:46:04 +00007759 SDValue N0 = Op.getOperand(0);
7760 SDValue N1 = Op.getOperand(1);
7761 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007762
Craig Topper7a9a28b2012-08-12 02:23:29 +00007763 if (!VT.is128BitVector())
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007764 return SDValue();
7765
Dan Gohman8a55ce42009-09-23 21:02:20 +00007766 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00007767 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007768 unsigned Opc;
7769 if (VT == MVT::v8i16)
7770 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007771 else if (VT == MVT::v16i8)
7772 Opc = X86ISD::PINSRB;
7773 else
7774 Opc = X86ISD::PINSRB;
7775
Nate Begeman14d12ca2008-02-11 04:19:36 +00007776 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7777 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007778 if (N1.getValueType() != MVT::i32)
7779 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7780 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007781 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00007782 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007783 }
7784
7785 if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007786 // Bits [7:6] of the constant are the source select. This will always be
7787 // zero here. The DAG Combiner may combine an extract_elt index into these
7788 // bits. For example (insert (extract, 3), 2) could be matched by putting
7789 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00007790 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00007791 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00007792 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00007793 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007794 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00007795 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00007796 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00007797 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Craig Topper69947b92012-04-23 06:57:04 +00007798 }
7799
7800 if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00007801 // PINSR* works with constant index.
7802 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007803 }
Dan Gohman475871a2008-07-27 21:46:04 +00007804 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007805}
7806
Dan Gohman475871a2008-07-27 21:46:04 +00007807SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007808X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Craig Topper5a0910b2013-08-15 02:33:50 +00007809 MVT VT = Op.getSimpleValueType();
Craig Topper45e1c752013-01-20 00:38:18 +00007810 MVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007811
Andrew Trickac6d9be2013-05-25 02:42:55 +00007812 SDLoc dl(Op);
David Greene6b381262011-02-09 15:32:06 +00007813 SDValue N0 = Op.getOperand(0);
7814 SDValue N1 = Op.getOperand(1);
7815 SDValue N2 = Op.getOperand(2);
7816
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007817 // If this is a 256-bit vector result, first extract the 128-bit vector,
7818 // insert the element into the extracted half and then place it back.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007819 if (VT.is256BitVector() || VT.is512BitVector()) {
David Greene6b381262011-02-09 15:32:06 +00007820 if (!isa<ConstantSDNode>(N2))
7821 return SDValue();
7822
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007823 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00007824 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007825 SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007826
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007827 // Insert the element into the desired half.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007828 unsigned NumEltsIn128 = 128/EltVT.getSizeInBits();
7829 unsigned IdxIn128 = IdxVal - (IdxVal/NumEltsIn128) * NumEltsIn128;
7830
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007831 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
Elena Demikhovsky83952512013-07-31 11:35:14 +00007832 DAG.getConstant(IdxIn128, MVT::i32));
David Greene6b381262011-02-09 15:32:06 +00007833
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007834 // Insert the changed part back to the 256-bit vector
Craig Topper7d1e3dc2012-04-30 05:17:10 +00007835 return Insert128BitVector(N0, V, IdxVal, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007836 }
7837
Craig Topperd0a31172012-01-10 06:37:29 +00007838 if (Subtarget->hasSSE41())
Nate Begeman14d12ca2008-02-11 04:19:36 +00007839 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7840
Dan Gohman8a55ce42009-09-23 21:02:20 +00007841 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00007842 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00007843
Dan Gohman8a55ce42009-09-23 21:02:20 +00007844 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00007845 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7846 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007847 if (N1.getValueType() != MVT::i32)
7848 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7849 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007850 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00007851 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007852 }
Dan Gohman475871a2008-07-27 21:46:04 +00007853 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007854}
7855
Craig Topper55b24052012-09-11 06:15:32 +00007856static SDValue LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007857 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00007858 MVT OpVT = Op.getSimpleValueType();
David Greene2fcdfb42011-02-10 23:11:29 +00007859
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007860 // If this is a 256-bit vector result, first insert into a 128-bit
7861 // vector and then insert into the 256-bit vector.
Craig Topper7a9a28b2012-08-12 02:23:29 +00007862 if (!OpVT.is128BitVector()) {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007863 // Insert into a 128-bit vector.
Elena Demikhovsky83952512013-07-31 11:35:14 +00007864 unsigned SizeFactor = OpVT.getSizeInBits()/128;
Craig Topper8d725b92013-08-15 05:33:45 +00007865 MVT VT128 = MVT::getVectorVT(OpVT.getVectorElementType(),
Elena Demikhovsky83952512013-07-31 11:35:14 +00007866 OpVT.getVectorNumElements() / SizeFactor);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007867
7868 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7869
7870 // Insert the 128-bit vector.
Craig Topperb14940a2012-04-22 20:55:18 +00007871 return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007872 }
7873
Craig Topperd77d2fe2012-04-29 20:22:05 +00007874 if (OpVT == MVT::v1i64 &&
Chris Lattnerf172ecd2010-07-04 23:07:25 +00007875 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00007876 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00007877
Owen Anderson825b72b2009-08-11 20:47:22 +00007878 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Craig Topper7a9a28b2012-08-12 02:23:29 +00007879 assert(OpVT.is128BitVector() && "Expected an SSE type!");
Craig Topperd77d2fe2012-04-29 20:22:05 +00007880 return DAG.getNode(ISD::BITCAST, dl, OpVT,
Dale Johannesen0488fb62010-09-30 23:57:10 +00007881 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007882}
7883
David Greene91585092011-01-26 15:38:49 +00007884// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
7885// a simple subregister reference or explicit instructions to grab
7886// upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007887static SDValue LowerEXTRACT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7888 SelectionDAG &DAG) {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007889 SDLoc dl(Op);
7890 SDValue In = Op.getOperand(0);
7891 SDValue Idx = Op.getOperand(1);
7892 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
Craig Topper8d725b92013-08-15 05:33:45 +00007893 MVT ResVT = Op.getSimpleValueType();
7894 MVT InVT = In.getSimpleValueType();
David Greenea5f26012011-02-07 19:36:54 +00007895
Elena Demikhovsky83952512013-07-31 11:35:14 +00007896 if (Subtarget->hasFp256()) {
7897 if (ResVT.is128BitVector() &&
7898 (InVT.is256BitVector() || InVT.is512BitVector()) &&
Craig Topperb14940a2012-04-22 20:55:18 +00007899 isa<ConstantSDNode>(Idx)) {
Elena Demikhovsky83952512013-07-31 11:35:14 +00007900 return Extract128BitVector(In, IdxVal, DAG, dl);
7901 }
7902 if (ResVT.is256BitVector() && InVT.is512BitVector() &&
7903 isa<ConstantSDNode>(Idx)) {
7904 return Extract256BitVector(In, IdxVal, DAG, dl);
David Greenea5f26012011-02-07 19:36:54 +00007905 }
David Greene91585092011-01-26 15:38:49 +00007906 }
7907 return SDValue();
7908}
7909
David Greenecfe33c42011-01-26 19:13:22 +00007910// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
7911// simple superregister reference or explicit instructions to insert
7912// the upper bits of a vector.
Craig Topper55b24052012-09-11 06:15:32 +00007913static SDValue LowerINSERT_SUBVECTOR(SDValue Op, const X86Subtarget *Subtarget,
7914 SelectionDAG &DAG) {
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00007915 if (Subtarget->hasFp256()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00007916 SDLoc dl(Op.getNode());
David Greenecfe33c42011-01-26 19:13:22 +00007917 SDValue Vec = Op.getNode()->getOperand(0);
7918 SDValue SubVec = Op.getNode()->getOperand(1);
7919 SDValue Idx = Op.getNode()->getOperand(2);
7920
Craig Topper8d725b92013-08-15 05:33:45 +00007921 if ((Op.getNode()->getSimpleValueType(0).is256BitVector() ||
7922 Op.getNode()->getSimpleValueType(0).is512BitVector()) &&
7923 SubVec.getNode()->getSimpleValueType(0).is128BitVector() &&
Craig Topperb14940a2012-04-22 20:55:18 +00007924 isa<ConstantSDNode>(Idx)) {
7925 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7926 return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00007927 }
Elena Demikhovsky83952512013-07-31 11:35:14 +00007928
Craig Topper8d725b92013-08-15 05:33:45 +00007929 if (Op.getNode()->getSimpleValueType(0).is512BitVector() &&
7930 SubVec.getNode()->getSimpleValueType(0).is256BitVector() &&
Elena Demikhovsky83952512013-07-31 11:35:14 +00007931 isa<ConstantSDNode>(Idx)) {
7932 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7933 return Insert256BitVector(Vec, SubVec, IdxVal, DAG, dl);
7934 }
David Greenecfe33c42011-01-26 19:13:22 +00007935 }
7936 return SDValue();
7937}
7938
Bill Wendling056292f2008-09-16 21:48:12 +00007939// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7940// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7941// one of the above mentioned nodes. It has to be wrapped because otherwise
7942// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7943// be used to form addressing mode. These wrapped nodes will be selected
7944// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00007945SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007946X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007947 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007948
Chris Lattner41621a22009-06-26 19:22:52 +00007949 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7950 // global base reg.
7951 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007952 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007953 CodeModel::Model M = getTargetMachine().getCodeModel();
7954
Chris Lattner4f066492009-07-11 20:29:19 +00007955 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007956 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007957 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007958 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007959 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007960 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007961 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007962
Evan Cheng1606e8e2009-03-13 07:51:59 +00007963 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00007964 CP->getAlignment(),
7965 CP->getOffset(), OpFlag);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007966 SDLoc DL(CP);
Chris Lattner18c59872009-06-27 04:16:01 +00007967 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007968 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00007969 if (OpFlag) {
7970 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00007971 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00007972 SDLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007973 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007974 }
7975
7976 return Result;
7977}
7978
Dan Gohmand858e902010-04-17 15:26:15 +00007979SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007980 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007981
Chris Lattner18c59872009-06-27 04:16:01 +00007982 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7983 // global base reg.
7984 unsigned char OpFlag = 0;
7985 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007986 CodeModel::Model M = getTargetMachine().getCodeModel();
7987
Chris Lattner4f066492009-07-11 20:29:19 +00007988 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007989 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007990 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007991 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007992 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007993 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007994 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007995
Chris Lattner18c59872009-06-27 04:16:01 +00007996 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7997 OpFlag);
Andrew Trickac6d9be2013-05-25 02:42:55 +00007998 SDLoc DL(JT);
Chris Lattner18c59872009-06-27 04:16:01 +00007999 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00008000
Chris Lattner18c59872009-06-27 04:16:01 +00008001 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00008002 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00008003 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8004 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008005 SDLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00008006 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00008007
Chris Lattner18c59872009-06-27 04:16:01 +00008008 return Result;
8009}
8010
8011SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008012X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00008013 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00008014
Chris Lattner18c59872009-06-27 04:16:01 +00008015 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8016 // global base reg.
8017 unsigned char OpFlag = 0;
8018 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008019 CodeModel::Model M = getTargetMachine().getCodeModel();
8020
Chris Lattner4f066492009-07-11 20:29:19 +00008021 if (Subtarget->isPICStyleRIPRel() &&
Eli Friedman586272d2011-08-11 01:48:05 +00008022 (M == CodeModel::Small || M == CodeModel::Kernel)) {
8023 if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
8024 OpFlag = X86II::MO_GOTPCREL;
Chris Lattnere4df7562009-07-09 03:15:51 +00008025 WrapperKind = X86ISD::WrapperRIP;
Eli Friedman586272d2011-08-11 01:48:05 +00008026 } else if (Subtarget->isPICStyleGOT()) {
8027 OpFlag = X86II::MO_GOT;
8028 } else if (Subtarget->isPICStyleStubPIC()) {
8029 OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
8030 } else if (Subtarget->isPICStyleStubNoDynamic()) {
8031 OpFlag = X86II::MO_DARWIN_NONLAZY;
8032 }
Eric Christopherfd179292009-08-27 18:07:15 +00008033
Chris Lattner18c59872009-06-27 04:16:01 +00008034 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00008035
Andrew Trickac6d9be2013-05-25 02:42:55 +00008036 SDLoc DL(Op);
Chris Lattner18c59872009-06-27 04:16:01 +00008037 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00008038
Chris Lattner18c59872009-06-27 04:16:01 +00008039 // With PIC, the address is actually $g + Offset.
8040 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00008041 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00008042 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8043 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008044 SDLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00008045 Result);
8046 }
Eric Christopherfd179292009-08-27 18:07:15 +00008047
Eli Friedman586272d2011-08-11 01:48:05 +00008048 // For symbols that require a load from a stub to get the address, emit the
8049 // load.
8050 if (isGlobalStubReference(OpFlag))
8051 Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008052 MachinePointerInfo::getGOT(), false, false, false, 0);
Eli Friedman586272d2011-08-11 01:48:05 +00008053
Chris Lattner18c59872009-06-27 04:16:01 +00008054 return Result;
8055}
8056
Dan Gohman475871a2008-07-27 21:46:04 +00008057SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008058X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00008059 // Create the TargetBlockAddressAddress node.
8060 unsigned char OpFlags =
8061 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00008062 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00008063 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Michael Liao6c7ccaa2012-09-12 21:43:09 +00008064 int64_t Offset = cast<BlockAddressSDNode>(Op)->getOffset();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008065 SDLoc dl(Op);
Michael Liao6c7ccaa2012-09-12 21:43:09 +00008066 SDValue Result = DAG.getTargetBlockAddress(BA, getPointerTy(), Offset,
8067 OpFlags);
Dan Gohman29cbade2009-11-20 23:18:13 +00008068
Dan Gohmanf705adb2009-10-30 01:28:02 +00008069 if (Subtarget->isPICStyleRIPRel() &&
8070 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00008071 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8072 else
8073 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00008074
Dan Gohman29cbade2009-11-20 23:18:13 +00008075 // With PIC, the address is actually $g + Offset.
8076 if (isGlobalRelativeToPICBase(OpFlags)) {
8077 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8078 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
8079 Result);
8080 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00008081
8082 return Result;
8083}
8084
8085SDValue
Andrew Trickac6d9be2013-05-25 02:42:55 +00008086X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, SDLoc dl,
Craig Topperb99bafe2013-01-21 06:21:54 +00008087 int64_t Offset, SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00008088 // Create the TargetGlobalAddress node, folding in the constant
8089 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00008090 unsigned char OpFlags =
8091 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008092 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00008093 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008094 if (OpFlags == X86II::MO_NO_FLAG &&
8095 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00008096 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00008097 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00008098 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00008099 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00008100 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00008101 }
Eric Christopherfd179292009-08-27 18:07:15 +00008102
Chris Lattner4f066492009-07-11 20:29:19 +00008103 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008104 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00008105 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
8106 else
8107 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00008108
Anton Korobeynikov7f705592007-01-12 19:20:47 +00008109 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00008110 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00008111 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
8112 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00008113 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008114 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008115
Chris Lattner36c25012009-07-10 07:34:39 +00008116 // For globals that require a load from a stub to get the address, emit the
8117 // load.
8118 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00008119 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Pete Cooperd752e0f2011-11-08 18:42:53 +00008120 MachinePointerInfo::getGOT(), false, false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008121
Dan Gohman6520e202008-10-18 02:06:02 +00008122 // If there was a non-zero offset that we didn't fold, create an explicit
8123 // addition for it.
8124 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00008125 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00008126 DAG.getConstant(Offset, getPointerTy()));
8127
Evan Cheng0db9fe62006-04-25 20:13:52 +00008128 return Result;
8129}
8130
Evan Chengda43bcf2008-09-24 00:05:32 +00008131SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008132X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00008133 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00008134 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008135 return LowerGlobalAddress(GV, SDLoc(Op), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00008136}
8137
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008138static SDValue
8139GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00008140 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008141 unsigned char OperandFlags, bool LocalDynamic = false) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008142 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008143 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008144 SDLoc dl(GA);
Devang Patel0d881da2010-07-06 22:08:15 +00008145 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008146 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00008147 GA->getOffset(),
8148 OperandFlags);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008149
8150 X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
8151 : X86ISD::TLSADDR;
8152
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008153 if (InFlag) {
8154 SDValue Ops[] = { Chain, TGA, *InFlag };
Michael Liao0ee17002013-04-19 04:03:37 +00008155 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008156 } else {
8157 SDValue Ops[] = { Chain, TGA };
Michael Liao0ee17002013-04-19 04:03:37 +00008158 Chain = DAG.getNode(CallType, dl, NodeTys, Ops, array_lengthof(Ops));
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008159 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008160
8161 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00008162 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00008163
Rafael Espindola15f1b662009-04-24 12:59:40 +00008164 SDValue Flag = Chain.getValue(1);
8165 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00008166}
8167
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008168// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00008169static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008170LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008171 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00008172 SDValue InFlag;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008173 SDLoc dl(GA); // ? function entry point might be better
Dale Johannesendd64c412009-02-04 00:33:20 +00008174 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Craig Topper7c022842012-09-12 06:20:41 +00008175 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008176 SDLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008177 InFlag = Chain.getValue(1);
8178
Chris Lattnerb903bed2009-06-26 21:20:29 +00008179 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008180}
8181
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008182// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00008183static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008184LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008185 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00008186 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
8187 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008188}
8189
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008190static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
8191 SelectionDAG &DAG,
8192 const EVT PtrVT,
8193 bool is64Bit) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008194 SDLoc dl(GA);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008195
8196 // Get the start address of the TLS block for this module.
8197 X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
8198 .getInfo<X86MachineFunctionInfo>();
8199 MFI->incNumLocalDynamicTLSAccesses();
8200
8201 SDValue Base;
8202 if (is64Bit) {
8203 Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
8204 X86II::MO_TLSLD, /*LocalDynamic=*/true);
8205 } else {
8206 SDValue InFlag;
8207 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008208 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT), InFlag);
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008209 InFlag = Chain.getValue(1);
8210 Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
8211 X86II::MO_TLSLDM, /*LocalDynamic=*/true);
8212 }
8213
8214 // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
8215 // of Base.
8216
8217 // Build x@dtpoff.
8218 unsigned char OperandFlags = X86II::MO_DTPOFF;
8219 unsigned WrapperKind = X86ISD::Wrapper;
8220 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8221 GA->getValueType(0),
8222 GA->getOffset(), OperandFlags);
8223 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
8224
8225 // Add x@dtpoff with the base.
8226 return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
8227}
8228
Hans Wennborg228756c2012-05-11 10:11:01 +00008229// Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00008230static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00008231 const EVT PtrVT, TLSModel::Model model,
Hans Wennborg228756c2012-05-11 10:11:01 +00008232 bool is64Bit, bool isPIC) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008233 SDLoc dl(GA);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008234
Chris Lattnerf93b90c2010-09-22 04:39:11 +00008235 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
8236 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
8237 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00008238
Eric Christopher739eb9d2013-10-14 21:52:23 +00008239 SDValue ThreadPointer =
8240 DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), DAG.getIntPtrConstant(0),
8241 MachinePointerInfo(Ptr), false, false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00008242
Chris Lattnerb903bed2009-06-26 21:20:29 +00008243 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00008244 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
8245 // initialexec.
8246 unsigned WrapperKind = X86ISD::Wrapper;
8247 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00008248 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Hans Wennborg228756c2012-05-11 10:11:01 +00008249 } else if (model == TLSModel::InitialExec) {
8250 if (is64Bit) {
8251 OperandFlags = X86II::MO_GOTTPOFF;
8252 WrapperKind = X86ISD::WrapperRIP;
8253 } else {
8254 OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
8255 }
Chris Lattner18c59872009-06-27 04:16:01 +00008256 } else {
Hans Wennborg228756c2012-05-11 10:11:01 +00008257 llvm_unreachable("Unexpected model");
Chris Lattnerb903bed2009-06-26 21:20:29 +00008258 }
Eric Christopherfd179292009-08-27 18:07:15 +00008259
Hans Wennborg228756c2012-05-11 10:11:01 +00008260 // emit "addl x@ntpoff,%eax" (local exec)
8261 // or "addl x@indntpoff,%eax" (initial exec)
8262 // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
Eric Christopher739eb9d2013-10-14 21:52:23 +00008263 SDValue TGA =
8264 DAG.getTargetGlobalAddress(GA->getGlobal(), dl, GA->getValueType(0),
8265 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00008266 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00008267
Hans Wennborg228756c2012-05-11 10:11:01 +00008268 if (model == TLSModel::InitialExec) {
8269 if (isPIC && !is64Bit) {
8270 Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
Eric Christopher739eb9d2013-10-14 21:52:23 +00008271 DAG.getNode(X86ISD::GlobalBaseReg, SDLoc(), PtrVT),
Hans Wennborg228756c2012-05-11 10:11:01 +00008272 Offset);
Hans Wennborg228756c2012-05-11 10:11:01 +00008273 }
Rafael Espindola94e3b382012-06-29 04:22:35 +00008274
8275 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Eric Christopher739eb9d2013-10-14 21:52:23 +00008276 MachinePointerInfo::getGOT(), false, false, false, 0);
Hans Wennborg228756c2012-05-11 10:11:01 +00008277 }
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00008278
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008279 // The address of the thread local variable is the add of the thread
8280 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00008281 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008282}
8283
Dan Gohman475871a2008-07-27 21:46:04 +00008284SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008285X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00008286
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008287 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00008288 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00008289
Eric Christopher30ef0e52010-06-03 04:07:48 +00008290 if (Subtarget->isTargetELF()) {
Chandler Carruth34797132012-04-08 17:20:55 +00008291 TLSModel::Model model = getTargetMachine().getTLSModel(GV);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008292
Eric Christopher30ef0e52010-06-03 04:07:48 +00008293 switch (model) {
8294 case TLSModel::GeneralDynamic:
Eric Christopher30ef0e52010-06-03 04:07:48 +00008295 if (Subtarget->is64Bit())
8296 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
8297 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Hans Wennborgf0234fc2012-06-01 16:27:21 +00008298 case TLSModel::LocalDynamic:
8299 return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
8300 Subtarget->is64Bit());
Eric Christopher30ef0e52010-06-03 04:07:48 +00008301 case TLSModel::InitialExec:
8302 case TLSModel::LocalExec:
8303 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
Hans Wennborg228756c2012-05-11 10:11:01 +00008304 Subtarget->is64Bit(),
Craig Topperb99bafe2013-01-21 06:21:54 +00008305 getTargetMachine().getRelocationModel() == Reloc::PIC_);
Eric Christopher30ef0e52010-06-03 04:07:48 +00008306 }
Craig Toppere8eb1162012-04-23 03:26:18 +00008307 llvm_unreachable("Unknown TLS model.");
8308 }
8309
8310 if (Subtarget->isTargetDarwin()) {
Eric Christopher30ef0e52010-06-03 04:07:48 +00008311 // Darwin only has one model of TLS. Lower to that.
8312 unsigned char OpFlag = 0;
8313 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
8314 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00008315
Eric Christopher30ef0e52010-06-03 04:07:48 +00008316 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
8317 // global base reg.
8318 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
8319 !Subtarget->is64Bit();
8320 if (PIC32)
8321 OpFlag = X86II::MO_TLVP_PIC_BASE;
8322 else
8323 OpFlag = X86II::MO_TLVP;
Andrew Trickac6d9be2013-05-25 02:42:55 +00008324 SDLoc DL(Op);
Devang Patel0d881da2010-07-06 22:08:15 +00008325 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00008326 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00008327 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00008328 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008329
Eric Christopher30ef0e52010-06-03 04:07:48 +00008330 // With PIC32, the address is actually $g + Offset.
8331 if (PIC32)
8332 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8333 DAG.getNode(X86ISD::GlobalBaseReg,
Andrew Trickac6d9be2013-05-25 02:42:55 +00008334 SDLoc(), getPointerTy()),
Eric Christopher30ef0e52010-06-03 04:07:48 +00008335 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008336
Eric Christopher30ef0e52010-06-03 04:07:48 +00008337 // Lowering the machine isd will make sure everything is in the right
8338 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00008339 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008340 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00008341 SDValue Args[] = { Chain, Offset };
8342 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008343
Eric Christopher30ef0e52010-06-03 04:07:48 +00008344 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
8345 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8346 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008347
Eric Christopher30ef0e52010-06-03 04:07:48 +00008348 // And our return value (tls address) is in the standard call return value
8349 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00008350 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
Evan Chengfd230df2011-10-19 22:22:54 +00008351 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
8352 Chain.getValue(1));
Craig Toppere8eb1162012-04-23 03:26:18 +00008353 }
8354
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008355 if (Subtarget->isTargetWindows() || Subtarget->isTargetMingw()) {
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008356 // Just use the implicit TLS architecture
8357 // Need to generate someting similar to:
8358 // mov rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
8359 // ; from TEB
8360 // mov ecx, dword [rel _tls_index]: Load index (from C runtime)
8361 // mov rcx, qword [rdx+rcx*8]
8362 // mov eax, .tls$:tlsvar
8363 // [rax+rcx] contains the address
8364 // Windows 64bit: gs:0x58
8365 // Windows 32bit: fs:__tls_array
8366
8367 // If GV is an alias then use the aliasee for determining
8368 // thread-localness.
8369 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
8370 GV = GA->resolveAliasedGlobal(false);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008371 SDLoc dl(GA);
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008372 SDValue Chain = DAG.getEntryNode();
8373
8374 // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008375 // %gs:0x58 (64-bit). On MinGW, __tls_array is not available, so directly
8376 // use its literal value of 0x2C.
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008377 Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
8378 ? Type::getInt8PtrTy(*DAG.getContext(),
8379 256)
8380 : Type::getInt32PtrTy(*DAG.getContext(),
8381 257));
8382
Anton Korobeynikov2ee4e422013-03-18 08:12:28 +00008383 SDValue TlsArray = Subtarget->is64Bit() ? DAG.getIntPtrConstant(0x58) :
8384 (Subtarget->isTargetMingw() ? DAG.getIntPtrConstant(0x2C) :
8385 DAG.getExternalSymbol("_tls_array", getPointerTy()));
8386
8387 SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain, TlsArray,
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008388 MachinePointerInfo(Ptr),
8389 false, false, false, 0);
8390
8391 // Load the _tls_index variable
8392 SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
8393 if (Subtarget->is64Bit())
8394 IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
8395 IDX, MachinePointerInfo(), MVT::i32,
8396 false, false, 0);
8397 else
8398 IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
8399 false, false, false, 0);
8400
Chandler Carruth426c2bf2012-11-01 09:14:31 +00008401 SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
Craig Topper0fbf3642012-04-23 03:28:34 +00008402 getPointerTy());
Anton Korobeynikovd4a19b62012-02-11 17:26:53 +00008403 IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
8404
8405 SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
8406 res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
8407 false, false, false, 0);
8408
8409 // Get the offset of start of .tls section
8410 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
8411 GA->getValueType(0),
8412 GA->getOffset(), X86II::MO_SECREL);
8413 SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
8414
8415 // The address of the thread local variable is the add of the thread
8416 // pointer with the offset of the variable.
8417 return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00008418 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008419
David Blaikie4d6ccb52012-01-20 21:51:11 +00008420 llvm_unreachable("TLS not implemented for this target.");
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008421}
8422
Chad Rosierb90d2a92012-01-03 23:19:12 +00008423/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
8424/// and take a 2 x i32 value to shift plus a shift amount.
8425SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
Dan Gohman4c1fa612008-03-03 22:22:09 +00008426 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00008427 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00008428 unsigned VTBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008429 SDLoc dl(Op);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008430 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00008431 SDValue ShOpLo = Op.getOperand(0);
8432 SDValue ShOpHi = Op.getOperand(1);
8433 SDValue ShAmt = Op.getOperand(2);
Bill Wendlinge09cd8d2013-12-14 08:01:30 +00008434 // X86ISD::SHLD and X86ISD::SHRD have defined overflow behavior but the
8435 // generic ISD nodes haven't. Insert an AND to be safe, it's optimized away
8436 // during isel.
8437 SDValue SafeShAmt = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8438 DAG.getConstant(VTBits - 1, MVT::i8));
Chris Lattner31dcfe62009-07-29 05:48:09 +00008439 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00008440 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00008441 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00008442
Dan Gohman475871a2008-07-27 21:46:04 +00008443 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008444 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00008445 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
Bill Wendlinge09cd8d2013-12-14 08:01:30 +00008446 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, SafeShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008447 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008448 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
Bill Wendlinge09cd8d2013-12-14 08:01:30 +00008449 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, SafeShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008450 }
Evan Chenge3413162006-01-09 18:33:28 +00008451
Bill Wendlinge09cd8d2013-12-14 08:01:30 +00008452 // If the shift amount is larger or equal than the width of a part we can't
8453 // rely on the results of shld/shrd. Insert a test and select the appropriate
8454 // values for large shift amounts.
Owen Anderson825b72b2009-08-11 20:47:22 +00008455 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
8456 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00008457 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00008458 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00008459
Dan Gohman475871a2008-07-27 21:46:04 +00008460 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00008461 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00008462 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
8463 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00008464
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008465 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00008466 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8467 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008468 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008469 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
8470 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00008471 }
8472
Dan Gohman475871a2008-07-27 21:46:04 +00008473 SDValue Ops[2] = { Lo, Hi };
Michael Liao0ee17002013-04-19 04:03:37 +00008474 return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008475}
Evan Chenga3195e82006-01-12 22:54:21 +00008476
Dan Gohmand858e902010-04-17 15:26:15 +00008477SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
8478 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008479 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00008480
Dale Johannesen0488fb62010-09-30 23:57:10 +00008481 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00008482 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00008483
Owen Anderson825b72b2009-08-11 20:47:22 +00008484 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00008485 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00008486
Eli Friedman36df4992009-05-27 00:47:34 +00008487 // These are really Legal; return the operand so the caller accepts it as
8488 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00008489 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00008490 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00008491 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00008492 Subtarget->is64Bit()) {
8493 return Op;
8494 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008495
Andrew Trickac6d9be2013-05-25 02:42:55 +00008496 SDLoc dl(Op);
Duncan Sands83ec4b62008-06-06 12:08:01 +00008497 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00008498 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00008499 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008500 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00008501 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00008502 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008503 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00008504 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00008505 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
8506}
Evan Cheng0db9fe62006-04-25 20:13:52 +00008507
Owen Andersone50ed302009-08-10 22:56:29 +00008508SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008509 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00008510 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008511 // Build the FILD
Andrew Trickac6d9be2013-05-25 02:42:55 +00008512 SDLoc DL(Op);
Chris Lattner5a88b832007-02-25 07:10:00 +00008513 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00008514 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008515 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008516 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00008517 else
Owen Anderson825b72b2009-08-11 20:47:22 +00008518 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008519
Chris Lattner492a43e2010-09-22 01:28:21 +00008520 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00008521
Stuart Hastings84be9582011-06-02 15:57:11 +00008522 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
8523 MachineMemOperand *MMO;
8524 if (FI) {
8525 int SSFI = FI->getIndex();
8526 MMO =
8527 DAG.getMachineFunction()
8528 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8529 MachineMemOperand::MOLoad, ByteSize, ByteSize);
8530 } else {
8531 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
8532 StackSlot = StackSlot.getOperand(1);
8533 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008534 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00008535 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
8536 X86ISD::FILD, DL,
8537 Tys, Ops, array_lengthof(Ops),
8538 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008539
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008540 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008541 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00008542 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008543
8544 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
8545 // shouldn't be necessary except that RFP cannot be live across
8546 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008547 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00008548 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
8549 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008550 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00008551 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008552 SDValue Ops[] = {
8553 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
8554 };
Chris Lattner492a43e2010-09-22 01:28:21 +00008555 MachineMemOperand *MMO =
8556 DAG.getMachineFunction()
8557 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00008558 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008559
Chris Lattner492a43e2010-09-22 01:28:21 +00008560 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
8561 Ops, array_lengthof(Ops),
8562 Op.getValueType(), MMO);
8563 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008564 MachinePointerInfo::getFixedStack(SSFI),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008565 false, false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008566 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008567
Evan Cheng0db9fe62006-04-25 20:13:52 +00008568 return Result;
8569}
8570
Bill Wendling8b8a6362009-01-17 03:56:04 +00008571// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00008572SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
8573 SelectionDAG &DAG) const {
Bill Wendling397ae212012-01-05 02:13:20 +00008574 // This algorithm is not obvious. Here it is what we're trying to output:
Bill Wendling8b8a6362009-01-17 03:56:04 +00008575 /*
Bill Wendling397ae212012-01-05 02:13:20 +00008576 movq %rax, %xmm0
8577 punpckldq (c0), %xmm0 // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
8578 subpd (c1), %xmm0 // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
8579 #ifdef __SSE3__
Chad Rosiera20e1e72012-08-01 18:39:17 +00008580 haddpd %xmm0, %xmm0
Bill Wendling397ae212012-01-05 02:13:20 +00008581 #else
Chad Rosiera20e1e72012-08-01 18:39:17 +00008582 pshufd $0x4e, %xmm0, %xmm1
Bill Wendling397ae212012-01-05 02:13:20 +00008583 addpd %xmm1, %xmm0
8584 #endif
Bill Wendling8b8a6362009-01-17 03:56:04 +00008585 */
Dale Johannesen040225f2008-10-21 23:07:49 +00008586
Andrew Trickac6d9be2013-05-25 02:42:55 +00008587 SDLoc dl(Op);
Owen Andersona90b3dc2009-07-15 21:51:10 +00008588 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00008589
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008590 // Build some magic constants.
Craig Topperda129a22013-07-15 06:54:12 +00008591 static const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
Chris Lattner7302d802012-02-06 21:56:39 +00008592 Constant *C0 = ConstantDataVector::get(*Context, CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008593 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008594
Chris Lattner97484792012-01-25 09:56:22 +00008595 SmallVector<Constant*,2> CV1;
8596 CV1.push_back(
Tim Northover0a29cb02013-01-22 09:46:31 +00008597 ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8598 APInt(64, 0x4330000000000000ULL))));
Chris Lattner97484792012-01-25 09:56:22 +00008599 CV1.push_back(
Tim Northover0a29cb02013-01-22 09:46:31 +00008600 ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
8601 APInt(64, 0x4530000000000000ULL))));
Chris Lattner97484792012-01-25 09:56:22 +00008602 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008603 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008604
Bill Wendling397ae212012-01-05 02:13:20 +00008605 // Load the 64-bit value into an XMM register.
8606 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
8607 Op.getOperand(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008608 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00008609 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008610 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008611 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
8612 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
8613 CLod0);
8614
Owen Anderson825b72b2009-08-11 20:47:22 +00008615 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00008616 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00008617 false, false, false, 16);
Bill Wendling397ae212012-01-05 02:13:20 +00008618 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008619 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling397ae212012-01-05 02:13:20 +00008620 SDValue Result;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008621
Craig Topperd0a31172012-01-10 06:37:29 +00008622 if (Subtarget->hasSSE3()) {
Bill Wendling397ae212012-01-05 02:13:20 +00008623 // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
8624 Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
8625 } else {
8626 SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
8627 SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
8628 S2F, 0x4E, DAG);
8629 Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
8630 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
8631 Sub);
8632 }
8633
8634 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008635 DAG.getIntPtrConstant(0));
8636}
8637
Bill Wendling8b8a6362009-01-17 03:56:04 +00008638// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00008639SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
8640 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008641 SDLoc dl(Op);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008642 // FP constant to bias correct the final result.
8643 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00008644 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008645
8646 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00008647 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00008648 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008649
Eli Friedmanf3704762011-08-29 21:15:46 +00008650 // Zero out the upper parts of the register.
Craig Topper12216172012-01-13 08:12:35 +00008651 Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
Eli Friedmanf3704762011-08-29 21:15:46 +00008652
Owen Anderson825b72b2009-08-11 20:47:22 +00008653 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008654 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008655 DAG.getIntPtrConstant(0));
8656
8657 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008658 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008659 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008660 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008661 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008662 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008663 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008664 MVT::v2f64, Bias)));
8665 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008666 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00008667 DAG.getIntPtrConstant(0));
8668
8669 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00008670 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008671
8672 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00008673 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00008674
Craig Topper69947b92012-04-23 06:57:04 +00008675 if (DestVT.bitsLT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008676 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00008677 DAG.getIntPtrConstant(0));
Craig Topper69947b92012-04-23 06:57:04 +00008678 if (DestVT.bitsGT(MVT::f64))
Dale Johannesenace16102009-02-03 19:33:06 +00008679 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00008680
8681 // Handle final rounding.
8682 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00008683}
8684
Michael Liaoa7554632012-10-23 17:36:08 +00008685SDValue X86TargetLowering::lowerUINT_TO_FP_vec(SDValue Op,
8686 SelectionDAG &DAG) const {
8687 SDValue N0 = Op.getOperand(0);
8688 EVT SVT = N0.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008689 SDLoc dl(Op);
Michael Liaoa7554632012-10-23 17:36:08 +00008690
8691 assert((SVT == MVT::v4i8 || SVT == MVT::v4i16 ||
8692 SVT == MVT::v8i8 || SVT == MVT::v8i16) &&
8693 "Custom UINT_TO_FP is not supported!");
8694
Craig Topperb99bafe2013-01-21 06:21:54 +00008695 EVT NVT = EVT::getVectorVT(*DAG.getContext(), MVT::i32,
8696 SVT.getVectorNumElements());
Michael Liaoa7554632012-10-23 17:36:08 +00008697 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(),
8698 DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, N0));
8699}
8700
Dan Gohmand858e902010-04-17 15:26:15 +00008701SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8702 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00008703 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00008704 SDLoc dl(Op);
Bill Wendling8b8a6362009-01-17 03:56:04 +00008705
Michael Liaoa7554632012-10-23 17:36:08 +00008706 if (Op.getValueType().isVector())
8707 return lowerUINT_TO_FP_vec(Op, DAG);
8708
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008709 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00008710 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8711 // the optimization here.
8712 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00008713 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00008714
Owen Andersone50ed302009-08-10 22:56:29 +00008715 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008716 EVT DstVT = Op.getValueType();
8717 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008718 return LowerUINT_TO_FP_i64(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008719 if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00008720 return LowerUINT_TO_FP_i32(Op, DAG);
Craig Topper69947b92012-04-23 06:57:04 +00008721 if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
Bill Wendling397ae212012-01-05 02:13:20 +00008722 return SDValue();
Eli Friedman948e95a2009-05-23 09:59:16 +00008723
8724 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00008725 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008726 if (SrcVT == MVT::i32) {
8727 SDValue WordOff = DAG.getConstant(4, getPointerTy());
8728 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8729 getPointerTy(), StackSlot, WordOff);
8730 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008731 StackSlot, MachinePointerInfo(),
8732 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008733 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008734 OffsetSlot, MachinePointerInfo(),
8735 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008736 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8737 return Fild;
8738 }
8739
8740 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8741 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendlingf6c07472012-01-10 19:41:30 +00008742 StackSlot, MachinePointerInfo(),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008743 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008744 // For i64 source, we need to add the appropriate power of 2 if the input
8745 // was negative. This is the same as the optimization in
8746 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8747 // we must be careful to do the computation in x87 extended precision, not
8748 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00008749 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8750 MachineMemOperand *MMO =
8751 DAG.getMachineFunction()
8752 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8753 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008754
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008755 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8756 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Michael Liao0ee17002013-04-19 04:03:37 +00008757 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops,
8758 array_lengthof(Ops), MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008759
8760 APInt FF(32, 0x5F800000ULL);
8761
8762 // Check whether the sign bit is set.
Matt Arsenault225ed702013-05-18 00:21:46 +00008763 SDValue SignSet = DAG.getSetCC(dl,
8764 getSetCCResultType(*DAG.getContext(), MVT::i64),
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008765 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8766 ISD::SETLT);
8767
8768 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8769 SDValue FudgePtr = DAG.getConstantPool(
8770 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8771 getPointerTy());
8772
8773 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8774 SDValue Zero = DAG.getIntPtrConstant(0);
8775 SDValue Four = DAG.getIntPtrConstant(4);
8776 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8777 Zero, Four);
8778 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8779
8780 // Load the value out, extending it from f32 to f80.
8781 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00008782 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00008783 FudgePtr, MachinePointerInfo::getConstantPool(),
8784 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00008785 // Extend everything to 80 bits to force it to be done on x87.
8786 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8787 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00008788}
8789
Craig Topperb99bafe2013-01-21 06:21:54 +00008790std::pair<SDValue,SDValue>
8791X86TargetLowering:: FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG,
8792 bool IsSigned, bool IsReplace) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008793 SDLoc DL(Op);
Eli Friedman948e95a2009-05-23 09:59:16 +00008794
Owen Andersone50ed302009-08-10 22:56:29 +00008795 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00008796
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008797 if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008798 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8799 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00008800 }
8801
Owen Anderson825b72b2009-08-11 20:47:22 +00008802 assert(DstTy.getSimpleVT() <= MVT::i64 &&
8803 DstTy.getSimpleVT() >= MVT::i16 &&
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008804 "Unknown FP_TO_INT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00008805
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008806 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00008807 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00008808 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008809 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00008810 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00008811 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00008812 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00008813 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00008814
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008815 // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8816 // stack slot, or into the FTOL runtime function.
Evan Cheng87c89352007-10-15 20:11:21 +00008817 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00008818 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00008819 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008820 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00008821
Evan Cheng0db9fe62006-04-25 20:13:52 +00008822 unsigned Opc;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008823 if (!IsSigned && isIntegerTypeFTOL(DstTy))
8824 Opc = X86ISD::WIN_FTOL;
8825 else
8826 switch (DstTy.getSimpleVT().SimpleTy) {
8827 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8828 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8829 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8830 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8831 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008832
Dan Gohman475871a2008-07-27 21:46:04 +00008833 SDValue Chain = DAG.getEntryNode();
8834 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00008835 EVT TheVT = Op.getOperand(0).getValueType();
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008836 // FIXME This causes a redundant load/store if the SSE-class value is already
8837 // in memory, such as if it is on the callstack.
Chris Lattner492a43e2010-09-22 01:28:21 +00008838 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008839 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00008840 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00008841 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00008842 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008843 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00008844 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00008845 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00008846 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008847
Chris Lattner492a43e2010-09-22 01:28:21 +00008848 MachineMemOperand *MMO =
8849 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8850 MachineMemOperand::MOLoad, MemSize, MemSize);
Michael Liao0ee17002013-04-19 04:03:37 +00008851 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops,
8852 array_lengthof(Ops), DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008853 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00008854 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008855 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8856 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008857
Chris Lattner07290932010-09-22 01:05:16 +00008858 MachineMemOperand *MMO =
8859 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8860 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008861
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008862 if (Opc != X86ISD::WIN_FTOL) {
8863 // Build the FP_TO_INT*_IN_MEM
8864 SDValue Ops[] = { Chain, Value, StackSlot };
8865 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
Michael Liao0ee17002013-04-19 04:03:37 +00008866 Ops, array_lengthof(Ops), DstTy,
8867 MMO);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008868 return std::make_pair(FIST, StackSlot);
8869 } else {
8870 SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8871 DAG.getVTList(MVT::Other, MVT::Glue),
8872 Chain, Value);
8873 SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8874 MVT::i32, ftol.getValue(1));
8875 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8876 MVT::i32, eax.getValue(2));
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00008877 SDValue Ops[] = { eax, edx };
8878 SDValue pair = IsReplace
Michael Liao0ee17002013-04-19 04:03:37 +00008879 ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, array_lengthof(Ops))
8880 : DAG.getMergeValues(Ops, array_lengthof(Ops), DL);
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00008881 return std::make_pair(pair, SDValue());
8882 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008883}
8884
Nadav Rotem0509db22012-12-28 05:45:24 +00008885static SDValue LowerAVXExtend(SDValue Op, SelectionDAG &DAG,
8886 const X86Subtarget *Subtarget) {
Craig Topper5a0910b2013-08-15 02:33:50 +00008887 MVT VT = Op->getSimpleValueType(0);
Nadav Rotem0509db22012-12-28 05:45:24 +00008888 SDValue In = Op->getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00008889 MVT InVT = In.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +00008890 SDLoc dl(Op);
Nadav Rotem0509db22012-12-28 05:45:24 +00008891
8892 // Optimize vectors in AVX mode:
8893 //
8894 // v8i16 -> v8i32
8895 // Use vpunpcklwd for 4 lower elements v8i16 -> v4i32.
8896 // Use vpunpckhwd for 4 upper elements v8i16 -> v4i32.
8897 // Concat upper and lower parts.
8898 //
8899 // v4i32 -> v4i64
8900 // Use vpunpckldq for 4 lower elements v4i32 -> v2i64.
8901 // Use vpunpckhdq for 4 upper elements v4i32 -> v2i64.
8902 // Concat upper and lower parts.
8903 //
8904
Benjamin Kramer7377cff2013-10-23 19:19:04 +00008905 if (((VT != MVT::v16i16) || (InVT != MVT::v16i8)) &&
8906 ((VT != MVT::v8i32) || (InVT != MVT::v8i16)) &&
Nadav Rotem0509db22012-12-28 05:45:24 +00008907 ((VT != MVT::v4i64) || (InVT != MVT::v4i32)))
8908 return SDValue();
8909
8910 if (Subtarget->hasInt256())
8911 return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, In);
8912
8913 SDValue ZeroVec = getZeroVector(InVT, Subtarget, DAG, dl);
8914 SDValue Undef = DAG.getUNDEF(InVT);
8915 bool NeedZero = Op.getOpcode() == ISD::ZERO_EXTEND;
8916 SDValue OpLo = getUnpackl(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8917 SDValue OpHi = getUnpackh(DAG, dl, InVT, In, NeedZero ? ZeroVec : Undef);
8918
Craig Toppera080daf2013-01-20 21:50:27 +00008919 MVT HVT = MVT::getVectorVT(VT.getVectorElementType(),
Nadav Rotem0509db22012-12-28 05:45:24 +00008920 VT.getVectorNumElements()/2);
8921
8922 OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
8923 OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
8924
8925 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
8926}
8927
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008928static SDValue LowerZERO_EXTEND_AVX512(SDValue Op,
8929 SelectionDAG &DAG) {
8930 MVT VT = Op->getValueType(0).getSimpleVT();
8931 SDValue In = Op->getOperand(0);
8932 MVT InVT = In.getValueType().getSimpleVT();
8933 SDLoc DL(Op);
8934 unsigned int NumElts = VT.getVectorNumElements();
8935 if (NumElts != 8 && NumElts != 16)
8936 return SDValue();
8937
8938 if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
8939 return DAG.getNode(X86ISD::VZEXT, DL, VT, In);
8940
8941 EVT ExtVT = (NumElts == 8)? MVT::v8i64 : MVT::v16i32;
8942 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8943 // Now we have only mask extension
8944 assert(InVT.getVectorElementType() == MVT::i1);
8945 SDValue Cst = DAG.getTargetConstant(1, ExtVT.getScalarType());
8946 const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
8947 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
8948 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
8949 SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
8950 MachinePointerInfo::getConstantPool(),
8951 false, false, false, Alignment);
8952
8953 SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, DL, ExtVT, In, Ld);
8954 if (VT.is512BitVector())
8955 return Brcst;
8956 return DAG.getNode(X86ISD::VTRUNC, DL, VT, Brcst);
8957}
8958
Craig Topperff79bc62013-08-18 08:53:01 +00008959static SDValue LowerANY_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8960 SelectionDAG &DAG) {
Nadav Rotem0509db22012-12-28 05:45:24 +00008961 if (Subtarget->hasFp256()) {
8962 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8963 if (Res.getNode())
8964 return Res;
8965 }
8966
8967 return SDValue();
8968}
Craig Topperff79bc62013-08-18 08:53:01 +00008969
8970static SDValue LowerZERO_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
8971 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008972 SDLoc DL(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00008973 MVT VT = Op.getSimpleValueType();
Michael Liaoa7554632012-10-23 17:36:08 +00008974 SDValue In = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00008975 MVT SVT = In.getSimpleValueType();
Michael Liaoa7554632012-10-23 17:36:08 +00008976
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008977 if (VT.is512BitVector() || SVT.getVectorElementType() == MVT::i1)
8978 return LowerZERO_EXTEND_AVX512(Op, DAG);
8979
Nadav Rotem0509db22012-12-28 05:45:24 +00008980 if (Subtarget->hasFp256()) {
8981 SDValue Res = LowerAVXExtend(Op, DAG, Subtarget);
8982 if (Res.getNode())
8983 return Res;
8984 }
8985
Benjamin Kramer7377cff2013-10-23 19:19:04 +00008986 assert(!VT.is256BitVector() || !SVT.is128BitVector() ||
8987 VT.getVectorNumElements() != SVT.getVectorNumElements());
8988 return SDValue();
Michael Liaoa7554632012-10-23 17:36:08 +00008989}
8990
Craig Topperd713c0f2013-01-20 21:34:37 +00008991SDValue X86TargetLowering::LowerTRUNCATE(SDValue Op, SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00008992 SDLoc DL(Op);
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008993 MVT VT = Op.getSimpleValueType();
Nadav Rotem3c22a442012-12-27 07:45:10 +00008994 SDValue In = Op.getOperand(0);
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008995 MVT InVT = In.getSimpleValueType();
8996 assert(VT.getVectorNumElements() == InVT.getVectorNumElements() &&
8997 "Invalid TRUNCATE operation");
Michael Liaobedcbd42012-10-16 18:14:11 +00008998
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00008999 if (InVT.is512BitVector() || VT.getVectorElementType() == MVT::i1) {
9000 if (VT.getVectorElementType().getSizeInBits() >=8)
9001 return DAG.getNode(X86ISD::VTRUNC, DL, VT, In);
9002
9003 assert(VT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
9004 unsigned NumElts = InVT.getVectorNumElements();
9005 assert ((NumElts == 8 || NumElts == 16) && "Unexpected vector type");
9006 if (InVT.getSizeInBits() < 512) {
9007 MVT ExtVT = (NumElts == 16)? MVT::v16i32 : MVT::v8i64;
9008 In = DAG.getNode(ISD::SIGN_EXTEND, DL, ExtVT, In);
9009 InVT = ExtVT;
9010 }
9011 SDValue Cst = DAG.getTargetConstant(1, InVT.getVectorElementType());
9012 const Constant *C = (dyn_cast<ConstantSDNode>(Cst))->getConstantIntValue();
9013 SDValue CP = DAG.getConstantPool(C, getPointerTy());
9014 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
9015 SDValue Ld = DAG.getLoad(Cst.getValueType(), DL, DAG.getEntryNode(), CP,
9016 MachinePointerInfo::getConstantPool(),
9017 false, false, false, Alignment);
9018 SDValue OneV = DAG.getNode(X86ISD::VBROADCAST, DL, InVT, Ld);
9019 SDValue And = DAG.getNode(ISD::AND, DL, InVT, OneV, In);
9020 return DAG.getNode(X86ISD::TESTM, DL, VT, And, And);
9021 }
9022
9023 if ((VT == MVT::v4i32) && (InVT == MVT::v4i64)) {
Nadav Rotem3c22a442012-12-27 07:45:10 +00009024 // On AVX2, v4i64 -> v4i32 becomes VPERMD.
9025 if (Subtarget->hasInt256()) {
9026 static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
9027 In = DAG.getNode(ISD::BITCAST, DL, MVT::v8i32, In);
9028 In = DAG.getVectorShuffle(MVT::v8i32, DL, In, DAG.getUNDEF(MVT::v8i32),
9029 ShufMask);
9030 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, In,
9031 DAG.getIntPtrConstant(0));
9032 }
9033
9034 // On AVX, v4i64 -> v4i32 becomes a sequence that uses PSHUFD and MOVLHPS.
9035 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9036 DAG.getIntPtrConstant(0));
9037 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9038 DAG.getIntPtrConstant(2));
9039
9040 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9041 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9042
9043 // The PSHUFD mask:
9044 static const int ShufMask1[] = {0, 2, 0, 0};
9045 SDValue Undef = DAG.getUNDEF(VT);
9046 OpLo = DAG.getVectorShuffle(VT, DL, OpLo, Undef, ShufMask1);
9047 OpHi = DAG.getVectorShuffle(VT, DL, OpHi, Undef, ShufMask1);
9048
9049 // The MOVLHPS mask:
9050 static const int ShufMask2[] = {0, 1, 4, 5};
9051 return DAG.getVectorShuffle(VT, DL, OpLo, OpHi, ShufMask2);
9052 }
9053
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00009054 if ((VT == MVT::v8i16) && (InVT == MVT::v8i32)) {
Nadav Rotem3c22a442012-12-27 07:45:10 +00009055 // On AVX2, v8i32 -> v8i16 becomed PSHUFB.
9056 if (Subtarget->hasInt256()) {
9057 In = DAG.getNode(ISD::BITCAST, DL, MVT::v32i8, In);
9058
9059 SmallVector<SDValue,32> pshufbMask;
9060 for (unsigned i = 0; i < 2; ++i) {
9061 pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
9062 pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
9063 pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
9064 pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
9065 pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
9066 pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
9067 pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
9068 pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
9069 for (unsigned j = 0; j < 8; ++j)
9070 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
9071 }
9072 SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, DL, MVT::v32i8,
9073 &pshufbMask[0], 32);
9074 In = DAG.getNode(X86ISD::PSHUFB, DL, MVT::v32i8, In, BV);
9075 In = DAG.getNode(ISD::BITCAST, DL, MVT::v4i64, In);
9076
9077 static const int ShufMask[] = {0, 2, -1, -1};
9078 In = DAG.getVectorShuffle(MVT::v4i64, DL, In, DAG.getUNDEF(MVT::v4i64),
9079 &ShufMask[0]);
9080 In = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v2i64, In,
9081 DAG.getIntPtrConstant(0));
9082 return DAG.getNode(ISD::BITCAST, DL, VT, In);
9083 }
9084
9085 SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9086 DAG.getIntPtrConstant(0));
9087
9088 SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, MVT::v4i32, In,
9089 DAG.getIntPtrConstant(4));
9090
9091 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpLo);
9092 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, OpHi);
9093
9094 // The PSHUFB mask:
9095 static const int ShufMask1[] = {0, 1, 4, 5, 8, 9, 12, 13,
9096 -1, -1, -1, -1, -1, -1, -1, -1};
9097
9098 SDValue Undef = DAG.getUNDEF(MVT::v16i8);
9099 OpLo = DAG.getVectorShuffle(MVT::v16i8, DL, OpLo, Undef, ShufMask1);
9100 OpHi = DAG.getVectorShuffle(MVT::v16i8, DL, OpHi, Undef, ShufMask1);
9101
9102 OpLo = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpLo);
9103 OpHi = DAG.getNode(ISD::BITCAST, DL, MVT::v4i32, OpHi);
9104
9105 // The MOVLHPS Mask:
9106 static const int ShufMask2[] = {0, 1, 4, 5};
9107 SDValue res = DAG.getVectorShuffle(MVT::v4i32, DL, OpLo, OpHi, ShufMask2);
9108 return DAG.getNode(ISD::BITCAST, DL, MVT::v8i16, res);
9109 }
9110
9111 // Handle truncation of V256 to V128 using shuffles.
Elena Demikhovsky4edfa222013-08-29 11:56:53 +00009112 if (!VT.is128BitVector() || !InVT.is256BitVector())
Michael Liaobedcbd42012-10-16 18:14:11 +00009113 return SDValue();
9114
Nadav Rotem3c22a442012-12-27 07:45:10 +00009115 assert(Subtarget->hasFp256() && "256-bit vector without AVX!");
Michael Liaobedcbd42012-10-16 18:14:11 +00009116
9117 unsigned NumElems = VT.getVectorNumElements();
9118 EVT NVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
9119 NumElems * 2);
9120
Michael Liaobedcbd42012-10-16 18:14:11 +00009121 SmallVector<int, 16> MaskVec(NumElems * 2, -1);
9122 // Prepare truncation shuffle mask
9123 for (unsigned i = 0; i != NumElems; ++i)
9124 MaskVec[i] = i * 2;
9125 SDValue V = DAG.getVectorShuffle(NVT, DL,
9126 DAG.getNode(ISD::BITCAST, DL, NVT, In),
9127 DAG.getUNDEF(NVT), &MaskVec[0]);
9128 return DAG.getNode(ISD::EXTRACT_SUBVECTOR, DL, VT, V,
9129 DAG.getIntPtrConstant(0));
9130}
9131
Dan Gohmand858e902010-04-17 15:26:15 +00009132SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
9133 SelectionDAG &DAG) const {
Craig Topper5a0910b2013-08-15 02:33:50 +00009134 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009135 if (VT.isVector()) {
9136 if (VT == MVT::v8i16)
Andrew Trickac6d9be2013-05-25 02:42:55 +00009137 return DAG.getNode(ISD::TRUNCATE, SDLoc(Op), VT,
9138 DAG.getNode(ISD::FP_TO_SINT, SDLoc(Op),
Michael Liaobedcbd42012-10-16 18:14:11 +00009139 MVT::v8i32, Op.getOperand(0)));
Eli Friedman23ef1052009-06-06 03:57:58 +00009140 return SDValue();
Michael Liaobedcbd42012-10-16 18:14:11 +00009141 }
Eli Friedman23ef1052009-06-06 03:57:58 +00009142
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009143 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9144 /*IsSigned=*/ true, /*IsReplace=*/ false);
Dan Gohman475871a2008-07-27 21:46:04 +00009145 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00009146 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
9147 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00009148
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00009149 if (StackSlot.getNode())
9150 // Load the result.
Andrew Trickac6d9be2013-05-25 02:42:55 +00009151 return DAG.getLoad(Op.getValueType(), SDLoc(Op),
Michael J. Spencer1a2d0612012-02-24 19:01:22 +00009152 FIST, StackSlot, MachinePointerInfo(),
9153 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00009154
9155 // The node is the result.
9156 return FIST;
Chris Lattner27a6c732007-11-24 07:07:01 +00009157}
9158
Dan Gohmand858e902010-04-17 15:26:15 +00009159SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
9160 SelectionDAG &DAG) const {
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009161 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
9162 /*IsSigned=*/ false, /*IsReplace=*/ false);
Eli Friedman948e95a2009-05-23 09:59:16 +00009163 SDValue FIST = Vals.first, StackSlot = Vals.second;
9164 assert(FIST.getNode() && "Unexpected failure");
9165
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009166 if (StackSlot.getNode())
9167 // Load the result.
Andrew Trickac6d9be2013-05-25 02:42:55 +00009168 return DAG.getLoad(Op.getValueType(), SDLoc(Op),
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +00009169 FIST, StackSlot, MachinePointerInfo(),
9170 false, false, false, 0);
Craig Topper69947b92012-04-23 06:57:04 +00009171
9172 // The node is the result.
9173 return FIST;
Eli Friedman948e95a2009-05-23 09:59:16 +00009174}
9175
Craig Topperb84b4232013-01-21 06:13:28 +00009176static SDValue LowerFP_EXTEND(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009177 SDLoc DL(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009178 MVT VT = Op.getSimpleValueType();
Michael Liao9d796db2012-10-10 16:32:15 +00009179 SDValue In = Op.getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +00009180 MVT SVT = In.getSimpleValueType();
Michael Liao9d796db2012-10-10 16:32:15 +00009181
9182 assert(SVT == MVT::v2f32 && "Only customize MVT::v2f32 type legalization!");
9183
9184 return DAG.getNode(X86ISD::VFPEXT, DL, VT,
9185 DAG.getNode(ISD::CONCAT_VECTORS, DL, MVT::v4f32,
9186 In, DAG.getUNDEF(SVT)));
9187}
9188
Craig Topper43620672012-09-08 07:31:51 +00009189SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009190 LLVMContext *Context = DAG.getContext();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009191 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009192 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009193 MVT EltVT = VT;
Craig Topper43620672012-09-08 07:31:51 +00009194 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9195 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009196 EltVT = VT.getVectorElementType();
Craig Topper43620672012-09-08 07:31:51 +00009197 NumElts = VT.getVectorNumElements();
Evan Cheng0db9fe62006-04-25 20:13:52 +00009198 }
Craig Topper43620672012-09-08 07:31:51 +00009199 Constant *C;
9200 if (EltVT == MVT::f64)
Tim Northover0a29cb02013-01-22 09:46:31 +00009201 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9202 APInt(64, ~(1ULL << 63))));
Craig Topper43620672012-09-08 07:31:51 +00009203 else
Tim Northover0a29cb02013-01-22 09:46:31 +00009204 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9205 APInt(32, ~(1U << 31))));
Craig Topper43620672012-09-08 07:31:51 +00009206 C = ConstantVector::getSplat(NumElts, C);
9207 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9208 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00009209 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009210 MachinePointerInfo::getConstantPool(),
Craig Topper43620672012-09-08 07:31:51 +00009211 false, false, false, Alignment);
9212 if (VT.isVector()) {
9213 MVT ANDVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9214 return DAG.getNode(ISD::BITCAST, dl, VT,
9215 DAG.getNode(ISD::AND, dl, ANDVT,
9216 DAG.getNode(ISD::BITCAST, dl, ANDVT,
9217 Op.getOperand(0)),
9218 DAG.getNode(ISD::BITCAST, dl, ANDVT, Mask)));
9219 }
Dale Johannesenace16102009-02-03 19:33:06 +00009220 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009221}
9222
Dan Gohmand858e902010-04-17 15:26:15 +00009223SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009224 LLVMContext *Context = DAG.getContext();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009225 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009226 MVT VT = Op.getSimpleValueType();
Craig Toppera080daf2013-01-20 21:50:27 +00009227 MVT EltVT = VT;
Chad Rosiera860b182011-12-15 01:02:25 +00009228 unsigned NumElts = VT == MVT::f64 ? 2 : 4;
9229 if (VT.isVector()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009230 EltVT = VT.getVectorElementType();
Chad Rosiera860b182011-12-15 01:02:25 +00009231 NumElts = VT.getVectorNumElements();
9232 }
Chris Lattner4ca829e2012-01-25 06:02:56 +00009233 Constant *C;
9234 if (EltVT == MVT::f64)
Tim Northover0a29cb02013-01-22 09:46:31 +00009235 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEdouble,
9236 APInt(64, 1ULL << 63)));
Chris Lattner4ca829e2012-01-25 06:02:56 +00009237 else
Tim Northover0a29cb02013-01-22 09:46:31 +00009238 C = ConstantFP::get(*Context, APFloat(APFloat::IEEEsingle,
9239 APInt(32, 1U << 31)));
Chris Lattner4ca829e2012-01-25 06:02:56 +00009240 C = ConstantVector::getSplat(NumElts, C);
Craig Toppercacd9d62012-09-08 07:46:05 +00009241 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy());
9242 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenace16102009-02-03 19:33:06 +00009243 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009244 MachinePointerInfo::getConstantPool(),
Craig Toppercacd9d62012-09-08 07:46:05 +00009245 false, false, false, Alignment);
Duncan Sands83ec4b62008-06-06 12:08:01 +00009246 if (VT.isVector()) {
Elena Demikhovsky1567abe2013-08-27 08:39:25 +00009247 MVT XORVT = MVT::getVectorVT(MVT::i64, VT.getSizeInBits()/64);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009248 return DAG.getNode(ISD::BITCAST, dl, VT,
Chad Rosiera860b182011-12-15 01:02:25 +00009249 DAG.getNode(ISD::XOR, dl, XORVT,
Craig Topper69947b92012-04-23 06:57:04 +00009250 DAG.getNode(ISD::BITCAST, dl, XORVT,
9251 Op.getOperand(0)),
9252 DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00009253 }
Craig Topper69947b92012-04-23 06:57:04 +00009254
9255 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009256}
9257
Dan Gohmand858e902010-04-17 15:26:15 +00009258SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00009259 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00009260 SDValue Op0 = Op.getOperand(0);
9261 SDValue Op1 = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009262 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009263 MVT VT = Op.getSimpleValueType();
9264 MVT SrcVT = Op1.getSimpleValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00009265
9266 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009267 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00009268 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00009269 SrcVT = VT;
9270 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009271 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009272 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00009273 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009274 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00009275 }
9276
9277 // At this point the operands and the result should have the same
9278 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00009279
Evan Cheng68c47cb2007-01-05 07:55:56 +00009280 // First get the sign bit of second operand.
Chad Rosier01d426e2011-12-15 01:16:09 +00009281 SmallVector<Constant*,4> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00009282 if (SrcVT == MVT::f64) {
Tim Northover0a29cb02013-01-22 09:46:31 +00009283 const fltSemantics &Sem = APFloat::IEEEdouble;
9284 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 1ULL << 63))));
9285 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009286 } else {
Tim Northover0a29cb02013-01-22 09:46:31 +00009287 const fltSemantics &Sem = APFloat::IEEEsingle;
9288 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 1U << 31))));
9289 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9290 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9291 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009292 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00009293 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00009294 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009295 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009296 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009297 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009298 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009299
9300 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00009301 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00009302 // Op0 is MVT::f32, Op1 is MVT::f64.
9303 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
9304 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
9305 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009306 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00009307 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00009308 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00009309 }
9310
Evan Cheng73d6cf12007-01-05 21:37:56 +00009311 // Clear first operand sign bit.
9312 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00009313 if (VT == MVT::f64) {
Tim Northover0a29cb02013-01-22 09:46:31 +00009314 const fltSemantics &Sem = APFloat::IEEEdouble;
9315 CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9316 APInt(64, ~(1ULL << 63)))));
9317 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00009318 } else {
Tim Northover0a29cb02013-01-22 09:46:31 +00009319 const fltSemantics &Sem = APFloat::IEEEsingle;
9320 CV.push_back(ConstantFP::get(*Context, APFloat(Sem,
9321 APInt(32, ~(1U << 31)))));
9322 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9323 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
9324 CV.push_back(ConstantFP::get(*Context, APFloat(Sem, APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00009325 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00009326 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00009327 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009328 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009329 MachinePointerInfo::getConstantPool(),
Pete Cooperd752e0f2011-11-08 18:42:53 +00009330 false, false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00009331 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00009332
9333 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00009334 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009335}
9336
Craig Topper55b24052012-09-11 06:15:32 +00009337static SDValue LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) {
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009338 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +00009339 SDLoc dl(Op);
Craig Topper5a0910b2013-08-15 02:33:50 +00009340 MVT VT = Op.getSimpleValueType();
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009341
9342 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
9343 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
9344 DAG.getConstant(1, VT));
9345 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
9346}
9347
Michael Liaof966e4e2012-09-13 20:24:54 +00009348// LowerVectorAllZeroTest - Check whether an OR'd tree is PTEST-able.
9349//
Craig Topper158ec072013-08-14 07:34:43 +00009350static SDValue LowerVectorAllZeroTest(SDValue Op, const X86Subtarget *Subtarget,
9351 SelectionDAG &DAG) {
Michael Liaof966e4e2012-09-13 20:24:54 +00009352 assert(Op.getOpcode() == ISD::OR && "Only check OR'd tree.");
9353
9354 if (!Subtarget->hasSSE41())
9355 return SDValue();
9356
9357 if (!Op->hasOneUse())
9358 return SDValue();
9359
9360 SDNode *N = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009361 SDLoc DL(N);
Michael Liaof966e4e2012-09-13 20:24:54 +00009362
9363 SmallVector<SDValue, 8> Opnds;
9364 DenseMap<SDValue, unsigned> VecInMap;
9365 EVT VT = MVT::Other;
9366
9367 // Recognize a special case where a vector is casted into wide integer to
9368 // test all 0s.
9369 Opnds.push_back(N->getOperand(0));
9370 Opnds.push_back(N->getOperand(1));
9371
9372 for (unsigned Slot = 0, e = Opnds.size(); Slot < e; ++Slot) {
Craig Topper365ef0b2013-07-03 15:07:05 +00009373 SmallVectorImpl<SDValue>::const_iterator I = Opnds.begin() + Slot;
Michael Liaof966e4e2012-09-13 20:24:54 +00009374 // BFS traverse all OR'd operands.
9375 if (I->getOpcode() == ISD::OR) {
9376 Opnds.push_back(I->getOperand(0));
9377 Opnds.push_back(I->getOperand(1));
9378 // Re-evaluate the number of nodes to be traversed.
9379 e += 2; // 2 more nodes (LHS and RHS) are pushed.
9380 continue;
9381 }
9382
9383 // Quit if a non-EXTRACT_VECTOR_ELT
9384 if (I->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
9385 return SDValue();
9386
9387 // Quit if without a constant index.
9388 SDValue Idx = I->getOperand(1);
9389 if (!isa<ConstantSDNode>(Idx))
9390 return SDValue();
9391
9392 SDValue ExtractedFromVec = I->getOperand(0);
9393 DenseMap<SDValue, unsigned>::iterator M = VecInMap.find(ExtractedFromVec);
9394 if (M == VecInMap.end()) {
9395 VT = ExtractedFromVec.getValueType();
9396 // Quit if not 128/256-bit vector.
9397 if (!VT.is128BitVector() && !VT.is256BitVector())
9398 return SDValue();
9399 // Quit if not the same type.
9400 if (VecInMap.begin() != VecInMap.end() &&
9401 VT != VecInMap.begin()->first.getValueType())
9402 return SDValue();
9403 M = VecInMap.insert(std::make_pair(ExtractedFromVec, 0)).first;
9404 }
9405 M->second |= 1U << cast<ConstantSDNode>(Idx)->getZExtValue();
9406 }
9407
9408 assert((VT.is128BitVector() || VT.is256BitVector()) &&
Michael Liao9aba7ea2012-09-13 20:30:16 +00009409 "Not extracted from 128-/256-bit vector.");
Michael Liaof966e4e2012-09-13 20:24:54 +00009410
9411 unsigned FullMask = (1U << VT.getVectorNumElements()) - 1U;
9412 SmallVector<SDValue, 8> VecIns;
9413
9414 for (DenseMap<SDValue, unsigned>::const_iterator
9415 I = VecInMap.begin(), E = VecInMap.end(); I != E; ++I) {
9416 // Quit if not all elements are used.
9417 if (I->second != FullMask)
9418 return SDValue();
9419 VecIns.push_back(I->first);
9420 }
9421
9422 EVT TestVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
9423
9424 // Cast all vectors into TestVT for PTEST.
9425 for (unsigned i = 0, e = VecIns.size(); i < e; ++i)
9426 VecIns[i] = DAG.getNode(ISD::BITCAST, DL, TestVT, VecIns[i]);
9427
9428 // If more than one full vectors are evaluated, OR them first before PTEST.
9429 for (unsigned Slot = 0, e = VecIns.size(); e - Slot > 1; Slot += 2, e += 1) {
9430 // Each iteration will OR 2 nodes and append the result until there is only
9431 // 1 node left, i.e. the final OR'd value of all vectors.
9432 SDValue LHS = VecIns[Slot];
9433 SDValue RHS = VecIns[Slot + 1];
9434 VecIns.push_back(DAG.getNode(ISD::OR, DL, TestVT, LHS, RHS));
9435 }
9436
9437 return DAG.getNode(X86ISD::PTEST, DL, MVT::i32,
9438 VecIns.back(), VecIns.back());
9439}
9440
Dan Gohman076aee32009-03-04 19:44:21 +00009441/// Emit nodes that will be selected as "test Op0,Op0", or something
9442/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00009443SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00009444 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +00009445 SDLoc dl(Op);
Dan Gohman076aee32009-03-04 19:44:21 +00009446
Dan Gohman31125812009-03-07 01:58:32 +00009447 // CF and OF aren't always set the way we want. Determine which
9448 // of these we need.
9449 bool NeedCF = false;
9450 bool NeedOF = false;
9451 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009452 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00009453 case X86::COND_A: case X86::COND_AE:
9454 case X86::COND_B: case X86::COND_BE:
9455 NeedCF = true;
9456 break;
9457 case X86::COND_G: case X86::COND_GE:
9458 case X86::COND_L: case X86::COND_LE:
9459 case X86::COND_O: case X86::COND_NO:
9460 NeedOF = true;
9461 break;
Dan Gohman31125812009-03-07 01:58:32 +00009462 }
9463
Dan Gohman076aee32009-03-04 19:44:21 +00009464 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00009465 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
9466 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009467 if (Op.getResNo() != 0 || NeedOF || NeedCF)
9468 // Emit a CMP with 0, which is the TEST pattern.
9469 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9470 DAG.getConstant(0, Op.getValueType()));
9471
9472 unsigned Opcode = 0;
9473 unsigned NumOperands = 0;
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009474
9475 // Truncate operations may prevent the merge of the SETCC instruction
Robert Wilhelmf80a63f2013-09-28 11:46:15 +00009476 // and the arithmetic instruction before it. Attempt to truncate the operands
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009477 // of the arithmetic instruction and use a reduced bit-width instruction.
9478 bool NeedTruncation = false;
9479 SDValue ArithOp = Op;
9480 if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
9481 SDValue Arith = Op->getOperand(0);
9482 // Both the trunc and the arithmetic op need to have one user each.
9483 if (Arith->hasOneUse())
9484 switch (Arith.getOpcode()) {
9485 default: break;
9486 case ISD::ADD:
9487 case ISD::SUB:
9488 case ISD::AND:
9489 case ISD::OR:
9490 case ISD::XOR: {
9491 NeedTruncation = true;
9492 ArithOp = Arith;
9493 }
9494 }
9495 }
9496
9497 // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
9498 // which may be the result of a CAST. We use the variable 'Op', which is the
9499 // non-casted variable when we check for possible users.
9500 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009501 case ISD::ADD:
9502 // Due to an isel shortcoming, be conservative if this add is likely to be
9503 // selected as part of a load-modify-store instruction. When the root node
9504 // in a match is a store, isel doesn't know how to remap non-chain non-flag
9505 // uses of other nodes in the match, such as the ADD in this case. This
9506 // leads to the ADD being left around and reselected, with the result being
9507 // two adds in the output. Alas, even if none our users are stores, that
9508 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
9509 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
9510 // climbing the DAG back to the root, and it doesn't seem to be worth the
9511 // effort.
9512 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Pete Cooper2d496892011-11-15 21:57:53 +00009513 UE = Op.getNode()->use_end(); UI != UE; ++UI)
9514 if (UI->getOpcode() != ISD::CopyToReg &&
9515 UI->getOpcode() != ISD::SETCC &&
9516 UI->getOpcode() != ISD::STORE)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009517 goto default_case;
9518
9519 if (ConstantSDNode *C =
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009520 dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009521 // An add of one will be selected as an INC.
9522 if (C->getAPIntValue() == 1) {
9523 Opcode = X86ISD::INC;
9524 NumOperands = 1;
9525 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00009526 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009527
9528 // An add of negative one (subtract of one) will be selected as a DEC.
9529 if (C->getAPIntValue().isAllOnesValue()) {
9530 Opcode = X86ISD::DEC;
9531 NumOperands = 1;
9532 break;
9533 }
Dan Gohman076aee32009-03-04 19:44:21 +00009534 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009535
9536 // Otherwise use a regular EFLAGS-setting add.
9537 Opcode = X86ISD::ADD;
9538 NumOperands = 2;
9539 break;
9540 case ISD::AND: {
9541 // If the primary and result isn't used, don't bother using X86ISD::AND,
9542 // because a TEST instruction will be better.
9543 bool NonFlagUse = false;
9544 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9545 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
9546 SDNode *User = *UI;
9547 unsigned UOpNo = UI.getOperandNo();
9548 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
9549 // Look pass truncate.
9550 UOpNo = User->use_begin().getOperandNo();
9551 User = *User->use_begin();
9552 }
9553
9554 if (User->getOpcode() != ISD::BRCOND &&
9555 User->getOpcode() != ISD::SETCC &&
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009556 !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009557 NonFlagUse = true;
9558 break;
9559 }
Dan Gohman076aee32009-03-04 19:44:21 +00009560 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009561
9562 if (!NonFlagUse)
9563 break;
9564 }
9565 // FALL THROUGH
9566 case ISD::SUB:
9567 case ISD::OR:
9568 case ISD::XOR:
9569 // Due to the ISEL shortcoming noted above, be conservative if this op is
9570 // likely to be selected as part of a load-modify-store instruction.
9571 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
9572 UE = Op.getNode()->use_end(); UI != UE; ++UI)
9573 if (UI->getOpcode() == ISD::STORE)
9574 goto default_case;
9575
9576 // Otherwise use a regular EFLAGS-setting instruction.
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009577 switch (ArithOp.getOpcode()) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009578 default: llvm_unreachable("unexpected operator!");
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009579 case ISD::SUB: Opcode = X86ISD::SUB; break;
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009580 case ISD::XOR: Opcode = X86ISD::XOR; break;
9581 case ISD::AND: Opcode = X86ISD::AND; break;
Michael Liaof966e4e2012-09-13 20:24:54 +00009582 case ISD::OR: {
9583 if (!NeedTruncation && (X86CC == X86::COND_E || X86CC == X86::COND_NE)) {
Craig Topper158ec072013-08-14 07:34:43 +00009584 SDValue EFLAGS = LowerVectorAllZeroTest(Op, Subtarget, DAG);
Michael Liaof966e4e2012-09-13 20:24:54 +00009585 if (EFLAGS.getNode())
9586 return EFLAGS;
9587 }
9588 Opcode = X86ISD::OR;
9589 break;
9590 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009591 }
9592
9593 NumOperands = 2;
9594 break;
9595 case X86ISD::ADD:
9596 case X86ISD::SUB:
9597 case X86ISD::INC:
9598 case X86ISD::DEC:
9599 case X86ISD::OR:
9600 case X86ISD::XOR:
9601 case X86ISD::AND:
9602 return SDValue(Op.getNode(), 1);
9603 default:
9604 default_case:
9605 break;
Dan Gohman076aee32009-03-04 19:44:21 +00009606 }
9607
Nadav Rotemb9d6b842012-08-18 17:53:03 +00009608 // If we found that truncation is beneficial, perform the truncation and
9609 // update 'Op'.
9610 if (NeedTruncation) {
9611 EVT VT = Op.getValueType();
9612 SDValue WideVal = Op->getOperand(0);
9613 EVT WideVT = WideVal.getValueType();
9614 unsigned ConvertedOp = 0;
9615 // Use a target machine opcode to prevent further DAGCombine
9616 // optimizations that may separate the arithmetic operations
9617 // from the setcc node.
9618 switch (WideVal.getOpcode()) {
9619 default: break;
9620 case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
9621 case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
9622 case ISD::AND: ConvertedOp = X86ISD::AND; break;
9623 case ISD::OR: ConvertedOp = X86ISD::OR; break;
9624 case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
9625 }
9626
9627 if (ConvertedOp) {
9628 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
9629 if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
9630 SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
9631 SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
9632 Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
9633 }
9634 }
9635 }
9636
Bill Wendlingc25ccf82010-06-28 21:08:32 +00009637 if (Opcode == 0)
9638 // Emit a CMP with 0, which is the TEST pattern.
9639 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
9640 DAG.getConstant(0, Op.getValueType()));
9641
9642 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
9643 SmallVector<SDValue, 4> Ops;
9644 for (unsigned i = 0; i != NumOperands; ++i)
9645 Ops.push_back(Op.getOperand(i));
9646
9647 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
9648 DAG.ReplaceAllUsesWith(Op, New);
9649 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00009650}
9651
9652/// Emit nodes that will be selected as "cmp Op0,Op1", or something
9653/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00009654SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00009655 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00009656 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
9657 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00009658 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00009659
Andrew Trickac6d9be2013-05-25 02:42:55 +00009660 SDLoc dl(Op0);
Manman Ren39ad5682012-08-08 00:51:41 +00009661 if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
9662 Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
9663 // Use SUB instead of CMP to enable CSE between SUB and CMP.
9664 SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
9665 SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
9666 Op0, Op1);
9667 return SDValue(Sub.getNode(), 1);
9668 }
Owen Anderson825b72b2009-08-11 20:47:22 +00009669 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00009670}
9671
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009672/// Convert a comparison if required by the subtarget.
9673SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
9674 SelectionDAG &DAG) const {
9675 // If the subtarget does not support the FUCOMI instruction, floating-point
9676 // comparisons have to be converted.
9677 if (Subtarget->hasCMov() ||
9678 Cmp.getOpcode() != X86ISD::CMP ||
9679 !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
9680 !Cmp.getOperand(1).getValueType().isFloatingPoint())
9681 return Cmp;
9682
9683 // The instruction selector will select an FUCOM instruction instead of
9684 // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
9685 // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
9686 // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
Andrew Trickac6d9be2013-05-25 02:42:55 +00009687 SDLoc dl(Cmp);
Benjamin Kramer17c836c2012-04-27 12:07:43 +00009688 SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
9689 SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
9690 SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
9691 DAG.getConstant(8, MVT::i8));
9692 SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
9693 return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
9694}
9695
Evan Cheng4e544802012-12-05 00:10:38 +00009696static bool isAllOnes(SDValue V) {
9697 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
9698 return C && C->isAllOnesValue();
9699}
9700
Evan Chengd40d03e2010-01-06 19:38:29 +00009701/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
9702/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00009703SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
Andrew Trickac6d9be2013-05-25 02:42:55 +00009704 SDLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009705 SDValue Op0 = And.getOperand(0);
9706 SDValue Op1 = And.getOperand(1);
9707 if (Op0.getOpcode() == ISD::TRUNCATE)
9708 Op0 = Op0.getOperand(0);
9709 if (Op1.getOpcode() == ISD::TRUNCATE)
9710 Op1 = Op1.getOperand(0);
9711
Evan Chengd40d03e2010-01-06 19:38:29 +00009712 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009713 if (Op1.getOpcode() == ISD::SHL)
9714 std::swap(Op0, Op1);
9715 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00009716 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
9717 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009718 // If we looked past a truncate, check that it's only truncating away
9719 // known zeros.
9720 unsigned BitWidth = Op0.getValueSizeInBits();
9721 unsigned AndBitWidth = And.getValueSizeInBits();
9722 if (BitWidth > AndBitWidth) {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +00009723 APInt Zeros, Ones;
9724 DAG.ComputeMaskedBits(Op0, Zeros, Ones);
Dan Gohman6b13cbc2010-06-24 02:07:59 +00009725 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
9726 return SDValue();
9727 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009728 LHS = Op1;
9729 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00009730 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00009731 } else if (Op1.getOpcode() == ISD::Constant) {
9732 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
Benjamin Kramerf238f502011-11-23 13:54:17 +00009733 uint64_t AndRHSVal = AndRHS->getZExtValue();
Evan Cheng2c755ba2010-02-27 07:36:59 +00009734 SDValue AndLHS = Op0;
Benjamin Kramerf238f502011-11-23 13:54:17 +00009735
9736 if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
Evan Chengd40d03e2010-01-06 19:38:29 +00009737 LHS = AndLHS.getOperand(0);
9738 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009739 }
Benjamin Kramerf238f502011-11-23 13:54:17 +00009740
9741 // Use BT if the immediate can't be encoded in a TEST instruction.
9742 if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
9743 LHS = AndLHS;
9744 RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
9745 }
Evan Chengd40d03e2010-01-06 19:38:29 +00009746 }
Evan Cheng0488db92007-09-25 01:57:46 +00009747
Evan Chengd40d03e2010-01-06 19:38:29 +00009748 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00009749 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00009750 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00009751 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00009752 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00009753 // Also promote i16 to i32 for performance / code size reason.
9754 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00009755 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00009756 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00009757
Evan Chengd40d03e2010-01-06 19:38:29 +00009758 // If the operand types disagree, extend the shift amount to match. Since
9759 // BT ignores high bits (like shifts) we can use anyextend.
9760 if (LHS.getValueType() != RHS.getValueType())
9761 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00009762
Evan Chengd40d03e2010-01-06 19:38:29 +00009763 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
Evan Cheng4e544802012-12-05 00:10:38 +00009764 X86::CondCode Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
Evan Chengd40d03e2010-01-06 19:38:29 +00009765 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9766 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00009767 }
9768
Evan Cheng54de3ea2010-01-05 06:52:31 +00009769 return SDValue();
9770}
9771
Benjamin Kramer75311b72013-08-04 12:05:16 +00009772/// \brief - Turns an ISD::CondCode into a value suitable for SSE floating point
9773/// mask CMPs.
9774static int translateX86FSETCC(ISD::CondCode SetCCOpcode, SDValue &Op0,
9775 SDValue &Op1) {
9776 unsigned SSECC;
9777 bool Swap = false;
9778
9779 // SSE Condition code mapping:
9780 // 0 - EQ
9781 // 1 - LT
9782 // 2 - LE
9783 // 3 - UNORD
9784 // 4 - NEQ
9785 // 5 - NLT
9786 // 6 - NLE
9787 // 7 - ORD
9788 switch (SetCCOpcode) {
9789 default: llvm_unreachable("Unexpected SETCC condition");
9790 case ISD::SETOEQ:
9791 case ISD::SETEQ: SSECC = 0; break;
9792 case ISD::SETOGT:
9793 case ISD::SETGT: Swap = true; // Fallthrough
9794 case ISD::SETLT:
9795 case ISD::SETOLT: SSECC = 1; break;
9796 case ISD::SETOGE:
9797 case ISD::SETGE: Swap = true; // Fallthrough
9798 case ISD::SETLE:
9799 case ISD::SETOLE: SSECC = 2; break;
9800 case ISD::SETUO: SSECC = 3; break;
9801 case ISD::SETUNE:
9802 case ISD::SETNE: SSECC = 4; break;
9803 case ISD::SETULE: Swap = true; // Fallthrough
9804 case ISD::SETUGE: SSECC = 5; break;
9805 case ISD::SETULT: Swap = true; // Fallthrough
9806 case ISD::SETUGT: SSECC = 6; break;
9807 case ISD::SETO: SSECC = 7; break;
9808 case ISD::SETUEQ:
9809 case ISD::SETONE: SSECC = 8; break;
9810 }
9811 if (Swap)
9812 std::swap(Op0, Op1);
9813
9814 return SSECC;
9815}
9816
Craig Topper89af15e2011-09-18 08:03:58 +00009817// Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009818// ones, and then concatenate the result back.
Craig Topper89af15e2011-09-18 08:03:58 +00009819static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +00009820 MVT VT = Op.getSimpleValueType();
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009821
Craig Topper7a9a28b2012-08-12 02:23:29 +00009822 assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009823 "Unsupported value type for operation");
9824
Craig Topper66ddd152012-04-27 22:54:43 +00009825 unsigned NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009826 SDLoc dl(Op);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009827 SDValue CC = Op.getOperand(2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009828
9829 // Extract the LHS vectors
9830 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +00009831 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
9832 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009833
9834 // Extract the RHS vectors
9835 SDValue RHS = Op.getOperand(1);
Craig Topperb14940a2012-04-22 20:55:18 +00009836 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
9837 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009838
9839 // Issue the operation on the smaller types and concatenate the result back
Craig Topper26827f32013-01-20 09:02:22 +00009840 MVT EltVT = VT.getVectorElementType();
9841 MVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009842 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9843 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
9844 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
9845}
9846
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009847static SDValue LowerIntVSETCC_AVX512(SDValue Op, SelectionDAG &DAG) {
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009848 SDValue Op0 = Op.getOperand(0);
9849 SDValue Op1 = Op.getOperand(1);
9850 SDValue CC = Op.getOperand(2);
Craig Topper5a0910b2013-08-15 02:33:50 +00009851 MVT VT = Op.getSimpleValueType();
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009852
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009853 assert(Op0.getValueType().getVectorElementType().getSizeInBits() >= 32 &&
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009854 Op.getValueType().getScalarType() == MVT::i1 &&
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009855 "Cannot set masked compare for this operation");
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009856
9857 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
9858 SDLoc dl(Op);
9859
9860 bool Unsigned = false;
9861 unsigned SSECC;
9862 switch (SetCCOpcode) {
9863 default: llvm_unreachable("Unexpected SETCC condition");
9864 case ISD::SETNE: SSECC = 4; break;
9865 case ISD::SETEQ: SSECC = 0; break;
9866 case ISD::SETUGT: Unsigned = true;
9867 case ISD::SETGT: SSECC = 6; break; // NLE
9868 case ISD::SETULT: Unsigned = true;
9869 case ISD::SETLT: SSECC = 1; break;
9870 case ISD::SETUGE: Unsigned = true;
9871 case ISD::SETGE: SSECC = 5; break; // NLT
9872 case ISD::SETULE: Unsigned = true;
9873 case ISD::SETLE: SSECC = 2; break;
9874 }
9875 unsigned Opc = Unsigned ? X86ISD::CMPMU: X86ISD::CMPM;
9876 return DAG.getNode(Opc, dl, VT, Op0, Op1,
9877 DAG.getConstant(SSECC, MVT::i8));
9878
9879}
9880
Craig Topper26827f32013-01-20 09:02:22 +00009881static SDValue LowerVSETCC(SDValue Op, const X86Subtarget *Subtarget,
9882 SelectionDAG &DAG) {
Dan Gohman475871a2008-07-27 21:46:04 +00009883 SDValue Op0 = Op.getOperand(0);
9884 SDValue Op1 = Op.getOperand(1);
9885 SDValue CC = Op.getOperand(2);
Craig Topper5a0910b2013-08-15 02:33:50 +00009886 MVT VT = Op.getSimpleValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00009887 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
Craig Topper5a0910b2013-08-15 02:33:50 +00009888 bool isFP = Op.getOperand(1).getSimpleValueType().isFloatingPoint();
Andrew Trickac6d9be2013-05-25 02:42:55 +00009889 SDLoc dl(Op);
Nate Begeman30a0de92008-07-17 16:51:19 +00009890
9891 if (isFP) {
Craig Topper523908d2012-08-13 02:34:03 +00009892#ifndef NDEBUG
Craig Topper5a0910b2013-08-15 02:33:50 +00009893 MVT EltVT = Op0.getSimpleValueType().getVectorElementType();
Craig Topper523908d2012-08-13 02:34:03 +00009894 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
9895#endif
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009896
Benjamin Kramer75311b72013-08-04 12:05:16 +00009897 unsigned SSECC = translateX86FSETCC(SetCCOpcode, Op0, Op1);
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009898 unsigned Opc = X86ISD::CMPP;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009899 if (Subtarget->hasAVX512() && VT.getVectorElementType() == MVT::i1) {
Evgeniy Stepanov4c857222013-08-13 14:04:20 +00009900 assert(VT.getVectorNumElements() <= 16);
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009901 Opc = X86ISD::CMPM;
9902 }
Nate Begemanfb8ead02008-07-25 19:05:58 +00009903 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00009904 if (SSECC == 8) {
Craig Topper523908d2012-08-13 02:34:03 +00009905 unsigned CC0, CC1;
9906 unsigned CombineOpc;
Nate Begemanfb8ead02008-07-25 19:05:58 +00009907 if (SetCCOpcode == ISD::SETUEQ) {
Craig Topper523908d2012-08-13 02:34:03 +00009908 CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
9909 } else {
9910 assert(SetCCOpcode == ISD::SETONE);
9911 CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
Craig Topper69947b92012-04-23 06:57:04 +00009912 }
Craig Topper523908d2012-08-13 02:34:03 +00009913
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009914 SDValue Cmp0 = DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper523908d2012-08-13 02:34:03 +00009915 DAG.getConstant(CC0, MVT::i8));
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009916 SDValue Cmp1 = DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper523908d2012-08-13 02:34:03 +00009917 DAG.getConstant(CC1, MVT::i8));
9918 return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
Nate Begeman30a0de92008-07-17 16:51:19 +00009919 }
9920 // Handle all other FP comparisons here.
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009921 return DAG.getNode(Opc, dl, VT, Op0, Op1,
Craig Topper1906d322012-01-22 23:36:02 +00009922 DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00009923 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009924
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00009925 // Break 256-bit integer vector compare into smaller ones.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +00009926 if (VT.is256BitVector() && !Subtarget->hasInt256())
Craig Topper89af15e2011-09-18 08:03:58 +00009927 return Lower256IntVSETCC(Op, DAG);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00009928
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009929 bool MaskResult = (VT.getVectorElementType() == MVT::i1);
9930 EVT OpVT = Op1.getValueType();
9931 if (Subtarget->hasAVX512()) {
9932 if (Op1.getValueType().is512BitVector() ||
9933 (MaskResult && OpVT.getVectorElementType().getSizeInBits() >= 32))
9934 return LowerIntVSETCC_AVX512(Op, DAG);
9935
9936 // In AVX-512 architecture setcc returns mask with i1 elements,
9937 // But there is no compare instruction for i8 and i16 elements.
9938 // We are not talking about 512-bit operands in this case, these
9939 // types are illegal.
9940 if (MaskResult &&
9941 (OpVT.getVectorElementType().getSizeInBits() < 32 &&
9942 OpVT.getVectorElementType().getSizeInBits() >= 8))
9943 return DAG.getNode(ISD::TRUNCATE, dl, VT,
9944 DAG.getNode(ISD::SETCC, dl, OpVT, Op0, Op1, CC));
9945 }
9946
Nate Begeman30a0de92008-07-17 16:51:19 +00009947 // We are handling one of the integer comparisons here. Since SSE only has
9948 // GT and EQ comparisons for integer, swapping operands and multiple
9949 // operations may be required for some comparisons.
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009950 unsigned Opc;
Juergen Ributzkab95e0f62013-07-16 18:20:45 +00009951 bool Swap = false, Invert = false, FlipSigns = false, MinMax = false;
9952
Nate Begeman30a0de92008-07-17 16:51:19 +00009953 switch (SetCCOpcode) {
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009954 default: llvm_unreachable("Unexpected SETCC condition");
Nate Begeman30a0de92008-07-17 16:51:19 +00009955 case ISD::SETNE: Invert = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009956 case ISD::SETEQ: Opc = MaskResult? X86ISD::PCMPEQM: X86ISD::PCMPEQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009957 case ISD::SETLT: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009958 case ISD::SETGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009959 case ISD::SETGE: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009960 case ISD::SETLE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9961 Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009962 case ISD::SETULT: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009963 case ISD::SETUGT: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9964 FlipSigns = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009965 case ISD::SETUGE: Swap = true;
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +00009966 case ISD::SETULE: Opc = MaskResult? X86ISD::PCMPGTM: X86ISD::PCMPGT;
9967 FlipSigns = true; Invert = true; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00009968 }
Juergen Ributzkab95e0f62013-07-16 18:20:45 +00009969
9970 // Special case: Use min/max operations for SETULE/SETUGE
9971 MVT VET = VT.getVectorElementType();
9972 bool hasMinMax =
9973 (Subtarget->hasSSE41() && (VET >= MVT::i8 && VET <= MVT::i32))
9974 || (Subtarget->hasSSE2() && (VET == MVT::i8));
9975
9976 if (hasMinMax) {
9977 switch (SetCCOpcode) {
9978 default: break;
9979 case ISD::SETULE: Opc = X86ISD::UMIN; MinMax = true; break;
9980 case ISD::SETUGE: Opc = X86ISD::UMAX; MinMax = true; break;
9981 }
9982
9983 if (MinMax) { Swap = false; Invert = false; FlipSigns = false; }
9984 }
9985
Nate Begeman30a0de92008-07-17 16:51:19 +00009986 if (Swap)
9987 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009988
Eli Friedman7d3e2b72011-09-28 21:00:25 +00009989 // Check that the operation in question is available (most are plain SSE2,
9990 // but PCMPGTQ and PCMPEQQ have different requirements).
Craig Topper2f1b2ec2012-08-13 03:42:38 +00009991 if (VT == MVT::v2i64) {
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009992 if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42()) {
9993 assert(Subtarget->hasSSE2() && "Don't know how to lower!");
9994
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009995 // First cast everything to the right type.
Benjamin Kramerfcba22d2013-04-18 21:37:45 +00009996 Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
9997 Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
9998
Benjamin Kramerf106d8b2013-05-21 09:58:54 +00009999 // Since SSE has no unsigned integer comparisons, we need to flip the sign
Benjamin Kramer60ef6c92013-05-22 17:01:12 +000010000 // bits of the inputs before performing those operations. The lower
10001 // compare is always unsigned.
10002 SDValue SB;
Benjamin Kramerf106d8b2013-05-21 09:58:54 +000010003 if (FlipSigns) {
Benjamin Kramer60ef6c92013-05-22 17:01:12 +000010004 SB = DAG.getConstant(0x80000000U, MVT::v4i32);
10005 } else {
10006 SDValue Sign = DAG.getConstant(0x80000000U, MVT::i32);
10007 SDValue Zero = DAG.getConstant(0x00000000U, MVT::i32);
10008 SB = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
10009 Sign, Zero, Sign, Zero);
Benjamin Kramerf106d8b2013-05-21 09:58:54 +000010010 }
Benjamin Kramer60ef6c92013-05-22 17:01:12 +000010011 Op0 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op0, SB);
10012 Op1 = DAG.getNode(ISD::XOR, dl, MVT::v4i32, Op1, SB);
Benjamin Kramerf106d8b2013-05-21 09:58:54 +000010013
Benjamin Kramerfcba22d2013-04-18 21:37:45 +000010014 // Emulate PCMPGTQ with (hi1 > hi2) | ((hi1 == hi2) & (lo1 > lo2))
10015 SDValue GT = DAG.getNode(X86ISD::PCMPGT, dl, MVT::v4i32, Op0, Op1);
10016 SDValue EQ = DAG.getNode(X86ISD::PCMPEQ, dl, MVT::v4i32, Op0, Op1);
10017
10018 // Create masks for only the low parts/high parts of the 64 bit integers.
Craig Topperda129a22013-07-15 06:54:12 +000010019 static const int MaskHi[] = { 1, 1, 3, 3 };
10020 static const int MaskLo[] = { 0, 0, 2, 2 };
Benjamin Kramerfcba22d2013-04-18 21:37:45 +000010021 SDValue EQHi = DAG.getVectorShuffle(MVT::v4i32, dl, EQ, EQ, MaskHi);
10022 SDValue GTLo = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskLo);
10023 SDValue GTHi = DAG.getVectorShuffle(MVT::v4i32, dl, GT, GT, MaskHi);
10024
10025 SDValue Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, EQHi, GTLo);
10026 Result = DAG.getNode(ISD::OR, dl, MVT::v4i32, Result, GTHi);
10027
10028 if (Invert)
10029 Result = DAG.getNOT(dl, Result, MVT::v4i32);
10030
10031 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10032 }
10033
Benjamin Kramer382ed782012-12-25 12:54:19 +000010034 if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41()) {
10035 // If pcmpeqq is missing but pcmpeqd is available synthesize pcmpeqq with
Benjamin Kramer99f78062012-12-25 13:09:08 +000010036 // pcmpeqd + pshufd + pand.
Benjamin Kramer382ed782012-12-25 12:54:19 +000010037 assert(Subtarget->hasSSE2() && !FlipSigns && "Don't know how to lower!");
10038
Benjamin Kramerf106d8b2013-05-21 09:58:54 +000010039 // First cast everything to the right type.
Benjamin Kramer382ed782012-12-25 12:54:19 +000010040 Op0 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op0);
10041 Op1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Op1);
10042
10043 // Do the compare.
10044 SDValue Result = DAG.getNode(Opc, dl, MVT::v4i32, Op0, Op1);
10045
10046 // Make sure the lower and upper halves are both all-ones.
Craig Topperda129a22013-07-15 06:54:12 +000010047 static const int Mask[] = { 1, 0, 3, 2 };
Benjamin Kramer99f78062012-12-25 13:09:08 +000010048 SDValue Shuf = DAG.getVectorShuffle(MVT::v4i32, dl, Result, Result, Mask);
10049 Result = DAG.getNode(ISD::AND, dl, MVT::v4i32, Result, Shuf);
Benjamin Kramer382ed782012-12-25 12:54:19 +000010050
10051 if (Invert)
10052 Result = DAG.getNOT(dl, Result, MVT::v4i32);
10053
10054 return DAG.getNode(ISD::BITCAST, dl, VT, Result);
10055 }
Craig Topper2f1b2ec2012-08-13 03:42:38 +000010056 }
Eli Friedman7d3e2b72011-09-28 21:00:25 +000010057
Benjamin Kramerf106d8b2013-05-21 09:58:54 +000010058 // Since SSE has no unsigned integer comparisons, we need to flip the sign
10059 // bits of the inputs before performing those operations.
10060 if (FlipSigns) {
10061 EVT EltVT = VT.getVectorElementType();
10062 SDValue SB = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()), VT);
10063 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SB);
10064 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SB);
10065 }
10066
Dale Johannesenace16102009-02-03 19:33:06 +000010067 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +000010068
10069 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +000010070 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +000010071 Result = DAG.getNOT(dl, Result, VT);
Juergen Ributzkab95e0f62013-07-16 18:20:45 +000010072
10073 if (MinMax)
10074 Result = DAG.getNode(X86ISD::PCMPEQ, dl, VT, Op0, Result);
Bob Wilson4c245462009-01-22 17:39:32 +000010075
Nate Begeman30a0de92008-07-17 16:51:19 +000010076 return Result;
10077}
Evan Cheng0488db92007-09-25 01:57:46 +000010078
Craig Topper26827f32013-01-20 09:02:22 +000010079SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
10080
Craig Topper5a0910b2013-08-15 02:33:50 +000010081 MVT VT = Op.getSimpleValueType();
Craig Topper26827f32013-01-20 09:02:22 +000010082
10083 if (VT.isVector()) return LowerVSETCC(Op, Subtarget, DAG);
10084
10085 assert(VT == MVT::i8 && "SetCC type must be 8-bit integer");
10086 SDValue Op0 = Op.getOperand(0);
10087 SDValue Op1 = Op.getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010088 SDLoc dl(Op);
Craig Topper26827f32013-01-20 09:02:22 +000010089 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
10090
10091 // Optimize to BT if possible.
10092 // Lower (X & (1 << N)) == 0 to BT(X, N).
10093 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
10094 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
10095 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
10096 Op1.getOpcode() == ISD::Constant &&
10097 cast<ConstantSDNode>(Op1)->isNullValue() &&
10098 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10099 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
10100 if (NewSetCC.getNode())
10101 return NewSetCC;
10102 }
10103
10104 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
10105 // these.
10106 if (Op1.getOpcode() == ISD::Constant &&
10107 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
10108 cast<ConstantSDNode>(Op1)->isNullValue()) &&
10109 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
10110
10111 // If the input is a setcc, then reuse the input setcc or use a new one with
10112 // the inverted condition.
10113 if (Op0.getOpcode() == X86ISD::SETCC) {
10114 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
10115 bool Invert = (CC == ISD::SETNE) ^
10116 cast<ConstantSDNode>(Op1)->isNullValue();
10117 if (!Invert) return Op0;
10118
10119 CCode = X86::GetOppositeBranchCondition(CCode);
10120 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10121 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
10122 }
10123 }
10124
Craig Topper5a0910b2013-08-15 02:33:50 +000010125 bool isFP = Op1.getSimpleValueType().isFloatingPoint();
Craig Topper26827f32013-01-20 09:02:22 +000010126 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
10127 if (X86CC == X86::COND_INVALID)
10128 return SDValue();
10129
10130 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
10131 EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
10132 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10133 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
10134}
10135
Evan Cheng370e5342008-12-03 08:38:43 +000010136// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +000010137static bool isX86LogicalCmp(SDValue Op) {
10138 unsigned Opc = Op.getNode()->getOpcode();
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010139 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
10140 Opc == X86ISD::SAHF)
Dan Gohman076aee32009-03-04 19:44:21 +000010141 return true;
10142 if (Op.getResNo() == 1 &&
10143 (Opc == X86ISD::ADD ||
10144 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +000010145 Opc == X86ISD::ADC ||
10146 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +000010147 Opc == X86ISD::SMUL ||
10148 Opc == X86ISD::UMUL ||
10149 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +000010150 Opc == X86ISD::DEC ||
10151 Opc == X86ISD::OR ||
10152 Opc == X86ISD::XOR ||
10153 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +000010154 return true;
10155
Chris Lattner9637d5b2010-12-05 07:49:54 +000010156 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
10157 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010158
Dan Gohman076aee32009-03-04 19:44:21 +000010159 return false;
Evan Cheng370e5342008-12-03 08:38:43 +000010160}
10161
Chris Lattnera2b56002010-12-05 01:23:24 +000010162static bool isZero(SDValue V) {
10163 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
10164 return C && C->isNullValue();
10165}
10166
Evan Chengb64dd5f2012-08-07 22:21:00 +000010167static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
10168 if (V.getOpcode() != ISD::TRUNCATE)
10169 return false;
10170
10171 SDValue VOp0 = V.getOperand(0);
10172 unsigned InBits = VOp0.getValueSizeInBits();
10173 unsigned Bits = V.getValueSizeInBits();
10174 return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
10175}
10176
Dan Gohmand858e902010-04-17 15:26:15 +000010177SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +000010178 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +000010179 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +000010180 SDValue Op1 = Op.getOperand(1);
10181 SDValue Op2 = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010182 SDLoc DL(Op);
Benjamin Kramer75311b72013-08-04 12:05:16 +000010183 EVT VT = Op1.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +000010184 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +000010185
Benjamin Kramer75311b72013-08-04 12:05:16 +000010186 // Lower fp selects into a CMP/AND/ANDN/OR sequence when the necessary SSE ops
10187 // are available. Otherwise fp cmovs get lowered into a less efficient branch
10188 // sequence later on.
10189 if (Cond.getOpcode() == ISD::SETCC &&
10190 ((Subtarget->hasSSE2() && (VT == MVT::f32 || VT == MVT::f64)) ||
10191 (Subtarget->hasSSE1() && VT == MVT::f32)) &&
10192 VT == Cond.getOperand(0).getValueType() && Cond->hasOneUse()) {
10193 SDValue CondOp0 = Cond.getOperand(0), CondOp1 = Cond.getOperand(1);
10194 int SSECC = translateX86FSETCC(
10195 cast<CondCodeSDNode>(Cond.getOperand(2))->get(), CondOp0, CondOp1);
10196
10197 if (SSECC != 8) {
10198 unsigned Opcode = VT == MVT::f32 ? X86ISD::FSETCCss : X86ISD::FSETCCsd;
10199 SDValue Cmp = DAG.getNode(Opcode, DL, VT, CondOp0, CondOp1,
10200 DAG.getConstant(SSECC, MVT::i8));
10201 SDValue AndN = DAG.getNode(X86ISD::FANDN, DL, VT, Cmp, Op2);
10202 SDValue And = DAG.getNode(X86ISD::FAND, DL, VT, Cmp, Op1);
10203 return DAG.getNode(X86ISD::FOR, DL, VT, AndN, And);
10204 }
10205 }
10206
Dan Gohman1a492952009-10-20 16:22:37 +000010207 if (Cond.getOpcode() == ISD::SETCC) {
10208 SDValue NewCond = LowerSETCC(Cond, DAG);
10209 if (NewCond.getNode())
10210 Cond = NewCond;
10211 }
Evan Cheng734503b2006-09-11 02:19:56 +000010212
Chris Lattnera2b56002010-12-05 01:23:24 +000010213 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +000010214 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +000010215 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +000010216 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010217 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +000010218 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
10219 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010220 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010221
Chris Lattnera2b56002010-12-05 01:23:24 +000010222 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010223
10224 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +000010225 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
10226 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +000010227
10228 SDValue CmpOp0 = Cmp.getOperand(0);
Manman Rened579842012-05-07 18:06:23 +000010229 // Apply further optimizations for special cases
10230 // (select (x != 0), -1, 0) -> neg & sbb
10231 // (select (x == 0), 0, -1) -> neg & sbb
10232 if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
Chad Rosiera20e1e72012-08-01 18:39:17 +000010233 if (YC->isNullValue() &&
Manman Rened579842012-05-07 18:06:23 +000010234 (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
10235 SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
Chad Rosiera20e1e72012-08-01 18:39:17 +000010236 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
10237 DAG.getConstant(0, CmpOp0.getValueType()),
Manman Rened579842012-05-07 18:06:23 +000010238 CmpOp0);
10239 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10240 DAG.getConstant(X86::COND_B, MVT::i8),
10241 SDValue(Neg.getNode(), 1));
10242 return Res;
10243 }
10244
Chris Lattnera2b56002010-12-05 01:23:24 +000010245 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
10246 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010247 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010248
Chris Lattner96908b12010-12-05 02:00:51 +000010249 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +000010250 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10251 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010252
Chris Lattner96908b12010-12-05 02:00:51 +000010253 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
10254 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010255
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010256 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +000010257 if (N2C == 0 || !N2C->isNullValue())
10258 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
10259 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010260 }
10261 }
10262
Chris Lattnera2b56002010-12-05 01:23:24 +000010263 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +000010264 if (Cond.getOpcode() == ISD::AND &&
10265 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10266 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010267 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +000010268 Cond = Cond.getOperand(0);
10269 }
10270
Evan Cheng3f41d662007-10-08 22:16:29 +000010271 // If condition flag is set by a X86ISD::CMP, then use it as the condition
10272 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +000010273 unsigned CondOpcode = Cond.getOpcode();
10274 if (CondOpcode == X86ISD::SETCC ||
10275 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +000010276 CC = Cond.getOperand(0);
10277
Dan Gohman475871a2008-07-27 21:46:04 +000010278 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +000010279 unsigned Opc = Cmp.getOpcode();
Craig Topper5a0910b2013-08-15 02:33:50 +000010280 MVT VT = Op.getSimpleValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +000010281
Evan Cheng3f41d662007-10-08 22:16:29 +000010282 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010283 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +000010284 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +000010285 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +000010286
Chris Lattnerd1980a52009-03-12 06:52:53 +000010287 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
10288 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +000010289 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +000010290 addTest = false;
10291 }
Dan Gohman65fd6562011-11-03 21:49:52 +000010292 } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10293 CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10294 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10295 Cond.getOperand(0).getValueType() != MVT::i8)) {
10296 SDValue LHS = Cond.getOperand(0);
10297 SDValue RHS = Cond.getOperand(1);
10298 unsigned X86Opcode;
10299 unsigned X86Cond;
10300 SDVTList VTs;
10301 switch (CondOpcode) {
10302 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10303 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10304 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10305 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10306 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10307 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10308 default: llvm_unreachable("unexpected overflowing operator");
10309 }
10310 if (CondOpcode == ISD::UMULO)
10311 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10312 MVT::i32);
10313 else
10314 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10315
10316 SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
10317
10318 if (CondOpcode == ISD::UMULO)
10319 Cond = X86Op.getValue(2);
10320 else
10321 Cond = X86Op.getValue(1);
10322
10323 CC = DAG.getConstant(X86Cond, MVT::i8);
10324 addTest = false;
Evan Cheng0488db92007-09-25 01:57:46 +000010325 }
10326
10327 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +000010328 // Look pass the truncate if the high bits are known zero.
10329 if (isTruncWithZeroHighBitsInput(Cond, DAG))
10330 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +000010331
10332 // We know the result of AND is compared against zero. Try to match
10333 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010334 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +000010335 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +000010336 if (NewSetCC.getNode()) {
10337 CC = NewSetCC.getOperand(0);
10338 Cond = NewSetCC.getOperand(1);
10339 addTest = false;
10340 }
10341 }
10342 }
10343
10344 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +000010345 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +000010346 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +000010347 }
10348
Benjamin Kramere915ff32010-12-22 23:09:28 +000010349 // a < b ? -1 : 0 -> RES = ~setcc_carry
10350 // a < b ? 0 : -1 -> RES = setcc_carry
10351 // a >= b ? -1 : 0 -> RES = setcc_carry
10352 // a >= b ? 0 : -1 -> RES = ~setcc_carry
Manman Ren39ad5682012-08-08 00:51:41 +000010353 if (Cond.getOpcode() == X86ISD::SUB) {
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010354 Cond = ConvertCmpIfNecessary(Cond, DAG);
Benjamin Kramere915ff32010-12-22 23:09:28 +000010355 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
10356
10357 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
10358 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
10359 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
10360 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
10361 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
10362 return DAG.getNOT(DL, Res, Res.getValueType());
10363 return Res;
10364 }
10365 }
10366
Benjamin Kramer444dcce2012-10-13 10:39:49 +000010367 // X86 doesn't have an i8 cmov. If both operands are the result of a truncate
10368 // widen the cmov and push the truncate through. This avoids introducing a new
10369 // branch during isel and doesn't add any extensions.
10370 if (Op.getValueType() == MVT::i8 &&
10371 Op1.getOpcode() == ISD::TRUNCATE && Op2.getOpcode() == ISD::TRUNCATE) {
10372 SDValue T1 = Op1.getOperand(0), T2 = Op2.getOperand(0);
10373 if (T1.getValueType() == T2.getValueType() &&
10374 // Blacklist CopyFromReg to avoid partial register stalls.
10375 T1.getOpcode() != ISD::CopyFromReg && T2.getOpcode()!=ISD::CopyFromReg){
10376 SDVTList VTs = DAG.getVTList(T1.getValueType(), MVT::Glue);
Benjamin Kramerf8b65aa2012-10-13 12:50:19 +000010377 SDValue Cmov = DAG.getNode(X86ISD::CMOV, DL, VTs, T2, T1, CC, Cond);
Benjamin Kramer444dcce2012-10-13 10:39:49 +000010378 return DAG.getNode(ISD::TRUNCATE, DL, Op.getValueType(), Cmov);
10379 }
10380 }
10381
Evan Cheng0488db92007-09-25 01:57:46 +000010382 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
10383 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010384 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +000010385 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +000010386 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +000010387}
10388
Craig Topperff79bc62013-08-18 08:53:01 +000010389static SDValue LowerSIGN_EXTEND_AVX512(SDValue Op, SelectionDAG &DAG) {
10390 MVT VT = Op->getSimpleValueType(0);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010391 SDValue In = Op->getOperand(0);
Craig Topperff79bc62013-08-18 08:53:01 +000010392 MVT InVT = In.getSimpleValueType();
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010393 SDLoc dl(Op);
10394
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000010395 unsigned int NumElts = VT.getVectorNumElements();
10396 if (NumElts != 8 && NumElts != 16)
10397 return SDValue();
10398
10399 if (VT.is512BitVector() && InVT.getVectorElementType() != MVT::i1)
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010400 return DAG.getNode(X86ISD::VSEXT, dl, VT, In);
10401
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000010402 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10403 assert (InVT.getVectorElementType() == MVT::i1 && "Unexpected vector type");
10404
10405 MVT ExtVT = (NumElts == 8) ? MVT::v8i64 : MVT::v16i32;
10406 Constant *C = ConstantInt::get(*DAG.getContext(),
10407 APInt::getAllOnesValue(ExtVT.getScalarType().getSizeInBits()));
10408
10409 SDValue CP = DAG.getConstantPool(C, TLI.getPointerTy());
10410 unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
10411 SDValue Ld = DAG.getLoad(ExtVT.getScalarType(), dl, DAG.getEntryNode(), CP,
10412 MachinePointerInfo::getConstantPool(),
10413 false, false, false, Alignment);
10414 SDValue Brcst = DAG.getNode(X86ISD::VBROADCASTM, dl, ExtVT, In, Ld);
10415 if (VT.is512BitVector())
10416 return Brcst;
10417 return DAG.getNode(X86ISD::VTRUNC, dl, VT, Brcst);
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010418}
10419
Craig Topperff79bc62013-08-18 08:53:01 +000010420static SDValue LowerSIGN_EXTEND(SDValue Op, const X86Subtarget *Subtarget,
10421 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +000010422 MVT VT = Op->getSimpleValueType(0);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010423 SDValue In = Op->getOperand(0);
Craig Topper5a0910b2013-08-15 02:33:50 +000010424 MVT InVT = In.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010425 SDLoc dl(Op);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010426
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000010427 if (VT.is512BitVector() || InVT.getVectorElementType() == MVT::i1)
10428 return LowerSIGN_EXTEND_AVX512(Op, DAG);
10429
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010430 if ((VT != MVT::v4i64 || InVT != MVT::v4i32) &&
Benjamin Kramerbb41c752013-10-23 21:06:07 +000010431 (VT != MVT::v8i32 || InVT != MVT::v8i16) &&
10432 (VT != MVT::v16i16 || InVT != MVT::v16i8))
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010433 return SDValue();
Nadav Rotem1a330af2012-12-27 22:47:16 +000010434
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010435 if (Subtarget->hasInt256())
10436 return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, In);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010437
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010438 // Optimize vectors in AVX mode
10439 // Sign extend v8i16 to v8i32 and
10440 // v4i32 to v4i64
10441 //
10442 // Divide input vector into two parts
10443 // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
10444 // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
10445 // concat the vectors to original VT
Nadav Rotem1a330af2012-12-27 22:47:16 +000010446
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010447 unsigned NumElems = InVT.getVectorNumElements();
10448 SDValue Undef = DAG.getUNDEF(InVT);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010449
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010450 SmallVector<int,8> ShufMask1(NumElems, -1);
10451 for (unsigned i = 0; i != NumElems/2; ++i)
10452 ShufMask1[i] = i;
Nadav Rotem1a330af2012-12-27 22:47:16 +000010453
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010454 SDValue OpLo = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask1[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010455
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010456 SmallVector<int,8> ShufMask2(NumElems, -1);
10457 for (unsigned i = 0; i != NumElems/2; ++i)
10458 ShufMask2[i] = i + NumElems/2;
Nadav Rotem1a330af2012-12-27 22:47:16 +000010459
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010460 SDValue OpHi = DAG.getVectorShuffle(InVT, dl, In, Undef, &ShufMask2[0]);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010461
Craig Toppera080daf2013-01-20 21:50:27 +000010462 MVT HalfVT = MVT::getVectorVT(VT.getScalarType(),
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010463 VT.getVectorNumElements()/2);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010464
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010465 OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
10466 OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010467
Nadav Rotem587fb1d2012-12-27 23:08:05 +000010468 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
Nadav Rotem1a330af2012-12-27 22:47:16 +000010469}
10470
Evan Cheng370e5342008-12-03 08:38:43 +000010471// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
10472// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
10473// from the AND / OR.
10474static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
10475 Opc = Op.getOpcode();
10476 if (Opc != ISD::OR && Opc != ISD::AND)
10477 return false;
10478 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10479 Op.getOperand(0).hasOneUse() &&
10480 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
10481 Op.getOperand(1).hasOneUse());
10482}
10483
Evan Cheng961d6d42009-02-02 08:19:07 +000010484// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
10485// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +000010486static bool isXor1OfSetCC(SDValue Op) {
10487 if (Op.getOpcode() != ISD::XOR)
10488 return false;
10489 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
10490 if (N1C && N1C->getAPIntValue() == 1) {
10491 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
10492 Op.getOperand(0).hasOneUse();
10493 }
10494 return false;
10495}
10496
Dan Gohmand858e902010-04-17 15:26:15 +000010497SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +000010498 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +000010499 SDValue Chain = Op.getOperand(0);
10500 SDValue Cond = Op.getOperand(1);
10501 SDValue Dest = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010502 SDLoc dl(Op);
Dan Gohman475871a2008-07-27 21:46:04 +000010503 SDValue CC;
Dan Gohman65fd6562011-11-03 21:49:52 +000010504 bool Inverted = false;
Evan Cheng734503b2006-09-11 02:19:56 +000010505
Dan Gohman1a492952009-10-20 16:22:37 +000010506 if (Cond.getOpcode() == ISD::SETCC) {
Dan Gohman65fd6562011-11-03 21:49:52 +000010507 // Check for setcc([su]{add,sub,mul}o == 0).
10508 if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
10509 isa<ConstantSDNode>(Cond.getOperand(1)) &&
10510 cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
10511 Cond.getOperand(0).getResNo() == 1 &&
10512 (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
10513 Cond.getOperand(0).getOpcode() == ISD::UADDO ||
10514 Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
10515 Cond.getOperand(0).getOpcode() == ISD::USUBO ||
10516 Cond.getOperand(0).getOpcode() == ISD::SMULO ||
10517 Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
10518 Inverted = true;
10519 Cond = Cond.getOperand(0);
10520 } else {
10521 SDValue NewCond = LowerSETCC(Cond, DAG);
10522 if (NewCond.getNode())
10523 Cond = NewCond;
10524 }
Dan Gohman1a492952009-10-20 16:22:37 +000010525 }
Chris Lattnere55484e2008-12-25 05:34:37 +000010526#if 0
10527 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +000010528 else if (Cond.getOpcode() == X86ISD::ADD ||
10529 Cond.getOpcode() == X86ISD::SUB ||
10530 Cond.getOpcode() == X86ISD::SMUL ||
10531 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +000010532 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +000010533#endif
Scott Michelfdc40a02009-02-17 22:15:04 +000010534
Evan Chengad9c0a32009-12-15 00:53:42 +000010535 // Look pass (and (setcc_carry (cmp ...)), 1).
10536 if (Cond.getOpcode() == ISD::AND &&
10537 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
10538 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010539 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +000010540 Cond = Cond.getOperand(0);
10541 }
10542
Evan Cheng3f41d662007-10-08 22:16:29 +000010543 // If condition flag is set by a X86ISD::CMP, then use it as the condition
10544 // setting operand in place of the X86ISD::SETCC.
Dan Gohman65fd6562011-11-03 21:49:52 +000010545 unsigned CondOpcode = Cond.getOpcode();
10546 if (CondOpcode == X86ISD::SETCC ||
10547 CondOpcode == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +000010548 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010549
Dan Gohman475871a2008-07-27 21:46:04 +000010550 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +000010551 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +000010552 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +000010553 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +000010554 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +000010555 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +000010556 } else {
Evan Cheng370e5342008-12-03 08:38:43 +000010557 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +000010558 default: break;
10559 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +000010560 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +000010561 // These can only come from an arithmetic instruction with overflow,
10562 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +000010563 Cond = Cond.getNode()->getOperand(1);
10564 addTest = false;
10565 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000010566 }
Evan Cheng0488db92007-09-25 01:57:46 +000010567 }
Dan Gohman65fd6562011-11-03 21:49:52 +000010568 }
10569 CondOpcode = Cond.getOpcode();
10570 if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
10571 CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
10572 ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
10573 Cond.getOperand(0).getValueType() != MVT::i8)) {
10574 SDValue LHS = Cond.getOperand(0);
10575 SDValue RHS = Cond.getOperand(1);
10576 unsigned X86Opcode;
10577 unsigned X86Cond;
10578 SDVTList VTs;
10579 switch (CondOpcode) {
10580 case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
10581 case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
10582 case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
10583 case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
10584 case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
10585 case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
10586 default: llvm_unreachable("unexpected overflowing operator");
10587 }
10588 if (Inverted)
10589 X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
10590 if (CondOpcode == ISD::UMULO)
10591 VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
10592 MVT::i32);
10593 else
10594 VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
10595
10596 SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
10597
10598 if (CondOpcode == ISD::UMULO)
10599 Cond = X86Op.getValue(2);
10600 else
10601 Cond = X86Op.getValue(1);
10602
10603 CC = DAG.getConstant(X86Cond, MVT::i8);
10604 addTest = false;
Evan Cheng370e5342008-12-03 08:38:43 +000010605 } else {
10606 unsigned CondOpc;
10607 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
10608 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +000010609 if (CondOpc == ISD::OR) {
10610 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
10611 // two branches instead of an explicit OR instruction with a
10612 // separate test.
10613 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +000010614 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +000010615 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010616 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +000010617 Chain, Dest, CC, Cmp);
10618 CC = Cond.getOperand(1).getOperand(0);
10619 Cond = Cmp;
10620 addTest = false;
10621 }
10622 } else { // ISD::AND
10623 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
10624 // two branches instead of an explicit AND instruction with a
10625 // separate test. However, we only do this if this block doesn't
10626 // have a fall-through edge, because this requires an explicit
10627 // jmp when the condition is false.
10628 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +000010629 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +000010630 Op.getNode()->hasOneUse()) {
10631 X86::CondCode CCode =
10632 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10633 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010634 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +000010635 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +000010636 // Look for an unconditional branch following this conditional branch.
10637 // We need this because we need to reverse the successors in order
10638 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +000010639 if (User->getOpcode() == ISD::BR) {
10640 SDValue FalseBB = User->getOperand(1);
10641 SDNode *NewBR =
10642 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +000010643 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +000010644 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +000010645 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +000010646
Dale Johannesene4d209d2009-02-03 20:21:25 +000010647 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +000010648 Chain, Dest, CC, Cmp);
10649 X86::CondCode CCode =
10650 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
10651 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010652 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +000010653 Cond = Cmp;
10654 addTest = false;
10655 }
10656 }
Dan Gohman279c22e2008-10-21 03:29:32 +000010657 }
Evan Cheng67ad9db2009-02-02 08:07:36 +000010658 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
10659 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
10660 // It should be transformed during dag combiner except when the condition
10661 // is set by a arithmetics with overflow node.
10662 X86::CondCode CCode =
10663 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
10664 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +000010665 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +000010666 Cond = Cond.getOperand(0).getOperand(1);
10667 addTest = false;
Dan Gohman65fd6562011-11-03 21:49:52 +000010668 } else if (Cond.getOpcode() == ISD::SETCC &&
10669 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
10670 // For FCMP_OEQ, we can emit
10671 // two branches instead of an explicit AND instruction with a
10672 // separate test. However, we only do this if this block doesn't
10673 // have a fall-through edge, because this requires an explicit
10674 // jmp when the condition is false.
10675 if (Op.getNode()->hasOneUse()) {
10676 SDNode *User = *Op.getNode()->use_begin();
10677 // Look for an unconditional branch following this conditional branch.
10678 // We need this because we need to reverse the successors in order
10679 // to implement FCMP_OEQ.
10680 if (User->getOpcode() == ISD::BR) {
10681 SDValue FalseBB = User->getOperand(1);
10682 SDNode *NewBR =
10683 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10684 assert(NewBR == User);
10685 (void)NewBR;
10686 Dest = FalseBB;
10687
10688 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10689 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010690 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +000010691 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10692 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10693 Chain, Dest, CC, Cmp);
10694 CC = DAG.getConstant(X86::COND_P, MVT::i8);
10695 Cond = Cmp;
10696 addTest = false;
10697 }
10698 }
10699 } else if (Cond.getOpcode() == ISD::SETCC &&
10700 cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
10701 // For FCMP_UNE, we can emit
10702 // two branches instead of an explicit AND instruction with a
10703 // separate test. However, we only do this if this block doesn't
10704 // have a fall-through edge, because this requires an explicit
10705 // jmp when the condition is false.
10706 if (Op.getNode()->hasOneUse()) {
10707 SDNode *User = *Op.getNode()->use_begin();
10708 // Look for an unconditional branch following this conditional branch.
10709 // We need this because we need to reverse the successors in order
10710 // to implement FCMP_UNE.
10711 if (User->getOpcode() == ISD::BR) {
10712 SDValue FalseBB = User->getOperand(1);
10713 SDNode *NewBR =
10714 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
10715 assert(NewBR == User);
10716 (void)NewBR;
10717
10718 SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
10719 Cond.getOperand(0), Cond.getOperand(1));
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010720 Cmp = ConvertCmpIfNecessary(Cmp, DAG);
Dan Gohman65fd6562011-11-03 21:49:52 +000010721 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
10722 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
10723 Chain, Dest, CC, Cmp);
10724 CC = DAG.getConstant(X86::COND_NP, MVT::i8);
10725 Cond = Cmp;
10726 addTest = false;
10727 Dest = FalseBB;
10728 }
10729 }
Dan Gohman279c22e2008-10-21 03:29:32 +000010730 }
Evan Cheng0488db92007-09-25 01:57:46 +000010731 }
10732
10733 if (addTest) {
Evan Chengb64dd5f2012-08-07 22:21:00 +000010734 // Look pass the truncate if the high bits are known zero.
10735 if (isTruncWithZeroHighBitsInput(Cond, DAG))
10736 Cond = Cond.getOperand(0);
Evan Chengd40d03e2010-01-06 19:38:29 +000010737
10738 // We know the result of AND is compared against zero. Try to match
10739 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010740 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +000010741 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
10742 if (NewSetCC.getNode()) {
10743 CC = NewSetCC.getOperand(0);
10744 Cond = NewSetCC.getOperand(1);
10745 addTest = false;
10746 }
10747 }
10748 }
10749
10750 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +000010751 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +000010752 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +000010753 }
Benjamin Kramer17c836c2012-04-27 12:07:43 +000010754 Cond = ConvertCmpIfNecessary(Cond, DAG);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010755 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +000010756 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +000010757}
10758
Anton Korobeynikove060b532007-04-17 19:34:00 +000010759// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
10760// Calls to _alloca is needed to probe the stack when allocating more than 4k
10761// bytes in one go. Touching the stack at 4K increments is necessary to ensure
10762// that the guard pages used by the OS virtual memory manager are allocated in
10763// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +000010764SDValue
10765X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000010766 SelectionDAG &DAG) const {
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010767 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010768 getTargetMachine().Options.EnableSegmentedStacks) &&
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010769 "This should be used only on Windows targets or when segmented stacks "
Rafael Espindola96428ce2011-09-06 18:43:08 +000010770 "are being used");
10771 assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
Andrew Trickac6d9be2013-05-25 02:42:55 +000010772 SDLoc dl(Op);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010773
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010774 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +000010775 SDValue Chain = Op.getOperand(0);
10776 SDValue Size = Op.getOperand(1);
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010777 unsigned Align = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10778 EVT VT = Op.getNode()->getValueType(0);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010779
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010780 bool Is64Bit = Subtarget->is64Bit();
10781 EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010782
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010783 if (getTargetMachine().Options.EnableSegmentedStacks) {
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010784 MachineFunction &MF = DAG.getMachineFunction();
10785 MachineRegisterInfo &MRI = MF.getRegInfo();
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010786
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010787 if (Is64Bit) {
10788 // The 64 bit implementation of segmented stacks needs to clobber both r10
Rafael Espindola96428ce2011-09-06 18:43:08 +000010789 // r11. This makes it impossible to use it along with nested parameters.
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010790 const Function *F = MF.getFunction();
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +000010791
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010792 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
Craig Topper31a207a2012-05-04 06:39:13 +000010793 I != E; ++I)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010794 if (I->hasNestAttr())
10795 report_fatal_error("Cannot use segmented stacks with functions that "
10796 "have nested arguments.");
10797 }
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +000010798
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010799 const TargetRegisterClass *AddrRegClass =
10800 getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
10801 unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
10802 Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
10803 SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
10804 DAG.getRegister(Vreg, SPTy));
10805 SDValue Ops1[2] = { Value, Chain };
10806 return DAG.getMergeValues(Ops1, 2, dl);
10807 } else {
10808 SDValue Flag;
10809 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010810
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010811 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
10812 Flag = Chain.getValue(1);
10813 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov096b4612008-06-11 20:16:42 +000010814
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010815 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010816
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000010817 const X86RegisterInfo *RegInfo =
10818 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010819 unsigned SPReg = RegInfo->getStackRegister();
10820 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, SPTy);
10821 Chain = SP.getValue(1);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010822
Elena Demikhovsky55240a52013-10-14 07:26:51 +000010823 if (Align) {
10824 SP = DAG.getNode(ISD::AND, dl, VT, SP.getValue(0),
10825 DAG.getConstant(-(uint64_t)Align, VT));
10826 Chain = DAG.getCopyToReg(Chain, dl, SPReg, SP);
10827 }
10828
10829 SDValue Ops1[2] = { SP, Chain };
Rafael Espindola151ab3e2011-08-30 19:47:04 +000010830 return DAG.getMergeValues(Ops1, 2, dl);
10831 }
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010832}
10833
Dan Gohmand858e902010-04-17 15:26:15 +000010834SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +000010835 MachineFunction &MF = DAG.getMachineFunction();
10836 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
10837
Dan Gohman69de1932008-02-06 22:27:42 +000010838 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010839 SDLoc DL(Op);
Evan Cheng8b2794a2006-10-13 21:14:26 +000010840
Anton Korobeynikove7beda12010-10-03 22:52:07 +000010841 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +000010842 // vastart just stores the address of the VarArgsFrameIndex slot into the
10843 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +000010844 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10845 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010846 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
10847 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010848 }
10849
10850 // __va_list_tag:
10851 // gp_offset (0 - 6 * 8)
10852 // fp_offset (48 - 48 + 8 * 16)
10853 // overflow_arg_area (point to parameters coming in memory).
10854 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +000010855 SmallVector<SDValue, 8> MemOps;
10856 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +000010857 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010858 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010859 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
10860 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010861 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010862 MemOps.push_back(Store);
10863
10864 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +000010865 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010866 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +000010867 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +000010868 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
10869 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +000010870 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010871 MemOps.push_back(Store);
10872
10873 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +000010874 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010875 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +000010876 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
10877 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010878 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
10879 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +000010880 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010881 MemOps.push_back(Store);
10882
10883 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +000010884 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010885 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +000010886 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
10887 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010888 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
10889 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +000010890 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +000010891 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +000010892 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +000010893}
10894
Dan Gohmand858e902010-04-17 15:26:15 +000010895SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +000010896 assert(Subtarget->is64Bit() &&
10897 "LowerVAARG only handles 64-bit va_arg!");
10898 assert((Subtarget->isTargetLinux() ||
10899 Subtarget->isTargetDarwin()) &&
10900 "Unhandled target in LowerVAARG");
10901 assert(Op.getNode()->getNumOperands() == 4);
10902 SDValue Chain = Op.getOperand(0);
10903 SDValue SrcPtr = Op.getOperand(1);
10904 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
10905 unsigned Align = Op.getConstantOperandVal(3);
Andrew Trickac6d9be2013-05-25 02:42:55 +000010906 SDLoc dl(Op);
Dan Gohman9018e832008-05-10 01:26:14 +000010907
Dan Gohman320afb82010-10-12 18:00:49 +000010908 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010909 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Micah Villmow3574eca2012-10-08 16:38:25 +000010910 uint32_t ArgSize = getDataLayout()->getTypeAllocSize(ArgTy);
Dan Gohman320afb82010-10-12 18:00:49 +000010911 uint8_t ArgMode;
10912
10913 // Decide which area this value should be read from.
10914 // TODO: Implement the AMD64 ABI in its entirety. This simple
10915 // selection mechanism works only for the basic types.
10916 if (ArgVT == MVT::f80) {
10917 llvm_unreachable("va_arg for f80 not yet implemented");
10918 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
10919 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
10920 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
10921 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
10922 } else {
10923 llvm_unreachable("Unhandled argument type in LowerVAARG");
10924 }
10925
10926 if (ArgMode == 2) {
10927 // Sanity Check: Make sure using fp_offset makes sense.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000010928 assert(!getTargetMachine().Options.UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +000010929 !(DAG.getMachineFunction()
Bill Wendling831737d2012-12-30 10:32:01 +000010930 .getFunction()->getAttributes()
10931 .hasAttribute(AttributeSet::FunctionIndex,
10932 Attribute::NoImplicitFloat)) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000010933 Subtarget->hasSSE1());
Dan Gohman320afb82010-10-12 18:00:49 +000010934 }
10935
10936 // Insert VAARG_64 node into the DAG
10937 // VAARG_64 returns two values: Variable Argument Address, Chain
10938 SmallVector<SDValue, 11> InstOps;
10939 InstOps.push_back(Chain);
10940 InstOps.push_back(SrcPtr);
10941 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
10942 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
10943 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
10944 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
10945 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
10946 VTs, &InstOps[0], InstOps.size(),
10947 MVT::i64,
10948 MachinePointerInfo(SV),
10949 /*Align=*/0,
10950 /*Volatile=*/false,
10951 /*ReadMem=*/true,
10952 /*WriteMem=*/true);
10953 Chain = VAARG.getValue(1);
10954
10955 // Load the next argument and return it
10956 return DAG.getLoad(ArgVT, dl,
10957 Chain,
10958 VAARG,
10959 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000010960 false, false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +000010961}
10962
Craig Topper55b24052012-09-11 06:15:32 +000010963static SDValue LowerVACOPY(SDValue Op, const X86Subtarget *Subtarget,
10964 SelectionDAG &DAG) {
Evan Chengae642192007-03-02 23:16:35 +000010965 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +000010966 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +000010967 SDValue Chain = Op.getOperand(0);
10968 SDValue DstPtr = Op.getOperand(1);
10969 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +000010970 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
10971 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000010972 SDLoc DL(Op);
Evan Chengae642192007-03-02 23:16:35 +000010973
Chris Lattnere72f2022010-09-21 05:40:29 +000010974 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +000010975 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +000010976 false,
Chris Lattnere72f2022010-09-21 05:40:29 +000010977 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +000010978}
10979
Lang Hames1d825372013-10-21 17:51:24 +000010980// getTargetVShiftByConstNode - Handle vector element shifts where the shift
10981// amount is a constant. Takes immediate version of shift as input.
10982static SDValue getTargetVShiftByConstNode(unsigned Opc, SDLoc dl, EVT VT,
10983 SDValue SrcOp, uint64_t ShiftAmt,
10984 SelectionDAG &DAG) {
10985
10986 // Check for ShiftAmt >= element width
10987 if (ShiftAmt >= VT.getVectorElementType().getSizeInBits()) {
10988 if (Opc == X86ISD::VSRAI)
10989 ShiftAmt = VT.getVectorElementType().getSizeInBits() - 1;
10990 else
10991 return DAG.getConstant(0, VT);
10992 }
10993
10994 assert((Opc == X86ISD::VSHLI || Opc == X86ISD::VSRLI || Opc == X86ISD::VSRAI)
10995 && "Unknown target vector shift-by-constant node");
10996
10997 return DAG.getNode(Opc, dl, VT, SrcOp, DAG.getConstant(ShiftAmt, MVT::i8));
10998}
10999
Craig Topperff3139f2013-02-19 07:43:59 +000011000// getTargetVShiftNode - Handle vector element shifts where the shift amount
Craig Topper80e46362012-01-23 06:16:53 +000011001// may or may not be a constant. Takes immediate version of shift as input.
Andrew Trickac6d9be2013-05-25 02:42:55 +000011002static SDValue getTargetVShiftNode(unsigned Opc, SDLoc dl, EVT VT,
Craig Topper80e46362012-01-23 06:16:53 +000011003 SDValue SrcOp, SDValue ShAmt,
11004 SelectionDAG &DAG) {
11005 assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
11006
Lang Hames1d825372013-10-21 17:51:24 +000011007 // Catch shift-by-constant.
11008 if (ConstantSDNode *CShAmt = dyn_cast<ConstantSDNode>(ShAmt))
11009 return getTargetVShiftByConstNode(Opc, dl, VT, SrcOp,
11010 CShAmt->getZExtValue(), DAG);
Craig Topper80e46362012-01-23 06:16:53 +000011011
11012 // Change opcode to non-immediate version
11013 switch (Opc) {
11014 default: llvm_unreachable("Unknown target vector shift node");
11015 case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
11016 case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
11017 case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
11018 }
11019
11020 // Need to build a vector containing shift amount
11021 // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
11022 SDValue ShOps[4];
11023 ShOps[0] = ShAmt;
11024 ShOps[1] = DAG.getConstant(0, MVT::i32);
Craig Topper6d688152012-08-14 07:43:25 +000011025 ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
Craig Topper80e46362012-01-23 06:16:53 +000011026 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
Nadav Rotem65f489f2012-07-14 22:26:05 +000011027
11028 // The return type has to be a 128-bit type with the same element
11029 // type as the input type.
11030 MVT EltVT = VT.getVectorElementType().getSimpleVT();
11031 EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
11032
11033 ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
Craig Topper80e46362012-01-23 06:16:53 +000011034 return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
11035}
11036
Craig Topper55b24052012-09-11 06:15:32 +000011037static SDValue LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000011038 SDLoc dl(Op);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011039 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +000011040 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +000011041 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +000011042 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +000011043 case Intrinsic::x86_sse_comieq_ss:
11044 case Intrinsic::x86_sse_comilt_ss:
11045 case Intrinsic::x86_sse_comile_ss:
11046 case Intrinsic::x86_sse_comigt_ss:
11047 case Intrinsic::x86_sse_comige_ss:
11048 case Intrinsic::x86_sse_comineq_ss:
11049 case Intrinsic::x86_sse_ucomieq_ss:
11050 case Intrinsic::x86_sse_ucomilt_ss:
11051 case Intrinsic::x86_sse_ucomile_ss:
11052 case Intrinsic::x86_sse_ucomigt_ss:
11053 case Intrinsic::x86_sse_ucomige_ss:
11054 case Intrinsic::x86_sse_ucomineq_ss:
11055 case Intrinsic::x86_sse2_comieq_sd:
11056 case Intrinsic::x86_sse2_comilt_sd:
11057 case Intrinsic::x86_sse2_comile_sd:
11058 case Intrinsic::x86_sse2_comigt_sd:
11059 case Intrinsic::x86_sse2_comige_sd:
11060 case Intrinsic::x86_sse2_comineq_sd:
11061 case Intrinsic::x86_sse2_ucomieq_sd:
11062 case Intrinsic::x86_sse2_ucomilt_sd:
11063 case Intrinsic::x86_sse2_ucomile_sd:
11064 case Intrinsic::x86_sse2_ucomigt_sd:
11065 case Intrinsic::x86_sse2_ucomige_sd:
11066 case Intrinsic::x86_sse2_ucomineq_sd: {
Craig Topper6d688152012-08-14 07:43:25 +000011067 unsigned Opc;
11068 ISD::CondCode CC;
Evan Cheng0db9fe62006-04-25 20:13:52 +000011069 switch (IntNo) {
Craig Topper86c7c582012-01-30 01:10:15 +000011070 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011071 case Intrinsic::x86_sse_comieq_ss:
11072 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011073 Opc = X86ISD::COMI;
11074 CC = ISD::SETEQ;
11075 break;
Evan Cheng6be2c582006-04-05 23:38:46 +000011076 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011077 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011078 Opc = X86ISD::COMI;
11079 CC = ISD::SETLT;
11080 break;
11081 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011082 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011083 Opc = X86ISD::COMI;
11084 CC = ISD::SETLE;
11085 break;
11086 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011087 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011088 Opc = X86ISD::COMI;
11089 CC = ISD::SETGT;
11090 break;
11091 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011092 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011093 Opc = X86ISD::COMI;
11094 CC = ISD::SETGE;
11095 break;
11096 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011097 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011098 Opc = X86ISD::COMI;
11099 CC = ISD::SETNE;
11100 break;
11101 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011102 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011103 Opc = X86ISD::UCOMI;
11104 CC = ISD::SETEQ;
11105 break;
11106 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011107 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011108 Opc = X86ISD::UCOMI;
11109 CC = ISD::SETLT;
11110 break;
11111 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011112 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011113 Opc = X86ISD::UCOMI;
11114 CC = ISD::SETLE;
11115 break;
11116 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011117 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011118 Opc = X86ISD::UCOMI;
11119 CC = ISD::SETGT;
11120 break;
11121 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +000011122 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +000011123 Opc = X86ISD::UCOMI;
11124 CC = ISD::SETGE;
11125 break;
11126 case Intrinsic::x86_sse_ucomineq_ss:
11127 case Intrinsic::x86_sse2_ucomineq_sd:
11128 Opc = X86ISD::UCOMI;
11129 CC = ISD::SETNE;
11130 break;
Evan Cheng6be2c582006-04-05 23:38:46 +000011131 }
Evan Cheng734503b2006-09-11 02:19:56 +000011132
Dan Gohman475871a2008-07-27 21:46:04 +000011133 SDValue LHS = Op.getOperand(1);
11134 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +000011135 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +000011136 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +000011137 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
11138 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11139 DAG.getConstant(X86CC, MVT::i8), Cond);
11140 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +000011141 }
Craig Topper6d688152012-08-14 07:43:25 +000011142
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011143 // Arithmetic intrinsics.
Craig Topper5b209e82012-02-05 03:14:49 +000011144 case Intrinsic::x86_sse2_pmulu_dq:
11145 case Intrinsic::x86_avx2_pmulu_dq:
11146 return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
11147 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011148
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000011149 // SSE2/AVX2 sub with unsigned saturation intrinsics
11150 case Intrinsic::x86_sse2_psubus_b:
11151 case Intrinsic::x86_sse2_psubus_w:
11152 case Intrinsic::x86_avx2_psubus_b:
11153 case Intrinsic::x86_avx2_psubus_w:
11154 return DAG.getNode(X86ISD::SUBUS, dl, Op.getValueType(),
11155 Op.getOperand(1), Op.getOperand(2));
11156
Craig Topper6d688152012-08-14 07:43:25 +000011157 // SSE3/AVX horizontal add/sub intrinsics
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011158 case Intrinsic::x86_sse3_hadd_ps:
11159 case Intrinsic::x86_sse3_hadd_pd:
11160 case Intrinsic::x86_avx_hadd_ps_256:
11161 case Intrinsic::x86_avx_hadd_pd_256:
Duncan Sands04aa4ae2011-09-23 16:10:22 +000011162 case Intrinsic::x86_sse3_hsub_ps:
11163 case Intrinsic::x86_sse3_hsub_pd:
11164 case Intrinsic::x86_avx_hsub_ps_256:
11165 case Intrinsic::x86_avx_hsub_pd_256:
Craig Topper4bb3f342012-01-25 05:37:32 +000011166 case Intrinsic::x86_ssse3_phadd_w_128:
11167 case Intrinsic::x86_ssse3_phadd_d_128:
11168 case Intrinsic::x86_avx2_phadd_w:
11169 case Intrinsic::x86_avx2_phadd_d:
Craig Topper4bb3f342012-01-25 05:37:32 +000011170 case Intrinsic::x86_ssse3_phsub_w_128:
11171 case Intrinsic::x86_ssse3_phsub_d_128:
11172 case Intrinsic::x86_avx2_phsub_w:
Craig Topper6d688152012-08-14 07:43:25 +000011173 case Intrinsic::x86_avx2_phsub_d: {
11174 unsigned Opcode;
11175 switch (IntNo) {
11176 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11177 case Intrinsic::x86_sse3_hadd_ps:
11178 case Intrinsic::x86_sse3_hadd_pd:
11179 case Intrinsic::x86_avx_hadd_ps_256:
11180 case Intrinsic::x86_avx_hadd_pd_256:
11181 Opcode = X86ISD::FHADD;
11182 break;
11183 case Intrinsic::x86_sse3_hsub_ps:
11184 case Intrinsic::x86_sse3_hsub_pd:
11185 case Intrinsic::x86_avx_hsub_ps_256:
11186 case Intrinsic::x86_avx_hsub_pd_256:
11187 Opcode = X86ISD::FHSUB;
11188 break;
11189 case Intrinsic::x86_ssse3_phadd_w_128:
11190 case Intrinsic::x86_ssse3_phadd_d_128:
11191 case Intrinsic::x86_avx2_phadd_w:
11192 case Intrinsic::x86_avx2_phadd_d:
11193 Opcode = X86ISD::HADD;
11194 break;
11195 case Intrinsic::x86_ssse3_phsub_w_128:
11196 case Intrinsic::x86_ssse3_phsub_d_128:
11197 case Intrinsic::x86_avx2_phsub_w:
11198 case Intrinsic::x86_avx2_phsub_d:
11199 Opcode = X86ISD::HSUB;
11200 break;
11201 }
11202 return DAG.getNode(Opcode, dl, Op.getValueType(),
Craig Topper4bb3f342012-01-25 05:37:32 +000011203 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011204 }
11205
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011206 // SSE2/SSE41/AVX2 integer max/min intrinsics.
11207 case Intrinsic::x86_sse2_pmaxu_b:
11208 case Intrinsic::x86_sse41_pmaxuw:
11209 case Intrinsic::x86_sse41_pmaxud:
11210 case Intrinsic::x86_avx2_pmaxu_b:
11211 case Intrinsic::x86_avx2_pmaxu_w:
11212 case Intrinsic::x86_avx2_pmaxu_d:
Elena Demikhovsky62d66cb2013-10-27 08:18:37 +000011213 case Intrinsic::x86_avx512_pmaxu_d:
11214 case Intrinsic::x86_avx512_pmaxu_q:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011215 case Intrinsic::x86_sse2_pminu_b:
11216 case Intrinsic::x86_sse41_pminuw:
11217 case Intrinsic::x86_sse41_pminud:
11218 case Intrinsic::x86_avx2_pminu_b:
11219 case Intrinsic::x86_avx2_pminu_w:
11220 case Intrinsic::x86_avx2_pminu_d:
Elena Demikhovsky62d66cb2013-10-27 08:18:37 +000011221 case Intrinsic::x86_avx512_pminu_d:
11222 case Intrinsic::x86_avx512_pminu_q:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011223 case Intrinsic::x86_sse41_pmaxsb:
11224 case Intrinsic::x86_sse2_pmaxs_w:
11225 case Intrinsic::x86_sse41_pmaxsd:
11226 case Intrinsic::x86_avx2_pmaxs_b:
11227 case Intrinsic::x86_avx2_pmaxs_w:
11228 case Intrinsic::x86_avx2_pmaxs_d:
Elena Demikhovsky62d66cb2013-10-27 08:18:37 +000011229 case Intrinsic::x86_avx512_pmaxs_d:
11230 case Intrinsic::x86_avx512_pmaxs_q:
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011231 case Intrinsic::x86_sse41_pminsb:
11232 case Intrinsic::x86_sse2_pmins_w:
11233 case Intrinsic::x86_sse41_pminsd:
11234 case Intrinsic::x86_avx2_pmins_b:
11235 case Intrinsic::x86_avx2_pmins_w:
Elena Demikhovsky62d66cb2013-10-27 08:18:37 +000011236 case Intrinsic::x86_avx2_pmins_d:
11237 case Intrinsic::x86_avx512_pmins_d:
11238 case Intrinsic::x86_avx512_pmins_q: {
Craig Topper6f57f392012-12-29 17:19:06 +000011239 unsigned Opcode;
11240 switch (IntNo) {
11241 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11242 case Intrinsic::x86_sse2_pmaxu_b:
11243 case Intrinsic::x86_sse41_pmaxuw:
11244 case Intrinsic::x86_sse41_pmaxud:
11245 case Intrinsic::x86_avx2_pmaxu_b:
11246 case Intrinsic::x86_avx2_pmaxu_w:
11247 case Intrinsic::x86_avx2_pmaxu_d:
Elena Demikhovsky62d66cb2013-10-27 08:18:37 +000011248 case Intrinsic::x86_avx512_pmaxu_d:
11249 case Intrinsic::x86_avx512_pmaxu_q:
Craig Topper6f57f392012-12-29 17:19:06 +000011250 Opcode = X86ISD::UMAX;
11251 break;
11252 case Intrinsic::x86_sse2_pminu_b:
11253 case Intrinsic::x86_sse41_pminuw:
11254 case Intrinsic::x86_sse41_pminud:
11255 case Intrinsic::x86_avx2_pminu_b:
11256 case Intrinsic::x86_avx2_pminu_w:
11257 case Intrinsic::x86_avx2_pminu_d:
Elena Demikhovsky62d66cb2013-10-27 08:18:37 +000011258 case Intrinsic::x86_avx512_pminu_d:
11259 case Intrinsic::x86_avx512_pminu_q:
Craig Topper6f57f392012-12-29 17:19:06 +000011260 Opcode = X86ISD::UMIN;
11261 break;
11262 case Intrinsic::x86_sse41_pmaxsb:
11263 case Intrinsic::x86_sse2_pmaxs_w:
11264 case Intrinsic::x86_sse41_pmaxsd:
11265 case Intrinsic::x86_avx2_pmaxs_b:
11266 case Intrinsic::x86_avx2_pmaxs_w:
11267 case Intrinsic::x86_avx2_pmaxs_d:
Elena Demikhovsky62d66cb2013-10-27 08:18:37 +000011268 case Intrinsic::x86_avx512_pmaxs_d:
11269 case Intrinsic::x86_avx512_pmaxs_q:
Craig Topper6f57f392012-12-29 17:19:06 +000011270 Opcode = X86ISD::SMAX;
11271 break;
11272 case Intrinsic::x86_sse41_pminsb:
11273 case Intrinsic::x86_sse2_pmins_w:
11274 case Intrinsic::x86_sse41_pminsd:
11275 case Intrinsic::x86_avx2_pmins_b:
11276 case Intrinsic::x86_avx2_pmins_w:
11277 case Intrinsic::x86_avx2_pmins_d:
Elena Demikhovsky62d66cb2013-10-27 08:18:37 +000011278 case Intrinsic::x86_avx512_pmins_d:
11279 case Intrinsic::x86_avx512_pmins_q:
Craig Topper6f57f392012-12-29 17:19:06 +000011280 Opcode = X86ISD::SMIN;
11281 break;
11282 }
11283 return DAG.getNode(Opcode, dl, Op.getValueType(),
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011284 Op.getOperand(1), Op.getOperand(2));
Craig Topper6f57f392012-12-29 17:19:06 +000011285 }
Benjamin Kramer739c7a82012-12-21 14:04:55 +000011286
Craig Topper6d183e42012-12-29 16:44:25 +000011287 // SSE/SSE2/AVX floating point max/min intrinsics.
11288 case Intrinsic::x86_sse_max_ps:
11289 case Intrinsic::x86_sse2_max_pd:
11290 case Intrinsic::x86_avx_max_ps_256:
11291 case Intrinsic::x86_avx_max_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011292 case Intrinsic::x86_avx512_max_ps_512:
11293 case Intrinsic::x86_avx512_max_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011294 case Intrinsic::x86_sse_min_ps:
11295 case Intrinsic::x86_sse2_min_pd:
11296 case Intrinsic::x86_avx_min_ps_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011297 case Intrinsic::x86_avx_min_pd_256:
11298 case Intrinsic::x86_avx512_min_ps_512:
11299 case Intrinsic::x86_avx512_min_pd_512: {
Craig Topper6d183e42012-12-29 16:44:25 +000011300 unsigned Opcode;
11301 switch (IntNo) {
11302 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11303 case Intrinsic::x86_sse_max_ps:
11304 case Intrinsic::x86_sse2_max_pd:
11305 case Intrinsic::x86_avx_max_ps_256:
11306 case Intrinsic::x86_avx_max_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011307 case Intrinsic::x86_avx512_max_ps_512:
11308 case Intrinsic::x86_avx512_max_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011309 Opcode = X86ISD::FMAX;
11310 break;
11311 case Intrinsic::x86_sse_min_ps:
11312 case Intrinsic::x86_sse2_min_pd:
11313 case Intrinsic::x86_avx_min_ps_256:
11314 case Intrinsic::x86_avx_min_pd_256:
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000011315 case Intrinsic::x86_avx512_min_ps_512:
11316 case Intrinsic::x86_avx512_min_pd_512:
Craig Topper6d183e42012-12-29 16:44:25 +000011317 Opcode = X86ISD::FMIN;
11318 break;
11319 }
11320 return DAG.getNode(Opcode, dl, Op.getValueType(),
11321 Op.getOperand(1), Op.getOperand(2));
11322 }
11323
Craig Topper6d688152012-08-14 07:43:25 +000011324 // AVX2 variable shift intrinsics
Craig Topper98fc7292011-11-19 17:46:46 +000011325 case Intrinsic::x86_avx2_psllv_d:
11326 case Intrinsic::x86_avx2_psllv_q:
11327 case Intrinsic::x86_avx2_psllv_d_256:
11328 case Intrinsic::x86_avx2_psllv_q_256:
Craig Topper98fc7292011-11-19 17:46:46 +000011329 case Intrinsic::x86_avx2_psrlv_d:
11330 case Intrinsic::x86_avx2_psrlv_q:
11331 case Intrinsic::x86_avx2_psrlv_d_256:
11332 case Intrinsic::x86_avx2_psrlv_q_256:
Craig Topper98fc7292011-11-19 17:46:46 +000011333 case Intrinsic::x86_avx2_psrav_d:
Craig Topper6d688152012-08-14 07:43:25 +000011334 case Intrinsic::x86_avx2_psrav_d_256: {
11335 unsigned Opcode;
11336 switch (IntNo) {
11337 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11338 case Intrinsic::x86_avx2_psllv_d:
11339 case Intrinsic::x86_avx2_psllv_q:
11340 case Intrinsic::x86_avx2_psllv_d_256:
11341 case Intrinsic::x86_avx2_psllv_q_256:
11342 Opcode = ISD::SHL;
11343 break;
11344 case Intrinsic::x86_avx2_psrlv_d:
11345 case Intrinsic::x86_avx2_psrlv_q:
11346 case Intrinsic::x86_avx2_psrlv_d_256:
11347 case Intrinsic::x86_avx2_psrlv_q_256:
11348 Opcode = ISD::SRL;
11349 break;
11350 case Intrinsic::x86_avx2_psrav_d:
11351 case Intrinsic::x86_avx2_psrav_d_256:
11352 Opcode = ISD::SRA;
11353 break;
11354 }
11355 return DAG.getNode(Opcode, dl, Op.getValueType(),
11356 Op.getOperand(1), Op.getOperand(2));
11357 }
11358
Craig Topper969ba282012-01-25 06:43:11 +000011359 case Intrinsic::x86_ssse3_pshuf_b_128:
11360 case Intrinsic::x86_avx2_pshuf_b:
11361 return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
11362 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011363
Craig Topper969ba282012-01-25 06:43:11 +000011364 case Intrinsic::x86_ssse3_psign_b_128:
11365 case Intrinsic::x86_ssse3_psign_w_128:
11366 case Intrinsic::x86_ssse3_psign_d_128:
11367 case Intrinsic::x86_avx2_psign_b:
11368 case Intrinsic::x86_avx2_psign_w:
11369 case Intrinsic::x86_avx2_psign_d:
11370 return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
11371 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011372
Craig Toppere566cd02012-01-26 07:18:03 +000011373 case Intrinsic::x86_sse41_insertps:
11374 return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
11375 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
Craig Topper6d688152012-08-14 07:43:25 +000011376
Craig Toppere566cd02012-01-26 07:18:03 +000011377 case Intrinsic::x86_avx_vperm2f128_ps_256:
11378 case Intrinsic::x86_avx_vperm2f128_pd_256:
11379 case Intrinsic::x86_avx_vperm2f128_si_256:
11380 case Intrinsic::x86_avx2_vperm2i128:
11381 return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
11382 Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
Craig Topper6d688152012-08-14 07:43:25 +000011383
Craig Topperffa6c402012-04-16 07:13:00 +000011384 case Intrinsic::x86_avx2_permd:
11385 case Intrinsic::x86_avx2_permps:
11386 // Operands intentionally swapped. Mask is last operand to intrinsic,
Robert Wilhelmf80a63f2013-09-28 11:46:15 +000011387 // but second operand for node/instruction.
Craig Topperffa6c402012-04-16 07:13:00 +000011388 return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
11389 Op.getOperand(2), Op.getOperand(1));
Craig Topper98fc7292011-11-19 17:46:46 +000011390
Craig Topper22d8f0d2012-12-29 18:18:20 +000011391 case Intrinsic::x86_sse_sqrt_ps:
11392 case Intrinsic::x86_sse2_sqrt_pd:
11393 case Intrinsic::x86_avx_sqrt_ps_256:
11394 case Intrinsic::x86_avx_sqrt_pd_256:
11395 return DAG.getNode(ISD::FSQRT, dl, Op.getValueType(), Op.getOperand(1));
11396
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011397 // ptest and testp intrinsics. The intrinsic these come from are designed to
11398 // return an integer value, not just an instruction so lower it to the ptest
11399 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +000011400 case Intrinsic::x86_sse41_ptestz:
11401 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011402 case Intrinsic::x86_sse41_ptestnzc:
11403 case Intrinsic::x86_avx_ptestz_256:
11404 case Intrinsic::x86_avx_ptestc_256:
11405 case Intrinsic::x86_avx_ptestnzc_256:
11406 case Intrinsic::x86_avx_vtestz_ps:
11407 case Intrinsic::x86_avx_vtestc_ps:
11408 case Intrinsic::x86_avx_vtestnzc_ps:
11409 case Intrinsic::x86_avx_vtestz_pd:
11410 case Intrinsic::x86_avx_vtestc_pd:
11411 case Intrinsic::x86_avx_vtestnzc_pd:
11412 case Intrinsic::x86_avx_vtestz_ps_256:
11413 case Intrinsic::x86_avx_vtestc_ps_256:
11414 case Intrinsic::x86_avx_vtestnzc_ps_256:
11415 case Intrinsic::x86_avx_vtestz_pd_256:
11416 case Intrinsic::x86_avx_vtestc_pd_256:
11417 case Intrinsic::x86_avx_vtestnzc_pd_256: {
11418 bool IsTestPacked = false;
Craig Topper6d688152012-08-14 07:43:25 +000011419 unsigned X86CC;
Eric Christopher71c67532009-07-29 00:28:05 +000011420 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +000011421 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011422 case Intrinsic::x86_avx_vtestz_ps:
11423 case Intrinsic::x86_avx_vtestz_pd:
11424 case Intrinsic::x86_avx_vtestz_ps_256:
11425 case Intrinsic::x86_avx_vtestz_pd_256:
11426 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +000011427 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011428 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011429 // ZF = 1
11430 X86CC = X86::COND_E;
11431 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011432 case Intrinsic::x86_avx_vtestc_ps:
11433 case Intrinsic::x86_avx_vtestc_pd:
11434 case Intrinsic::x86_avx_vtestc_ps_256:
11435 case Intrinsic::x86_avx_vtestc_pd_256:
11436 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +000011437 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011438 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011439 // CF = 1
11440 X86CC = X86::COND_B;
11441 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011442 case Intrinsic::x86_avx_vtestnzc_ps:
11443 case Intrinsic::x86_avx_vtestnzc_pd:
11444 case Intrinsic::x86_avx_vtestnzc_ps_256:
11445 case Intrinsic::x86_avx_vtestnzc_pd_256:
11446 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +000011447 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011448 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +000011449 // ZF and CF = 0
11450 X86CC = X86::COND_A;
11451 break;
11452 }
Eric Christopherfd179292009-08-27 18:07:15 +000011453
Eric Christopher71c67532009-07-29 00:28:05 +000011454 SDValue LHS = Op.getOperand(1);
11455 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000011456 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
11457 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +000011458 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11459 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11460 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +000011461 }
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000011462 case Intrinsic::x86_avx512_kortestz:
11463 case Intrinsic::x86_avx512_kortestc: {
11464 unsigned X86CC = (IntNo == Intrinsic::x86_avx512_kortestz)? X86::COND_E: X86::COND_B;
11465 SDValue LHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(1));
11466 SDValue RHS = DAG.getNode(ISD::BITCAST, dl, MVT::v16i1, Op.getOperand(2));
11467 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
11468 SDValue Test = DAG.getNode(X86ISD::KORTEST, dl, MVT::i32, LHS, RHS);
11469 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
11470 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11471 }
Evan Cheng5759f972008-05-04 09:15:50 +000011472
Craig Topper80e46362012-01-23 06:16:53 +000011473 // SSE/AVX shift intrinsics
11474 case Intrinsic::x86_sse2_psll_w:
11475 case Intrinsic::x86_sse2_psll_d:
11476 case Intrinsic::x86_sse2_psll_q:
11477 case Intrinsic::x86_avx2_psll_w:
11478 case Intrinsic::x86_avx2_psll_d:
11479 case Intrinsic::x86_avx2_psll_q:
Craig Topper80e46362012-01-23 06:16:53 +000011480 case Intrinsic::x86_sse2_psrl_w:
11481 case Intrinsic::x86_sse2_psrl_d:
11482 case Intrinsic::x86_sse2_psrl_q:
11483 case Intrinsic::x86_avx2_psrl_w:
11484 case Intrinsic::x86_avx2_psrl_d:
11485 case Intrinsic::x86_avx2_psrl_q:
Craig Topper80e46362012-01-23 06:16:53 +000011486 case Intrinsic::x86_sse2_psra_w:
11487 case Intrinsic::x86_sse2_psra_d:
11488 case Intrinsic::x86_avx2_psra_w:
Craig Topper6d688152012-08-14 07:43:25 +000011489 case Intrinsic::x86_avx2_psra_d: {
11490 unsigned Opcode;
11491 switch (IntNo) {
11492 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11493 case Intrinsic::x86_sse2_psll_w:
11494 case Intrinsic::x86_sse2_psll_d:
11495 case Intrinsic::x86_sse2_psll_q:
11496 case Intrinsic::x86_avx2_psll_w:
11497 case Intrinsic::x86_avx2_psll_d:
11498 case Intrinsic::x86_avx2_psll_q:
11499 Opcode = X86ISD::VSHL;
11500 break;
11501 case Intrinsic::x86_sse2_psrl_w:
11502 case Intrinsic::x86_sse2_psrl_d:
11503 case Intrinsic::x86_sse2_psrl_q:
11504 case Intrinsic::x86_avx2_psrl_w:
11505 case Intrinsic::x86_avx2_psrl_d:
11506 case Intrinsic::x86_avx2_psrl_q:
11507 Opcode = X86ISD::VSRL;
11508 break;
11509 case Intrinsic::x86_sse2_psra_w:
11510 case Intrinsic::x86_sse2_psra_d:
11511 case Intrinsic::x86_avx2_psra_w:
11512 case Intrinsic::x86_avx2_psra_d:
11513 Opcode = X86ISD::VSRA;
11514 break;
11515 }
11516 return DAG.getNode(Opcode, dl, Op.getValueType(),
Craig Topper80e46362012-01-23 06:16:53 +000011517 Op.getOperand(1), Op.getOperand(2));
Craig Topper6d688152012-08-14 07:43:25 +000011518 }
11519
11520 // SSE/AVX immediate shift intrinsics
Evan Cheng5759f972008-05-04 09:15:50 +000011521 case Intrinsic::x86_sse2_pslli_w:
11522 case Intrinsic::x86_sse2_pslli_d:
11523 case Intrinsic::x86_sse2_pslli_q:
Craig Topper80e46362012-01-23 06:16:53 +000011524 case Intrinsic::x86_avx2_pslli_w:
11525 case Intrinsic::x86_avx2_pslli_d:
11526 case Intrinsic::x86_avx2_pslli_q:
Evan Cheng5759f972008-05-04 09:15:50 +000011527 case Intrinsic::x86_sse2_psrli_w:
11528 case Intrinsic::x86_sse2_psrli_d:
11529 case Intrinsic::x86_sse2_psrli_q:
Craig Topper80e46362012-01-23 06:16:53 +000011530 case Intrinsic::x86_avx2_psrli_w:
11531 case Intrinsic::x86_avx2_psrli_d:
11532 case Intrinsic::x86_avx2_psrli_q:
Evan Cheng5759f972008-05-04 09:15:50 +000011533 case Intrinsic::x86_sse2_psrai_w:
11534 case Intrinsic::x86_sse2_psrai_d:
Craig Topper80e46362012-01-23 06:16:53 +000011535 case Intrinsic::x86_avx2_psrai_w:
Craig Topper6d688152012-08-14 07:43:25 +000011536 case Intrinsic::x86_avx2_psrai_d: {
11537 unsigned Opcode;
11538 switch (IntNo) {
11539 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11540 case Intrinsic::x86_sse2_pslli_w:
11541 case Intrinsic::x86_sse2_pslli_d:
11542 case Intrinsic::x86_sse2_pslli_q:
11543 case Intrinsic::x86_avx2_pslli_w:
11544 case Intrinsic::x86_avx2_pslli_d:
11545 case Intrinsic::x86_avx2_pslli_q:
11546 Opcode = X86ISD::VSHLI;
11547 break;
11548 case Intrinsic::x86_sse2_psrli_w:
11549 case Intrinsic::x86_sse2_psrli_d:
11550 case Intrinsic::x86_sse2_psrli_q:
11551 case Intrinsic::x86_avx2_psrli_w:
11552 case Intrinsic::x86_avx2_psrli_d:
11553 case Intrinsic::x86_avx2_psrli_q:
11554 Opcode = X86ISD::VSRLI;
11555 break;
11556 case Intrinsic::x86_sse2_psrai_w:
11557 case Intrinsic::x86_sse2_psrai_d:
11558 case Intrinsic::x86_avx2_psrai_w:
11559 case Intrinsic::x86_avx2_psrai_d:
11560 Opcode = X86ISD::VSRAI;
11561 break;
11562 }
11563 return getTargetVShiftNode(Opcode, dl, Op.getValueType(),
Craig Topper80e46362012-01-23 06:16:53 +000011564 Op.getOperand(1), Op.getOperand(2), DAG);
Craig Topper6d688152012-08-14 07:43:25 +000011565 }
11566
Craig Topper4feb6472012-08-06 06:22:36 +000011567 case Intrinsic::x86_sse42_pcmpistria128:
11568 case Intrinsic::x86_sse42_pcmpestria128:
11569 case Intrinsic::x86_sse42_pcmpistric128:
11570 case Intrinsic::x86_sse42_pcmpestric128:
11571 case Intrinsic::x86_sse42_pcmpistrio128:
11572 case Intrinsic::x86_sse42_pcmpestrio128:
11573 case Intrinsic::x86_sse42_pcmpistris128:
11574 case Intrinsic::x86_sse42_pcmpestris128:
11575 case Intrinsic::x86_sse42_pcmpistriz128:
11576 case Intrinsic::x86_sse42_pcmpestriz128: {
11577 unsigned Opcode;
11578 unsigned X86CC;
11579 switch (IntNo) {
11580 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11581 case Intrinsic::x86_sse42_pcmpistria128:
11582 Opcode = X86ISD::PCMPISTRI;
11583 X86CC = X86::COND_A;
11584 break;
11585 case Intrinsic::x86_sse42_pcmpestria128:
11586 Opcode = X86ISD::PCMPESTRI;
11587 X86CC = X86::COND_A;
11588 break;
11589 case Intrinsic::x86_sse42_pcmpistric128:
11590 Opcode = X86ISD::PCMPISTRI;
11591 X86CC = X86::COND_B;
11592 break;
11593 case Intrinsic::x86_sse42_pcmpestric128:
11594 Opcode = X86ISD::PCMPESTRI;
11595 X86CC = X86::COND_B;
11596 break;
11597 case Intrinsic::x86_sse42_pcmpistrio128:
11598 Opcode = X86ISD::PCMPISTRI;
11599 X86CC = X86::COND_O;
11600 break;
11601 case Intrinsic::x86_sse42_pcmpestrio128:
11602 Opcode = X86ISD::PCMPESTRI;
11603 X86CC = X86::COND_O;
11604 break;
11605 case Intrinsic::x86_sse42_pcmpistris128:
11606 Opcode = X86ISD::PCMPISTRI;
11607 X86CC = X86::COND_S;
11608 break;
11609 case Intrinsic::x86_sse42_pcmpestris128:
11610 Opcode = X86ISD::PCMPESTRI;
11611 X86CC = X86::COND_S;
11612 break;
11613 case Intrinsic::x86_sse42_pcmpistriz128:
11614 Opcode = X86ISD::PCMPISTRI;
11615 X86CC = X86::COND_E;
11616 break;
11617 case Intrinsic::x86_sse42_pcmpestriz128:
11618 Opcode = X86ISD::PCMPESTRI;
11619 X86CC = X86::COND_E;
11620 break;
11621 }
Craig Topper20b46b02013-08-06 04:12:40 +000011622 SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
Craig Topper4feb6472012-08-06 06:22:36 +000011623 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11624 SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11625 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11626 DAG.getConstant(X86CC, MVT::i8),
11627 SDValue(PCMP.getNode(), 1));
11628 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
11629 }
Craig Topper6d688152012-08-14 07:43:25 +000011630
Craig Topper4feb6472012-08-06 06:22:36 +000011631 case Intrinsic::x86_sse42_pcmpistri128:
11632 case Intrinsic::x86_sse42_pcmpestri128: {
11633 unsigned Opcode;
11634 if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
11635 Opcode = X86ISD::PCMPISTRI;
11636 else
11637 Opcode = X86ISD::PCMPESTRI;
11638
Craig Topper20b46b02013-08-06 04:12:40 +000011639 SmallVector<SDValue, 5> NewOps(Op->op_begin()+1, Op->op_end());
Craig Topper4feb6472012-08-06 06:22:36 +000011640 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
11641 return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
11642 }
Craig Topper0e292372012-08-24 04:03:22 +000011643 case Intrinsic::x86_fma_vfmadd_ps:
11644 case Intrinsic::x86_fma_vfmadd_pd:
11645 case Intrinsic::x86_fma_vfmsub_ps:
11646 case Intrinsic::x86_fma_vfmsub_pd:
11647 case Intrinsic::x86_fma_vfnmadd_ps:
11648 case Intrinsic::x86_fma_vfnmadd_pd:
11649 case Intrinsic::x86_fma_vfnmsub_ps:
11650 case Intrinsic::x86_fma_vfnmsub_pd:
11651 case Intrinsic::x86_fma_vfmaddsub_ps:
11652 case Intrinsic::x86_fma_vfmaddsub_pd:
11653 case Intrinsic::x86_fma_vfmsubadd_ps:
11654 case Intrinsic::x86_fma_vfmsubadd_pd:
11655 case Intrinsic::x86_fma_vfmadd_ps_256:
11656 case Intrinsic::x86_fma_vfmadd_pd_256:
11657 case Intrinsic::x86_fma_vfmsub_ps_256:
11658 case Intrinsic::x86_fma_vfmsub_pd_256:
11659 case Intrinsic::x86_fma_vfnmadd_ps_256:
11660 case Intrinsic::x86_fma_vfnmadd_pd_256:
11661 case Intrinsic::x86_fma_vfnmsub_ps_256:
11662 case Intrinsic::x86_fma_vfnmsub_pd_256:
11663 case Intrinsic::x86_fma_vfmaddsub_ps_256:
11664 case Intrinsic::x86_fma_vfmaddsub_pd_256:
11665 case Intrinsic::x86_fma_vfmsubadd_ps_256:
Cameron McInally28e12e92013-11-15 17:01:14 +000011666 case Intrinsic::x86_fma_vfmsubadd_pd_256:
11667 case Intrinsic::x86_fma_vfmadd_ps_512:
11668 case Intrinsic::x86_fma_vfmadd_pd_512:
11669 case Intrinsic::x86_fma_vfmsub_ps_512:
11670 case Intrinsic::x86_fma_vfmsub_pd_512:
11671 case Intrinsic::x86_fma_vfnmadd_ps_512:
11672 case Intrinsic::x86_fma_vfnmadd_pd_512:
11673 case Intrinsic::x86_fma_vfnmsub_ps_512:
11674 case Intrinsic::x86_fma_vfnmsub_pd_512:
11675 case Intrinsic::x86_fma_vfmaddsub_ps_512:
11676 case Intrinsic::x86_fma_vfmaddsub_pd_512:
11677 case Intrinsic::x86_fma_vfmsubadd_ps_512:
11678 case Intrinsic::x86_fma_vfmsubadd_pd_512: {
Craig Topper0e292372012-08-24 04:03:22 +000011679 unsigned Opc;
11680 switch (IntNo) {
11681 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
11682 case Intrinsic::x86_fma_vfmadd_ps:
11683 case Intrinsic::x86_fma_vfmadd_pd:
11684 case Intrinsic::x86_fma_vfmadd_ps_256:
11685 case Intrinsic::x86_fma_vfmadd_pd_256:
Cameron McInally28e12e92013-11-15 17:01:14 +000011686 case Intrinsic::x86_fma_vfmadd_ps_512:
11687 case Intrinsic::x86_fma_vfmadd_pd_512:
Craig Topper0e292372012-08-24 04:03:22 +000011688 Opc = X86ISD::FMADD;
11689 break;
11690 case Intrinsic::x86_fma_vfmsub_ps:
11691 case Intrinsic::x86_fma_vfmsub_pd:
11692 case Intrinsic::x86_fma_vfmsub_ps_256:
11693 case Intrinsic::x86_fma_vfmsub_pd_256:
Cameron McInally28e12e92013-11-15 17:01:14 +000011694 case Intrinsic::x86_fma_vfmsub_ps_512:
11695 case Intrinsic::x86_fma_vfmsub_pd_512:
Craig Topper0e292372012-08-24 04:03:22 +000011696 Opc = X86ISD::FMSUB;
11697 break;
11698 case Intrinsic::x86_fma_vfnmadd_ps:
11699 case Intrinsic::x86_fma_vfnmadd_pd:
11700 case Intrinsic::x86_fma_vfnmadd_ps_256:
11701 case Intrinsic::x86_fma_vfnmadd_pd_256:
Cameron McInally28e12e92013-11-15 17:01:14 +000011702 case Intrinsic::x86_fma_vfnmadd_ps_512:
11703 case Intrinsic::x86_fma_vfnmadd_pd_512:
Craig Topper0e292372012-08-24 04:03:22 +000011704 Opc = X86ISD::FNMADD;
11705 break;
11706 case Intrinsic::x86_fma_vfnmsub_ps:
11707 case Intrinsic::x86_fma_vfnmsub_pd:
11708 case Intrinsic::x86_fma_vfnmsub_ps_256:
11709 case Intrinsic::x86_fma_vfnmsub_pd_256:
Cameron McInally28e12e92013-11-15 17:01:14 +000011710 case Intrinsic::x86_fma_vfnmsub_ps_512:
11711 case Intrinsic::x86_fma_vfnmsub_pd_512:
Craig Topper0e292372012-08-24 04:03:22 +000011712 Opc = X86ISD::FNMSUB;
11713 break;
11714 case Intrinsic::x86_fma_vfmaddsub_ps:
11715 case Intrinsic::x86_fma_vfmaddsub_pd:
11716 case Intrinsic::x86_fma_vfmaddsub_ps_256:
11717 case Intrinsic::x86_fma_vfmaddsub_pd_256:
Cameron McInally28e12e92013-11-15 17:01:14 +000011718 case Intrinsic::x86_fma_vfmaddsub_ps_512:
11719 case Intrinsic::x86_fma_vfmaddsub_pd_512:
Craig Topper0e292372012-08-24 04:03:22 +000011720 Opc = X86ISD::FMADDSUB;
11721 break;
11722 case Intrinsic::x86_fma_vfmsubadd_ps:
11723 case Intrinsic::x86_fma_vfmsubadd_pd:
11724 case Intrinsic::x86_fma_vfmsubadd_ps_256:
11725 case Intrinsic::x86_fma_vfmsubadd_pd_256:
Cameron McInally28e12e92013-11-15 17:01:14 +000011726 case Intrinsic::x86_fma_vfmsubadd_ps_512:
11727 case Intrinsic::x86_fma_vfmsubadd_pd_512:
Craig Topper0e292372012-08-24 04:03:22 +000011728 Opc = X86ISD::FMSUBADD;
11729 break;
11730 }
11731
11732 return DAG.getNode(Opc, dl, Op.getValueType(), Op.getOperand(1),
11733 Op.getOperand(2), Op.getOperand(3));
11734 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +000011735 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000011736}
Evan Cheng72261582005-12-20 06:22:03 +000011737
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000011738static SDValue getGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11739 SDValue Base, SDValue Index,
11740 SDValue ScaleOp, SDValue Chain,
11741 const X86Subtarget * Subtarget) {
11742 SDLoc dl(Op);
11743 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11744 assert(C && "Invalid scale type");
11745 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11746 SDValue Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11747 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11748 Index.getValueType().getVectorNumElements());
11749 SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11750 SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11751 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11752 SDValue Segment = DAG.getRegister(0, MVT::i32);
11753 SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11754 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11755 SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11756 return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11757}
11758
11759static SDValue getMGatherNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11760 SDValue Src, SDValue Mask, SDValue Base,
11761 SDValue Index, SDValue ScaleOp, SDValue Chain,
11762 const X86Subtarget * Subtarget) {
11763 SDLoc dl(Op);
11764 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11765 assert(C && "Invalid scale type");
11766 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11767 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11768 Index.getValueType().getVectorNumElements());
11769 SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11770 SDVTList VTs = DAG.getVTList(Op.getValueType(), MaskVT, MVT::Other);
11771 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11772 SDValue Segment = DAG.getRegister(0, MVT::i32);
11773 if (Src.getOpcode() == ISD::UNDEF)
11774 Src = getZeroVector(Op.getValueType(), Subtarget, DAG, dl);
11775 SDValue Ops[] = {Src, MaskInReg, Base, Scale, Index, Disp, Segment, Chain};
11776 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11777 SDValue RetOps[] = { SDValue(Res, 0), SDValue(Res, 2) };
11778 return DAG.getMergeValues(RetOps, array_lengthof(RetOps), dl);
11779}
11780
11781static SDValue getScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11782 SDValue Src, SDValue Base, SDValue Index,
11783 SDValue ScaleOp, SDValue Chain) {
11784 SDLoc dl(Op);
11785 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11786 assert(C && "Invalid scale type");
11787 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11788 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11789 SDValue Segment = DAG.getRegister(0, MVT::i32);
11790 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11791 Index.getValueType().getVectorNumElements());
11792 SDValue MaskInReg = DAG.getConstant(~0, MaskVT);
11793 SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11794 SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11795 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11796 return SDValue(Res, 1);
11797}
11798
11799static SDValue getMScatterNode(unsigned Opc, SDValue Op, SelectionDAG &DAG,
11800 SDValue Src, SDValue Mask, SDValue Base,
11801 SDValue Index, SDValue ScaleOp, SDValue Chain) {
11802 SDLoc dl(Op);
11803 ConstantSDNode *C = dyn_cast<ConstantSDNode>(ScaleOp);
11804 assert(C && "Invalid scale type");
11805 SDValue Scale = DAG.getTargetConstant(C->getZExtValue(), MVT::i8);
11806 SDValue Disp = DAG.getTargetConstant(0, MVT::i32);
11807 SDValue Segment = DAG.getRegister(0, MVT::i32);
11808 EVT MaskVT = MVT::getVectorVT(MVT::i1,
11809 Index.getValueType().getVectorNumElements());
11810 SDValue MaskInReg = DAG.getNode(ISD::BITCAST, dl, MaskVT, Mask);
11811 SDVTList VTs = DAG.getVTList(MaskVT, MVT::Other);
11812 SDValue Ops[] = {Base, Scale, Index, Disp, Segment, MaskInReg, Src, Chain};
11813 SDNode *Res = DAG.getMachineNode(Opc, dl, VTs, Ops);
11814 return SDValue(Res, 1);
11815}
11816
11817static SDValue LowerINTRINSIC_W_CHAIN(SDValue Op, const X86Subtarget *Subtarget,
11818 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000011819 SDLoc dl(Op);
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011820 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
11821 switch (IntNo) {
11822 default: return SDValue(); // Don't custom lower most intrinsics.
11823
Michael Liaoc26392a2013-03-28 23:41:26 +000011824 // RDRAND/RDSEED intrinsics.
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011825 case Intrinsic::x86_rdrand_16:
11826 case Intrinsic::x86_rdrand_32:
Michael Liaoc26392a2013-03-28 23:41:26 +000011827 case Intrinsic::x86_rdrand_64:
11828 case Intrinsic::x86_rdseed_16:
11829 case Intrinsic::x86_rdseed_32:
11830 case Intrinsic::x86_rdseed_64: {
11831 unsigned Opcode = (IntNo == Intrinsic::x86_rdseed_16 ||
11832 IntNo == Intrinsic::x86_rdseed_32 ||
11833 IntNo == Intrinsic::x86_rdseed_64) ? X86ISD::RDSEED :
11834 X86ISD::RDRAND;
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011835 // Emit the node with the right value type.
Benjamin Kramerfeae00a2012-07-12 18:14:57 +000011836 SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
Michael Liaoc26392a2013-03-28 23:41:26 +000011837 SDValue Result = DAG.getNode(Opcode, dl, VTs, Op.getOperand(0));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011838
Michael Liaoc26392a2013-03-28 23:41:26 +000011839 // If the value returned by RDRAND/RDSEED was valid (CF=1), return 1.
11840 // Otherwise return the value from Rand, which is always 0, casted to i32.
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011841 SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
11842 DAG.getConstant(1, Op->getValueType(1)),
11843 DAG.getConstant(X86::COND_B, MVT::i32),
11844 SDValue(Result.getNode(), 1) };
11845 SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
11846 DAG.getVTList(Op->getValueType(1), MVT::Glue),
Michael Liao0ee17002013-04-19 04:03:37 +000011847 Ops, array_lengthof(Ops));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011848
11849 // Return { result, isValid, chain }.
11850 return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
Benjamin Kramerfeae00a2012-07-12 18:14:57 +000011851 SDValue(Result.getNode(), 2));
Benjamin Kramerb9bee042012-07-12 09:31:43 +000011852 }
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000011853 //int_gather(index, base, scale);
11854 case Intrinsic::x86_avx512_gather_qpd_512:
11855 case Intrinsic::x86_avx512_gather_qps_512:
11856 case Intrinsic::x86_avx512_gather_dpd_512:
11857 case Intrinsic::x86_avx512_gather_qpi_512:
11858 case Intrinsic::x86_avx512_gather_qpq_512:
11859 case Intrinsic::x86_avx512_gather_dpq_512:
11860 case Intrinsic::x86_avx512_gather_dps_512:
11861 case Intrinsic::x86_avx512_gather_dpi_512: {
11862 unsigned Opc;
11863 switch (IntNo) {
11864 default: llvm_unreachable("Unexpected intrinsic!");
11865 case Intrinsic::x86_avx512_gather_qps_512: Opc = X86::VGATHERQPSZrm; break;
11866 case Intrinsic::x86_avx512_gather_qpd_512: Opc = X86::VGATHERQPDZrm; break;
11867 case Intrinsic::x86_avx512_gather_dpd_512: Opc = X86::VGATHERDPDZrm; break;
11868 case Intrinsic::x86_avx512_gather_dps_512: Opc = X86::VGATHERDPSZrm; break;
11869 case Intrinsic::x86_avx512_gather_qpi_512: Opc = X86::VPGATHERQDZrm; break;
11870 case Intrinsic::x86_avx512_gather_qpq_512: Opc = X86::VPGATHERQQZrm; break;
11871 case Intrinsic::x86_avx512_gather_dpi_512: Opc = X86::VPGATHERDDZrm; break;
11872 case Intrinsic::x86_avx512_gather_dpq_512: Opc = X86::VPGATHERDQZrm; break;
11873 }
11874 SDValue Chain = Op.getOperand(0);
11875 SDValue Index = Op.getOperand(2);
11876 SDValue Base = Op.getOperand(3);
11877 SDValue Scale = Op.getOperand(4);
11878 return getGatherNode(Opc, Op, DAG, Base, Index, Scale, Chain, Subtarget);
11879 }
11880 //int_gather_mask(v1, mask, index, base, scale);
11881 case Intrinsic::x86_avx512_gather_qps_mask_512:
11882 case Intrinsic::x86_avx512_gather_qpd_mask_512:
11883 case Intrinsic::x86_avx512_gather_dpd_mask_512:
11884 case Intrinsic::x86_avx512_gather_dps_mask_512:
11885 case Intrinsic::x86_avx512_gather_qpi_mask_512:
11886 case Intrinsic::x86_avx512_gather_qpq_mask_512:
11887 case Intrinsic::x86_avx512_gather_dpi_mask_512:
11888 case Intrinsic::x86_avx512_gather_dpq_mask_512: {
11889 unsigned Opc;
11890 switch (IntNo) {
11891 default: llvm_unreachable("Unexpected intrinsic!");
11892 case Intrinsic::x86_avx512_gather_qps_mask_512:
11893 Opc = X86::VGATHERQPSZrm; break;
11894 case Intrinsic::x86_avx512_gather_qpd_mask_512:
11895 Opc = X86::VGATHERQPDZrm; break;
11896 case Intrinsic::x86_avx512_gather_dpd_mask_512:
11897 Opc = X86::VGATHERDPDZrm; break;
11898 case Intrinsic::x86_avx512_gather_dps_mask_512:
11899 Opc = X86::VGATHERDPSZrm; break;
11900 case Intrinsic::x86_avx512_gather_qpi_mask_512:
11901 Opc = X86::VPGATHERQDZrm; break;
11902 case Intrinsic::x86_avx512_gather_qpq_mask_512:
11903 Opc = X86::VPGATHERQQZrm; break;
11904 case Intrinsic::x86_avx512_gather_dpi_mask_512:
11905 Opc = X86::VPGATHERDDZrm; break;
11906 case Intrinsic::x86_avx512_gather_dpq_mask_512:
11907 Opc = X86::VPGATHERDQZrm; break;
11908 }
11909 SDValue Chain = Op.getOperand(0);
11910 SDValue Src = Op.getOperand(2);
11911 SDValue Mask = Op.getOperand(3);
11912 SDValue Index = Op.getOperand(4);
11913 SDValue Base = Op.getOperand(5);
11914 SDValue Scale = Op.getOperand(6);
11915 return getMGatherNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain,
11916 Subtarget);
11917 }
11918 //int_scatter(base, index, v1, scale);
11919 case Intrinsic::x86_avx512_scatter_qpd_512:
11920 case Intrinsic::x86_avx512_scatter_qps_512:
11921 case Intrinsic::x86_avx512_scatter_dpd_512:
11922 case Intrinsic::x86_avx512_scatter_qpi_512:
11923 case Intrinsic::x86_avx512_scatter_qpq_512:
11924 case Intrinsic::x86_avx512_scatter_dpq_512:
11925 case Intrinsic::x86_avx512_scatter_dps_512:
11926 case Intrinsic::x86_avx512_scatter_dpi_512: {
11927 unsigned Opc;
11928 switch (IntNo) {
11929 default: llvm_unreachable("Unexpected intrinsic!");
11930 case Intrinsic::x86_avx512_scatter_qpd_512:
11931 Opc = X86::VSCATTERQPDZmr; break;
11932 case Intrinsic::x86_avx512_scatter_qps_512:
11933 Opc = X86::VSCATTERQPSZmr; break;
11934 case Intrinsic::x86_avx512_scatter_dpd_512:
11935 Opc = X86::VSCATTERDPDZmr; break;
11936 case Intrinsic::x86_avx512_scatter_dps_512:
11937 Opc = X86::VSCATTERDPSZmr; break;
11938 case Intrinsic::x86_avx512_scatter_qpi_512:
11939 Opc = X86::VPSCATTERQDZmr; break;
11940 case Intrinsic::x86_avx512_scatter_qpq_512:
11941 Opc = X86::VPSCATTERQQZmr; break;
11942 case Intrinsic::x86_avx512_scatter_dpq_512:
11943 Opc = X86::VPSCATTERDQZmr; break;
11944 case Intrinsic::x86_avx512_scatter_dpi_512:
11945 Opc = X86::VPSCATTERDDZmr; break;
11946 }
11947 SDValue Chain = Op.getOperand(0);
11948 SDValue Base = Op.getOperand(2);
11949 SDValue Index = Op.getOperand(3);
11950 SDValue Src = Op.getOperand(4);
11951 SDValue Scale = Op.getOperand(5);
11952 return getScatterNode(Opc, Op, DAG, Src, Base, Index, Scale, Chain);
11953 }
11954 //int_scatter_mask(base, mask, index, v1, scale);
11955 case Intrinsic::x86_avx512_scatter_qps_mask_512:
11956 case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11957 case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11958 case Intrinsic::x86_avx512_scatter_dps_mask_512:
11959 case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11960 case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11961 case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11962 case Intrinsic::x86_avx512_scatter_dpq_mask_512: {
11963 unsigned Opc;
11964 switch (IntNo) {
11965 default: llvm_unreachable("Unexpected intrinsic!");
11966 case Intrinsic::x86_avx512_scatter_qpd_mask_512:
11967 Opc = X86::VSCATTERQPDZmr; break;
11968 case Intrinsic::x86_avx512_scatter_qps_mask_512:
11969 Opc = X86::VSCATTERQPSZmr; break;
11970 case Intrinsic::x86_avx512_scatter_dpd_mask_512:
11971 Opc = X86::VSCATTERDPDZmr; break;
11972 case Intrinsic::x86_avx512_scatter_dps_mask_512:
11973 Opc = X86::VSCATTERDPSZmr; break;
11974 case Intrinsic::x86_avx512_scatter_qpi_mask_512:
11975 Opc = X86::VPSCATTERQDZmr; break;
11976 case Intrinsic::x86_avx512_scatter_qpq_mask_512:
11977 Opc = X86::VPSCATTERQQZmr; break;
11978 case Intrinsic::x86_avx512_scatter_dpq_mask_512:
11979 Opc = X86::VPSCATTERDQZmr; break;
11980 case Intrinsic::x86_avx512_scatter_dpi_mask_512:
11981 Opc = X86::VPSCATTERDDZmr; break;
11982 }
11983 SDValue Chain = Op.getOperand(0);
11984 SDValue Base = Op.getOperand(2);
11985 SDValue Mask = Op.getOperand(3);
11986 SDValue Index = Op.getOperand(4);
11987 SDValue Src = Op.getOperand(5);
11988 SDValue Scale = Op.getOperand(6);
11989 return getMScatterNode(Opc, Op, DAG, Src, Mask, Base, Index, Scale, Chain);
11990 }
Michael Liaof8fd8832013-03-26 22:47:01 +000011991 // XTEST intrinsics.
11992 case Intrinsic::x86_xtest: {
11993 SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Other);
11994 SDValue InTrans = DAG.getNode(X86ISD::XTEST, dl, VTs, Op.getOperand(0));
11995 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
11996 DAG.getConstant(X86::COND_NE, MVT::i8),
11997 InTrans);
11998 SDValue Ret = DAG.getNode(ISD::ZERO_EXTEND, dl, Op->getValueType(0), SetCC);
11999 return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(),
12000 Ret, SDValue(InTrans.getNode(), 1));
12001 }
Benjamin Kramerb9bee042012-07-12 09:31:43 +000012002 }
12003}
12004
Dan Gohmand858e902010-04-17 15:26:15 +000012005SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
12006 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +000012007 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12008 MFI->setReturnAddressIsTaken(true);
12009
Bill Wendling64e87322009-01-16 19:25:27 +000012010 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012011 SDLoc dl(Op);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000012012 EVT PtrVT = getPointerTy();
Bill Wendling64e87322009-01-16 19:25:27 +000012013
12014 if (Depth > 0) {
12015 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000012016 const X86RegisterInfo *RegInfo =
12017 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
12018 SDValue Offset = DAG.getConstant(RegInfo->getSlotSize(), PtrVT);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000012019 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
12020 DAG.getNode(ISD::ADD, dl, PtrVT,
Dale Johannesene4d209d2009-02-03 20:21:25 +000012021 FrameAddr, Offset),
Pete Cooperd752e0f2011-11-08 18:42:53 +000012022 MachinePointerInfo(), false, false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +000012023 }
12024
12025 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +000012026 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Michael Liaoaa3c2c02012-10-25 06:29:14 +000012027 return DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000012028 RetAddrFI, MachinePointerInfo(), false, false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +000012029}
12030
Dan Gohmand858e902010-04-17 15:26:15 +000012031SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +000012032 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
12033 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +000012034
Owen Andersone50ed302009-08-10 22:56:29 +000012035 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012036 SDLoc dl(Op); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +000012037 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000012038 const X86RegisterInfo *RegInfo =
12039 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaob9cca132013-05-02 08:21:56 +000012040 unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12041 assert(((FrameReg == X86::RBP && VT == MVT::i64) ||
Michael Liao299eb2e2013-05-02 09:22:04 +000012042 (FrameReg == X86::EBP && VT == MVT::i32)) &&
12043 "Invalid Frame Register!");
Dale Johannesendd64c412009-02-04 00:33:20 +000012044 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +000012045 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +000012046 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
12047 MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000012048 false, false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +000012049 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +000012050}
12051
Dan Gohman475871a2008-07-27 21:46:04 +000012052SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000012053 SelectionDAG &DAG) const {
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000012054 const X86RegisterInfo *RegInfo =
12055 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaoaa3c2c02012-10-25 06:29:14 +000012056 return DAG.getIntPtrConstant(2 * RegInfo->getSlotSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012057}
12058
Dan Gohmand858e902010-04-17 15:26:15 +000012059SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000012060 SDValue Chain = Op.getOperand(0);
12061 SDValue Offset = Op.getOperand(1);
12062 SDValue Handler = Op.getOperand(2);
Andrew Trickac6d9be2013-05-25 02:42:55 +000012063 SDLoc dl (Op);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012064
Michael Liaodb7da202013-05-02 09:18:38 +000012065 EVT PtrVT = getPointerTy();
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000012066 const X86RegisterInfo *RegInfo =
12067 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liaodb7da202013-05-02 09:18:38 +000012068 unsigned FrameReg = RegInfo->getFrameRegister(DAG.getMachineFunction());
12069 assert(((FrameReg == X86::RBP && PtrVT == MVT::i64) ||
12070 (FrameReg == X86::EBP && PtrVT == MVT::i32)) &&
12071 "Invalid Frame Register!");
12072 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, PtrVT);
12073 unsigned StoreAddrReg = (PtrVT == MVT::i64) ? X86::RCX : X86::ECX;
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012074
Michael Liaodb7da202013-05-02 09:18:38 +000012075 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, Frame,
Michael Liao299eb2e2013-05-02 09:22:04 +000012076 DAG.getIntPtrConstant(RegInfo->getSlotSize()));
Michael Liaodb7da202013-05-02 09:18:38 +000012077 StoreAddr = DAG.getNode(ISD::ADD, dl, PtrVT, StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +000012078 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
12079 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +000012080 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012081
Michael Liaodb7da202013-05-02 09:18:38 +000012082 return DAG.getNode(X86ISD::EH_RETURN, dl, MVT::Other, Chain,
12083 DAG.getRegister(StoreAddrReg, PtrVT));
Anton Korobeynikov2365f512007-07-14 14:06:15 +000012084}
12085
Michael Liao6c0e04c2012-10-15 22:39:43 +000012086SDValue X86TargetLowering::lowerEH_SJLJ_SETJMP(SDValue Op,
12087 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012088 SDLoc DL(Op);
Michael Liao6c0e04c2012-10-15 22:39:43 +000012089 return DAG.getNode(X86ISD::EH_SJLJ_SETJMP, DL,
12090 DAG.getVTList(MVT::i32, MVT::Other),
12091 Op.getOperand(0), Op.getOperand(1));
12092}
12093
12094SDValue X86TargetLowering::lowerEH_SJLJ_LONGJMP(SDValue Op,
12095 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012096 SDLoc DL(Op);
Michael Liao6c0e04c2012-10-15 22:39:43 +000012097 return DAG.getNode(X86ISD::EH_SJLJ_LONGJMP, DL, MVT::Other,
12098 Op.getOperand(0), Op.getOperand(1));
12099}
12100
Craig Topper55b24052012-09-11 06:15:32 +000012101static SDValue LowerADJUST_TRAMPOLINE(SDValue Op, SelectionDAG &DAG) {
Duncan Sands4a544a72011-09-06 13:37:06 +000012102 return Op.getOperand(0);
12103}
12104
12105SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
12106 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000012107 SDValue Root = Op.getOperand(0);
12108 SDValue Trmp = Op.getOperand(1); // trampoline
12109 SDValue FPtr = Op.getOperand(2); // nested function
12110 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Andrew Trickac6d9be2013-05-25 02:42:55 +000012111 SDLoc dl (Op);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012112
Dan Gohman69de1932008-02-06 22:27:42 +000012113 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Michael Liao7abf67a2012-10-04 19:50:43 +000012114 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
Duncan Sandsb116fac2007-07-27 20:02:49 +000012115
12116 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +000012117 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +000012118
12119 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +000012120 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
12121 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +000012122
Michael Liao7abf67a2012-10-04 19:50:43 +000012123 const unsigned char N86R10 = TRI->getEncodingValue(X86::R10) & 0x7;
12124 const unsigned char N86R11 = TRI->getEncodingValue(X86::R11) & 0x7;
Duncan Sands339e14f2008-01-16 22:55:25 +000012125
12126 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
12127
12128 // Load the pointer to the nested function into R11.
12129 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +000012130 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +000012131 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012132 Addr, MachinePointerInfo(TrmpAddr),
12133 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012134
Owen Anderson825b72b2009-08-11 20:47:22 +000012135 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12136 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012137 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
12138 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +000012139 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +000012140
12141 // Load the 'nest' parameter value into R10.
12142 // R10 is specified in X86CallingConv.td
12143 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +000012144 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12145 DAG.getConstant(10, MVT::i64));
12146 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012147 Addr, MachinePointerInfo(TrmpAddr, 10),
12148 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012149
Owen Anderson825b72b2009-08-11 20:47:22 +000012150 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12151 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012152 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
12153 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +000012154 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +000012155
12156 // Jump to the nested function.
12157 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +000012158 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12159 DAG.getConstant(20, MVT::i64));
12160 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012161 Addr, MachinePointerInfo(TrmpAddr, 20),
12162 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012163
12164 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +000012165 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
12166 DAG.getConstant(22, MVT::i64));
12167 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012168 MachinePointerInfo(TrmpAddr, 22),
12169 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +000012170
Duncan Sands4a544a72011-09-06 13:37:06 +000012171 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012172 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +000012173 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +000012174 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +000012175 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +000012176 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012177
12178 switch (CC) {
12179 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000012180 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +000012181 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +000012182 case CallingConv::X86_StdCall: {
12183 // Pass 'nest' parameter in ECX.
12184 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +000012185 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012186
12187 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012188 FunctionType *FTy = Func->getFunctionType();
Bill Wendling99faa3b2012-12-07 23:16:57 +000012189 const AttributeSet &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +000012190
Chris Lattner58d74912008-03-12 17:45:29 +000012191 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +000012192 unsigned InRegCount = 0;
12193 unsigned Idx = 1;
12194
12195 for (FunctionType::param_iterator I = FTy->param_begin(),
12196 E = FTy->param_end(); I != E; ++I, ++Idx)
Bill Wendling94e94b32012-12-30 13:50:49 +000012197 if (Attrs.hasAttribute(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +000012198 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000012199 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012200
12201 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +000012202 report_fatal_error("Nest register in use - reduce number of inreg"
12203 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +000012204 }
12205 }
12206 break;
12207 }
12208 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +000012209 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +000012210 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +000012211 // Pass 'nest' parameter in EAX.
12212 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +000012213 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012214 break;
12215 }
12216
Dan Gohman475871a2008-07-27 21:46:04 +000012217 SDValue OutChains[4];
12218 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +000012219
Owen Anderson825b72b2009-08-11 20:47:22 +000012220 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12221 DAG.getConstant(10, MVT::i32));
12222 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012223
Chris Lattnera62fe662010-02-05 19:20:30 +000012224 // This is storing the opcode for MOV32ri.
12225 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Michael Liao7abf67a2012-10-04 19:50:43 +000012226 const unsigned char N86Reg = TRI->getEncodingValue(NestReg) & 0x7;
Scott Michelfdc40a02009-02-17 22:15:04 +000012227 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +000012228 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +000012229 Trmp, MachinePointerInfo(TrmpAddr),
12230 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012231
Owen Anderson825b72b2009-08-11 20:47:22 +000012232 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12233 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012234 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
12235 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +000012236 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012237
Chris Lattnera62fe662010-02-05 19:20:30 +000012238 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +000012239 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12240 DAG.getConstant(5, MVT::i32));
12241 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012242 MachinePointerInfo(TrmpAddr, 5),
12243 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012244
Owen Anderson825b72b2009-08-11 20:47:22 +000012245 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
12246 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +000012247 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
12248 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +000012249 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012250
Duncan Sands4a544a72011-09-06 13:37:06 +000012251 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
Duncan Sandsb116fac2007-07-27 20:02:49 +000012252 }
12253}
12254
Dan Gohmand858e902010-04-17 15:26:15 +000012255SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
12256 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012257 /*
12258 The rounding mode is in bits 11:10 of FPSR, and has the following
12259 settings:
12260 00 Round to nearest
12261 01 Round to -inf
12262 10 Round to +inf
12263 11 Round to 0
12264
12265 FLT_ROUNDS, on the other hand, expects the following:
12266 -1 Undefined
12267 0 Round to 0
12268 1 Round to nearest
12269 2 Round to +inf
12270 3 Round to -inf
12271
12272 To perform the conversion, we do:
12273 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
12274 */
12275
12276 MachineFunction &MF = DAG.getMachineFunction();
12277 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000012278 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012279 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +000012280 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012281 SDLoc DL(Op);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012282
12283 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +000012284 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +000012285 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012286
Chris Lattner2156b792010-09-22 01:11:26 +000012287 MachineMemOperand *MMO =
12288 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
12289 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012290
Chris Lattner2156b792010-09-22 01:11:26 +000012291 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
12292 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
12293 DAG.getVTList(MVT::Other),
Michael Liao0ee17002013-04-19 04:03:37 +000012294 Ops, array_lengthof(Ops), MVT::i16,
12295 MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012296
12297 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +000012298 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Pete Cooperd752e0f2011-11-08 18:42:53 +000012299 MachinePointerInfo(), false, false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012300
12301 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +000012302 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +000012303 DAG.getNode(ISD::SRL, DL, MVT::i16,
12304 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +000012305 CWD, DAG.getConstant(0x800, MVT::i16)),
12306 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +000012307 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +000012308 DAG.getNode(ISD::SRL, DL, MVT::i16,
12309 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +000012310 CWD, DAG.getConstant(0x400, MVT::i16)),
12311 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012312
Dan Gohman475871a2008-07-27 21:46:04 +000012313 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +000012314 DAG.getNode(ISD::AND, DL, MVT::i16,
12315 DAG.getNode(ISD::ADD, DL, MVT::i16,
12316 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +000012317 DAG.getConstant(1, MVT::i16)),
12318 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012319
Duncan Sands83ec4b62008-06-06 12:08:01 +000012320 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +000012321 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000012322}
12323
Craig Topper55b24052012-09-11 06:15:32 +000012324static SDValue LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012325 EVT VT = Op.getValueType();
12326 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +000012327 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012328 SDLoc dl(Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012329
12330 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012331 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +000012332 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +000012333 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +000012334 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012335 }
Evan Cheng18efe262007-12-14 02:13:44 +000012336
Evan Cheng152804e2007-12-14 08:30:15 +000012337 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000012338 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +000012339 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +000012340
12341 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012342 SDValue Ops[] = {
12343 Op,
12344 DAG.getConstant(NumBits+NumBits-1, OpVT),
12345 DAG.getConstant(X86::COND_E, MVT::i8),
12346 Op.getValue(1)
12347 };
12348 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +000012349
12350 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +000012351 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +000012352
Owen Anderson825b72b2009-08-11 20:47:22 +000012353 if (VT == MVT::i8)
12354 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012355 return Op;
12356}
12357
Craig Topper55b24052012-09-11 06:15:32 +000012358static SDValue LowerCTLZ_ZERO_UNDEF(SDValue Op, SelectionDAG &DAG) {
Chandler Carruthacc068e2011-12-24 10:55:54 +000012359 EVT VT = Op.getValueType();
12360 EVT OpVT = VT;
12361 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012362 SDLoc dl(Op);
Chandler Carruthacc068e2011-12-24 10:55:54 +000012363
12364 Op = Op.getOperand(0);
12365 if (VT == MVT::i8) {
12366 // Zero extend to i32 since there is not an i8 bsr.
12367 OpVT = MVT::i32;
12368 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
12369 }
12370
12371 // Issue a bsr (scan bits in reverse).
12372 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
12373 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
12374
12375 // And xor with NumBits-1.
12376 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
12377
12378 if (VT == MVT::i8)
12379 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
12380 return Op;
12381}
12382
Craig Topper55b24052012-09-11 06:15:32 +000012383static SDValue LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012384 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +000012385 unsigned NumBits = VT.getSizeInBits();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012386 SDLoc dl(Op);
Evan Cheng18efe262007-12-14 02:13:44 +000012387 Op = Op.getOperand(0);
Evan Cheng152804e2007-12-14 08:30:15 +000012388
12389 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Chandler Carruth77821022011-12-24 12:12:34 +000012390 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +000012391 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +000012392
12393 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012394 SDValue Ops[] = {
12395 Op,
Chandler Carruth77821022011-12-24 12:12:34 +000012396 DAG.getConstant(NumBits, VT),
Benjamin Kramer7f1a5602009-12-29 16:57:26 +000012397 DAG.getConstant(X86::COND_E, MVT::i8),
12398 Op.getValue(1)
12399 };
Chandler Carruth77821022011-12-24 12:12:34 +000012400 return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
Evan Cheng18efe262007-12-14 02:13:44 +000012401}
12402
Craig Topper13894fa2011-08-24 06:14:18 +000012403// Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
12404// ones, and then concatenate the result back.
12405static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000012406 EVT VT = Op.getValueType();
Craig Topper13894fa2011-08-24 06:14:18 +000012407
Craig Topper7a9a28b2012-08-12 02:23:29 +000012408 assert(VT.is256BitVector() && VT.isInteger() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012409 "Unsupported value type for operation");
12410
Craig Topper66ddd152012-04-27 22:54:43 +000012411 unsigned NumElems = VT.getVectorNumElements();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012412 SDLoc dl(Op);
Craig Topper13894fa2011-08-24 06:14:18 +000012413
12414 // Extract the LHS vectors
12415 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +000012416 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
12417 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Craig Topper13894fa2011-08-24 06:14:18 +000012418
12419 // Extract the RHS vectors
12420 SDValue RHS = Op.getOperand(1);
Craig Topperb14940a2012-04-22 20:55:18 +000012421 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
12422 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
Craig Topper13894fa2011-08-24 06:14:18 +000012423
12424 MVT EltVT = VT.getVectorElementType().getSimpleVT();
12425 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12426
12427 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
12428 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
12429 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
12430}
12431
Craig Topper55b24052012-09-11 06:15:32 +000012432static SDValue LowerADD(SDValue Op, SelectionDAG &DAG) {
Craig Topper7a9a28b2012-08-12 02:23:29 +000012433 assert(Op.getValueType().is256BitVector() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012434 Op.getValueType().isInteger() &&
12435 "Only handle AVX 256-bit vector integer operation");
12436 return Lower256IntArith(Op, DAG);
12437}
12438
Craig Topper55b24052012-09-11 06:15:32 +000012439static SDValue LowerSUB(SDValue Op, SelectionDAG &DAG) {
Craig Topper7a9a28b2012-08-12 02:23:29 +000012440 assert(Op.getValueType().is256BitVector() &&
Craig Topper13894fa2011-08-24 06:14:18 +000012441 Op.getValueType().isInteger() &&
12442 "Only handle AVX 256-bit vector integer operation");
12443 return Lower256IntArith(Op, DAG);
12444}
12445
Craig Topper55b24052012-09-11 06:15:32 +000012446static SDValue LowerMUL(SDValue Op, const X86Subtarget *Subtarget,
12447 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000012448 SDLoc dl(Op);
Craig Topper13894fa2011-08-24 06:14:18 +000012449 EVT VT = Op.getValueType();
12450
12451 // Decompose 256-bit ops into smaller 128-bit ops.
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012452 if (VT.is256BitVector() && !Subtarget->hasInt256())
Craig Topper13894fa2011-08-24 06:14:18 +000012453 return Lower256IntArith(Op, DAG);
12454
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012455 SDValue A = Op.getOperand(0);
12456 SDValue B = Op.getOperand(1);
12457
12458 // Lower v4i32 mul as 2x shuffle, 2x pmuludq, 2x shuffle.
12459 if (VT == MVT::v4i32) {
12460 assert(Subtarget->hasSSE2() && !Subtarget->hasSSE41() &&
12461 "Should not custom lower when pmuldq is available!");
12462
12463 // Extract the odd parts.
Craig Topperda129a22013-07-15 06:54:12 +000012464 static const int UnpackMask[] = { 1, -1, 3, -1 };
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012465 SDValue Aodds = DAG.getVectorShuffle(VT, dl, A, A, UnpackMask);
12466 SDValue Bodds = DAG.getVectorShuffle(VT, dl, B, B, UnpackMask);
12467
12468 // Multiply the even parts.
12469 SDValue Evens = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, A, B);
12470 // Now multiply odd parts.
12471 SDValue Odds = DAG.getNode(X86ISD::PMULUDQ, dl, MVT::v2i64, Aodds, Bodds);
12472
12473 Evens = DAG.getNode(ISD::BITCAST, dl, VT, Evens);
12474 Odds = DAG.getNode(ISD::BITCAST, dl, VT, Odds);
12475
12476 // Merge the two vectors back together with a shuffle. This expands into 2
12477 // shuffles.
Craig Topperda129a22013-07-15 06:54:12 +000012478 static const int ShufMask[] = { 0, 4, 2, 6 };
Benjamin Kramer2f8a6cd2012-12-22 16:07:56 +000012479 return DAG.getVectorShuffle(VT, dl, Evens, Odds, ShufMask);
12480 }
12481
Elena Demikhovsky0cfca3d2013-10-21 13:27:34 +000012482 assert((VT == MVT::v2i64 || VT == MVT::v4i64 || VT == MVT::v8i64) &&
12483 "Only know how to lower V2I64/V4I64/V8I64 multiply");
Craig Topper5b209e82012-02-05 03:14:49 +000012484
Craig Topper5b209e82012-02-05 03:14:49 +000012485 // Ahi = psrlqi(a, 32);
12486 // Bhi = psrlqi(b, 32);
12487 //
12488 // AloBlo = pmuludq(a, b);
12489 // AloBhi = pmuludq(a, Bhi);
12490 // AhiBlo = pmuludq(Ahi, b);
12491
12492 // AloBhi = psllqi(AloBhi, 32);
12493 // AhiBlo = psllqi(AhiBlo, 32);
12494 // return AloBlo + AloBhi + AhiBlo;
12495
Lang Hames1d825372013-10-21 17:51:24 +000012496 SDValue Ahi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, A, 32, DAG);
12497 SDValue Bhi = getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, B, 32, DAG);
Craig Topperaaa643c2011-11-09 07:28:55 +000012498
Craig Topper5b209e82012-02-05 03:14:49 +000012499 // Bit cast to 32-bit vectors for MULUDQ
Elena Demikhovsky0cfca3d2013-10-21 13:27:34 +000012500 EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 :
12501 (VT == MVT::v4i64) ? MVT::v8i32 : MVT::v16i32;
Craig Topper5b209e82012-02-05 03:14:49 +000012502 A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
12503 B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
12504 Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
12505 Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
Craig Topperaaa643c2011-11-09 07:28:55 +000012506
Craig Topper5b209e82012-02-05 03:14:49 +000012507 SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
12508 SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
12509 SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
Craig Topperaaa643c2011-11-09 07:28:55 +000012510
Lang Hames1d825372013-10-21 17:51:24 +000012511 AloBhi = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AloBhi, 32, DAG);
12512 AhiBlo = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, AhiBlo, 32, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +000012513
Dale Johannesene4d209d2009-02-03 20:21:25 +000012514 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
Craig Topper5b209e82012-02-05 03:14:49 +000012515 return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +000012516}
12517
Craig Topper35e194f2013-08-14 07:53:41 +000012518static SDValue LowerSDIV(SDValue Op, SelectionDAG &DAG) {
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012519 EVT VT = Op.getValueType();
12520 EVT EltTy = VT.getVectorElementType();
12521 unsigned NumElts = VT.getVectorNumElements();
12522 SDValue N0 = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000012523 SDLoc dl(Op);
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012524
12525 // Lower sdiv X, pow2-const.
12526 BuildVectorSDNode *C = dyn_cast<BuildVectorSDNode>(Op.getOperand(1));
12527 if (!C)
12528 return SDValue();
12529
12530 APInt SplatValue, SplatUndef;
Elena Demikhovsky87070fe2013-06-26 10:55:03 +000012531 unsigned SplatBitSize;
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012532 bool HasAnyUndefs;
Elena Demikhovsky87070fe2013-06-26 10:55:03 +000012533 if (!C->isConstantSplat(SplatValue, SplatUndef, SplatBitSize,
12534 HasAnyUndefs) ||
12535 EltTy.getSizeInBits() < SplatBitSize)
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012536 return SDValue();
12537
12538 if ((SplatValue != 0) &&
12539 (SplatValue.isPowerOf2() || (-SplatValue).isPowerOf2())) {
Lang Hames1d825372013-10-21 17:51:24 +000012540 unsigned Lg2 = SplatValue.countTrailingZeros();
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012541 // Splat the sign bit.
Michael Liaodc8c0442013-10-15 17:51:02 +000012542 SmallVector<SDValue, 16> Sz(NumElts,
12543 DAG.getConstant(EltTy.getSizeInBits() - 1,
12544 EltTy));
12545 SDValue SGN = DAG.getNode(ISD::SRA, dl, VT, N0,
12546 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Sz[0],
12547 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012548 // Add (N0 < 0) ? abs2 - 1 : 0;
Michael Liaodc8c0442013-10-15 17:51:02 +000012549 SmallVector<SDValue, 16> Amt(NumElts,
Lang Hames1d825372013-10-21 17:51:24 +000012550 DAG.getConstant(EltTy.getSizeInBits() - Lg2,
Michael Liaodc8c0442013-10-15 17:51:02 +000012551 EltTy));
12552 SDValue SRL = DAG.getNode(ISD::SRL, dl, VT, SGN,
12553 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Amt[0],
12554 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012555 SDValue ADD = DAG.getNode(ISD::ADD, dl, VT, N0, SRL);
Lang Hames1d825372013-10-21 17:51:24 +000012556 SmallVector<SDValue, 16> Lg2Amt(NumElts, DAG.getConstant(Lg2, EltTy));
Michael Liaodc8c0442013-10-15 17:51:02 +000012557 SDValue SRA = DAG.getNode(ISD::SRA, dl, VT, ADD,
12558 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Lg2Amt[0],
12559 NumElts));
Nadav Rotem13f8cf52013-01-09 05:14:33 +000012560
12561 // If we're dividing by a positive value, we're done. Otherwise, we must
12562 // negate the result.
12563 if (SplatValue.isNonNegative())
12564 return SRA;
12565
12566 SmallVector<SDValue, 16> V(NumElts, DAG.getConstant(0, EltTy));
12567 SDValue Zero = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], NumElts);
12568 return DAG.getNode(ISD::SUB, dl, VT, Zero, SRA);
12569 }
12570 return SDValue();
12571}
12572
Michael Liao4b7ab122013-03-20 02:20:36 +000012573static SDValue LowerScalarImmediateShift(SDValue Op, SelectionDAG &DAG,
12574 const X86Subtarget *Subtarget) {
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012575 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012576 SDLoc dl(Op);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012577 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +000012578 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +000012579
Nadav Rotem43012222011-05-11 08:12:09 +000012580 // Optimize shl/srl/sra with constant shift amount.
12581 if (isSplatVector(Amt.getNode())) {
12582 SDValue SclrAmt = Amt->getOperand(0);
12583 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
12584 uint64_t ShiftAmt = C->getZExtValue();
12585
Craig Toppered2e13d2012-01-22 19:15:14 +000012586 if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012587 (Subtarget->hasInt256() &&
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012588 (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12589 (Subtarget->hasAVX512() &&
12590 (VT == MVT::v8i64 || VT == MVT::v16i32))) {
Craig Toppered2e13d2012-01-22 19:15:14 +000012591 if (Op.getOpcode() == ISD::SHL)
Lang Hames1d825372013-10-21 17:51:24 +000012592 return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12593 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012594 if (Op.getOpcode() == ISD::SRL)
Lang Hames1d825372013-10-21 17:51:24 +000012595 return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12596 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012597 if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
Lang Hames1d825372013-10-21 17:51:24 +000012598 return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12599 DAG);
Benjamin Kramerdade3c12011-10-30 17:31:21 +000012600 }
12601
Craig Toppered2e13d2012-01-22 19:15:14 +000012602 if (VT == MVT::v16i8) {
12603 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::v8i16, R, ShiftAmt,
12607 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012608 SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
12609 // Zero out the rightmost bits.
12610 SmallVector<SDValue, 16> V(16,
12611 DAG.getConstant(uint8_t(-1U << ShiftAmt),
12612 MVT::i8));
12613 return DAG.getNode(ISD::AND, dl, VT, SHL,
12614 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012615 }
Craig Toppered2e13d2012-01-22 19:15:14 +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::v8i16, R, ShiftAmt,
12620 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012621 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
12622 // Zero out the leftmost bits.
12623 SmallVector<SDValue, 16> V(16,
12624 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12625 MVT::i8));
12626 return DAG.getNode(ISD::AND, dl, VT, SRL,
12627 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
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 Toppered2e13d2012-01-22 19:15:14 +000012634 }
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012635
Craig Toppered2e13d2012-01-22 19:15:14 +000012636 // R s>> a === ((R u>> a) ^ m) - m
12637 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12638 SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
12639 MVT::i8));
12640 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
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.");
Eli Friedmanf6aa6b12011-11-01 21:18:39 +000012646 }
Craig Topper46154eb2011-11-11 07:39:23 +000012647
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000012648 if (Subtarget->hasInt256() && VT == MVT::v32i8) {
Craig Topper0d86d462011-11-20 00:12:05 +000012649 if (Op.getOpcode() == ISD::SHL) {
12650 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012651 SDValue SHL = getTargetVShiftByConstNode(X86ISD::VSHLI, dl,
12652 MVT::v16i16, R, ShiftAmt,
12653 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012654 SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
Craig Topper0d86d462011-11-20 00:12:05 +000012655 // Zero out the rightmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000012656 SmallVector<SDValue, 32> V(32,
12657 DAG.getConstant(uint8_t(-1U << ShiftAmt),
12658 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000012659 return DAG.getNode(ISD::AND, dl, VT, SHL,
12660 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
Craig Topper46154eb2011-11-11 07:39:23 +000012661 }
Craig Topper0d86d462011-11-20 00:12:05 +000012662 if (Op.getOpcode() == ISD::SRL) {
12663 // Make a large shift.
Lang Hames1d825372013-10-21 17:51:24 +000012664 SDValue SRL = getTargetVShiftByConstNode(X86ISD::VSRLI, dl,
12665 MVT::v16i16, R, ShiftAmt,
12666 DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012667 SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
Craig Topper0d86d462011-11-20 00:12:05 +000012668 // Zero out the leftmost bits.
Craig Toppered2e13d2012-01-22 19:15:14 +000012669 SmallVector<SDValue, 32> V(32,
12670 DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
12671 MVT::i8));
Craig Topper0d86d462011-11-20 00:12:05 +000012672 return DAG.getNode(ISD::AND, dl, VT, SRL,
12673 DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
12674 }
12675 if (Op.getOpcode() == ISD::SRA) {
12676 if (ShiftAmt == 7) {
12677 // R s>> 7 === R s< 0
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000012678 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topper67609fd2012-01-22 22:42:16 +000012679 return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
Craig Topper0d86d462011-11-20 00:12:05 +000012680 }
12681
12682 // R s>> a === ((R u>> a) ^ m) - m
12683 SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
12684 SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
12685 MVT::i8));
12686 SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
12687 Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
12688 Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
12689 return Res;
12690 }
Craig Topper731dfd02012-04-23 03:42:40 +000012691 llvm_unreachable("Unknown shift opcode.");
Craig Topper0d86d462011-11-20 00:12:05 +000012692 }
Nadav Rotem43012222011-05-11 08:12:09 +000012693 }
12694 }
12695
Michael Liao42317cc2013-03-20 02:33:21 +000012696 // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12697 if (!Subtarget->is64Bit() &&
12698 (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64)) &&
12699 Amt.getOpcode() == ISD::BITCAST &&
12700 Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12701 Amt = Amt.getOperand(0);
12702 unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12703 VT.getVectorNumElements();
12704 unsigned RatioInLog2 = Log2_32_Ceil(Ratio);
12705 uint64_t ShiftAmt = 0;
12706 for (unsigned i = 0; i != Ratio; ++i) {
12707 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Amt.getOperand(i));
12708 if (C == 0)
12709 return SDValue();
12710 // 6 == Log2(64)
12711 ShiftAmt |= C->getZExtValue() << (i * (1 << (6 - RatioInLog2)));
12712 }
12713 // Check remaining shift amounts.
12714 for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12715 uint64_t ShAmt = 0;
12716 for (unsigned j = 0; j != Ratio; ++j) {
12717 ConstantSDNode *C =
12718 dyn_cast<ConstantSDNode>(Amt.getOperand(i + j));
12719 if (C == 0)
12720 return SDValue();
12721 // 6 == Log2(64)
12722 ShAmt |= C->getZExtValue() << (j * (1 << (6 - RatioInLog2)));
12723 }
12724 if (ShAmt != ShiftAmt)
12725 return SDValue();
12726 }
12727 switch (Op.getOpcode()) {
12728 default:
12729 llvm_unreachable("Unknown shift opcode!");
12730 case ISD::SHL:
Lang Hames1d825372013-10-21 17:51:24 +000012731 return getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, R, ShiftAmt,
12732 DAG);
Michael Liao42317cc2013-03-20 02:33:21 +000012733 case ISD::SRL:
Lang Hames1d825372013-10-21 17:51:24 +000012734 return getTargetVShiftByConstNode(X86ISD::VSRLI, dl, VT, R, ShiftAmt,
12735 DAG);
Michael Liao42317cc2013-03-20 02:33:21 +000012736 case ISD::SRA:
Lang Hames1d825372013-10-21 17:51:24 +000012737 return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, R, ShiftAmt,
12738 DAG);
Michael Liao42317cc2013-03-20 02:33:21 +000012739 }
12740 }
12741
12742 return SDValue();
12743}
12744
12745static SDValue LowerScalarVariableShift(SDValue Op, SelectionDAG &DAG,
12746 const X86Subtarget* Subtarget) {
12747 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012748 SDLoc dl(Op);
Michael Liao42317cc2013-03-20 02:33:21 +000012749 SDValue R = Op.getOperand(0);
12750 SDValue Amt = Op.getOperand(1);
12751
12752 if ((VT == MVT::v2i64 && Op.getOpcode() != ISD::SRA) ||
12753 VT == MVT::v4i32 || VT == MVT::v8i16 ||
12754 (Subtarget->hasInt256() &&
12755 ((VT == MVT::v4i64 && Op.getOpcode() != ISD::SRA) ||
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012756 VT == MVT::v8i32 || VT == MVT::v16i16)) ||
12757 (Subtarget->hasAVX512() && (VT == MVT::v8i64 || VT == MVT::v16i32))) {
Michael Liao42317cc2013-03-20 02:33:21 +000012758 SDValue BaseShAmt;
12759 EVT EltVT = VT.getVectorElementType();
12760
12761 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12762 unsigned NumElts = VT.getVectorNumElements();
12763 unsigned i, j;
12764 for (i = 0; i != NumElts; ++i) {
12765 if (Amt.getOperand(i).getOpcode() == ISD::UNDEF)
12766 continue;
12767 break;
12768 }
12769 for (j = i; j != NumElts; ++j) {
12770 SDValue Arg = Amt.getOperand(j);
12771 if (Arg.getOpcode() == ISD::UNDEF) continue;
12772 if (Arg != Amt.getOperand(i))
12773 break;
12774 }
12775 if (i != NumElts && j == NumElts)
12776 BaseShAmt = Amt.getOperand(i);
12777 } else {
12778 if (Amt.getOpcode() == ISD::EXTRACT_SUBVECTOR)
12779 Amt = Amt.getOperand(0);
12780 if (Amt.getOpcode() == ISD::VECTOR_SHUFFLE &&
12781 cast<ShuffleVectorSDNode>(Amt)->isSplat()) {
12782 SDValue InVec = Amt.getOperand(0);
12783 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12784 unsigned NumElts = InVec.getValueType().getVectorNumElements();
12785 unsigned i = 0;
12786 for (; i != NumElts; ++i) {
12787 SDValue Arg = InVec.getOperand(i);
12788 if (Arg.getOpcode() == ISD::UNDEF) continue;
12789 BaseShAmt = Arg;
12790 break;
12791 }
12792 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12793 if (ConstantSDNode *C =
12794 dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12795 unsigned SplatIdx =
12796 cast<ShuffleVectorSDNode>(Amt)->getSplatIndex();
12797 if (C->getZExtValue() == SplatIdx)
12798 BaseShAmt = InVec.getOperand(1);
12799 }
12800 }
12801 if (BaseShAmt.getNode() == 0)
12802 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Amt,
12803 DAG.getIntPtrConstant(0));
12804 }
12805 }
12806
12807 if (BaseShAmt.getNode()) {
12808 if (EltVT.bitsGT(MVT::i32))
12809 BaseShAmt = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, BaseShAmt);
12810 else if (EltVT.bitsLT(MVT::i32))
12811 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, BaseShAmt);
12812
12813 switch (Op.getOpcode()) {
12814 default:
12815 llvm_unreachable("Unknown shift opcode!");
12816 case ISD::SHL:
12817 switch (VT.getSimpleVT().SimpleTy) {
12818 default: return SDValue();
12819 case MVT::v2i64:
12820 case MVT::v4i32:
12821 case MVT::v8i16:
12822 case MVT::v4i64:
12823 case MVT::v8i32:
12824 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012825 case MVT::v16i32:
12826 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012827 return getTargetVShiftNode(X86ISD::VSHLI, dl, VT, R, BaseShAmt, DAG);
12828 }
12829 case ISD::SRA:
12830 switch (VT.getSimpleVT().SimpleTy) {
12831 default: return SDValue();
12832 case MVT::v4i32:
12833 case MVT::v8i16:
12834 case MVT::v8i32:
12835 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012836 case MVT::v16i32:
12837 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012838 return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, R, BaseShAmt, DAG);
12839 }
12840 case ISD::SRL:
12841 switch (VT.getSimpleVT().SimpleTy) {
12842 default: return SDValue();
12843 case MVT::v2i64:
12844 case MVT::v4i32:
12845 case MVT::v8i16:
12846 case MVT::v4i64:
12847 case MVT::v8i32:
12848 case MVT::v16i16:
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012849 case MVT::v16i32:
12850 case MVT::v8i64:
Michael Liao42317cc2013-03-20 02:33:21 +000012851 return getTargetVShiftNode(X86ISD::VSRLI, dl, VT, R, BaseShAmt, DAG);
12852 }
12853 }
12854 }
12855 }
12856
12857 // Special case in 32-bit mode, where i64 is expanded into high and low parts.
12858 if (!Subtarget->is64Bit() &&
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012859 (VT == MVT::v2i64 || (Subtarget->hasInt256() && VT == MVT::v4i64) ||
12860 (Subtarget->hasAVX512() && VT == MVT::v8i64)) &&
Michael Liao42317cc2013-03-20 02:33:21 +000012861 Amt.getOpcode() == ISD::BITCAST &&
12862 Amt.getOperand(0).getOpcode() == ISD::BUILD_VECTOR) {
12863 Amt = Amt.getOperand(0);
12864 unsigned Ratio = Amt.getValueType().getVectorNumElements() /
12865 VT.getVectorNumElements();
12866 std::vector<SDValue> Vals(Ratio);
12867 for (unsigned i = 0; i != Ratio; ++i)
12868 Vals[i] = Amt.getOperand(i);
12869 for (unsigned i = Ratio; i != Amt.getNumOperands(); i += Ratio) {
12870 for (unsigned j = 0; j != Ratio; ++j)
12871 if (Vals[j] != Amt.getOperand(i + j))
12872 return SDValue();
12873 }
12874 switch (Op.getOpcode()) {
12875 default:
12876 llvm_unreachable("Unknown shift opcode!");
12877 case ISD::SHL:
12878 return DAG.getNode(X86ISD::VSHL, dl, VT, R, Op.getOperand(1));
12879 case ISD::SRL:
12880 return DAG.getNode(X86ISD::VSRL, dl, VT, R, Op.getOperand(1));
12881 case ISD::SRA:
12882 return DAG.getNode(X86ISD::VSRA, dl, VT, R, Op.getOperand(1));
12883 }
12884 }
12885
Michael Liao4b7ab122013-03-20 02:20:36 +000012886 return SDValue();
12887}
12888
Craig Topper35e194f2013-08-14 07:53:41 +000012889static SDValue LowerShift(SDValue Op, const X86Subtarget* Subtarget,
12890 SelectionDAG &DAG) {
Michael Liao4b7ab122013-03-20 02:20:36 +000012891
12892 EVT VT = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000012893 SDLoc dl(Op);
Michael Liao4b7ab122013-03-20 02:20:36 +000012894 SDValue R = Op.getOperand(0);
12895 SDValue Amt = Op.getOperand(1);
12896 SDValue V;
12897
12898 if (!Subtarget->hasSSE2())
12899 return SDValue();
12900
12901 V = LowerScalarImmediateShift(Op, DAG, Subtarget);
12902 if (V.getNode())
12903 return V;
12904
Michael Liao42317cc2013-03-20 02:33:21 +000012905 V = LowerScalarVariableShift(Op, DAG, Subtarget);
12906 if (V.getNode())
12907 return V;
12908
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000012909 if (Subtarget->hasAVX512() && (VT == MVT::v16i32 || VT == MVT::v8i64))
12910 return Op;
Michael Liao5c5f1902013-03-20 02:28:20 +000012911 // AVX2 has VPSLLV/VPSRAV/VPSRLV.
12912 if (Subtarget->hasInt256()) {
12913 if (Op.getOpcode() == ISD::SRL &&
12914 (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12915 VT == MVT::v4i64 || VT == MVT::v8i32))
12916 return Op;
12917 if (Op.getOpcode() == ISD::SHL &&
12918 (VT == MVT::v2i64 || VT == MVT::v4i32 ||
12919 VT == MVT::v4i64 || VT == MVT::v8i32))
12920 return Op;
12921 if (Op.getOpcode() == ISD::SRA && (VT == MVT::v4i32 || VT == MVT::v8i32))
12922 return Op;
12923 }
12924
Nadav Rotem43012222011-05-11 08:12:09 +000012925 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +000012926 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Benjamin Kramera220aeb2013-02-04 15:19:33 +000012927 Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(23, VT));
Nate Begeman51409212010-07-28 00:21:48 +000012928
Benjamin Kramer9fa92512013-02-04 15:19:25 +000012929 Op = DAG.getNode(ISD::ADD, dl, VT, Op, DAG.getConstant(0x3f800000U, VT));
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012930 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +000012931 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
12932 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
12933 }
Nadav Rotem43012222011-05-11 08:12:09 +000012934 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Craig Topper8b5a6b62012-01-17 08:23:44 +000012935 assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
Lang Hames8b99c1e2011-12-17 01:08:46 +000012936
Nate Begeman51409212010-07-28 00:21:48 +000012937 // a = a << 5;
Benjamin Kramera220aeb2013-02-04 15:19:33 +000012938 Op = DAG.getNode(ISD::SHL, dl, VT, Amt, DAG.getConstant(5, VT));
Craig Toppered2e13d2012-01-22 19:15:14 +000012939 Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
Nate Begeman51409212010-07-28 00:21:48 +000012940
Lang Hames8b99c1e2011-12-17 01:08:46 +000012941 // Turn 'a' into a mask suitable for VSELECT
12942 SDValue VSelM = DAG.getConstant(0x80, VT);
12943 SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012944 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Nate Begeman51409212010-07-28 00:21:48 +000012945
Lang Hames8b99c1e2011-12-17 01:08:46 +000012946 SDValue CM1 = DAG.getConstant(0x0f, VT);
12947 SDValue CM2 = DAG.getConstant(0x3f, VT);
Nate Begeman51409212010-07-28 00:21:48 +000012948
Lang Hames8b99c1e2011-12-17 01:08:46 +000012949 // r = VSELECT(r, psllw(r & (char16)15, 4), a);
12950 SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
Lang Hames1d825372013-10-21 17:51:24 +000012951 M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 4, DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012952 M = DAG.getNode(ISD::BITCAST, dl, VT, M);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012953 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12954
Nate Begeman51409212010-07-28 00:21:48 +000012955 // a += a
12956 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012957 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012958 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012959
Lang Hames8b99c1e2011-12-17 01:08:46 +000012960 // r = VSELECT(r, psllw(r & (char16)63, 2), a);
12961 M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
Lang Hames1d825372013-10-21 17:51:24 +000012962 M = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, MVT::v8i16, M, 2, DAG);
Craig Toppered2e13d2012-01-22 19:15:14 +000012963 M = DAG.getNode(ISD::BITCAST, dl, VT, M);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012964 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
12965
Nate Begeman51409212010-07-28 00:21:48 +000012966 // a += a
12967 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Lang Hames8b99c1e2011-12-17 01:08:46 +000012968 OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
Craig Topper67609fd2012-01-22 22:42:16 +000012969 OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
Michael J. Spencerec38de22010-10-10 22:04:20 +000012970
Lang Hames8b99c1e2011-12-17 01:08:46 +000012971 // return VSELECT(r, r+r, a);
12972 R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
Lang Hamesa0a25132011-12-15 18:57:27 +000012973 DAG.getNode(ISD::ADD, dl, VT, R, R), R);
Nate Begeman51409212010-07-28 00:21:48 +000012974 return R;
12975 }
Craig Topper46154eb2011-11-11 07:39:23 +000012976
12977 // Decompose 256-bit shifts into smaller 128-bit shifts.
Craig Topper7a9a28b2012-08-12 02:23:29 +000012978 if (VT.is256BitVector()) {
Craig Toppered2e13d2012-01-22 19:15:14 +000012979 unsigned NumElems = VT.getVectorNumElements();
Craig Topper46154eb2011-11-11 07:39:23 +000012980 MVT EltVT = VT.getVectorElementType().getSimpleVT();
12981 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
12982
12983 // Extract the two vectors
Craig Topperb14940a2012-04-22 20:55:18 +000012984 SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
12985 SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000012986
12987 // Recreate the shift amount vectors
12988 SDValue Amt1, Amt2;
12989 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
12990 // Constant shift amount
12991 SmallVector<SDValue, 4> Amt1Csts;
12992 SmallVector<SDValue, 4> Amt2Csts;
Craig Toppered2e13d2012-01-22 19:15:14 +000012993 for (unsigned i = 0; i != NumElems/2; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000012994 Amt1Csts.push_back(Amt->getOperand(i));
Craig Toppered2e13d2012-01-22 19:15:14 +000012995 for (unsigned i = NumElems/2; i != NumElems; ++i)
Craig Topper46154eb2011-11-11 07:39:23 +000012996 Amt2Csts.push_back(Amt->getOperand(i));
12997
12998 Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
12999 &Amt1Csts[0], NumElems/2);
13000 Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
13001 &Amt2Csts[0], NumElems/2);
13002 } else {
13003 // Variable shift amount
Craig Topperb14940a2012-04-22 20:55:18 +000013004 Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
13005 Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
Craig Topper46154eb2011-11-11 07:39:23 +000013006 }
13007
13008 // Issue new vector shifts for the smaller types
13009 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
13010 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
13011
13012 // Concatenate the result back
13013 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
13014 }
13015
Nate Begeman51409212010-07-28 00:21:48 +000013016 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +000013017}
Mon P Wangaf9b9522008-12-18 21:42:19 +000013018
Craig Topper55b24052012-09-11 06:15:32 +000013019static SDValue LowerXALUO(SDValue Op, SelectionDAG &DAG) {
Bill Wendling74c37652008-12-09 22:08:41 +000013020 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
13021 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +000013022 // looks for this combo and may remove the "setcc" instruction if the "setcc"
13023 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +000013024 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +000013025 SDValue LHS = N->getOperand(0);
13026 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +000013027 unsigned BaseOp = 0;
13028 unsigned Cond = 0;
Andrew Trickac6d9be2013-05-25 02:42:55 +000013029 SDLoc DL(Op);
Bill Wendling74c37652008-12-09 22:08:41 +000013030 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000013031 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +000013032 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +000013033 // A subtract of one will be selected as a INC. Note that INC doesn't
13034 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000013035 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13036 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000013037 BaseOp = X86ISD::INC;
13038 Cond = X86::COND_O;
13039 break;
13040 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000013041 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +000013042 Cond = X86::COND_O;
13043 break;
13044 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000013045 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +000013046 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000013047 break;
13048 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +000013049 // A subtract of one will be selected as a DEC. Note that DEC doesn't
13050 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000013051 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
13052 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000013053 BaseOp = X86ISD::DEC;
13054 Cond = X86::COND_O;
13055 break;
13056 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000013057 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +000013058 Cond = X86::COND_O;
13059 break;
13060 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000013061 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +000013062 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000013063 break;
13064 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +000013065 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +000013066 Cond = X86::COND_O;
13067 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013068 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
13069 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
13070 MVT::i32);
13071 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013072
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013073 SDValue SetCC =
13074 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
13075 DAG.getConstant(X86::COND_O, MVT::i32),
13076 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013077
Dan Gohman6e5fda22011-07-22 18:45:15 +000013078 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013079 }
Bill Wendling74c37652008-12-09 22:08:41 +000013080 }
Bill Wendling3fafd932008-11-26 22:37:40 +000013081
Bill Wendling61edeb52008-12-02 01:06:39 +000013082 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000013083 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013084 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +000013085
Bill Wendling61edeb52008-12-02 01:06:39 +000013086 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +000013087 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
13088 DAG.getConstant(Cond, MVT::i32),
13089 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +000013090
Dan Gohman6e5fda22011-07-22 18:45:15 +000013091 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +000013092}
13093
Chad Rosier30450e82011-12-22 22:35:21 +000013094SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
13095 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013096 SDLoc dl(Op);
Craig Toppera124f942011-11-21 01:12:36 +000013097 EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
13098 EVT VT = Op.getValueType();
13099
Craig Toppered2e13d2012-01-22 19:15:14 +000013100 if (!Subtarget->hasSSE2() || !VT.isVector())
13101 return SDValue();
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013102
Craig Toppered2e13d2012-01-22 19:15:14 +000013103 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
13104 ExtraVT.getScalarType().getSizeInBits();
Craig Toppered2e13d2012-01-22 19:15:14 +000013105
13106 switch (VT.getSimpleVT().SimpleTy) {
13107 default: return SDValue();
13108 case MVT::v8i32:
13109 case MVT::v16i16:
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000013110 if (!Subtarget->hasFp256())
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013111 return SDValue();
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000013112 if (!Subtarget->hasInt256()) {
Craig Toppered2e13d2012-01-22 19:15:14 +000013113 // needs to be split
Craig Topper66ddd152012-04-27 22:54:43 +000013114 unsigned NumElems = VT.getVectorNumElements();
Craig Toppera124f942011-11-21 01:12:36 +000013115
Craig Toppered2e13d2012-01-22 19:15:14 +000013116 // Extract the LHS vectors
13117 SDValue LHS = Op.getOperand(0);
Craig Topperb14940a2012-04-22 20:55:18 +000013118 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
13119 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
Craig Toppera124f942011-11-21 01:12:36 +000013120
Craig Toppered2e13d2012-01-22 19:15:14 +000013121 MVT EltVT = VT.getVectorElementType().getSimpleVT();
13122 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
Craig Toppera124f942011-11-21 01:12:36 +000013123
Craig Toppered2e13d2012-01-22 19:15:14 +000013124 EVT ExtraEltVT = ExtraVT.getVectorElementType();
Craig Topperb6072642012-05-03 07:26:59 +000013125 unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
Craig Toppered2e13d2012-01-22 19:15:14 +000013126 ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
13127 ExtraNumElems/2);
13128 SDValue Extra = DAG.getValueType(ExtraVT);
Craig Toppera124f942011-11-21 01:12:36 +000013129
Craig Toppered2e13d2012-01-22 19:15:14 +000013130 LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
13131 LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
Craig Toppera124f942011-11-21 01:12:36 +000013132
Dmitri Gribenko2de05722012-09-10 21:26:47 +000013133 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);
Craig Toppered2e13d2012-01-22 19:15:14 +000013134 }
13135 // fall through
13136 case MVT::v4i32:
13137 case MVT::v8i16: {
Nadav Rotemb05130e2013-03-19 18:38:27 +000013138 SDValue Op0 = Op.getOperand(0);
13139 SDValue Op00 = Op0.getOperand(0);
13140 SDValue Tmp1;
13141 // Hopefully, this VECTOR_SHUFFLE is just a VZEXT.
13142 if (Op0.getOpcode() == ISD::BITCAST &&
Bill Wendlingb1df5b02013-11-27 06:36:20 +000013143 Op00.getOpcode() == ISD::VECTOR_SHUFFLE) {
13144 // (sext (vzext x)) -> (vsext x)
Craig Topper158ec072013-08-14 07:34:43 +000013145 Tmp1 = LowerVectorIntExtend(Op00, Subtarget, DAG);
Bill Wendlingb1df5b02013-11-27 06:36:20 +000013146 if (Tmp1.getNode()) {
13147 EVT ExtraEltVT = ExtraVT.getVectorElementType();
13148 // This folding is only valid when the in-reg type is a vector of i8,
13149 // i16, or i32.
13150 if (ExtraEltVT == MVT::i8 || ExtraEltVT == MVT::i16 ||
13151 ExtraEltVT == MVT::i32) {
13152 SDValue Tmp1Op0 = Tmp1.getOperand(0);
13153 assert(Tmp1Op0.getOpcode() == X86ISD::VZEXT &&
13154 "This optimization is invalid without a VZEXT.");
13155 return DAG.getNode(X86ISD::VSEXT, dl, VT, Tmp1Op0.getOperand(0));
13156 }
13157 Op0 = Tmp1;
13158 }
Nadav Rotemb05130e2013-03-19 18:38:27 +000013159 }
13160
13161 // If the above didn't work, then just use Shift-Left + Shift-Right.
Lang Hames1d825372013-10-21 17:51:24 +000013162 Tmp1 = getTargetVShiftByConstNode(X86ISD::VSHLI, dl, VT, Op0, BitsDiff,
13163 DAG);
13164 return getTargetVShiftByConstNode(X86ISD::VSRAI, dl, VT, Tmp1, BitsDiff,
13165 DAG);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013166 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013167 }
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013168}
13169
Craig Topper55b24052012-09-11 06:15:32 +000013170static SDValue LowerATOMIC_FENCE(SDValue Op, const X86Subtarget *Subtarget,
13171 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013172 SDLoc dl(Op);
Eli Friedman14648462011-07-27 22:21:52 +000013173 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
13174 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
13175 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
13176 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
13177
13178 // The only fence that needs an instruction is a sequentially-consistent
13179 // cross-thread fence.
13180 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
13181 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
13182 // no-sse2). There isn't any reason to disable it if the target processor
13183 // supports it.
Craig Topper1accb7e2012-01-10 06:54:16 +000013184 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
Eli Friedman14648462011-07-27 22:21:52 +000013185 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
13186
13187 SDValue Chain = Op.getOperand(0);
13188 SDValue Zero = DAG.getConstant(0, MVT::i32);
13189 SDValue Ops[] = {
13190 DAG.getRegister(X86::ESP, MVT::i32), // Base
13191 DAG.getTargetConstant(1, MVT::i8), // Scale
13192 DAG.getRegister(0, MVT::i32), // Index
13193 DAG.getTargetConstant(0, MVT::i32), // Disp
13194 DAG.getRegister(0, MVT::i32), // Segment.
13195 Zero,
13196 Chain
13197 };
Michael Liao2a8bea72013-04-19 22:22:57 +000013198 SDNode *Res = DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops);
Eli Friedman14648462011-07-27 22:21:52 +000013199 return SDValue(Res, 0);
13200 }
13201
13202 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
13203 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
13204}
13205
Craig Topper55b24052012-09-11 06:15:32 +000013206static SDValue LowerCMP_SWAP(SDValue Op, const X86Subtarget *Subtarget,
13207 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +000013208 EVT T = Op.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013209 SDLoc DL(Op);
Andrew Lenhartha76e2f02008-03-04 21:13:33 +000013210 unsigned Reg = 0;
13211 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +000013212 switch(T.getSimpleVT().SimpleTy) {
Craig Topperabb94d02012-02-05 03:43:23 +000013213 default: llvm_unreachable("Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +000013214 case MVT::i8: Reg = X86::AL; size = 1; break;
13215 case MVT::i16: Reg = X86::AX; size = 2; break;
13216 case MVT::i32: Reg = X86::EAX; size = 4; break;
13217 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +000013218 assert(Subtarget->is64Bit() && "Node not type legal!");
13219 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +000013220 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000013221 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013222 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +000013223 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +000013224 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +000013225 Op.getOperand(1),
13226 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +000013227 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +000013228 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013229 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013230 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
13231 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
Michael Liao0ee17002013-04-19 04:03:37 +000013232 Ops, array_lengthof(Ops), T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +000013233 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +000013234 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +000013235 return cpOut;
13236}
13237
Craig Topper55b24052012-09-11 06:15:32 +000013238static SDValue LowerREADCYCLECOUNTER(SDValue Op, const X86Subtarget *Subtarget,
13239 SelectionDAG &DAG) {
Duncan Sands1607f052008-12-01 11:39:25 +000013240 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013241 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000013242 SDValue TheChain = Op.getOperand(0);
Andrew Trickac6d9be2013-05-25 02:42:55 +000013243 SDLoc dl(Op);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013244 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013245 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
13246 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +000013247 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +000013248 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
13249 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +000013250 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +000013251 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +000013252 rdx.getValue(1)
13253 };
Michael Liao0ee17002013-04-19 04:03:37 +000013254 return DAG.getMergeValues(Ops, array_lengthof(Ops), dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000013255}
13256
Craig Topper35e194f2013-08-14 07:53:41 +000013257static SDValue LowerBITCAST(SDValue Op, const X86Subtarget *Subtarget,
13258 SelectionDAG &DAG) {
Craig Topper5a0910b2013-08-15 02:33:50 +000013259 MVT SrcVT = Op.getOperand(0).getSimpleValueType();
13260 MVT DstVT = Op.getSimpleValueType();
Craig Topper1accb7e2012-01-10 06:54:16 +000013261 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
Chris Lattner2a786eb2010-12-19 20:19:20 +000013262 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +000013263 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +000013264 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013265 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +000013266 // i64 <=> MMX conversions are Legal.
13267 if (SrcVT==MVT::i64 && DstVT.isVector())
13268 return Op;
13269 if (DstVT==MVT::i64 && SrcVT.isVector())
13270 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +000013271 // MMX <=> MMX conversions are Legal.
13272 if (SrcVT.isVector() && DstVT.isVector())
13273 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +000013274 // All other conversions need to be expanded.
13275 return SDValue();
13276}
Chris Lattner5b856542010-12-20 00:59:46 +000013277
Craig Topper55b24052012-09-11 06:15:32 +000013278static SDValue LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
Dale Johannesen71d1bf52008-09-29 22:25:26 +000013279 SDNode *Node = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013280 SDLoc dl(Node);
Owen Andersone50ed302009-08-10 22:56:29 +000013281 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013282 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +000013283 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +000013284 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013285 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +000013286 Node->getOperand(0),
13287 Node->getOperand(1), negOp,
13288 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +000013289 cast<AtomicSDNode>(Node)->getAlignment(),
13290 cast<AtomicSDNode>(Node)->getOrdering(),
13291 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +000013292}
13293
Eli Friedman327236c2011-08-24 20:50:09 +000013294static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
13295 SDNode *Node = Op.getNode();
Andrew Trickac6d9be2013-05-25 02:42:55 +000013296 SDLoc dl(Node);
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013297 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
Eli Friedman327236c2011-08-24 20:50:09 +000013298
13299 // Convert seq_cst store -> xchg
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013300 // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
13301 // FIXME: On 32-bit, store -> fist or movq would be more efficient
13302 // (The only way to get a 16-byte store is cmpxchg16b)
13303 // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
13304 if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
13305 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Eli Friedman4317fe12011-08-24 21:17:30 +000013306 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
13307 cast<AtomicSDNode>(Node)->getMemoryVT(),
13308 Node->getOperand(0),
13309 Node->getOperand(1), Node->getOperand(2),
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013310 cast<AtomicSDNode>(Node)->getMemOperand(),
Eli Friedman4317fe12011-08-24 21:17:30 +000013311 cast<AtomicSDNode>(Node)->getOrdering(),
13312 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman327236c2011-08-24 20:50:09 +000013313 return Swap.getValue(1);
13314 }
13315 // Other atomic stores have a simple pattern.
13316 return Op;
13317}
13318
Chris Lattner5b856542010-12-20 00:59:46 +000013319static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
13320 EVT VT = Op.getNode()->getValueType(0);
13321
13322 // Let legalize expand this if it isn't a legal type yet.
13323 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
13324 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013325
Chris Lattner5b856542010-12-20 00:59:46 +000013326 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013327
Chris Lattner5b856542010-12-20 00:59:46 +000013328 unsigned Opc;
13329 bool ExtraOp = false;
13330 switch (Op.getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000013331 default: llvm_unreachable("Invalid code");
Chris Lattner5b856542010-12-20 00:59:46 +000013332 case ISD::ADDC: Opc = X86ISD::ADD; break;
13333 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
13334 case ISD::SUBC: Opc = X86ISD::SUB; break;
13335 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
13336 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013337
Chris Lattner5b856542010-12-20 00:59:46 +000013338 if (!ExtraOp)
Andrew Trickac6d9be2013-05-25 02:42:55 +000013339 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Chris Lattner5b856542010-12-20 00:59:46 +000013340 Op.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000013341 return DAG.getNode(Opc, SDLoc(Op), VTs, Op.getOperand(0),
Chris Lattner5b856542010-12-20 00:59:46 +000013342 Op.getOperand(1), Op.getOperand(2));
13343}
13344
Craig Topper35e194f2013-08-14 07:53:41 +000013345static SDValue LowerFSINCOS(SDValue Op, const X86Subtarget *Subtarget,
13346 SelectionDAG &DAG) {
Evan Chenga66f40a2013-01-30 22:56:35 +000013347 assert(Subtarget->isTargetDarwin() && Subtarget->is64Bit());
Eric Christophere187e252013-01-31 00:50:48 +000013348
Evan Cheng8688a582013-01-29 02:32:37 +000013349 // For MacOSX, we want to call an alternative entry point: __sincos_stret,
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013350 // which returns the values as { float, float } (in XMM0) or
13351 // { double, double } (which is returned in XMM0, XMM1).
Andrew Trickac6d9be2013-05-25 02:42:55 +000013352 SDLoc dl(Op);
Evan Cheng8688a582013-01-29 02:32:37 +000013353 SDValue Arg = Op.getOperand(0);
13354 EVT ArgVT = Arg.getValueType();
13355 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Eric Christophere187e252013-01-31 00:50:48 +000013356
Craig Topper35e194f2013-08-14 07:53:41 +000013357 TargetLowering::ArgListTy Args;
13358 TargetLowering::ArgListEntry Entry;
Eric Christophere187e252013-01-31 00:50:48 +000013359
Evan Cheng8688a582013-01-29 02:32:37 +000013360 Entry.Node = Arg;
13361 Entry.Ty = ArgTy;
13362 Entry.isSExt = false;
13363 Entry.isZExt = false;
13364 Args.push_back(Entry);
Evan Chenga66f40a2013-01-30 22:56:35 +000013365
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013366 bool isF64 = ArgVT == MVT::f64;
Evan Chenga66f40a2013-01-30 22:56:35 +000013367 // Only optimize x86_64 for now. i386 is a bit messy. For f32,
13368 // the small struct {f32, f32} is returned in (eax, edx). For f64,
13369 // the results are returned via SRet in memory.
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013370 const char *LibcallName = isF64 ? "__sincos_stret" : "__sincosf_stret";
Craig Topper35e194f2013-08-14 07:53:41 +000013371 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13372 SDValue Callee = DAG.getExternalSymbol(LibcallName, TLI.getPointerTy());
Evan Chenga66f40a2013-01-30 22:56:35 +000013373
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013374 Type *RetTy = isF64
13375 ? (Type*)StructType::get(ArgTy, ArgTy, NULL)
13376 : (Type*)VectorType::get(ArgTy, 4);
Evan Cheng8688a582013-01-29 02:32:37 +000013377 TargetLowering::
Evan Chenga66f40a2013-01-30 22:56:35 +000013378 CallLoweringInfo CLI(DAG.getEntryNode(), RetTy,
13379 false, false, false, false, 0,
13380 CallingConv::C, /*isTaillCall=*/false,
13381 /*doesNotRet=*/false, /*isReturnValueUsed*/true,
13382 Callee, Args, DAG, dl);
Craig Topper35e194f2013-08-14 07:53:41 +000013383 std::pair<SDValue, SDValue> CallResult = TLI.LowerCallTo(CLI);
Evan Cheng3a6b7d32013-04-10 01:26:07 +000013384
13385 if (isF64)
13386 // Returned in xmm0 and xmm1.
13387 return CallResult.first;
13388
13389 // Returned in bits 0:31 and 32:64 xmm0.
13390 SDValue SinVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13391 CallResult.first, DAG.getIntPtrConstant(0));
13392 SDValue CosVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, ArgVT,
13393 CallResult.first, DAG.getIntPtrConstant(1));
13394 SDVTList Tys = DAG.getVTList(ArgVT, ArgVT);
13395 return DAG.getNode(ISD::MERGE_VALUES, dl, Tys, SinVal, CosVal);
Evan Cheng8688a582013-01-29 02:32:37 +000013396}
13397
Evan Cheng0db9fe62006-04-25 20:13:52 +000013398/// LowerOperation - Provide custom lowering hooks for some operations.
13399///
Dan Gohmand858e902010-04-17 15:26:15 +000013400SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +000013401 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000013402 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013403 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013404 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op, Subtarget, DAG);
13405 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op, Subtarget, DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013406 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Eli Friedman327236c2011-08-24 20:50:09 +000013407 case ISD::ATOMIC_STORE: return LowerATOMIC_STORE(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013408 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +000013409 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013410 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
13411 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
13412 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013413 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op,Subtarget,DAG);
13414 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, Subtarget,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013415 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
13416 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
13417 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000013418 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +000013419 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +000013420 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013421 case ISD::SHL_PARTS:
13422 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +000013423 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013424 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +000013425 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Craig Topperd713c0f2013-01-20 21:34:37 +000013426 case ISD::TRUNCATE: return LowerTRUNCATE(Op, DAG);
Craig Topperff79bc62013-08-18 08:53:01 +000013427 case ISD::ZERO_EXTEND: return LowerZERO_EXTEND(Op, Subtarget, DAG);
13428 case ISD::SIGN_EXTEND: return LowerSIGN_EXTEND(Op, Subtarget, DAG);
13429 case ISD::ANY_EXTEND: return LowerANY_EXTEND(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013430 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +000013431 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Craig Topperb84b4232013-01-21 06:13:28 +000013432 case ISD::FP_EXTEND: return LowerFP_EXTEND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013433 case ISD::FABS: return LowerFABS(Op, DAG);
13434 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +000013435 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +000013436 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +000013437 case ISD::SETCC: return LowerSETCC(Op, DAG);
13438 case ISD::SELECT: return LowerSELECT(Op, DAG);
13439 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013440 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013441 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +000013442 case ISD::VAARG: return LowerVAARG(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013443 case ISD::VACOPY: return LowerVACOPY(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013444 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Elena Demikhovsky6adcd582013-09-01 14:24:41 +000013445 case ISD::INTRINSIC_VOID:
13446 case ISD::INTRINSIC_W_CHAIN: return LowerINTRINSIC_W_CHAIN(Op, Subtarget, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +000013447 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
13448 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013449 case ISD::FRAME_TO_ARGS_OFFSET:
13450 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000013451 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013452 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Michael Liao6c0e04c2012-10-15 22:39:43 +000013453 case ISD::EH_SJLJ_SETJMP: return lowerEH_SJLJ_SETJMP(Op, DAG);
13454 case ISD::EH_SJLJ_LONGJMP: return lowerEH_SJLJ_LONGJMP(Op, DAG);
Duncan Sands4a544a72011-09-06 13:37:06 +000013455 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
13456 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +000013457 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000013458 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
Chandler Carruthacc068e2011-12-24 10:55:54 +000013459 case ISD::CTLZ_ZERO_UNDEF: return LowerCTLZ_ZERO_UNDEF(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000013460 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013461 case ISD::MUL: return LowerMUL(Op, Subtarget, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +000013462 case ISD::SRA:
13463 case ISD::SRL:
Craig Topper35e194f2013-08-14 07:53:41 +000013464 case ISD::SHL: return LowerShift(Op, Subtarget, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +000013465 case ISD::SADDO:
13466 case ISD::UADDO:
13467 case ISD::SSUBO:
13468 case ISD::USUBO:
13469 case ISD::SMULO:
13470 case ISD::UMULO: return LowerXALUO(Op, DAG);
Craig Topper55b24052012-09-11 06:15:32 +000013471 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, Subtarget,DAG);
Craig Topper35e194f2013-08-14 07:53:41 +000013472 case ISD::BITCAST: return LowerBITCAST(Op, Subtarget, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +000013473 case ISD::ADDC:
13474 case ISD::ADDE:
13475 case ISD::SUBC:
13476 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000013477 case ISD::ADD: return LowerADD(Op, DAG);
13478 case ISD::SUB: return LowerSUB(Op, DAG);
Nadav Rotem13f8cf52013-01-09 05:14:33 +000013479 case ISD::SDIV: return LowerSDIV(Op, DAG);
Craig Topper35e194f2013-08-14 07:53:41 +000013480 case ISD::FSINCOS: return LowerFSINCOS(Op, Subtarget, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000013481 }
Chris Lattner27a6c732007-11-24 07:07:01 +000013482}
13483
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013484static void ReplaceATOMIC_LOAD(SDNode *Node,
13485 SmallVectorImpl<SDValue> &Results,
13486 SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013487 SDLoc dl(Node);
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013488 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
13489
13490 // Convert wide load -> cmpxchg8b/cmpxchg16b
13491 // FIXME: On 32-bit, load -> fild or movq would be more efficient
13492 // (The only way to get a 16-byte load is cmpxchg16b)
13493 // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
Benjamin Kramer2753ae32011-08-27 17:36:14 +000013494 SDValue Zero = DAG.getConstant(0, VT);
13495 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013496 Node->getOperand(0),
13497 Node->getOperand(1), Zero, Zero,
13498 cast<AtomicSDNode>(Node)->getMemOperand(),
13499 cast<AtomicSDNode>(Node)->getOrdering(),
13500 cast<AtomicSDNode>(Node)->getSynchScope());
13501 Results.push_back(Swap.getValue(0));
13502 Results.push_back(Swap.getValue(1));
13503}
13504
Craig Topperc0878702012-08-17 06:55:11 +000013505static void
Duncan Sands1607f052008-12-01 11:39:25 +000013506ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Craig Topperc0878702012-08-17 06:55:11 +000013507 SelectionDAG &DAG, unsigned NewOp) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013508 SDLoc dl(Node);
Duncan Sands17001ce2011-10-18 12:44:00 +000013509 assert (Node->getValueType(0) == MVT::i64 &&
13510 "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +000013511
13512 SDValue Chain = Node->getOperand(0);
13513 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013514 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013515 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +000013516 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013517 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +000013518 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +000013519 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +000013520 SDValue Result =
Michael Liao0ee17002013-04-19 04:03:37 +000013521 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, array_lengthof(Ops), MVT::i64,
Dan Gohmanc76909a2009-09-25 20:36:54 +000013522 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +000013523 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +000013524 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000013525 Results.push_back(Result.getValue(2));
13526}
13527
Duncan Sands126d9072008-07-04 11:47:58 +000013528/// ReplaceNodeResults - Replace a node with an illegal result type
13529/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +000013530void X86TargetLowering::ReplaceNodeResults(SDNode *N,
13531 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000013532 SelectionDAG &DAG) const {
Andrew Trickac6d9be2013-05-25 02:42:55 +000013533 SDLoc dl(N);
Nadav Rotem0a1e9142012-12-14 21:20:37 +000013534 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Chris Lattner27a6c732007-11-24 07:07:01 +000013535 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +000013536 default:
Craig Topperabb94d02012-02-05 03:43:23 +000013537 llvm_unreachable("Do not know how to custom type legalize this operation!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000013538 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +000013539 case ISD::ADDC:
13540 case ISD::ADDE:
13541 case ISD::SUBC:
13542 case ISD::SUBE:
13543 // We don't want to expand or promote these.
13544 return;
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013545 case ISD::FP_TO_SINT:
13546 case ISD::FP_TO_UINT: {
13547 bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
13548
13549 if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
13550 return;
13551
Eli Friedman948e95a2009-05-23 09:59:16 +000013552 std::pair<SDValue,SDValue> Vals =
NAKAMURA Takumi9a68fdc2012-02-25 03:37:25 +000013553 FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
Duncan Sands1607f052008-12-01 11:39:25 +000013554 SDValue FIST = Vals.first, StackSlot = Vals.second;
13555 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +000013556 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +000013557 // Return a load from the stack slot.
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013558 if (StackSlot.getNode() != 0)
13559 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
13560 MachinePointerInfo(),
13561 false, false, false, 0));
13562 else
13563 Results.push_back(FIST);
Duncan Sands1607f052008-12-01 11:39:25 +000013564 }
13565 return;
13566 }
Michael Liao991b6a22012-10-24 04:09:32 +000013567 case ISD::UINT_TO_FP: {
Michael Liao6f8c6852013-03-14 06:57:42 +000013568 assert(Subtarget->hasSSE2() && "Requires at least SSE2!");
13569 if (N->getOperand(0).getValueType() != MVT::v2i32 ||
Michael Liao991b6a22012-10-24 04:09:32 +000013570 N->getValueType(0) != MVT::v2f32)
13571 return;
13572 SDValue ZExtIn = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::v2i64,
13573 N->getOperand(0));
13574 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
13575 MVT::f64);
13576 SDValue VBias = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2f64, Bias, Bias);
13577 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64, ZExtIn,
13578 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, VBias));
13579 Or = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or);
13580 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, Or, VBias);
13581 Results.push_back(DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, Sub));
13582 return;
13583 }
Michael Liao44c2d612012-10-10 16:53:28 +000013584 case ISD::FP_ROUND: {
Nadav Rotem0a1e9142012-12-14 21:20:37 +000013585 if (!TLI.isTypeLegal(N->getOperand(0).getValueType()))
13586 return;
Michael Liao44c2d612012-10-10 16:53:28 +000013587 SDValue V = DAG.getNode(X86ISD::VFPROUND, dl, MVT::v4f32, N->getOperand(0));
13588 Results.push_back(V);
13589 return;
13590 }
Duncan Sands1607f052008-12-01 11:39:25 +000013591 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013592 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000013593 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000013594 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000013595 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +000013596 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +000013597 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000013598 eax.getValue(2));
13599 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
13600 SDValue Ops[] = { eax, edx };
Michael Liao0ee17002013-04-19 04:03:37 +000013601 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops,
13602 array_lengthof(Ops)));
Duncan Sands1607f052008-12-01 11:39:25 +000013603 Results.push_back(edx.getValue(1));
13604 return;
13605 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013606 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +000013607 EVT T = N->getValueType(0);
Benjamin Kramer2753ae32011-08-27 17:36:14 +000013608 assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
Eli Friedman43f51ae2011-08-26 21:21:21 +000013609 bool Regs64bit = T == MVT::i128;
13610 EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
Duncan Sands1607f052008-12-01 11:39:25 +000013611 SDValue cpInL, cpInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000013612 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13613 DAG.getConstant(0, HalfT));
13614 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
13615 DAG.getConstant(1, HalfT));
13616 cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
13617 Regs64bit ? X86::RAX : X86::EAX,
13618 cpInL, SDValue());
13619 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
13620 Regs64bit ? X86::RDX : X86::EDX,
13621 cpInH, cpInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000013622 SDValue swapInL, swapInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000013623 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13624 DAG.getConstant(0, HalfT));
13625 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
13626 DAG.getConstant(1, HalfT));
13627 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
13628 Regs64bit ? X86::RBX : X86::EBX,
13629 swapInL, cpInH.getValue(1));
13630 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
Chad Rosiera20e1e72012-08-01 18:39:17 +000013631 Regs64bit ? X86::RCX : X86::ECX,
Eli Friedman43f51ae2011-08-26 21:21:21 +000013632 swapInH, swapInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000013633 SDValue Ops[] = { swapInH.getValue(0),
13634 N->getOperand(1),
13635 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000013636 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000013637 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
Eli Friedman43f51ae2011-08-26 21:21:21 +000013638 unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
13639 X86ISD::LCMPXCHG8_DAG;
13640 SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
Michael Liao0ee17002013-04-19 04:03:37 +000013641 Ops, array_lengthof(Ops), T, MMO);
Eli Friedman43f51ae2011-08-26 21:21:21 +000013642 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
13643 Regs64bit ? X86::RAX : X86::EAX,
13644 HalfT, Result.getValue(1));
13645 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
13646 Regs64bit ? X86::RDX : X86::EDX,
13647 HalfT, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +000013648 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Eli Friedman43f51ae2011-08-26 21:21:21 +000013649 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000013650 Results.push_back(cpOutH.getValue(1));
13651 return;
13652 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013653 case ISD::ATOMIC_LOAD_ADD:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013654 case ISD::ATOMIC_LOAD_AND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013655 case ISD::ATOMIC_LOAD_NAND:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013656 case ISD::ATOMIC_LOAD_OR:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013657 case ISD::ATOMIC_LOAD_SUB:
Dan Gohman0b1d4a72008-12-23 21:37:04 +000013658 case ISD::ATOMIC_LOAD_XOR:
Michael Liaoe5e8f762012-09-25 18:08:13 +000013659 case ISD::ATOMIC_LOAD_MAX:
13660 case ISD::ATOMIC_LOAD_MIN:
13661 case ISD::ATOMIC_LOAD_UMAX:
13662 case ISD::ATOMIC_LOAD_UMIN:
Craig Topperc0878702012-08-17 06:55:11 +000013663 case ISD::ATOMIC_SWAP: {
13664 unsigned Opc;
13665 switch (N->getOpcode()) {
13666 default: llvm_unreachable("Unexpected opcode");
13667 case ISD::ATOMIC_LOAD_ADD:
13668 Opc = X86ISD::ATOMADD64_DAG;
13669 break;
13670 case ISD::ATOMIC_LOAD_AND:
13671 Opc = X86ISD::ATOMAND64_DAG;
13672 break;
13673 case ISD::ATOMIC_LOAD_NAND:
13674 Opc = X86ISD::ATOMNAND64_DAG;
13675 break;
13676 case ISD::ATOMIC_LOAD_OR:
13677 Opc = X86ISD::ATOMOR64_DAG;
13678 break;
13679 case ISD::ATOMIC_LOAD_SUB:
13680 Opc = X86ISD::ATOMSUB64_DAG;
13681 break;
13682 case ISD::ATOMIC_LOAD_XOR:
13683 Opc = X86ISD::ATOMXOR64_DAG;
13684 break;
Michael Liaoe5e8f762012-09-25 18:08:13 +000013685 case ISD::ATOMIC_LOAD_MAX:
13686 Opc = X86ISD::ATOMMAX64_DAG;
13687 break;
13688 case ISD::ATOMIC_LOAD_MIN:
13689 Opc = X86ISD::ATOMMIN64_DAG;
13690 break;
13691 case ISD::ATOMIC_LOAD_UMAX:
13692 Opc = X86ISD::ATOMUMAX64_DAG;
13693 break;
13694 case ISD::ATOMIC_LOAD_UMIN:
13695 Opc = X86ISD::ATOMUMIN64_DAG;
13696 break;
Craig Topperc0878702012-08-17 06:55:11 +000013697 case ISD::ATOMIC_SWAP:
13698 Opc = X86ISD::ATOMSWAP64_DAG;
13699 break;
13700 }
13701 ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
Duncan Sands1607f052008-12-01 11:39:25 +000013702 return;
Craig Topperc0878702012-08-17 06:55:11 +000013703 }
Eli Friedmanf8f90f02011-08-24 22:33:28 +000013704 case ISD::ATOMIC_LOAD:
13705 ReplaceATOMIC_LOAD(N, Results, DAG);
Chris Lattner27a6c732007-11-24 07:07:01 +000013706 }
Evan Cheng0db9fe62006-04-25 20:13:52 +000013707}
13708
Evan Cheng72261582005-12-20 06:22:03 +000013709const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
13710 switch (Opcode) {
13711 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +000013712 case X86ISD::BSF: return "X86ISD::BSF";
13713 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +000013714 case X86ISD::SHLD: return "X86ISD::SHLD";
13715 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +000013716 case X86ISD::FAND: return "X86ISD::FAND";
Benjamin Kramer75311b72013-08-04 12:05:16 +000013717 case X86ISD::FANDN: return "X86ISD::FANDN";
Evan Cheng68c47cb2007-01-05 07:55:56 +000013718 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +000013719 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +000013720 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +000013721 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +000013722 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +000013723 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
13724 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
13725 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +000013726 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +000013727 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +000013728 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +000013729 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +000013730 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +000013731 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +000013732 case X86ISD::COMI: return "X86ISD::COMI";
13733 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +000013734 case X86ISD::CMPM: return "X86ISD::CMPM";
13735 case X86ISD::CMPMU: return "X86ISD::CMPMU";
Evan Chengd5781fc2005-12-21 20:21:51 +000013736 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +000013737 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +000013738 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
13739 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +000013740 case X86ISD::CMOV: return "X86ISD::CMOV";
13741 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +000013742 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +000013743 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
13744 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +000013745 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +000013746 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +000013747 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +000013748 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +000013749 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +000013750 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
13751 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +000013752 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +000013753 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013754 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Craig Topper31133842011-11-19 07:33:10 +000013755 case X86ISD::PSIGN: return "X86ISD::PSIGN";
Craig Toppere6a62772011-11-13 17:31:07 +000013756 case X86ISD::BLENDV: return "X86ISD::BLENDV";
Elena Demikhovsky226e0e62012-12-05 09:24:57 +000013757 case X86ISD::BLENDI: return "X86ISD::BLENDI";
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000013758 case X86ISD::SUBUS: return "X86ISD::SUBUS";
Craig Topperfe033152011-12-06 09:31:36 +000013759 case X86ISD::HADD: return "X86ISD::HADD";
13760 case X86ISD::HSUB: return "X86ISD::HSUB";
Craig Toppere6a62772011-11-13 17:31:07 +000013761 case X86ISD::FHADD: return "X86ISD::FHADD";
13762 case X86ISD::FHSUB: return "X86ISD::FHSUB";
Benjamin Kramer739c7a82012-12-21 14:04:55 +000013763 case X86ISD::UMAX: return "X86ISD::UMAX";
13764 case X86ISD::UMIN: return "X86ISD::UMIN";
13765 case X86ISD::SMAX: return "X86ISD::SMAX";
13766 case X86ISD::SMIN: return "X86ISD::SMIN";
Evan Cheng8ca29322006-11-10 21:43:37 +000013767 case X86ISD::FMAX: return "X86ISD::FMAX";
13768 case X86ISD::FMIN: return "X86ISD::FMIN";
Nadav Rotemd60cb112012-08-19 13:06:16 +000013769 case X86ISD::FMAXC: return "X86ISD::FMAXC";
13770 case X86ISD::FMINC: return "X86ISD::FMINC";
Dan Gohman20382522007-07-10 00:05:58 +000013771 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
13772 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000013773 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Hans Wennborgf0234fc2012-06-01 16:27:21 +000013774 case X86ISD::TLSBASEADDR: return "X86ISD::TLSBASEADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +000013775 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Michael Liao6c0e04c2012-10-15 22:39:43 +000013776 case X86ISD::EH_SJLJ_SETJMP: return "X86ISD::EH_SJLJ_SETJMP";
13777 case X86ISD::EH_SJLJ_LONGJMP: return "X86ISD::EH_SJLJ_LONGJMP";
Anton Korobeynikov2365f512007-07-14 14:06:15 +000013778 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000013779 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000013780 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000013781 case X86ISD::FNSTSW16r: return "X86ISD::FNSTSW16r";
Evan Cheng7e2ff772008-05-08 00:57:18 +000013782 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
13783 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +000013784 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
13785 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
13786 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
13787 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
13788 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
13789 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +000013790 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
Michael Liaob7bf7262012-08-14 22:53:17 +000013791 case X86ISD::VSEXT_MOVL: return "X86ISD::VSEXT_MOVL";
Evan Chengd880b972008-05-09 21:53:03 +000013792 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Michael Liaod9d09602012-10-23 17:34:00 +000013793 case X86ISD::VZEXT: return "X86ISD::VZEXT";
13794 case X86ISD::VSEXT: return "X86ISD::VSEXT";
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000013795 case X86ISD::VTRUNC: return "X86ISD::VTRUNC";
13796 case X86ISD::VTRUNCM: return "X86ISD::VTRUNCM";
Elena Demikhovskyf9d2d2d2013-09-12 08:55:00 +000013797 case X86ISD::VINSERT: return "X86ISD::VINSERT";
Michael Liao7091b242012-08-14 21:24:47 +000013798 case X86ISD::VFPEXT: return "X86ISD::VFPEXT";
Michael Liao44c2d612012-10-10 16:53:28 +000013799 case X86ISD::VFPROUND: return "X86ISD::VFPROUND";
Craig Toppered2e13d2012-01-22 19:15:14 +000013800 case X86ISD::VSHLDQ: return "X86ISD::VSHLDQ";
13801 case X86ISD::VSRLDQ: return "X86ISD::VSRLDQ";
Evan Chengf26ffe92008-05-29 08:22:04 +000013802 case X86ISD::VSHL: return "X86ISD::VSHL";
13803 case X86ISD::VSRL: return "X86ISD::VSRL";
Craig Toppered2e13d2012-01-22 19:15:14 +000013804 case X86ISD::VSRA: return "X86ISD::VSRA";
13805 case X86ISD::VSHLI: return "X86ISD::VSHLI";
13806 case X86ISD::VSRLI: return "X86ISD::VSRLI";
13807 case X86ISD::VSRAI: return "X86ISD::VSRAI";
Craig Topper1906d322012-01-22 23:36:02 +000013808 case X86ISD::CMPP: return "X86ISD::CMPP";
Craig Topper67609fd2012-01-22 22:42:16 +000013809 case X86ISD::PCMPEQ: return "X86ISD::PCMPEQ";
13810 case X86ISD::PCMPGT: return "X86ISD::PCMPGT";
Elena Demikhovsky4d36bd82013-08-13 13:24:07 +000013811 case X86ISD::PCMPEQM: return "X86ISD::PCMPEQM";
13812 case X86ISD::PCMPGTM: return "X86ISD::PCMPGTM";
Bill Wendlingab55ebd2008-12-12 00:56:36 +000013813 case X86ISD::ADD: return "X86ISD::ADD";
13814 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +000013815 case X86ISD::ADC: return "X86ISD::ADC";
13816 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +000013817 case X86ISD::SMUL: return "X86ISD::SMUL";
13818 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +000013819 case X86ISD::INC: return "X86ISD::INC";
13820 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +000013821 case X86ISD::OR: return "X86ISD::OR";
13822 case X86ISD::XOR: return "X86ISD::XOR";
13823 case X86ISD::AND: return "X86ISD::AND";
Craig Toppere6a62772011-11-13 17:31:07 +000013824 case X86ISD::BLSI: return "X86ISD::BLSI";
13825 case X86ISD::BLSMSK: return "X86ISD::BLSMSK";
13826 case X86ISD::BLSR: return "X86ISD::BLSR";
Craig Topperb6ac30a2013-08-30 06:52:21 +000013827 case X86ISD::BZHI: return "X86ISD::BZHI";
Craig Topper69c474f2013-09-02 07:53:17 +000013828 case X86ISD::BEXTR: return "X86ISD::BEXTR";
Evan Cheng73f24c92009-03-30 21:36:47 +000013829 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +000013830 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000013831 case X86ISD::TESTP: return "X86ISD::TESTP";
Elena Demikhovsky8ba76da2013-08-21 09:36:02 +000013832 case X86ISD::TESTM: return "X86ISD::TESTM";
13833 case X86ISD::KORTEST: return "X86ISD::KORTEST";
13834 case X86ISD::KTEST: return "X86ISD::KTEST";
Craig Topper4aee1bb2013-01-28 06:48:25 +000013835 case X86ISD::PALIGNR: return "X86ISD::PALIGNR";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013836 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
13837 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013838 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
Craig Topperb3982da2011-12-31 23:50:21 +000013839 case X86ISD::SHUFP: return "X86ISD::SHUFP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013840 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013841 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000013842 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000013843 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
13844 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013845 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
13846 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
13847 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000013848 case X86ISD::MOVSD: return "X86ISD::MOVSD";
13849 case X86ISD::MOVSS: return "X86ISD::MOVSS";
Craig Topper34671b82011-12-06 08:21:25 +000013850 case X86ISD::UNPCKL: return "X86ISD::UNPCKL";
13851 case X86ISD::UNPCKH: return "X86ISD::UNPCKH";
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +000013852 case X86ISD::VBROADCAST: return "X86ISD::VBROADCAST";
Elena Demikhovsky207600d2013-08-07 12:34:55 +000013853 case X86ISD::VBROADCASTM: return "X86ISD::VBROADCASTM";
Craig Topper316cd2a2011-11-30 06:25:25 +000013854 case X86ISD::VPERMILP: return "X86ISD::VPERMILP";
Craig Topperec24e612011-11-30 07:47:51 +000013855 case X86ISD::VPERM2X128: return "X86ISD::VPERM2X128";
Craig Topper8325c112012-04-16 00:41:45 +000013856 case X86ISD::VPERMV: return "X86ISD::VPERMV";
Elena Demikhovskyfac4a4e2013-08-11 07:55:09 +000013857 case X86ISD::VPERMV3: return "X86ISD::VPERMV3";
Craig Topper8325c112012-04-16 00:41:45 +000013858 case X86ISD::VPERMI: return "X86ISD::VPERMI";
Craig Topper5b209e82012-02-05 03:14:49 +000013859 case X86ISD::PMULUDQ: return "X86ISD::PMULUDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +000013860 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000013861 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000013862 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000013863 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Rafael Espindolad07b7ec2011-08-30 19:43:21 +000013864 case X86ISD::SEG_ALLOCA: return "X86ISD::SEG_ALLOCA";
Michael J. Spencer1a2d0612012-02-24 19:01:22 +000013865 case X86ISD::WIN_FTOL: return "X86ISD::WIN_FTOL";
Benjamin Kramer17c836c2012-04-27 12:07:43 +000013866 case X86ISD::SAHF: return "X86ISD::SAHF";
Benjamin Kramerb9bee042012-07-12 09:31:43 +000013867 case X86ISD::RDRAND: return "X86ISD::RDRAND";
Michael Liaoc26392a2013-03-28 23:41:26 +000013868 case X86ISD::RDSEED: return "X86ISD::RDSEED";
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000013869 case X86ISD::FMADD: return "X86ISD::FMADD";
13870 case X86ISD::FMSUB: return "X86ISD::FMSUB";
13871 case X86ISD::FNMADD: return "X86ISD::FNMADD";
13872 case X86ISD::FNMSUB: return "X86ISD::FNMSUB";
13873 case X86ISD::FMADDSUB: return "X86ISD::FMADDSUB";
13874 case X86ISD::FMSUBADD: return "X86ISD::FMSUBADD";
Craig Topper9c7ae012012-11-10 01:23:36 +000013875 case X86ISD::PCMPESTRI: return "X86ISD::PCMPESTRI";
13876 case X86ISD::PCMPISTRI: return "X86ISD::PCMPISTRI";
Michael Liaof8fd8832013-03-26 22:47:01 +000013877 case X86ISD::XTEST: return "X86ISD::XTEST";
Evan Cheng72261582005-12-20 06:22:03 +000013878 }
13879}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000013880
Chris Lattnerc9addb72007-03-30 23:15:24 +000013881// isLegalAddressingMode - Return true if the addressing mode represented
13882// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000013883bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013884 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000013885 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013886 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000013887 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000013888
Chris Lattnerc9addb72007-03-30 23:15:24 +000013889 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013890 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000013891 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000013892
Chris Lattnerc9addb72007-03-30 23:15:24 +000013893 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000013894 unsigned GVFlags =
13895 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013896
Chris Lattnerdfed4132009-07-10 07:38:24 +000013897 // If a reference to this global requires an extra load, we can't fold it.
13898 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000013899 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013900
Chris Lattnerdfed4132009-07-10 07:38:24 +000013901 // If BaseGV requires a register for the PIC base, we cannot also have a
13902 // BaseReg specified.
13903 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000013904 return false;
Evan Cheng52787842007-08-01 23:46:47 +000013905
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013906 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000013907 if ((M != CodeModel::Small || R != Reloc::Static) &&
13908 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000013909 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000013910 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013911
Chris Lattnerc9addb72007-03-30 23:15:24 +000013912 switch (AM.Scale) {
13913 case 0:
13914 case 1:
13915 case 2:
13916 case 4:
13917 case 8:
13918 // These scales always work.
13919 break;
13920 case 3:
13921 case 5:
13922 case 9:
13923 // These scales are formed with basereg+scalereg. Only accept if there is
13924 // no basereg yet.
13925 if (AM.HasBaseReg)
13926 return false;
13927 break;
13928 default: // Other stuff never works.
13929 return false;
13930 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013931
Chris Lattnerc9addb72007-03-30 23:15:24 +000013932 return true;
13933}
13934
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013935bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013936 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000013937 return false;
Evan Chenge127a732007-10-29 07:57:50 +000013938 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
13939 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000013940 return NumBits1 > NumBits2;
Evan Cheng2bd122c2007-10-26 01:56:11 +000013941}
13942
Tim Northoverd1134482013-08-06 09:12:35 +000013943bool X86TargetLowering::allowTruncateForTailCall(Type *Ty1, Type *Ty2) const {
13944 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
13945 return false;
13946
13947 if (!isTypeLegal(EVT::getEVT(Ty1)))
13948 return false;
13949
13950 assert(Ty1->getPrimitiveSizeInBits() <= 64 && "i128 is probably not a noop");
13951
13952 // Assuming the caller doesn't have a zeroext or signext return parameter,
13953 // truncation all the way down to i1 is valid.
13954 return true;
13955}
13956
Evan Cheng70e10d32012-07-17 06:53:39 +000013957bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
Jakub Staszakc20323a2012-12-29 15:57:26 +000013958 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000013959}
13960
13961bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
Evan Chenga9e13ba2012-07-17 18:54:11 +000013962 // Can also use sub to handle negated immediates.
Jakub Staszakc20323a2012-12-29 15:57:26 +000013963 return isInt<32>(Imm);
Evan Cheng70e10d32012-07-17 06:53:39 +000013964}
13965
Owen Andersone50ed302009-08-10 22:56:29 +000013966bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000013967 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000013968 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000013969 unsigned NumBits1 = VT1.getSizeInBits();
13970 unsigned NumBits2 = VT2.getSizeInBits();
Jakub Staszakc20323a2012-12-29 15:57:26 +000013971 return NumBits1 > NumBits2;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000013972}
Evan Cheng2bd122c2007-10-26 01:56:11 +000013973
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013974bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000013975 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013976 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000013977}
13978
Owen Andersone50ed302009-08-10 22:56:29 +000013979bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000013980 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000013981 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000013982}
13983
Evan Cheng2766a472012-12-06 19:13:27 +000013984bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
13985 EVT VT1 = Val.getValueType();
13986 if (isZExtFree(VT1, VT2))
13987 return true;
13988
13989 if (Val.getOpcode() != ISD::LOAD)
13990 return false;
13991
13992 if (!VT1.isSimple() || !VT1.isInteger() ||
13993 !VT2.isSimple() || !VT2.isInteger())
13994 return false;
13995
13996 switch (VT1.getSimpleVT().SimpleTy) {
13997 default: break;
13998 case MVT::i8:
13999 case MVT::i16:
14000 case MVT::i32:
14001 // X86 has 8, 16, and 32-bit zero-extending loads.
14002 return true;
14003 }
14004
14005 return false;
14006}
14007
Stephen Line54885a2013-07-09 18:16:56 +000014008bool
14009X86TargetLowering::isFMAFasterThanFMulAndFAdd(EVT VT) const {
14010 if (!(Subtarget->hasFMA() || Subtarget->hasFMA4()))
14011 return false;
14012
14013 VT = VT.getScalarType();
14014
14015 if (!VT.isSimple())
14016 return false;
14017
14018 switch (VT.getSimpleVT().SimpleTy) {
14019 case MVT::f32:
14020 case MVT::f64:
14021 return true;
14022 default:
14023 break;
14024 }
14025
14026 return false;
14027}
14028
Owen Andersone50ed302009-08-10 22:56:29 +000014029bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000014030 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000014031 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000014032}
14033
Evan Cheng60c07e12006-07-05 22:17:51 +000014034/// isShuffleMaskLegal - Targets can use this to indicate that they only
14035/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
14036/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
14037/// are assumed to be legal.
14038bool
Eric Christopherfd179292009-08-27 18:07:15 +000014039X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000014040 EVT VT) const {
Craig Toppercc60bbc2013-08-14 05:58:39 +000014041 if (!VT.isSimple())
14042 return false;
14043
14044 MVT SVT = VT.getSimpleVT();
14045
Eric Christophercff6f852010-04-15 01:40:20 +000014046 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000014047 if (VT.getSizeInBits() == 64)
Craig Topper1dc0fbc2011-12-05 07:27:14 +000014048 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +000014049
Nate Begemana09008b2009-10-19 02:17:23 +000014050 // FIXME: pshufb, blends, shifts.
Craig Toppercc60bbc2013-08-14 05:58:39 +000014051 return (SVT.getVectorNumElements() == 2 ||
Nate Begeman9008ca62009-04-27 18:41:29 +000014052 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
Craig Toppercc60bbc2013-08-14 05:58:39 +000014053 isMOVLMask(M, SVT) ||
Elena Demikhovsky92bfb542013-08-26 12:45:35 +000014054 isSHUFPMask(M, SVT) ||
Craig Toppercc60bbc2013-08-14 05:58:39 +000014055 isPSHUFDMask(M, SVT) ||
14056 isPSHUFHWMask(M, SVT, Subtarget->hasInt256()) ||
14057 isPSHUFLWMask(M, SVT, Subtarget->hasInt256()) ||
14058 isPALIGNRMask(M, SVT, Subtarget) ||
14059 isUNPCKLMask(M, SVT, Subtarget->hasInt256()) ||
14060 isUNPCKHMask(M, SVT, Subtarget->hasInt256()) ||
14061 isUNPCKL_v_undef_Mask(M, SVT, Subtarget->hasInt256()) ||
14062 isUNPCKH_v_undef_Mask(M, SVT, Subtarget->hasInt256()));
Evan Cheng60c07e12006-07-05 22:17:51 +000014063}
14064
Dan Gohman7d8143f2008-04-09 20:09:42 +000014065bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000014066X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000014067 EVT VT) const {
Craig Toppercc60bbc2013-08-14 05:58:39 +000014068 if (!VT.isSimple())
14069 return false;
14070
14071 MVT SVT = VT.getSimpleVT();
14072 unsigned NumElts = SVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +000014073 // FIXME: This collection of masks seems suspect.
14074 if (NumElts == 2)
14075 return true;
Craig Toppercc60bbc2013-08-14 05:58:39 +000014076 if (NumElts == 4 && SVT.is128BitVector()) {
14077 return (isMOVLMask(Mask, SVT) ||
14078 isCommutedMOVLMask(Mask, SVT, true) ||
Elena Demikhovsky92bfb542013-08-26 12:45:35 +000014079 isSHUFPMask(Mask, SVT) ||
14080 isSHUFPMask(Mask, SVT, /* Commuted */ true));
Evan Cheng60c07e12006-07-05 22:17:51 +000014081 }
14082 return false;
14083}
14084
14085//===----------------------------------------------------------------------===//
14086// X86 Scheduler Hooks
14087//===----------------------------------------------------------------------===//
14088
Michael Liaobe02a902012-11-08 07:28:54 +000014089/// Utility function to emit xbegin specifying the start of an RTM region.
Craig Topper2da36912012-11-11 22:45:02 +000014090static MachineBasicBlock *EmitXBegin(MachineInstr *MI, MachineBasicBlock *MBB,
14091 const TargetInstrInfo *TII) {
Michael Liaobe02a902012-11-08 07:28:54 +000014092 DebugLoc DL = MI->getDebugLoc();
Michael Liaobe02a902012-11-08 07:28:54 +000014093
14094 const BasicBlock *BB = MBB->getBasicBlock();
14095 MachineFunction::iterator I = MBB;
14096 ++I;
14097
14098 // For the v = xbegin(), we generate
14099 //
14100 // thisMBB:
14101 // xbegin sinkMBB
14102 //
14103 // mainMBB:
14104 // eax = -1
14105 //
14106 // sinkMBB:
14107 // v = eax
14108
14109 MachineBasicBlock *thisMBB = MBB;
14110 MachineFunction *MF = MBB->getParent();
14111 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14112 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14113 MF->insert(I, mainMBB);
14114 MF->insert(I, sinkMBB);
14115
14116 // Transfer the remainder of BB and its successor edges to sinkMBB.
14117 sinkMBB->splice(sinkMBB->begin(), MBB,
14118 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14119 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14120
14121 // thisMBB:
14122 // xbegin sinkMBB
14123 // # fallthrough to mainMBB
14124 // # abortion to sinkMBB
14125 BuildMI(thisMBB, DL, TII->get(X86::XBEGIN_4)).addMBB(sinkMBB);
14126 thisMBB->addSuccessor(mainMBB);
14127 thisMBB->addSuccessor(sinkMBB);
14128
14129 // mainMBB:
14130 // EAX = -1
14131 BuildMI(mainMBB, DL, TII->get(X86::MOV32ri), X86::EAX).addImm(-1);
14132 mainMBB->addSuccessor(sinkMBB);
14133
14134 // sinkMBB:
14135 // EAX is live into the sinkMBB
14136 sinkMBB->addLiveIn(X86::EAX);
14137 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14138 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14139 .addReg(X86::EAX);
14140
14141 MI->eraseFromParent();
14142 return sinkMBB;
14143}
14144
Michael Liaob118a072012-09-20 03:06:15 +000014145// Get CMPXCHG opcode for the specified data type.
14146static unsigned getCmpXChgOpcode(EVT VT) {
14147 switch (VT.getSimpleVT().SimpleTy) {
14148 case MVT::i8: return X86::LCMPXCHG8;
14149 case MVT::i16: return X86::LCMPXCHG16;
14150 case MVT::i32: return X86::LCMPXCHG32;
14151 case MVT::i64: return X86::LCMPXCHG64;
14152 default:
14153 break;
Richard Smith42fc29e2012-04-13 22:47:00 +000014154 }
Michael Liaob118a072012-09-20 03:06:15 +000014155 llvm_unreachable("Invalid operand size!");
Mon P Wang63307c32008-05-05 19:05:59 +000014156}
14157
Michael Liaob118a072012-09-20 03:06:15 +000014158// Get LOAD opcode for the specified data type.
14159static unsigned getLoadOpcode(EVT VT) {
14160 switch (VT.getSimpleVT().SimpleTy) {
14161 case MVT::i8: return X86::MOV8rm;
14162 case MVT::i16: return X86::MOV16rm;
14163 case MVT::i32: return X86::MOV32rm;
14164 case MVT::i64: return X86::MOV64rm;
14165 default:
14166 break;
14167 }
14168 llvm_unreachable("Invalid operand size!");
14169}
14170
14171// Get opcode of the non-atomic one from the specified atomic instruction.
14172static unsigned getNonAtomicOpcode(unsigned Opc) {
14173 switch (Opc) {
14174 case X86::ATOMAND8: return X86::AND8rr;
14175 case X86::ATOMAND16: return X86::AND16rr;
14176 case X86::ATOMAND32: return X86::AND32rr;
14177 case X86::ATOMAND64: return X86::AND64rr;
14178 case X86::ATOMOR8: return X86::OR8rr;
14179 case X86::ATOMOR16: return X86::OR16rr;
14180 case X86::ATOMOR32: return X86::OR32rr;
14181 case X86::ATOMOR64: return X86::OR64rr;
14182 case X86::ATOMXOR8: return X86::XOR8rr;
14183 case X86::ATOMXOR16: return X86::XOR16rr;
14184 case X86::ATOMXOR32: return X86::XOR32rr;
14185 case X86::ATOMXOR64: return X86::XOR64rr;
14186 }
14187 llvm_unreachable("Unhandled atomic-load-op opcode!");
14188}
14189
14190// Get opcode of the non-atomic one from the specified atomic instruction with
14191// extra opcode.
14192static unsigned getNonAtomicOpcodeWithExtraOpc(unsigned Opc,
14193 unsigned &ExtraOpc) {
14194 switch (Opc) {
14195 case X86::ATOMNAND8: ExtraOpc = X86::NOT8r; return X86::AND8rr;
14196 case X86::ATOMNAND16: ExtraOpc = X86::NOT16r; return X86::AND16rr;
14197 case X86::ATOMNAND32: ExtraOpc = X86::NOT32r; return X86::AND32rr;
14198 case X86::ATOMNAND64: ExtraOpc = X86::NOT64r; return X86::AND64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014199 case X86::ATOMMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVL32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014200 case X86::ATOMMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVL16rr;
14201 case X86::ATOMMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVL32rr;
14202 case X86::ATOMMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVL64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014203 case X86::ATOMMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVG32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014204 case X86::ATOMMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVG16rr;
14205 case X86::ATOMMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVG32rr;
14206 case X86::ATOMMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVG64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014207 case X86::ATOMUMAX8: ExtraOpc = X86::CMP8rr; return X86::CMOVB32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014208 case X86::ATOMUMAX16: ExtraOpc = X86::CMP16rr; return X86::CMOVB16rr;
14209 case X86::ATOMUMAX32: ExtraOpc = X86::CMP32rr; return X86::CMOVB32rr;
14210 case X86::ATOMUMAX64: ExtraOpc = X86::CMP64rr; return X86::CMOVB64rr;
Michael Liaofe87c302012-09-21 03:18:52 +000014211 case X86::ATOMUMIN8: ExtraOpc = X86::CMP8rr; return X86::CMOVA32rr;
Michael Liaob118a072012-09-20 03:06:15 +000014212 case X86::ATOMUMIN16: ExtraOpc = X86::CMP16rr; return X86::CMOVA16rr;
14213 case X86::ATOMUMIN32: ExtraOpc = X86::CMP32rr; return X86::CMOVA32rr;
14214 case X86::ATOMUMIN64: ExtraOpc = X86::CMP64rr; return X86::CMOVA64rr;
14215 }
14216 llvm_unreachable("Unhandled atomic-load-op opcode!");
14217}
14218
14219// Get opcode of the non-atomic one from the specified atomic instruction for
14220// 64-bit data type on 32-bit target.
14221static unsigned getNonAtomic6432Opcode(unsigned Opc, unsigned &HiOpc) {
14222 switch (Opc) {
14223 case X86::ATOMAND6432: HiOpc = X86::AND32rr; return X86::AND32rr;
14224 case X86::ATOMOR6432: HiOpc = X86::OR32rr; return X86::OR32rr;
14225 case X86::ATOMXOR6432: HiOpc = X86::XOR32rr; return X86::XOR32rr;
14226 case X86::ATOMADD6432: HiOpc = X86::ADC32rr; return X86::ADD32rr;
14227 case X86::ATOMSUB6432: HiOpc = X86::SBB32rr; return X86::SUB32rr;
14228 case X86::ATOMSWAP6432: HiOpc = X86::MOV32rr; return X86::MOV32rr;
Michael Liaoe5e8f762012-09-25 18:08:13 +000014229 case X86::ATOMMAX6432: HiOpc = X86::SETLr; return X86::SETLr;
14230 case X86::ATOMMIN6432: HiOpc = X86::SETGr; return X86::SETGr;
14231 case X86::ATOMUMAX6432: HiOpc = X86::SETBr; return X86::SETBr;
14232 case X86::ATOMUMIN6432: HiOpc = X86::SETAr; return X86::SETAr;
Michael Liaob118a072012-09-20 03:06:15 +000014233 }
14234 llvm_unreachable("Unhandled atomic-load-op opcode!");
14235}
14236
14237// Get opcode of the non-atomic one from the specified atomic instruction for
14238// 64-bit data type on 32-bit target with extra opcode.
14239static unsigned getNonAtomic6432OpcodeWithExtraOpc(unsigned Opc,
14240 unsigned &HiOpc,
14241 unsigned &ExtraOpc) {
14242 switch (Opc) {
14243 case X86::ATOMNAND6432:
14244 ExtraOpc = X86::NOT32r;
14245 HiOpc = X86::AND32rr;
14246 return X86::AND32rr;
14247 }
14248 llvm_unreachable("Unhandled atomic-load-op opcode!");
14249}
14250
14251// Get pseudo CMOV opcode from the specified data type.
14252static unsigned getPseudoCMOVOpc(EVT VT) {
14253 switch (VT.getSimpleVT().SimpleTy) {
Michael Liaofe87c302012-09-21 03:18:52 +000014254 case MVT::i8: return X86::CMOV_GR8;
Michael Liaob118a072012-09-20 03:06:15 +000014255 case MVT::i16: return X86::CMOV_GR16;
14256 case MVT::i32: return X86::CMOV_GR32;
14257 default:
14258 break;
14259 }
14260 llvm_unreachable("Unknown CMOV opcode!");
14261}
14262
14263// EmitAtomicLoadArith - emit the code sequence for pseudo atomic instructions.
14264// They will be translated into a spin-loop or compare-exchange loop from
14265//
14266// ...
14267// dst = atomic-fetch-op MI.addr, MI.val
14268// ...
14269//
14270// to
14271//
14272// ...
Michael Liaoc537f792013-03-06 00:17:04 +000014273// t1 = LOAD MI.addr
Michael Liaob118a072012-09-20 03:06:15 +000014274// loop:
Michael Liaoc537f792013-03-06 00:17:04 +000014275// t4 = phi(t1, t3 / loop)
14276// t2 = OP MI.val, t4
14277// EAX = t4
14278// LCMPXCHG [MI.addr], t2, [EAX is implicitly used & defined]
14279// t3 = EAX
Michael Liaob118a072012-09-20 03:06:15 +000014280// JNE loop
14281// sink:
Michael Liaoc537f792013-03-06 00:17:04 +000014282// dst = t3
Michael Liaob118a072012-09-20 03:06:15 +000014283// ...
Mon P Wang63307c32008-05-05 19:05:59 +000014284MachineBasicBlock *
Michael Liaob118a072012-09-20 03:06:15 +000014285X86TargetLowering::EmitAtomicLoadArith(MachineInstr *MI,
14286 MachineBasicBlock *MBB) const {
14287 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14288 DebugLoc DL = MI->getDebugLoc();
14289
14290 MachineFunction *MF = MBB->getParent();
14291 MachineRegisterInfo &MRI = MF->getRegInfo();
14292
14293 const BasicBlock *BB = MBB->getBasicBlock();
14294 MachineFunction::iterator I = MBB;
14295 ++I;
14296
Michael Liao13d08bf2013-01-22 21:47:38 +000014297 assert(MI->getNumOperands() <= X86::AddrNumOperands + 4 &&
Michael Liaob118a072012-09-20 03:06:15 +000014298 "Unexpected number of operands");
14299
14300 assert(MI->hasOneMemOperand() &&
14301 "Expected atomic-load-op to have one memoperand");
14302
14303 // Memory Reference
14304 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14305 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14306
14307 unsigned DstReg, SrcReg;
14308 unsigned MemOpndSlot;
14309
14310 unsigned CurOp = 0;
14311
14312 DstReg = MI->getOperand(CurOp++).getReg();
14313 MemOpndSlot = CurOp;
14314 CurOp += X86::AddrNumOperands;
14315 SrcReg = MI->getOperand(CurOp++).getReg();
14316
14317 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
Craig Topperf4d25a22012-09-30 19:49:56 +000014318 MVT::SimpleValueType VT = *RC->vt_begin();
Michael Liaoc537f792013-03-06 00:17:04 +000014319 unsigned t1 = MRI.createVirtualRegister(RC);
14320 unsigned t2 = MRI.createVirtualRegister(RC);
14321 unsigned t3 = MRI.createVirtualRegister(RC);
14322 unsigned t4 = MRI.createVirtualRegister(RC);
14323 unsigned PhyReg = getX86SubSuperRegister(X86::EAX, VT);
Michael Liaob118a072012-09-20 03:06:15 +000014324
14325 unsigned LCMPXCHGOpc = getCmpXChgOpcode(VT);
14326 unsigned LOADOpc = getLoadOpcode(VT);
14327
14328 // For the atomic load-arith operator, we generate
14329 //
14330 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014331 // t1 = LOAD [MI.addr]
Michael Liaob118a072012-09-20 03:06:15 +000014332 // mainMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014333 // t4 = phi(t1 / thisMBB, t3 / mainMBB)
Michael Liaob118a072012-09-20 03:06:15 +000014334 // t1 = OP MI.val, EAX
Michael Liaoc537f792013-03-06 00:17:04 +000014335 // EAX = t4
Michael Liaob118a072012-09-20 03:06:15 +000014336 // LCMPXCHG [MI.addr], t1, [EAX is implicitly used & defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014337 // t3 = EAX
Michael Liaob118a072012-09-20 03:06:15 +000014338 // JNE mainMBB
14339 // sinkMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014340 // dst = t3
Michael Liaob118a072012-09-20 03:06:15 +000014341
14342 MachineBasicBlock *thisMBB = MBB;
14343 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14344 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14345 MF->insert(I, mainMBB);
14346 MF->insert(I, sinkMBB);
14347
14348 MachineInstrBuilder MIB;
14349
14350 // Transfer the remainder of BB and its successor edges to sinkMBB.
14351 sinkMBB->splice(sinkMBB->begin(), MBB,
14352 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14353 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
14354
14355 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014356 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1);
14357 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14358 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14359 if (NewMO.isReg())
14360 NewMO.setIsKill(false);
14361 MIB.addOperand(NewMO);
14362 }
14363 for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14364 unsigned flags = (*MMOI)->getFlags();
14365 flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14366 MachineMemOperand *MMO =
14367 MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14368 (*MMOI)->getSize(),
14369 (*MMOI)->getBaseAlignment(),
14370 (*MMOI)->getTBAAInfo(),
14371 (*MMOI)->getRanges());
14372 MIB.addMemOperand(MMO);
14373 }
Michael Liaob118a072012-09-20 03:06:15 +000014374
14375 thisMBB->addSuccessor(mainMBB);
14376
14377 // mainMBB:
14378 MachineBasicBlock *origMainMBB = mainMBB;
Michael Liaob118a072012-09-20 03:06:15 +000014379
Michael Liaoc537f792013-03-06 00:17:04 +000014380 // Add a PHI.
Michael Liaofe9dbe02013-03-07 01:01:29 +000014381 MachineInstr *Phi = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4)
14382 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
Michael Liaob118a072012-09-20 03:06:15 +000014383
Michael Liaob118a072012-09-20 03:06:15 +000014384 unsigned Opc = MI->getOpcode();
14385 switch (Opc) {
14386 default:
14387 llvm_unreachable("Unhandled atomic-load-op opcode!");
14388 case X86::ATOMAND8:
14389 case X86::ATOMAND16:
14390 case X86::ATOMAND32:
14391 case X86::ATOMAND64:
14392 case X86::ATOMOR8:
14393 case X86::ATOMOR16:
14394 case X86::ATOMOR32:
14395 case X86::ATOMOR64:
14396 case X86::ATOMXOR8:
14397 case X86::ATOMXOR16:
14398 case X86::ATOMXOR32:
14399 case X86::ATOMXOR64: {
14400 unsigned ARITHOpc = getNonAtomicOpcode(Opc);
Michael Liaoc537f792013-03-06 00:17:04 +000014401 BuildMI(mainMBB, DL, TII->get(ARITHOpc), t2).addReg(SrcReg)
14402 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014403 break;
14404 }
14405 case X86::ATOMNAND8:
14406 case X86::ATOMNAND16:
14407 case X86::ATOMNAND32:
14408 case X86::ATOMNAND64: {
Michael Liaoc537f792013-03-06 00:17:04 +000014409 unsigned Tmp = MRI.createVirtualRegister(RC);
Michael Liaob118a072012-09-20 03:06:15 +000014410 unsigned NOTOpc;
14411 unsigned ANDOpc = getNonAtomicOpcodeWithExtraOpc(Opc, NOTOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014412 BuildMI(mainMBB, DL, TII->get(ANDOpc), Tmp).addReg(SrcReg)
14413 .addReg(t4);
14414 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2).addReg(Tmp);
Michael Liaob118a072012-09-20 03:06:15 +000014415 break;
14416 }
Michael Liao08382492012-09-21 03:00:17 +000014417 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000014418 case X86::ATOMMAX16:
14419 case X86::ATOMMAX32:
14420 case X86::ATOMMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000014421 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000014422 case X86::ATOMMIN16:
14423 case X86::ATOMMIN32:
14424 case X86::ATOMMIN64:
Michael Liaofe87c302012-09-21 03:18:52 +000014425 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000014426 case X86::ATOMUMAX16:
14427 case X86::ATOMUMAX32:
14428 case X86::ATOMUMAX64:
Michael Liaofe87c302012-09-21 03:18:52 +000014429 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000014430 case X86::ATOMUMIN16:
14431 case X86::ATOMUMIN32:
14432 case X86::ATOMUMIN64: {
14433 unsigned CMPOpc;
14434 unsigned CMOVOpc = getNonAtomicOpcodeWithExtraOpc(Opc, CMPOpc);
14435
14436 BuildMI(mainMBB, DL, TII->get(CMPOpc))
14437 .addReg(SrcReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014438 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014439
14440 if (Subtarget->hasCMov()) {
Michael Liaofe87c302012-09-21 03:18:52 +000014441 if (VT != MVT::i8) {
14442 // Native support
Michael Liaoc537f792013-03-06 00:17:04 +000014443 BuildMI(mainMBB, DL, TII->get(CMOVOpc), t2)
Michael Liaofe87c302012-09-21 03:18:52 +000014444 .addReg(SrcReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014445 .addReg(t4);
Michael Liaofe87c302012-09-21 03:18:52 +000014446 } else {
14447 // Promote i8 to i32 to use CMOV32
Michael Liaoc537f792013-03-06 00:17:04 +000014448 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
14449 const TargetRegisterClass *RC32 =
14450 TRI->getSubClassWithSubReg(getRegClassFor(MVT::i32), X86::sub_8bit);
Michael Liaofe87c302012-09-21 03:18:52 +000014451 unsigned SrcReg32 = MRI.createVirtualRegister(RC32);
14452 unsigned AccReg32 = MRI.createVirtualRegister(RC32);
Michael Liaoc537f792013-03-06 00:17:04 +000014453 unsigned Tmp = MRI.createVirtualRegister(RC32);
Michael Liaofe87c302012-09-21 03:18:52 +000014454
14455 unsigned Undef = MRI.createVirtualRegister(RC32);
14456 BuildMI(mainMBB, DL, TII->get(TargetOpcode::IMPLICIT_DEF), Undef);
14457
14458 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), SrcReg32)
14459 .addReg(Undef)
14460 .addReg(SrcReg)
14461 .addImm(X86::sub_8bit);
14462 BuildMI(mainMBB, DL, TII->get(TargetOpcode::INSERT_SUBREG), AccReg32)
14463 .addReg(Undef)
Michael Liaoc537f792013-03-06 00:17:04 +000014464 .addReg(t4)
Michael Liaofe87c302012-09-21 03:18:52 +000014465 .addImm(X86::sub_8bit);
14466
Michael Liaoc537f792013-03-06 00:17:04 +000014467 BuildMI(mainMBB, DL, TII->get(CMOVOpc), Tmp)
Michael Liaofe87c302012-09-21 03:18:52 +000014468 .addReg(SrcReg32)
14469 .addReg(AccReg32);
14470
Michael Liaoc537f792013-03-06 00:17:04 +000014471 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t2)
14472 .addReg(Tmp, 0, X86::sub_8bit);
Michael Liaofe87c302012-09-21 03:18:52 +000014473 }
Michael Liaob118a072012-09-20 03:06:15 +000014474 } else {
14475 // Use pseudo select and lower them.
Michael Liaofe87c302012-09-21 03:18:52 +000014476 assert((VT == MVT::i8 || VT == MVT::i16 || VT == MVT::i32) &&
Michael Liaob118a072012-09-20 03:06:15 +000014477 "Invalid atomic-load-op transformation!");
14478 unsigned SelOpc = getPseudoCMOVOpc(VT);
14479 X86::CondCode CC = X86::getCondFromCMovOpc(CMOVOpc);
14480 assert(CC != X86::COND_INVALID && "Invalid atomic-load-op transformation!");
Michael Liaoc537f792013-03-06 00:17:04 +000014481 MIB = BuildMI(mainMBB, DL, TII->get(SelOpc), t2)
14482 .addReg(SrcReg).addReg(t4)
Michael Liaob118a072012-09-20 03:06:15 +000014483 .addImm(CC);
14484 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014485 // Replace the original PHI node as mainMBB is changed after CMOV
14486 // lowering.
14487 BuildMI(*origMainMBB, Phi, DL, TII->get(X86::PHI), t4)
14488 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(mainMBB);
14489 Phi->eraseFromParent();
Michael Liaob118a072012-09-20 03:06:15 +000014490 }
14491 break;
14492 }
14493 }
14494
Michael Liaoc537f792013-03-06 00:17:04 +000014495 // Copy PhyReg back from virtual register.
14496 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), PhyReg)
14497 .addReg(t4);
Michael Liaob118a072012-09-20 03:06:15 +000014498
14499 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
Michael Liaoc537f792013-03-06 00:17:04 +000014500 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14501 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14502 if (NewMO.isReg())
14503 NewMO.setIsKill(false);
14504 MIB.addOperand(NewMO);
14505 }
14506 MIB.addReg(t2);
Michael Liaob118a072012-09-20 03:06:15 +000014507 MIB.setMemRefs(MMOBegin, MMOEnd);
14508
Michael Liaoc537f792013-03-06 00:17:04 +000014509 // Copy PhyReg back to virtual register.
14510 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3)
14511 .addReg(PhyReg);
14512
Michael Liaob118a072012-09-20 03:06:15 +000014513 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
14514
14515 mainMBB->addSuccessor(origMainMBB);
14516 mainMBB->addSuccessor(sinkMBB);
14517
14518 // sinkMBB:
Michael Liaob118a072012-09-20 03:06:15 +000014519 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14520 TII->get(TargetOpcode::COPY), DstReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014521 .addReg(t3);
Michael Liaob118a072012-09-20 03:06:15 +000014522
14523 MI->eraseFromParent();
14524 return sinkMBB;
14525}
14526
14527// EmitAtomicLoadArith6432 - emit the code sequence for pseudo atomic
14528// instructions. They will be translated into a spin-loop or compare-exchange
14529// loop from
14530//
14531// ...
14532// dst = atomic-fetch-op MI.addr, MI.val
14533// ...
14534//
14535// to
14536//
14537// ...
Michael Liaoc537f792013-03-06 00:17:04 +000014538// t1L = LOAD [MI.addr + 0]
14539// t1H = LOAD [MI.addr + 4]
Michael Liaob118a072012-09-20 03:06:15 +000014540// loop:
Michael Liaoc537f792013-03-06 00:17:04 +000014541// t4L = phi(t1L, t3L / loop)
14542// t4H = phi(t1H, t3H / loop)
14543// t2L = OP MI.val.lo, t4L
14544// t2H = OP MI.val.hi, t4H
14545// EAX = t4L
14546// EDX = t4H
14547// EBX = t2L
14548// ECX = t2H
Michael Liaob118a072012-09-20 03:06:15 +000014549// LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014550// t3L = EAX
14551// t3H = EDX
Michael Liaob118a072012-09-20 03:06:15 +000014552// JNE loop
14553// sink:
Michael Liaoc537f792013-03-06 00:17:04 +000014554// dstL = t3L
14555// dstH = t3H
Michael Liaob118a072012-09-20 03:06:15 +000014556// ...
14557MachineBasicBlock *
14558X86TargetLowering::EmitAtomicLoadArith6432(MachineInstr *MI,
14559 MachineBasicBlock *MBB) const {
14560 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14561 DebugLoc DL = MI->getDebugLoc();
14562
14563 MachineFunction *MF = MBB->getParent();
14564 MachineRegisterInfo &MRI = MF->getRegInfo();
14565
14566 const BasicBlock *BB = MBB->getBasicBlock();
14567 MachineFunction::iterator I = MBB;
14568 ++I;
14569
Michael Liao13d08bf2013-01-22 21:47:38 +000014570 assert(MI->getNumOperands() <= X86::AddrNumOperands + 7 &&
Michael Liaob118a072012-09-20 03:06:15 +000014571 "Unexpected number of operands");
14572
14573 assert(MI->hasOneMemOperand() &&
14574 "Expected atomic-load-op32 to have one memoperand");
14575
14576 // Memory Reference
14577 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14578 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14579
14580 unsigned DstLoReg, DstHiReg;
14581 unsigned SrcLoReg, SrcHiReg;
14582 unsigned MemOpndSlot;
14583
14584 unsigned CurOp = 0;
14585
14586 DstLoReg = MI->getOperand(CurOp++).getReg();
14587 DstHiReg = MI->getOperand(CurOp++).getReg();
14588 MemOpndSlot = CurOp;
14589 CurOp += X86::AddrNumOperands;
14590 SrcLoReg = MI->getOperand(CurOp++).getReg();
14591 SrcHiReg = MI->getOperand(CurOp++).getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000014592
Craig Topperc9099502012-04-20 06:31:50 +000014593 const TargetRegisterClass *RC = &X86::GR32RegClass;
Michael Liaoe5e8f762012-09-25 18:08:13 +000014594 const TargetRegisterClass *RC8 = &X86::GR8RegClass;
Scott Michelfdc40a02009-02-17 22:15:04 +000014595
Michael Liaoc537f792013-03-06 00:17:04 +000014596 unsigned t1L = MRI.createVirtualRegister(RC);
14597 unsigned t1H = MRI.createVirtualRegister(RC);
14598 unsigned t2L = MRI.createVirtualRegister(RC);
14599 unsigned t2H = MRI.createVirtualRegister(RC);
14600 unsigned t3L = MRI.createVirtualRegister(RC);
14601 unsigned t3H = MRI.createVirtualRegister(RC);
14602 unsigned t4L = MRI.createVirtualRegister(RC);
14603 unsigned t4H = MRI.createVirtualRegister(RC);
14604
Michael Liaob118a072012-09-20 03:06:15 +000014605 unsigned LCMPXCHGOpc = X86::LCMPXCHG8B;
14606 unsigned LOADOpc = X86::MOV32rm;
Scott Michelfdc40a02009-02-17 22:15:04 +000014607
Michael Liaob118a072012-09-20 03:06:15 +000014608 // For the atomic load-arith operator, we generate
Mon P Wang63307c32008-05-05 19:05:59 +000014609 //
Michael Liaob118a072012-09-20 03:06:15 +000014610 // thisMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014611 // t1L = LOAD [MI.addr + 0]
14612 // t1H = LOAD [MI.addr + 4]
Michael Liaob118a072012-09-20 03:06:15 +000014613 // mainMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014614 // t4L = phi(t1L / thisMBB, t3L / mainMBB)
14615 // t4H = phi(t1H / thisMBB, t3H / mainMBB)
14616 // t2L = OP MI.val.lo, t4L
14617 // t2H = OP MI.val.hi, t4H
14618 // EBX = t2L
14619 // ECX = t2H
Michael Liaob118a072012-09-20 03:06:15 +000014620 // LCMPXCHG8B [MI.addr], [ECX:EBX & EDX:EAX are implicitly used and EDX:EAX is implicitly defined]
Michael Liaoc537f792013-03-06 00:17:04 +000014621 // t3L = EAX
14622 // t3H = EDX
14623 // JNE loop
Michael Liaob118a072012-09-20 03:06:15 +000014624 // sinkMBB:
Michael Liaoc537f792013-03-06 00:17:04 +000014625 // dstL = t3L
14626 // dstH = t3H
Scott Michelfdc40a02009-02-17 22:15:04 +000014627
Mon P Wang63307c32008-05-05 19:05:59 +000014628 MachineBasicBlock *thisMBB = MBB;
Michael Liaob118a072012-09-20 03:06:15 +000014629 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
14630 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
14631 MF->insert(I, mainMBB);
14632 MF->insert(I, sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014633
Michael Liaob118a072012-09-20 03:06:15 +000014634 MachineInstrBuilder MIB;
Scott Michelfdc40a02009-02-17 22:15:04 +000014635
Michael Liaob118a072012-09-20 03:06:15 +000014636 // Transfer the remainder of BB and its successor edges to sinkMBB.
14637 sinkMBB->splice(sinkMBB->begin(), MBB,
14638 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
14639 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014640
Michael Liaob118a072012-09-20 03:06:15 +000014641 // thisMBB:
14642 // Lo
Michael Liaoc537f792013-03-06 00:17:04 +000014643 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1L);
Michael Liaob118a072012-09-20 03:06:15 +000014644 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
Michael Liaoc537f792013-03-06 00:17:04 +000014645 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14646 if (NewMO.isReg())
14647 NewMO.setIsKill(false);
14648 MIB.addOperand(NewMO);
Michael Liaob118a072012-09-20 03:06:15 +000014649 }
Michael Liaoc537f792013-03-06 00:17:04 +000014650 for (MachineInstr::mmo_iterator MMOI = MMOBegin; MMOI != MMOEnd; ++MMOI) {
14651 unsigned flags = (*MMOI)->getFlags();
14652 flags = (flags & ~MachineMemOperand::MOStore) | MachineMemOperand::MOLoad;
14653 MachineMemOperand *MMO =
14654 MF->getMachineMemOperand((*MMOI)->getPointerInfo(), flags,
14655 (*MMOI)->getSize(),
14656 (*MMOI)->getBaseAlignment(),
14657 (*MMOI)->getTBAAInfo(),
14658 (*MMOI)->getRanges());
14659 MIB.addMemOperand(MMO);
14660 };
14661 MachineInstr *LowMI = MIB;
14662
14663 // Hi
14664 MIB = BuildMI(thisMBB, DL, TII->get(LOADOpc), t1H);
14665 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14666 if (i == X86::AddrDisp) {
14667 MIB.addDisp(MI->getOperand(MemOpndSlot + i), 4); // 4 == sizeof(i32)
14668 } else {
14669 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14670 if (NewMO.isReg())
14671 NewMO.setIsKill(false);
14672 MIB.addOperand(NewMO);
14673 }
14674 }
14675 MIB.setMemRefs(LowMI->memoperands_begin(), LowMI->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000014676
Michael Liaob118a072012-09-20 03:06:15 +000014677 thisMBB->addSuccessor(mainMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014678
Michael Liaob118a072012-09-20 03:06:15 +000014679 // mainMBB:
14680 MachineBasicBlock *origMainMBB = mainMBB;
Scott Michelfdc40a02009-02-17 22:15:04 +000014681
Michael Liaoc537f792013-03-06 00:17:04 +000014682 // Add PHIs.
Michael Liaofe9dbe02013-03-07 01:01:29 +000014683 MachineInstr *PhiL = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4L)
14684 .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14685 MachineInstr *PhiH = BuildMI(mainMBB, DL, TII->get(X86::PHI), t4H)
14686 .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014687
Michael Liaob118a072012-09-20 03:06:15 +000014688 unsigned Opc = MI->getOpcode();
14689 switch (Opc) {
14690 default:
14691 llvm_unreachable("Unhandled atomic-load-op6432 opcode!");
14692 case X86::ATOMAND6432:
14693 case X86::ATOMOR6432:
14694 case X86::ATOMXOR6432:
14695 case X86::ATOMADD6432:
14696 case X86::ATOMSUB6432: {
14697 unsigned HiOpc;
14698 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014699 BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(t4L)
14700 .addReg(SrcLoReg);
14701 BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(t4H)
14702 .addReg(SrcHiReg);
Michael Liaob118a072012-09-20 03:06:15 +000014703 break;
14704 }
14705 case X86::ATOMNAND6432: {
14706 unsigned HiOpc, NOTOpc;
14707 unsigned LoOpc = getNonAtomic6432OpcodeWithExtraOpc(Opc, HiOpc, NOTOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014708 unsigned TmpL = MRI.createVirtualRegister(RC);
14709 unsigned TmpH = MRI.createVirtualRegister(RC);
14710 BuildMI(mainMBB, DL, TII->get(LoOpc), TmpL).addReg(SrcLoReg)
14711 .addReg(t4L);
14712 BuildMI(mainMBB, DL, TII->get(HiOpc), TmpH).addReg(SrcHiReg)
14713 .addReg(t4H);
14714 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2L).addReg(TmpL);
14715 BuildMI(mainMBB, DL, TII->get(NOTOpc), t2H).addReg(TmpH);
Michael Liaob118a072012-09-20 03:06:15 +000014716 break;
14717 }
Michael Liaoe5e8f762012-09-25 18:08:13 +000014718 case X86::ATOMMAX6432:
14719 case X86::ATOMMIN6432:
14720 case X86::ATOMUMAX6432:
14721 case X86::ATOMUMIN6432: {
14722 unsigned HiOpc;
14723 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
14724 unsigned cL = MRI.createVirtualRegister(RC8);
14725 unsigned cH = MRI.createVirtualRegister(RC8);
14726 unsigned cL32 = MRI.createVirtualRegister(RC);
14727 unsigned cH32 = MRI.createVirtualRegister(RC);
14728 unsigned cc = MRI.createVirtualRegister(RC);
14729 // cl := cmp src_lo, lo
14730 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
Michael Liaoc537f792013-03-06 00:17:04 +000014731 .addReg(SrcLoReg).addReg(t4L);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014732 BuildMI(mainMBB, DL, TII->get(LoOpc), cL);
14733 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cL32).addReg(cL);
14734 // ch := cmp src_hi, hi
14735 BuildMI(mainMBB, DL, TII->get(X86::CMP32rr))
Michael Liaoc537f792013-03-06 00:17:04 +000014736 .addReg(SrcHiReg).addReg(t4H);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014737 BuildMI(mainMBB, DL, TII->get(HiOpc), cH);
14738 BuildMI(mainMBB, DL, TII->get(X86::MOVZX32rr8), cH32).addReg(cH);
14739 // cc := if (src_hi == hi) ? cl : ch;
14740 if (Subtarget->hasCMov()) {
14741 BuildMI(mainMBB, DL, TII->get(X86::CMOVE32rr), cc)
14742 .addReg(cH32).addReg(cL32);
14743 } else {
14744 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), cc)
14745 .addReg(cH32).addReg(cL32)
14746 .addImm(X86::COND_E);
14747 mainMBB = EmitLoweredSelect(MIB, mainMBB);
14748 }
14749 BuildMI(mainMBB, DL, TII->get(X86::TEST32rr)).addReg(cc).addReg(cc);
14750 if (Subtarget->hasCMov()) {
Michael Liaoc537f792013-03-06 00:17:04 +000014751 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2L)
14752 .addReg(SrcLoReg).addReg(t4L);
14753 BuildMI(mainMBB, DL, TII->get(X86::CMOVNE32rr), t2H)
14754 .addReg(SrcHiReg).addReg(t4H);
Michael Liaoe5e8f762012-09-25 18:08:13 +000014755 } else {
Michael Liaoc537f792013-03-06 00:17:04 +000014756 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2L)
14757 .addReg(SrcLoReg).addReg(t4L)
Michael Liaoe5e8f762012-09-25 18:08:13 +000014758 .addImm(X86::COND_NE);
14759 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014760 // As the lowered CMOV won't clobber EFLAGS, we could reuse it for the
14761 // 2nd CMOV lowering.
14762 mainMBB->addLiveIn(X86::EFLAGS);
Michael Liaoc537f792013-03-06 00:17:04 +000014763 MIB = BuildMI(mainMBB, DL, TII->get(X86::CMOV_GR32), t2H)
14764 .addReg(SrcHiReg).addReg(t4H)
Michael Liaoe5e8f762012-09-25 18:08:13 +000014765 .addImm(X86::COND_NE);
14766 mainMBB = EmitLoweredSelect(MIB, mainMBB);
Michael Liaofe9dbe02013-03-07 01:01:29 +000014767 // Replace the original PHI node as mainMBB is changed after CMOV
14768 // lowering.
14769 BuildMI(*origMainMBB, PhiL, DL, TII->get(X86::PHI), t4L)
14770 .addReg(t1L).addMBB(thisMBB).addReg(t3L).addMBB(mainMBB);
14771 BuildMI(*origMainMBB, PhiH, DL, TII->get(X86::PHI), t4H)
14772 .addReg(t1H).addMBB(thisMBB).addReg(t3H).addMBB(mainMBB);
14773 PhiL->eraseFromParent();
14774 PhiH->eraseFromParent();
Michael Liaoe5e8f762012-09-25 18:08:13 +000014775 }
14776 break;
14777 }
Michael Liaob118a072012-09-20 03:06:15 +000014778 case X86::ATOMSWAP6432: {
14779 unsigned HiOpc;
14780 unsigned LoOpc = getNonAtomic6432Opcode(Opc, HiOpc);
Michael Liaoc537f792013-03-06 00:17:04 +000014781 BuildMI(mainMBB, DL, TII->get(LoOpc), t2L).addReg(SrcLoReg);
14782 BuildMI(mainMBB, DL, TII->get(HiOpc), t2H).addReg(SrcHiReg);
Michael Liaob118a072012-09-20 03:06:15 +000014783 break;
14784 }
14785 }
Mon P Wang63307c32008-05-05 19:05:59 +000014786
Michael Liaob118a072012-09-20 03:06:15 +000014787 // Copy EDX:EAX back from HiReg:LoReg
Michael Liaoc537f792013-03-06 00:17:04 +000014788 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EAX).addReg(t4L);
14789 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EDX).addReg(t4H);
Michael Liaob118a072012-09-20 03:06:15 +000014790 // Copy ECX:EBX from t1H:t1L
Michael Liaoc537f792013-03-06 00:17:04 +000014791 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::EBX).addReg(t2L);
14792 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), X86::ECX).addReg(t2H);
Mon P Wangab3e7472008-05-05 22:56:23 +000014793
Michael Liaob118a072012-09-20 03:06:15 +000014794 MIB = BuildMI(mainMBB, DL, TII->get(LCMPXCHGOpc));
Michael Liaoc537f792013-03-06 00:17:04 +000014795 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
14796 MachineOperand NewMO = MI->getOperand(MemOpndSlot + i);
14797 if (NewMO.isReg())
14798 NewMO.setIsKill(false);
14799 MIB.addOperand(NewMO);
14800 }
Michael Liaob118a072012-09-20 03:06:15 +000014801 MIB.setMemRefs(MMOBegin, MMOEnd);
Mon P Wang63307c32008-05-05 19:05:59 +000014802
Michael Liaoc537f792013-03-06 00:17:04 +000014803 // Copy EDX:EAX back to t3H:t3L
14804 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3L).addReg(X86::EAX);
14805 BuildMI(mainMBB, DL, TII->get(TargetOpcode::COPY), t3H).addReg(X86::EDX);
14806
Michael Liaob118a072012-09-20 03:06:15 +000014807 BuildMI(mainMBB, DL, TII->get(X86::JNE_4)).addMBB(origMainMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000014808
Michael Liaob118a072012-09-20 03:06:15 +000014809 mainMBB->addSuccessor(origMainMBB);
14810 mainMBB->addSuccessor(sinkMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000014811
Michael Liaob118a072012-09-20 03:06:15 +000014812 // sinkMBB:
Michael Liaob118a072012-09-20 03:06:15 +000014813 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14814 TII->get(TargetOpcode::COPY), DstLoReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014815 .addReg(t3L);
Michael Liaob118a072012-09-20 03:06:15 +000014816 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
14817 TII->get(TargetOpcode::COPY), DstHiReg)
Michael Liaoc537f792013-03-06 00:17:04 +000014818 .addReg(t3H);
Mon P Wang63307c32008-05-05 19:05:59 +000014819
Michael Liaob118a072012-09-20 03:06:15 +000014820 MI->eraseFromParent();
14821 return sinkMBB;
Mon P Wang63307c32008-05-05 19:05:59 +000014822}
14823
Eric Christopherf83a5de2009-08-27 18:08:16 +000014824// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014825// or XMM0_V32I8 in AVX all of this code can be replaced with that
14826// in the .td file.
Craig Topper8cb8c812012-11-10 09:02:47 +000014827static MachineBasicBlock *EmitPCMPSTRM(MachineInstr *MI, MachineBasicBlock *BB,
14828 const TargetInstrInfo *TII) {
Eric Christopherb120ab42009-08-18 22:50:32 +000014829 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000014830 switch (MI->getOpcode()) {
14831 default: llvm_unreachable("illegal opcode!");
14832 case X86::PCMPISTRM128REG: Opc = X86::PCMPISTRM128rr; break;
14833 case X86::VPCMPISTRM128REG: Opc = X86::VPCMPISTRM128rr; break;
14834 case X86::PCMPISTRM128MEM: Opc = X86::PCMPISTRM128rm; break;
14835 case X86::VPCMPISTRM128MEM: Opc = X86::VPCMPISTRM128rm; break;
14836 case X86::PCMPESTRM128REG: Opc = X86::PCMPESTRM128rr; break;
14837 case X86::VPCMPESTRM128REG: Opc = X86::VPCMPESTRM128rr; break;
14838 case X86::PCMPESTRM128MEM: Opc = X86::PCMPESTRM128rm; break;
14839 case X86::VPCMPESTRM128MEM: Opc = X86::VPCMPESTRM128rm; break;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000014840 }
Eric Christopherb120ab42009-08-18 22:50:32 +000014841
Craig Topper8aae8dd2012-11-10 08:57:41 +000014842 DebugLoc dl = MI->getDebugLoc();
Eric Christopher41c902f2010-11-30 08:20:21 +000014843 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000014844
Craig Topper52ea2452012-11-10 09:25:36 +000014845 unsigned NumArgs = MI->getNumOperands();
14846 for (unsigned i = 1; i < NumArgs; ++i) {
14847 MachineOperand &Op = MI->getOperand(i);
Eric Christopherb120ab42009-08-18 22:50:32 +000014848 if (!(Op.isReg() && Op.isImplicit()))
14849 MIB.addOperand(Op);
14850 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000014851 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000014852 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14853
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000014854 BuildMI(*BB, MI, dl,
Craig Topper638aa682012-08-05 00:17:48 +000014855 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000014856 .addReg(X86::XMM0);
14857
Dan Gohman14152b42010-07-06 20:24:04 +000014858 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000014859 return BB;
14860}
14861
Craig Topper9c7ae012012-11-10 01:23:36 +000014862// FIXME: Custom handling because TableGen doesn't support multiple implicit
14863// defs in an instruction pattern
Craig Topper8cb8c812012-11-10 09:02:47 +000014864static MachineBasicBlock *EmitPCMPSTRI(MachineInstr *MI, MachineBasicBlock *BB,
14865 const TargetInstrInfo *TII) {
Craig Topper9c7ae012012-11-10 01:23:36 +000014866 unsigned Opc;
Craig Topper8aae8dd2012-11-10 08:57:41 +000014867 switch (MI->getOpcode()) {
14868 default: llvm_unreachable("illegal opcode!");
14869 case X86::PCMPISTRIREG: Opc = X86::PCMPISTRIrr; break;
14870 case X86::VPCMPISTRIREG: Opc = X86::VPCMPISTRIrr; break;
14871 case X86::PCMPISTRIMEM: Opc = X86::PCMPISTRIrm; break;
14872 case X86::VPCMPISTRIMEM: Opc = X86::VPCMPISTRIrm; break;
14873 case X86::PCMPESTRIREG: Opc = X86::PCMPESTRIrr; break;
14874 case X86::VPCMPESTRIREG: Opc = X86::VPCMPESTRIrr; break;
14875 case X86::PCMPESTRIMEM: Opc = X86::PCMPESTRIrm; break;
14876 case X86::VPCMPESTRIMEM: Opc = X86::VPCMPESTRIrm; break;
Craig Topper9c7ae012012-11-10 01:23:36 +000014877 }
14878
Craig Topper8aae8dd2012-11-10 08:57:41 +000014879 DebugLoc dl = MI->getDebugLoc();
Craig Topper9c7ae012012-11-10 01:23:36 +000014880 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Craig Topper8aae8dd2012-11-10 08:57:41 +000014881
Craig Topper52ea2452012-11-10 09:25:36 +000014882 unsigned NumArgs = MI->getNumOperands(); // remove the results
14883 for (unsigned i = 1; i < NumArgs; ++i) {
14884 MachineOperand &Op = MI->getOperand(i);
Craig Topper9c7ae012012-11-10 01:23:36 +000014885 if (!(Op.isReg() && Op.isImplicit()))
14886 MIB.addOperand(Op);
14887 }
Craig Topper8aae8dd2012-11-10 08:57:41 +000014888 if (MI->hasOneMemOperand())
Craig Topper9c7ae012012-11-10 01:23:36 +000014889 MIB->setMemRefs(MI->memoperands_begin(), MI->memoperands_end());
14890
14891 BuildMI(*BB, MI, dl,
14892 TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
14893 .addReg(X86::ECX);
14894
14895 MI->eraseFromParent();
14896 return BB;
14897}
14898
Craig Topper2da36912012-11-11 22:45:02 +000014899static MachineBasicBlock * EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB,
14900 const TargetInstrInfo *TII,
14901 const X86Subtarget* Subtarget) {
Eric Christopher228232b2010-11-30 07:20:12 +000014902 DebugLoc dl = MI->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014903
Eric Christopher228232b2010-11-30 07:20:12 +000014904 // Address into RAX/EAX, other two args into ECX, EDX.
14905 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
14906 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
14907 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
14908 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000014909 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014910
Eric Christopher228232b2010-11-30 07:20:12 +000014911 unsigned ValOps = X86::AddrNumOperands;
14912 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
14913 .addReg(MI->getOperand(ValOps).getReg());
14914 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
14915 .addReg(MI->getOperand(ValOps+1).getReg());
14916
14917 // The instruction doesn't actually take any operands though.
14918 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000014919
Eric Christopher228232b2010-11-30 07:20:12 +000014920 MI->eraseFromParent(); // The pseudo is gone now.
14921 return BB;
14922}
14923
14924MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000014925X86TargetLowering::EmitVAARG64WithCustomInserter(
14926 MachineInstr *MI,
14927 MachineBasicBlock *MBB) const {
14928 // Emit va_arg instruction on X86-64.
14929
14930 // Operands to this pseudo-instruction:
14931 // 0 ) Output : destination address (reg)
14932 // 1-5) Input : va_list address (addr, i64mem)
14933 // 6 ) ArgSize : Size (in bytes) of vararg type
14934 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
14935 // 8 ) Align : Alignment of type
14936 // 9 ) EFLAGS (implicit-def)
14937
14938 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
14939 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
14940
14941 unsigned DestReg = MI->getOperand(0).getReg();
14942 MachineOperand &Base = MI->getOperand(1);
14943 MachineOperand &Scale = MI->getOperand(2);
14944 MachineOperand &Index = MI->getOperand(3);
14945 MachineOperand &Disp = MI->getOperand(4);
14946 MachineOperand &Segment = MI->getOperand(5);
14947 unsigned ArgSize = MI->getOperand(6).getImm();
14948 unsigned ArgMode = MI->getOperand(7).getImm();
14949 unsigned Align = MI->getOperand(8).getImm();
14950
14951 // Memory Reference
14952 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
14953 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
14954 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
14955
14956 // Machine Information
14957 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
14958 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
14959 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
14960 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
14961 DebugLoc DL = MI->getDebugLoc();
14962
14963 // struct va_list {
14964 // i32 gp_offset
14965 // i32 fp_offset
14966 // i64 overflow_area (address)
14967 // i64 reg_save_area (address)
14968 // }
14969 // sizeof(va_list) = 24
14970 // alignment(va_list) = 8
14971
14972 unsigned TotalNumIntRegs = 6;
14973 unsigned TotalNumXMMRegs = 8;
14974 bool UseGPOffset = (ArgMode == 1);
14975 bool UseFPOffset = (ArgMode == 2);
14976 unsigned MaxOffset = TotalNumIntRegs * 8 +
14977 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
14978
14979 /* Align ArgSize to a multiple of 8 */
14980 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
14981 bool NeedsAlign = (Align > 8);
14982
14983 MachineBasicBlock *thisMBB = MBB;
14984 MachineBasicBlock *overflowMBB;
14985 MachineBasicBlock *offsetMBB;
14986 MachineBasicBlock *endMBB;
14987
14988 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
14989 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
14990 unsigned OffsetReg = 0;
14991
14992 if (!UseGPOffset && !UseFPOffset) {
14993 // If we only pull from the overflow region, we don't create a branch.
14994 // We don't need to alter control flow.
14995 OffsetDestReg = 0; // unused
14996 OverflowDestReg = DestReg;
14997
14998 offsetMBB = NULL;
14999 overflowMBB = thisMBB;
15000 endMBB = thisMBB;
15001 } else {
15002 // First emit code to check if gp_offset (or fp_offset) is below the bound.
15003 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
15004 // If not, pull from overflow_area. (branch to overflowMBB)
15005 //
15006 // thisMBB
15007 // | .
15008 // | .
15009 // offsetMBB overflowMBB
15010 // | .
15011 // | .
15012 // endMBB
15013
15014 // Registers for the PHI in endMBB
15015 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
15016 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
15017
15018 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15019 MachineFunction *MF = MBB->getParent();
15020 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15021 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15022 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15023
15024 MachineFunction::iterator MBBIter = MBB;
15025 ++MBBIter;
15026
15027 // Insert the new basic blocks
15028 MF->insert(MBBIter, offsetMBB);
15029 MF->insert(MBBIter, overflowMBB);
15030 MF->insert(MBBIter, endMBB);
15031
15032 // Transfer the remainder of MBB and its successor edges to endMBB.
15033 endMBB->splice(endMBB->begin(), thisMBB,
15034 llvm::next(MachineBasicBlock::iterator(MI)),
15035 thisMBB->end());
15036 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
15037
15038 // Make offsetMBB and overflowMBB successors of thisMBB
15039 thisMBB->addSuccessor(offsetMBB);
15040 thisMBB->addSuccessor(overflowMBB);
15041
15042 // endMBB is a successor of both offsetMBB and overflowMBB
15043 offsetMBB->addSuccessor(endMBB);
15044 overflowMBB->addSuccessor(endMBB);
15045
15046 // Load the offset value into a register
15047 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15048 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
15049 .addOperand(Base)
15050 .addOperand(Scale)
15051 .addOperand(Index)
15052 .addDisp(Disp, UseFPOffset ? 4 : 0)
15053 .addOperand(Segment)
15054 .setMemRefs(MMOBegin, MMOEnd);
15055
15056 // Check if there is enough room left to pull this argument.
15057 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
15058 .addReg(OffsetReg)
15059 .addImm(MaxOffset + 8 - ArgSizeA8);
15060
15061 // Branch to "overflowMBB" if offset >= max
15062 // Fall through to "offsetMBB" otherwise
15063 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
15064 .addMBB(overflowMBB);
15065 }
15066
15067 // In offsetMBB, emit code to use the reg_save_area.
15068 if (offsetMBB) {
15069 assert(OffsetReg != 0);
15070
15071 // Read the reg_save_area address.
15072 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
15073 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
15074 .addOperand(Base)
15075 .addOperand(Scale)
15076 .addOperand(Index)
15077 .addDisp(Disp, 16)
15078 .addOperand(Segment)
15079 .setMemRefs(MMOBegin, MMOEnd);
15080
15081 // Zero-extend the offset
15082 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
15083 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
15084 .addImm(0)
15085 .addReg(OffsetReg)
15086 .addImm(X86::sub_32bit);
15087
15088 // Add the offset to the reg_save_area to get the final address.
15089 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
15090 .addReg(OffsetReg64)
15091 .addReg(RegSaveReg);
15092
15093 // Compute the offset for the next argument
15094 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
15095 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
15096 .addReg(OffsetReg)
15097 .addImm(UseFPOffset ? 16 : 8);
15098
15099 // Store it back into the va_list.
15100 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
15101 .addOperand(Base)
15102 .addOperand(Scale)
15103 .addOperand(Index)
15104 .addDisp(Disp, UseFPOffset ? 4 : 0)
15105 .addOperand(Segment)
15106 .addReg(NextOffsetReg)
15107 .setMemRefs(MMOBegin, MMOEnd);
15108
15109 // Jump to endMBB
15110 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
15111 .addMBB(endMBB);
15112 }
15113
15114 //
15115 // Emit code to use overflow area
15116 //
15117
15118 // Load the overflow_area address into a register.
15119 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
15120 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
15121 .addOperand(Base)
15122 .addOperand(Scale)
15123 .addOperand(Index)
15124 .addDisp(Disp, 8)
15125 .addOperand(Segment)
15126 .setMemRefs(MMOBegin, MMOEnd);
15127
15128 // If we need to align it, do so. Otherwise, just copy the address
15129 // to OverflowDestReg.
15130 if (NeedsAlign) {
15131 // Align the overflow address
15132 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
15133 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
15134
15135 // aligned_addr = (addr + (align-1)) & ~(align-1)
15136 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
15137 .addReg(OverflowAddrReg)
15138 .addImm(Align-1);
15139
15140 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
15141 .addReg(TmpReg)
15142 .addImm(~(uint64_t)(Align-1));
15143 } else {
15144 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
15145 .addReg(OverflowAddrReg);
15146 }
15147
15148 // Compute the next overflow address after this argument.
15149 // (the overflow address should be kept 8-byte aligned)
15150 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
15151 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
15152 .addReg(OverflowDestReg)
15153 .addImm(ArgSizeA8);
15154
15155 // Store the new overflow address.
15156 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
15157 .addOperand(Base)
15158 .addOperand(Scale)
15159 .addOperand(Index)
15160 .addDisp(Disp, 8)
15161 .addOperand(Segment)
15162 .addReg(NextAddrReg)
15163 .setMemRefs(MMOBegin, MMOEnd);
15164
15165 // If we branched, emit the PHI to the front of endMBB.
15166 if (offsetMBB) {
15167 BuildMI(*endMBB, endMBB->begin(), DL,
15168 TII->get(X86::PHI), DestReg)
15169 .addReg(OffsetDestReg).addMBB(offsetMBB)
15170 .addReg(OverflowDestReg).addMBB(overflowMBB);
15171 }
15172
15173 // Erase the pseudo instruction
15174 MI->eraseFromParent();
15175
15176 return endMBB;
15177}
15178
15179MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000015180X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
15181 MachineInstr *MI,
15182 MachineBasicBlock *MBB) const {
15183 // Emit code to save XMM registers to the stack. The ABI says that the
15184 // number of registers to save is given in %al, so it's theoretically
15185 // possible to do an indirect jump trick to avoid saving all of them,
15186 // however this code takes a simpler approach and just executes all
15187 // of the stores if %al is non-zero. It's less code, and it's probably
15188 // easier on the hardware branch predictor, and stores aren't all that
15189 // expensive anyway.
15190
15191 // Create the new basic blocks. One block contains all the XMM stores,
15192 // and one block is the final destination regardless of whether any
15193 // stores were performed.
15194 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
15195 MachineFunction *F = MBB->getParent();
15196 MachineFunction::iterator MBBIter = MBB;
15197 ++MBBIter;
15198 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
15199 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
15200 F->insert(MBBIter, XMMSaveMBB);
15201 F->insert(MBBIter, EndMBB);
15202
Dan Gohman14152b42010-07-06 20:24:04 +000015203 // Transfer the remainder of MBB and its successor edges to EndMBB.
15204 EndMBB->splice(EndMBB->begin(), MBB,
15205 llvm::next(MachineBasicBlock::iterator(MI)),
15206 MBB->end());
15207 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
15208
Dan Gohmand6708ea2009-08-15 01:38:56 +000015209 // The original block will now fall through to the XMM save block.
15210 MBB->addSuccessor(XMMSaveMBB);
15211 // The XMMSaveMBB will fall through to the end block.
15212 XMMSaveMBB->addSuccessor(EndMBB);
15213
15214 // Now add the instructions.
15215 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15216 DebugLoc DL = MI->getDebugLoc();
15217
15218 unsigned CountReg = MI->getOperand(0).getReg();
15219 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
15220 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
15221
15222 if (!Subtarget->isTargetWin64()) {
15223 // If %al is 0, branch around the XMM save block.
15224 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000015225 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000015226 MBB->addSuccessor(EndMBB);
15227 }
15228
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000015229 unsigned MOVOpc = Subtarget->hasFp256() ? X86::VMOVAPSmr : X86::MOVAPSmr;
Dan Gohmand6708ea2009-08-15 01:38:56 +000015230 // In the XMM save block, save all the XMM argument registers.
15231 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
15232 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000015233 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000015234 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000015235 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000015236 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000015237 /*Size=*/16, /*Align=*/16);
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000015238 BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
Dan Gohmand6708ea2009-08-15 01:38:56 +000015239 .addFrameIndex(RegSaveFrameIndex)
15240 .addImm(/*Scale=*/1)
15241 .addReg(/*IndexReg=*/0)
15242 .addImm(/*Disp=*/Offset)
15243 .addReg(/*Segment=*/0)
15244 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000015245 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000015246 }
15247
Dan Gohman14152b42010-07-06 20:24:04 +000015248 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000015249
15250 return EndMBB;
15251}
Mon P Wang63307c32008-05-05 19:05:59 +000015252
Lang Hames6e3f7e42012-02-03 01:13:49 +000015253// The EFLAGS operand of SelectItr might be missing a kill marker
15254// because there were multiple uses of EFLAGS, and ISel didn't know
15255// which to mark. Figure out whether SelectItr should have had a
15256// kill marker, and set it if it should. Returns the correct kill
15257// marker value.
15258static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
15259 MachineBasicBlock* BB,
15260 const TargetRegisterInfo* TRI) {
15261 // Scan forward through BB for a use/def of EFLAGS.
15262 MachineBasicBlock::iterator miI(llvm::next(SelectItr));
15263 for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
Lang Hames50a36f72012-02-02 07:48:37 +000015264 const MachineInstr& mi = *miI;
Lang Hames6e3f7e42012-02-03 01:13:49 +000015265 if (mi.readsRegister(X86::EFLAGS))
Lang Hames50a36f72012-02-02 07:48:37 +000015266 return false;
Lang Hames6e3f7e42012-02-03 01:13:49 +000015267 if (mi.definesRegister(X86::EFLAGS))
15268 break; // Should have kill-flag - update below.
15269 }
15270
15271 // If we hit the end of the block, check whether EFLAGS is live into a
15272 // successor.
15273 if (miI == BB->end()) {
15274 for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
15275 sEnd = BB->succ_end();
15276 sItr != sEnd; ++sItr) {
15277 MachineBasicBlock* succ = *sItr;
15278 if (succ->isLiveIn(X86::EFLAGS))
15279 return false;
Lang Hames50a36f72012-02-02 07:48:37 +000015280 }
15281 }
15282
Lang Hames6e3f7e42012-02-03 01:13:49 +000015283 // We found a def, or hit the end of the basic block and EFLAGS wasn't live
15284 // out. SelectMI should have a kill flag on EFLAGS.
15285 SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
Lang Hames50a36f72012-02-02 07:48:37 +000015286 return true;
15287}
15288
Evan Cheng60c07e12006-07-05 22:17:51 +000015289MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000015290X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015291 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000015292 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15293 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000015294
Chris Lattner52600972009-09-02 05:57:00 +000015295 // To "insert" a SELECT_CC instruction, we actually have to insert the
15296 // diamond control-flow pattern. The incoming instruction knows the
15297 // destination vreg to set, the condition code register to branch on, the
15298 // true/false values to select between, and a branch opcode to use.
15299 const BasicBlock *LLVM_BB = BB->getBasicBlock();
15300 MachineFunction::iterator It = BB;
15301 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000015302
Chris Lattner52600972009-09-02 05:57:00 +000015303 // thisMBB:
15304 // ...
15305 // TrueVal = ...
15306 // cmpTY ccX, r1, r2
15307 // bCC copy1MBB
15308 // fallthrough --> copy0MBB
15309 MachineBasicBlock *thisMBB = BB;
15310 MachineFunction *F = BB->getParent();
15311 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
15312 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000015313 F->insert(It, copy0MBB);
15314 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000015315
Bill Wendling730c07e2010-06-25 20:48:10 +000015316 // If the EFLAGS register isn't dead in the terminator, then claim that it's
15317 // live into the sink and copy blocks.
Lang Hames6e3f7e42012-02-03 01:13:49 +000015318 const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
15319 if (!MI->killsRegister(X86::EFLAGS) &&
15320 !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
15321 copy0MBB->addLiveIn(X86::EFLAGS);
15322 sinkMBB->addLiveIn(X86::EFLAGS);
Bill Wendling730c07e2010-06-25 20:48:10 +000015323 }
15324
Dan Gohman14152b42010-07-06 20:24:04 +000015325 // Transfer the remainder of BB and its successor edges to sinkMBB.
15326 sinkMBB->splice(sinkMBB->begin(), BB,
15327 llvm::next(MachineBasicBlock::iterator(MI)),
15328 BB->end());
15329 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
15330
15331 // Add the true and fallthrough blocks as its successors.
15332 BB->addSuccessor(copy0MBB);
15333 BB->addSuccessor(sinkMBB);
15334
15335 // Create the conditional branch instruction.
15336 unsigned Opc =
15337 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
15338 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
15339
Chris Lattner52600972009-09-02 05:57:00 +000015340 // copy0MBB:
15341 // %FalseValue = ...
15342 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000015343 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000015344
Chris Lattner52600972009-09-02 05:57:00 +000015345 // sinkMBB:
15346 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
15347 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000015348 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15349 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000015350 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
15351 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
15352
Dan Gohman14152b42010-07-06 20:24:04 +000015353 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000015354 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000015355}
15356
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015357MachineBasicBlock *
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015358X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
15359 bool Is64Bit) const {
15360 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15361 DebugLoc DL = MI->getDebugLoc();
15362 MachineFunction *MF = BB->getParent();
15363 const BasicBlock *LLVM_BB = BB->getBasicBlock();
15364
Nick Lewycky8a8d4792011-12-02 22:16:29 +000015365 assert(getTargetMachine().Options.EnableSegmentedStacks);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015366
15367 unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
15368 unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
15369
15370 // BB:
15371 // ... [Till the alloca]
15372 // If stacklet is not large enough, jump to mallocMBB
15373 //
15374 // bumpMBB:
15375 // Allocate by subtracting from RSP
15376 // Jump to continueMBB
15377 //
15378 // mallocMBB:
15379 // Allocate by call to runtime
15380 //
15381 // continueMBB:
15382 // ...
15383 // [rest of original BB]
15384 //
15385
15386 MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15387 MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15388 MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
15389
15390 MachineRegisterInfo &MRI = MF->getRegInfo();
15391 const TargetRegisterClass *AddrRegClass =
15392 getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
15393
15394 unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15395 bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
15396 tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola66bf7432011-10-26 21:16:41 +000015397 SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015398 sizeVReg = MI->getOperand(1).getReg(),
15399 physSPReg = Is64Bit ? X86::RSP : X86::ESP;
15400
15401 MachineFunction::iterator MBBIter = BB;
15402 ++MBBIter;
15403
15404 MF->insert(MBBIter, bumpMBB);
15405 MF->insert(MBBIter, mallocMBB);
15406 MF->insert(MBBIter, continueMBB);
15407
15408 continueMBB->splice(continueMBB->begin(), BB, llvm::next
15409 (MachineBasicBlock::iterator(MI)), BB->end());
15410 continueMBB->transferSuccessorsAndUpdatePHIs(BB);
15411
15412 // Add code to the main basic block to check if the stack limit has been hit,
15413 // and if so, jump to mallocMBB otherwise to bumpMBB.
15414 BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
Rafael Espindola66bf7432011-10-26 21:16:41 +000015415 BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015416 .addReg(tmpSPVReg).addReg(sizeVReg);
15417 BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
Rafael Espindola014f7a32012-01-11 18:14:03 +000015418 .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015419 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015420 BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
15421
15422 // bumpMBB simply decreases the stack pointer, since we know the current
15423 // stacklet has enough space.
15424 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015425 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015426 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
Rafael Espindola66bf7432011-10-26 21:16:41 +000015427 .addReg(SPLimitVReg);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015428 BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15429
15430 // Calls into a routine in libgcc to allocate more space from the heap.
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015431 const uint32_t *RegMask =
15432 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015433 if (Is64Bit) {
15434 BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
15435 .addReg(sizeVReg);
15436 BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000015437 .addExternalSymbol("__morestack_allocate_stack_space")
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015438 .addRegMask(RegMask)
Jakob Stoklund Olesen85dccf12012-07-04 23:53:27 +000015439 .addReg(X86::RDI, RegState::Implicit)
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015440 .addReg(X86::RAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015441 } else {
15442 BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
15443 .addImm(12);
15444 BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
15445 BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015446 .addExternalSymbol("__morestack_allocate_stack_space")
15447 .addRegMask(RegMask)
15448 .addReg(X86::EAX, RegState::ImplicitDefine);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015449 }
15450
15451 if (!Is64Bit)
15452 BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
15453 .addImm(16);
15454
15455 BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
15456 .addReg(Is64Bit ? X86::RAX : X86::EAX);
15457 BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
15458
15459 // Set up the CFG correctly.
15460 BB->addSuccessor(bumpMBB);
15461 BB->addSuccessor(mallocMBB);
15462 mallocMBB->addSuccessor(continueMBB);
15463 bumpMBB->addSuccessor(continueMBB);
15464
15465 // Take care of the PHI nodes.
15466 BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
15467 MI->getOperand(0).getReg())
15468 .addReg(mallocPtrVReg).addMBB(mallocMBB)
15469 .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
15470
15471 // Delete the original pseudo instruction.
15472 MI->eraseFromParent();
15473
15474 // And we're done.
15475 return continueMBB;
15476}
15477
15478MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015479X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015480 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015481 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15482 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015483
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015484 assert(!Subtarget->isTargetEnvMacho());
15485
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015486 // The lowering is pretty easy: we're just emitting the call to _alloca. The
15487 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015488
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015489 if (Subtarget->isTargetWin64()) {
15490 if (Subtarget->isTargetCygMing()) {
15491 // ___chkstk(Mingw64):
15492 // Clobbers R10, R11, RAX and EFLAGS.
15493 // Updates RSP.
15494 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15495 .addExternalSymbol("___chkstk")
15496 .addReg(X86::RAX, RegState::Implicit)
15497 .addReg(X86::RSP, RegState::Implicit)
15498 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
15499 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
15500 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15501 } else {
15502 // __chkstk(MSVCRT): does not update stack pointer.
15503 // Clobbers R10, R11 and EFLAGS.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015504 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
15505 .addExternalSymbol("__chkstk")
15506 .addReg(X86::RAX, RegState::Implicit)
15507 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Nico Rieck40101102013-07-08 11:20:11 +000015508 // RAX has the offset to be subtracted from RSP.
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015509 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
15510 .addReg(X86::RSP)
15511 .addReg(X86::RAX);
15512 }
15513 } else {
15514 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015515 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
15516
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000015517 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
15518 .addExternalSymbol(StackProbeSymbol)
15519 .addReg(X86::EAX, RegState::Implicit)
15520 .addReg(X86::ESP, RegState::Implicit)
15521 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
15522 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
15523 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
15524 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015525
Dan Gohman14152b42010-07-06 20:24:04 +000015526 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000015527 return BB;
15528}
Chris Lattner52600972009-09-02 05:57:00 +000015529
15530MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000015531X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
15532 MachineBasicBlock *BB) const {
15533 // This is pretty easy. We're taking the value that we received from
15534 // our load from the relocation, sticking it in either RDI (x86-64)
15535 // or EAX and doing an indirect call. The return value will then
15536 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000015537 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000015538 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000015539 DebugLoc DL = MI->getDebugLoc();
15540 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000015541
15542 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000015543 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000015544
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015545 // Get a register mask for the lowered call.
15546 // FIXME: The 32-bit calls have non-standard calling conventions. Use a
15547 // proper register mask.
15548 const uint32_t *RegMask =
15549 getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015550 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000015551 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15552 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000015553 .addReg(X86::RIP)
15554 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015555 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000015556 MI->getOperand(3).getTargetFlags())
15557 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000015558 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000015559 addDirectMem(MIB, X86::RDI);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015560 MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher61025492010-06-15 23:08:42 +000015561 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000015562 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15563 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000015564 .addReg(0)
15565 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015566 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000015567 MI->getOperand(3).getTargetFlags())
15568 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000015569 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000015570 addDirectMem(MIB, X86::EAX);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015571 MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015572 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000015573 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
15574 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000015575 .addReg(TII->getGlobalBaseReg(F))
15576 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000015577 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000015578 MI->getOperand(3).getTargetFlags())
15579 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000015580 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000015581 addDirectMem(MIB, X86::EAX);
Jakob Stoklund Olesen8bcde2a2012-02-16 00:02:50 +000015582 MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015583 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000015584
Dan Gohman14152b42010-07-06 20:24:04 +000015585 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000015586 return BB;
15587}
15588
15589MachineBasicBlock *
Michael Liao6c0e04c2012-10-15 22:39:43 +000015590X86TargetLowering::emitEHSjLjSetJmp(MachineInstr *MI,
15591 MachineBasicBlock *MBB) const {
15592 DebugLoc DL = MI->getDebugLoc();
15593 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15594
15595 MachineFunction *MF = MBB->getParent();
15596 MachineRegisterInfo &MRI = MF->getRegInfo();
15597
15598 const BasicBlock *BB = MBB->getBasicBlock();
15599 MachineFunction::iterator I = MBB;
15600 ++I;
15601
15602 // Memory Reference
15603 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15604 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15605
15606 unsigned DstReg;
15607 unsigned MemOpndSlot = 0;
15608
15609 unsigned CurOp = 0;
15610
15611 DstReg = MI->getOperand(CurOp++).getReg();
15612 const TargetRegisterClass *RC = MRI.getRegClass(DstReg);
15613 assert(RC->hasType(MVT::i32) && "Invalid destination!");
15614 unsigned mainDstReg = MRI.createVirtualRegister(RC);
15615 unsigned restoreDstReg = MRI.createVirtualRegister(RC);
15616
15617 MemOpndSlot = CurOp;
15618
15619 MVT PVT = getPointerTy();
15620 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15621 "Invalid Pointer Size!");
15622
15623 // For v = setjmp(buf), we generate
15624 //
15625 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000015626 // buf[LabelOffset] = restoreMBB
Michael Liao6c0e04c2012-10-15 22:39:43 +000015627 // SjLjSetup restoreMBB
15628 //
15629 // mainMBB:
15630 // v_main = 0
15631 //
15632 // sinkMBB:
15633 // v = phi(main, restore)
15634 //
15635 // restoreMBB:
15636 // v_restore = 1
15637
15638 MachineBasicBlock *thisMBB = MBB;
15639 MachineBasicBlock *mainMBB = MF->CreateMachineBasicBlock(BB);
15640 MachineBasicBlock *sinkMBB = MF->CreateMachineBasicBlock(BB);
15641 MachineBasicBlock *restoreMBB = MF->CreateMachineBasicBlock(BB);
15642 MF->insert(I, mainMBB);
15643 MF->insert(I, sinkMBB);
15644 MF->push_back(restoreMBB);
15645
15646 MachineInstrBuilder MIB;
15647
15648 // Transfer the remainder of BB and its successor edges to sinkMBB.
15649 sinkMBB->splice(sinkMBB->begin(), MBB,
15650 llvm::next(MachineBasicBlock::iterator(MI)), MBB->end());
15651 sinkMBB->transferSuccessorsAndUpdatePHIs(MBB);
15652
15653 // thisMBB:
Michael Liao281ae5a2012-10-17 02:22:27 +000015654 unsigned PtrStoreOpc = 0;
15655 unsigned LabelReg = 0;
15656 const int64_t LabelOffset = 1 * PVT.getStoreSize();
15657 Reloc::Model RM = getTargetMachine().getRelocationModel();
15658 bool UseImmLabel = (getTargetMachine().getCodeModel() == CodeModel::Small) &&
15659 (RM == Reloc::Static || RM == Reloc::DynamicNoPIC);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015660
Michael Liao281ae5a2012-10-17 02:22:27 +000015661 // Prepare IP either in reg or imm.
15662 if (!UseImmLabel) {
15663 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mr : X86::MOV32mr;
15664 const TargetRegisterClass *PtrRC = getRegClassFor(PVT);
15665 LabelReg = MRI.createVirtualRegister(PtrRC);
15666 if (Subtarget->is64Bit()) {
15667 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA64r), LabelReg)
15668 .addReg(X86::RIP)
15669 .addImm(0)
15670 .addReg(0)
15671 .addMBB(restoreMBB)
15672 .addReg(0);
15673 } else {
15674 const X86InstrInfo *XII = static_cast<const X86InstrInfo*>(TII);
15675 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::LEA32r), LabelReg)
15676 .addReg(XII->getGlobalBaseReg(MF))
15677 .addImm(0)
15678 .addReg(0)
15679 .addMBB(restoreMBB, Subtarget->ClassifyBlockAddressReference())
15680 .addReg(0);
15681 }
15682 } else
15683 PtrStoreOpc = (PVT == MVT::i64) ? X86::MOV64mi32 : X86::MOV32mi;
Michael Liao6c0e04c2012-10-15 22:39:43 +000015684 // Store IP
Michael Liao281ae5a2012-10-17 02:22:27 +000015685 MIB = BuildMI(*thisMBB, MI, DL, TII->get(PtrStoreOpc));
Michael Liao6c0e04c2012-10-15 22:39:43 +000015686 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15687 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015688 MIB.addDisp(MI->getOperand(MemOpndSlot + i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015689 else
15690 MIB.addOperand(MI->getOperand(MemOpndSlot + i));
15691 }
Michael Liao281ae5a2012-10-17 02:22:27 +000015692 if (!UseImmLabel)
15693 MIB.addReg(LabelReg);
15694 else
15695 MIB.addMBB(restoreMBB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015696 MIB.setMemRefs(MMOBegin, MMOEnd);
15697 // Setup
15698 MIB = BuildMI(*thisMBB, MI, DL, TII->get(X86::EH_SjLj_Setup))
15699 .addMBB(restoreMBB);
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000015700
15701 const X86RegisterInfo *RegInfo =
15702 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liao6c0e04c2012-10-15 22:39:43 +000015703 MIB.addRegMask(RegInfo->getNoPreservedMask());
15704 thisMBB->addSuccessor(mainMBB);
15705 thisMBB->addSuccessor(restoreMBB);
15706
15707 // mainMBB:
15708 // EAX = 0
15709 BuildMI(mainMBB, DL, TII->get(X86::MOV32r0), mainDstReg);
15710 mainMBB->addSuccessor(sinkMBB);
15711
15712 // sinkMBB:
15713 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
15714 TII->get(X86::PHI), DstReg)
15715 .addReg(mainDstReg).addMBB(mainMBB)
15716 .addReg(restoreDstReg).addMBB(restoreMBB);
15717
15718 // restoreMBB:
15719 BuildMI(restoreMBB, DL, TII->get(X86::MOV32ri), restoreDstReg).addImm(1);
15720 BuildMI(restoreMBB, DL, TII->get(X86::JMP_4)).addMBB(sinkMBB);
15721 restoreMBB->addSuccessor(sinkMBB);
15722
15723 MI->eraseFromParent();
15724 return sinkMBB;
15725}
15726
15727MachineBasicBlock *
15728X86TargetLowering::emitEHSjLjLongJmp(MachineInstr *MI,
15729 MachineBasicBlock *MBB) const {
15730 DebugLoc DL = MI->getDebugLoc();
15731 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15732
15733 MachineFunction *MF = MBB->getParent();
15734 MachineRegisterInfo &MRI = MF->getRegInfo();
15735
15736 // Memory Reference
15737 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
15738 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
15739
15740 MVT PVT = getPointerTy();
15741 assert((PVT == MVT::i64 || PVT == MVT::i32) &&
15742 "Invalid Pointer Size!");
15743
15744 const TargetRegisterClass *RC =
15745 (PVT == MVT::i64) ? &X86::GR64RegClass : &X86::GR32RegClass;
15746 unsigned Tmp = MRI.createVirtualRegister(RC);
15747 // Since FP is only updated here but NOT referenced, it's treated as GPR.
Bill Wendlinga5e5ba62013-06-07 21:00:34 +000015748 const X86RegisterInfo *RegInfo =
15749 static_cast<const X86RegisterInfo*>(getTargetMachine().getRegisterInfo());
Michael Liao6c0e04c2012-10-15 22:39:43 +000015750 unsigned FP = (PVT == MVT::i64) ? X86::RBP : X86::EBP;
15751 unsigned SP = RegInfo->getStackRegister();
15752
15753 MachineInstrBuilder MIB;
15754
Michael Liao281ae5a2012-10-17 02:22:27 +000015755 const int64_t LabelOffset = 1 * PVT.getStoreSize();
15756 const int64_t SPOffset = 2 * PVT.getStoreSize();
Michael Liao6c0e04c2012-10-15 22:39:43 +000015757
15758 unsigned PtrLoadOpc = (PVT == MVT::i64) ? X86::MOV64rm : X86::MOV32rm;
15759 unsigned IJmpOpc = (PVT == MVT::i64) ? X86::JMP64r : X86::JMP32r;
15760
15761 // Reload FP
15762 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), FP);
15763 for (unsigned i = 0; i < X86::AddrNumOperands; ++i)
15764 MIB.addOperand(MI->getOperand(i));
15765 MIB.setMemRefs(MMOBegin, MMOEnd);
15766 // Reload IP
15767 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), Tmp);
15768 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15769 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015770 MIB.addDisp(MI->getOperand(i), LabelOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015771 else
15772 MIB.addOperand(MI->getOperand(i));
15773 }
15774 MIB.setMemRefs(MMOBegin, MMOEnd);
15775 // Reload SP
15776 MIB = BuildMI(*MBB, MI, DL, TII->get(PtrLoadOpc), SP);
15777 for (unsigned i = 0; i < X86::AddrNumOperands; ++i) {
15778 if (i == X86::AddrDisp)
Michael Liao281ae5a2012-10-17 02:22:27 +000015779 MIB.addDisp(MI->getOperand(i), SPOffset);
Michael Liao6c0e04c2012-10-15 22:39:43 +000015780 else
15781 MIB.addOperand(MI->getOperand(i));
15782 }
15783 MIB.setMemRefs(MMOBegin, MMOEnd);
15784 // Jump
15785 BuildMI(*MBB, MI, DL, TII->get(IJmpOpc)).addReg(Tmp);
15786
15787 MI->eraseFromParent();
15788 return MBB;
15789}
15790
15791MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000015792X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015793 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000015794 switch (MI->getOpcode()) {
Craig Topperabb94d02012-02-05 03:43:23 +000015795 default: llvm_unreachable("Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015796 case X86::TAILJMPd64:
15797 case X86::TAILJMPr64:
15798 case X86::TAILJMPm64:
Craig Topper6d1263a2012-02-05 05:38:58 +000015799 llvm_unreachable("TAILJMP64 would not be touched here.");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015800 case X86::TCRETURNdi64:
15801 case X86::TCRETURNri64:
15802 case X86::TCRETURNmi64:
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000015803 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000015804 case X86::WIN_ALLOCA:
15805 return EmitLoweredWinAlloca(MI, BB);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000015806 case X86::SEG_ALLOCA_32:
15807 return EmitLoweredSegAlloca(MI, BB, false);
15808 case X86::SEG_ALLOCA_64:
15809 return EmitLoweredSegAlloca(MI, BB, true);
Eric Christopher30ef0e52010-06-03 04:07:48 +000015810 case X86::TLSCall_32:
15811 case X86::TLSCall_64:
15812 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000015813 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000015814 case X86::CMOV_FR32:
15815 case X86::CMOV_FR64:
15816 case X86::CMOV_V4F32:
15817 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000015818 case X86::CMOV_V2I64:
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +000015819 case X86::CMOV_V8F32:
15820 case X86::CMOV_V4F64:
15821 case X86::CMOV_V4I64:
Elena Demikhovskyf3280b52013-10-31 13:15:32 +000015822 case X86::CMOV_V16F32:
15823 case X86::CMOV_V8F64:
15824 case X86::CMOV_V8I64:
Chris Lattner314a1132010-03-14 18:31:44 +000015825 case X86::CMOV_GR16:
15826 case X86::CMOV_GR32:
15827 case X86::CMOV_RFP32:
15828 case X86::CMOV_RFP64:
15829 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000015830 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000015831
Dale Johannesen849f2142007-07-03 00:53:03 +000015832 case X86::FP32_TO_INT16_IN_MEM:
15833 case X86::FP32_TO_INT32_IN_MEM:
15834 case X86::FP32_TO_INT64_IN_MEM:
15835 case X86::FP64_TO_INT16_IN_MEM:
15836 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000015837 case X86::FP64_TO_INT64_IN_MEM:
15838 case X86::FP80_TO_INT16_IN_MEM:
15839 case X86::FP80_TO_INT32_IN_MEM:
15840 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000015841 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
15842 DebugLoc DL = MI->getDebugLoc();
15843
Evan Cheng60c07e12006-07-05 22:17:51 +000015844 // Change the floating point control register to use "round towards zero"
15845 // mode when truncating to an integer value.
15846 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000015847 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000015848 addFrameReference(BuildMI(*BB, MI, DL,
15849 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015850
15851 // Load the old value of the high byte of the control word...
15852 unsigned OldCW =
Craig Topperc9099502012-04-20 06:31:50 +000015853 F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
Dan Gohman14152b42010-07-06 20:24:04 +000015854 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000015855 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015856
15857 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000015858 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000015859 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000015860
15861 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000015862 addFrameReference(BuildMI(*BB, MI, DL,
15863 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015864
15865 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000015866 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000015867 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000015868
15869 // Get the X86 opcode to use.
15870 unsigned Opc;
15871 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000015872 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000015873 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
15874 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
15875 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
15876 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
15877 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
15878 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000015879 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
15880 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
15881 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000015882 }
15883
15884 X86AddressMode AM;
15885 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000015886 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000015887 AM.BaseType = X86AddressMode::RegBase;
15888 AM.Base.Reg = Op.getReg();
15889 } else {
15890 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000015891 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000015892 }
15893 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000015894 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000015895 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015896 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000015897 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000015898 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015899 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000015900 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000015901 AM.GV = Op.getGlobal();
15902 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000015903 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000015904 }
Dan Gohman14152b42010-07-06 20:24:04 +000015905 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000015906 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000015907
15908 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000015909 addFrameReference(BuildMI(*BB, MI, DL,
15910 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000015911
Dan Gohman14152b42010-07-06 20:24:04 +000015912 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000015913 return BB;
15914 }
Eric Christopherb120ab42009-08-18 22:50:32 +000015915 // String/text processing lowering.
15916 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015917 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000015918 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015919 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000015920 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000015921 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000015922 case X86::PCMPESTRM128MEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000015923 case X86::VPCMPESTRM128MEM:
15924 assert(Subtarget->hasSSE42() &&
15925 "Target must have SSE4.2 or AVX features enabled");
15926 return EmitPCMPSTRM(MI, BB, getTargetMachine().getInstrInfo());
Craig Topper9c7ae012012-11-10 01:23:36 +000015927
15928 // String/text processing lowering.
15929 case X86::PCMPISTRIREG:
15930 case X86::VPCMPISTRIREG:
15931 case X86::PCMPISTRIMEM:
15932 case X86::VPCMPISTRIMEM:
15933 case X86::PCMPESTRIREG:
15934 case X86::VPCMPESTRIREG:
15935 case X86::PCMPESTRIMEM:
Craig Topper8aae8dd2012-11-10 08:57:41 +000015936 case X86::VPCMPESTRIMEM:
15937 assert(Subtarget->hasSSE42() &&
15938 "Target must have SSE4.2 or AVX features enabled");
15939 return EmitPCMPSTRI(MI, BB, getTargetMachine().getInstrInfo());
Eric Christopherb120ab42009-08-18 22:50:32 +000015940
Craig Topper8aae8dd2012-11-10 08:57:41 +000015941 // Thread synchronization.
Eric Christopher228232b2010-11-30 07:20:12 +000015942 case X86::MONITOR:
Craig Topper2da36912012-11-11 22:45:02 +000015943 return EmitMonitor(MI, BB, getTargetMachine().getInstrInfo(), Subtarget);
Eric Christopher228232b2010-11-30 07:20:12 +000015944
Michael Liaobe02a902012-11-08 07:28:54 +000015945 // xbegin
15946 case X86::XBEGIN:
Craig Topper2da36912012-11-11 22:45:02 +000015947 return EmitXBegin(MI, BB, getTargetMachine().getInstrInfo());
Michael Liaobe02a902012-11-08 07:28:54 +000015948
Craig Topper8aae8dd2012-11-10 08:57:41 +000015949 // Atomic Lowering.
Dale Johannesen140be2d2008-08-19 18:47:28 +000015950 case X86::ATOMAND8:
Michael Liaob118a072012-09-20 03:06:15 +000015951 case X86::ATOMAND16:
15952 case X86::ATOMAND32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015953 case X86::ATOMAND64:
Michael Liaob118a072012-09-20 03:06:15 +000015954 // Fall through
15955 case X86::ATOMOR8:
15956 case X86::ATOMOR16:
15957 case X86::ATOMOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015958 case X86::ATOMOR64:
Michael Liaob118a072012-09-20 03:06:15 +000015959 // Fall through
15960 case X86::ATOMXOR16:
15961 case X86::ATOMXOR8:
15962 case X86::ATOMXOR32:
Dale Johannesena99e3842008-08-20 00:48:50 +000015963 case X86::ATOMXOR64:
Michael Liaob118a072012-09-20 03:06:15 +000015964 // Fall through
15965 case X86::ATOMNAND8:
15966 case X86::ATOMNAND16:
15967 case X86::ATOMNAND32:
15968 case X86::ATOMNAND64:
15969 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015970 case X86::ATOMMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000015971 case X86::ATOMMAX16:
15972 case X86::ATOMMAX32:
15973 case X86::ATOMMAX64:
15974 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015975 case X86::ATOMMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000015976 case X86::ATOMMIN16:
15977 case X86::ATOMMIN32:
15978 case X86::ATOMMIN64:
15979 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015980 case X86::ATOMUMAX8:
Michael Liaob118a072012-09-20 03:06:15 +000015981 case X86::ATOMUMAX16:
15982 case X86::ATOMUMAX32:
15983 case X86::ATOMUMAX64:
15984 // Fall through
Michael Liaofe87c302012-09-21 03:18:52 +000015985 case X86::ATOMUMIN8:
Michael Liaob118a072012-09-20 03:06:15 +000015986 case X86::ATOMUMIN16:
15987 case X86::ATOMUMIN32:
15988 case X86::ATOMUMIN64:
15989 return EmitAtomicLoadArith(MI, BB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015990
15991 // This group does 64-bit operations on a 32-bit host.
15992 case X86::ATOMAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015993 case X86::ATOMOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015994 case X86::ATOMXOR6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015995 case X86::ATOMNAND6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015996 case X86::ATOMADD6432:
Dale Johannesen48c1bc22008-10-02 18:53:47 +000015997 case X86::ATOMSUB6432:
Michael Liaoe5e8f762012-09-25 18:08:13 +000015998 case X86::ATOMMAX6432:
15999 case X86::ATOMMIN6432:
16000 case X86::ATOMUMAX6432:
16001 case X86::ATOMUMIN6432:
Michael Liaob118a072012-09-20 03:06:15 +000016002 case X86::ATOMSWAP6432:
16003 return EmitAtomicLoadArith6432(MI, BB);
Craig Topperacaaa6f2012-08-18 06:39:34 +000016004
Dan Gohmand6708ea2009-08-15 01:38:56 +000016005 case X86::VASTART_SAVE_XMM_REGS:
16006 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000016007
16008 case X86::VAARG_64:
16009 return EmitVAARG64WithCustomInserter(MI, BB);
Michael Liao6c0e04c2012-10-15 22:39:43 +000016010
16011 case X86::EH_SjLj_SetJmp32:
16012 case X86::EH_SjLj_SetJmp64:
16013 return emitEHSjLjSetJmp(MI, BB);
16014
16015 case X86::EH_SjLj_LongJmp32:
16016 case X86::EH_SjLj_LongJmp64:
16017 return emitEHSjLjLongJmp(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000016018 }
16019}
16020
16021//===----------------------------------------------------------------------===//
16022// X86 Optimization Hooks
16023//===----------------------------------------------------------------------===//
16024
Dan Gohman475871a2008-07-27 21:46:04 +000016025void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000016026 APInt &KnownZero,
16027 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000016028 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000016029 unsigned Depth) const {
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000016030 unsigned BitWidth = KnownZero.getBitWidth();
Evan Cheng3a03ebb2005-12-21 23:05:39 +000016031 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000016032 assert((Opc >= ISD::BUILTIN_OP_END ||
16033 Opc == ISD::INTRINSIC_WO_CHAIN ||
16034 Opc == ISD::INTRINSIC_W_CHAIN ||
16035 Opc == ISD::INTRINSIC_VOID) &&
16036 "Should use MaskedValueIsZero if you don't know whether Op"
16037 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000016038
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000016039 KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000016040 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000016041 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000016042 case X86ISD::ADD:
16043 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000016044 case X86ISD::ADC:
16045 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000016046 case X86ISD::SMUL:
16047 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000016048 case X86ISD::INC:
16049 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000016050 case X86ISD::OR:
16051 case X86ISD::XOR:
16052 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000016053 // These nodes' second result is a boolean.
16054 if (Op.getResNo() == 0)
16055 break;
16056 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016057 case X86ISD::SETCC:
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000016058 KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000016059 break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000016060 case ISD::INTRINSIC_WO_CHAIN: {
16061 unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
16062 unsigned NumLoBits = 0;
16063 switch (IntId) {
16064 default: break;
16065 case Intrinsic::x86_sse_movmsk_ps:
16066 case Intrinsic::x86_avx_movmsk_ps_256:
16067 case Intrinsic::x86_sse2_movmsk_pd:
16068 case Intrinsic::x86_avx_movmsk_pd_256:
16069 case Intrinsic::x86_mmx_pmovmskb:
Craig Topper3738ccd2011-12-27 06:27:23 +000016070 case Intrinsic::x86_sse2_pmovmskb_128:
16071 case Intrinsic::x86_avx2_pmovmskb: {
Evan Cheng7c1780c2011-10-07 17:21:44 +000016072 // High bits of movmskp{s|d}, pmovmskb are known zero.
16073 switch (IntId) {
Craig Topperabb94d02012-02-05 03:43:23 +000016074 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng7c1780c2011-10-07 17:21:44 +000016075 case Intrinsic::x86_sse_movmsk_ps: NumLoBits = 4; break;
16076 case Intrinsic::x86_avx_movmsk_ps_256: NumLoBits = 8; break;
16077 case Intrinsic::x86_sse2_movmsk_pd: NumLoBits = 2; break;
16078 case Intrinsic::x86_avx_movmsk_pd_256: NumLoBits = 4; break;
16079 case Intrinsic::x86_mmx_pmovmskb: NumLoBits = 8; break;
16080 case Intrinsic::x86_sse2_pmovmskb_128: NumLoBits = 16; break;
Craig Topper3738ccd2011-12-27 06:27:23 +000016081 case Intrinsic::x86_avx2_pmovmskb: NumLoBits = 32; break;
Evan Cheng7c1780c2011-10-07 17:21:44 +000016082 }
Rafael Espindola26c8dcc2012-04-04 12:51:34 +000016083 KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
Evan Cheng7c1780c2011-10-07 17:21:44 +000016084 break;
16085 }
16086 }
16087 break;
16088 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000016089 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000016090}
Chris Lattner259e97c2006-01-31 19:43:35 +000016091
Owen Andersonbc146b02010-09-21 20:42:50 +000016092unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
16093 unsigned Depth) const {
16094 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
16095 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
16096 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000016097
Owen Andersonbc146b02010-09-21 20:42:50 +000016098 // Fallback case.
16099 return 1;
16100}
16101
Evan Cheng206ee9d2006-07-07 08:33:52 +000016102/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000016103/// node is a GlobalAddress + offset.
16104bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000016105 const GlobalValue* &GA,
16106 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000016107 if (N->getOpcode() == X86ISD::Wrapper) {
16108 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000016109 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000016110 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000016111 return true;
16112 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000016113 }
Evan Chengad4196b2008-05-12 19:56:52 +000016114 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000016115}
16116
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016117/// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
16118/// same as extracting the high 128-bit part of 256-bit vector and then
16119/// inserting the result into the low part of a new 256-bit vector
16120static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
16121 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016122 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016123
16124 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
Craig Topper66ddd152012-04-27 22:54:43 +000016125 for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016126 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16127 SVOp->getMaskElt(j) >= 0)
16128 return false;
16129
16130 return true;
16131}
16132
16133/// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
16134/// same as extracting the low 128-bit part of 256-bit vector and then
16135/// inserting the result into the high part of a new 256-bit vector
16136static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
16137 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016138 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016139
16140 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
Craig Topper66ddd152012-04-27 22:54:43 +000016141 for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016142 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
16143 SVOp->getMaskElt(j) >= 0)
16144 return false;
16145
16146 return true;
16147}
16148
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016149/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
16150static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
Craig Topper12216172012-01-13 08:12:35 +000016151 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016152 const X86Subtarget* Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016153 SDLoc dl(N);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016154 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
16155 SDValue V1 = SVOp->getOperand(0);
16156 SDValue V2 = SVOp->getOperand(1);
16157 EVT VT = SVOp->getValueType(0);
Craig Topper66ddd152012-04-27 22:54:43 +000016158 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016159
16160 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
16161 V2.getOpcode() == ISD::CONCAT_VECTORS) {
16162 //
16163 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000016164 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016165 // V UNDEF BUILD_VECTOR UNDEF
16166 // \ / \ /
16167 // CONCAT_VECTOR CONCAT_VECTOR
16168 // \ /
16169 // \ /
16170 // RESULT: V + zero extended
16171 //
16172 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
16173 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
16174 V1.getOperand(1).getOpcode() != ISD::UNDEF)
16175 return SDValue();
16176
16177 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
16178 return SDValue();
16179
16180 // To match the shuffle mask, the first half of the mask should
16181 // be exactly the first vector, and all the rest a splat with the
16182 // first element of the second one.
Craig Topper66ddd152012-04-27 22:54:43 +000016183 for (unsigned i = 0; i != NumElems/2; ++i)
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016184 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
16185 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
16186 return SDValue();
16187
Chad Rosier3d1161e2012-01-03 21:05:52 +000016188 // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
16189 if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
Chad Rosier42726832012-05-07 18:47:44 +000016190 if (Ld->hasNUsesOfValue(1, 0)) {
16191 SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
16192 SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
16193 SDValue ResNode =
Michael Liao0ee17002013-04-19 04:03:37 +000016194 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops,
16195 array_lengthof(Ops),
Chad Rosier42726832012-05-07 18:47:44 +000016196 Ld->getMemoryVT(),
16197 Ld->getPointerInfo(),
16198 Ld->getAlignment(),
16199 false/*isVolatile*/, true/*ReadMem*/,
16200 false/*WriteMem*/);
Manman Ren2adc5032012-11-13 19:13:05 +000016201
16202 // Make sure the newly-created LOAD is in the same position as Ld in
16203 // terms of dependency. We create a TokenFactor for Ld and ResNode,
16204 // and update uses of Ld's output chain to use the TokenFactor.
16205 if (Ld->hasAnyUseOfValue(1)) {
16206 SDValue NewChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
16207 SDValue(Ld, 1), SDValue(ResNode.getNode(), 1));
16208 DAG.ReplaceAllUsesOfValueWith(SDValue(Ld, 1), NewChain);
16209 DAG.UpdateNodeOperands(NewChain.getNode(), SDValue(Ld, 1),
16210 SDValue(ResNode.getNode(), 1));
16211 }
16212
Chad Rosier42726832012-05-07 18:47:44 +000016213 return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
16214 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000016215 }
Chad Rosier3d1161e2012-01-03 21:05:52 +000016216
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016217 // Emit a zeroed vector and insert the desired subvector on its
16218 // first half.
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016219 SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
Craig Topperb14940a2012-04-22 20:55:18 +000016220 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016221 return DCI.CombineTo(N, InsV);
16222 }
16223
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016224 //===--------------------------------------------------------------------===//
16225 // Combine some shuffles into subvector extracts and inserts:
16226 //
16227
16228 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
16229 if (isShuffleHigh128VectorInsertLow(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000016230 SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
16231 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016232 return DCI.CombineTo(N, InsV);
16233 }
16234
16235 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
16236 if (isShuffleLow128VectorInsertHigh(SVOp)) {
Craig Topperb14940a2012-04-22 20:55:18 +000016237 SDValue V = Extract128BitVector(V1, 0, DAG, dl);
16238 SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000016239 return DCI.CombineTo(N, InsV);
16240 }
16241
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016242 return SDValue();
16243}
16244
16245/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000016246static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016247 TargetLowering::DAGCombinerInfo &DCI,
16248 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016249 SDLoc dl(N);
Owen Andersone50ed302009-08-10 22:56:29 +000016250 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000016251
Mon P Wanga0fd0d52010-12-19 23:55:53 +000016252 // Don't create instructions with illegal types after legalize types has run.
16253 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
16254 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
16255 return SDValue();
16256
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016257 // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000016258 if (Subtarget->hasFp256() && VT.is256BitVector() &&
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000016259 N->getOpcode() == ISD::VECTOR_SHUFFLE)
Elena Demikhovsky0f1ead42012-02-02 09:20:18 +000016260 return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016261
16262 // Only handle 128 wide vector from here on.
Craig Topper7a9a28b2012-08-12 02:23:29 +000016263 if (!VT.is128BitVector())
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000016264 return SDValue();
16265
16266 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
16267 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
16268 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000016269 SmallVector<SDValue, 16> Elts;
16270 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000016271 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000016272
Bill Wendling2ca55e92013-12-20 04:29:56 +000016273 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG, true);
Scott Michelfdc40a02009-02-17 22:15:04 +000016274}
Evan Chengd880b972008-05-09 21:53:03 +000016275
Nadav Roteme12bf182013-01-04 17:35:21 +000016276/// PerformTruncateCombine - Converts truncate operation to
16277/// a sequence of vector shuffle operations.
16278/// It is possible when we truncate 256-bit vector to 128-bit vector
Craig Topper55b24052012-09-11 06:15:32 +000016279static SDValue PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
16280 TargetLowering::DAGCombinerInfo &DCI,
16281 const X86Subtarget *Subtarget) {
Elena Demikhovsky3ae98152012-02-01 07:56:44 +000016282 return SDValue();
16283}
16284
Craig Topper89f4e662012-03-20 07:17:59 +000016285/// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
16286/// specific shuffle of a load can be folded into a single element load.
16287/// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
16288/// shuffles have been customed lowered so we need to handle those here.
16289static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
16290 TargetLowering::DAGCombinerInfo &DCI) {
16291 if (DCI.isBeforeLegalizeOps())
16292 return SDValue();
16293
16294 SDValue InVec = N->getOperand(0);
16295 SDValue EltNo = N->getOperand(1);
16296
16297 if (!isa<ConstantSDNode>(EltNo))
16298 return SDValue();
16299
16300 EVT VT = InVec.getValueType();
16301
16302 bool HasShuffleIntoBitcast = false;
16303 if (InVec.getOpcode() == ISD::BITCAST) {
16304 // Don't duplicate a load with other uses.
16305 if (!InVec.hasOneUse())
16306 return SDValue();
16307 EVT BCVT = InVec.getOperand(0).getValueType();
16308 if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
16309 return SDValue();
16310 InVec = InVec.getOperand(0);
16311 HasShuffleIntoBitcast = true;
16312 }
16313
16314 if (!isTargetShuffle(InVec.getOpcode()))
16315 return SDValue();
16316
16317 // Don't duplicate a load with other uses.
16318 if (!InVec.hasOneUse())
16319 return SDValue();
16320
16321 SmallVector<int, 16> ShuffleMask;
16322 bool UnaryShuffle;
Craig Topperd978c542012-05-06 19:46:21 +000016323 if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
16324 UnaryShuffle))
Craig Topper89f4e662012-03-20 07:17:59 +000016325 return SDValue();
16326
16327 // Select the input vector, guarding against out of range extract vector.
16328 unsigned NumElems = VT.getVectorNumElements();
16329 int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
16330 int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
16331 SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
16332 : InVec.getOperand(1);
16333
16334 // If inputs to shuffle are the same for both ops, then allow 2 uses
16335 unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
16336
16337 if (LdNode.getOpcode() == ISD::BITCAST) {
16338 // Don't duplicate a load with other uses.
16339 if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
16340 return SDValue();
16341
16342 AllowedUses = 1; // only allow 1 load use if we have a bitcast
16343 LdNode = LdNode.getOperand(0);
16344 }
16345
16346 if (!ISD::isNormalLoad(LdNode.getNode()))
16347 return SDValue();
16348
16349 LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
16350
16351 if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
16352 return SDValue();
16353
16354 if (HasShuffleIntoBitcast) {
16355 // If there's a bitcast before the shuffle, check if the load type and
16356 // alignment is valid.
16357 unsigned Align = LN0->getAlignment();
16358 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Micah Villmow3574eca2012-10-08 16:38:25 +000016359 unsigned NewAlign = TLI.getDataLayout()->
Craig Topper89f4e662012-03-20 07:17:59 +000016360 getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
16361
16362 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
16363 return SDValue();
16364 }
16365
16366 // All checks match so transform back to vector_shuffle so that DAG combiner
16367 // can finish the job
Andrew Trickac6d9be2013-05-25 02:42:55 +000016368 SDLoc dl(N);
Craig Topper89f4e662012-03-20 07:17:59 +000016369
16370 // Create shuffle node taking into account the case that its a unary shuffle
16371 SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
16372 Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
16373 InVec.getOperand(0), Shuffle,
16374 &ShuffleMask[0]);
16375 Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
16376 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
16377 EltNo);
16378}
16379
Elena Demikhovskyf58e4142013-11-14 11:29:27 +000016380/// Extract one bit from mask vector, like v16i1 or v8i1.
16381/// AVX-512 feature.
16382static SDValue ExtractBitFromMaskVector(SDNode *N, SelectionDAG &DAG) {
16383 SDValue Vec = N->getOperand(0);
16384 SDLoc dl(Vec);
16385 MVT VecVT = Vec.getSimpleValueType();
16386 SDValue Idx = N->getOperand(1);
16387 MVT EltVT = N->getSimpleValueType(0);
16388
16389 assert((VecVT.getVectorElementType() == MVT::i1 && EltVT == MVT::i8) ||
16390 "Unexpected operands in ExtractBitFromMaskVector");
16391
16392 // variable index
16393 if (!isa<ConstantSDNode>(Idx)) {
16394 MVT ExtVT = (VecVT == MVT::v8i1 ? MVT::v8i64 : MVT::v16i32);
16395 SDValue Ext = DAG.getNode(ISD::ZERO_EXTEND, dl, ExtVT, Vec);
16396 SDValue Elt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
16397 ExtVT.getVectorElementType(), Ext);
16398 return DAG.getNode(ISD::TRUNCATE, dl, EltVT, Elt);
16399 }
16400
16401 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
16402
16403 MVT ScalarVT = MVT::getIntegerVT(VecVT.getSizeInBits());
16404 unsigned MaxShift = VecVT.getSizeInBits() - 1;
16405 Vec = DAG.getNode(ISD::BITCAST, dl, ScalarVT, Vec);
16406 Vec = DAG.getNode(ISD::SHL, dl, ScalarVT, Vec,
16407 DAG.getConstant(MaxShift - IdxVal, ScalarVT));
16408 Vec = DAG.getNode(ISD::SRL, dl, ScalarVT, Vec,
16409 DAG.getConstant(MaxShift, ScalarVT));
16410
16411 if (VecVT == MVT::v16i1) {
16412 Vec = DAG.getNode(ISD::BITCAST, dl, MVT::i16, Vec);
16413 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Vec);
16414 }
16415 return DAG.getNode(ISD::BITCAST, dl, MVT::i8, Vec);
16416}
16417
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000016418/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
16419/// generation and convert it from being a bunch of shuffles and extracts
16420/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016421static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
Craig Topper89f4e662012-03-20 07:17:59 +000016422 TargetLowering::DAGCombinerInfo &DCI) {
16423 SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
16424 if (NewOp.getNode())
16425 return NewOp;
16426
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016427 SDValue InputVector = N->getOperand(0);
Elena Demikhovskyf58e4142013-11-14 11:29:27 +000016428
16429 if (InputVector.getValueType().getVectorElementType() == MVT::i1 &&
16430 !DCI.isBeforeLegalize())
16431 return ExtractBitFromMaskVector(N, DAG);
16432
Manman Ren4c74a952012-10-30 22:15:38 +000016433 // Detect whether we are trying to convert from mmx to i32 and the bitcast
16434 // from mmx to v2i32 has a single usage.
16435 if (InputVector.getNode()->getOpcode() == llvm::ISD::BITCAST &&
16436 InputVector.getNode()->getOperand(0).getValueType() == MVT::x86mmx &&
16437 InputVector.hasOneUse() && N->getValueType(0) == MVT::i32)
Andrew Trickac6d9be2013-05-25 02:42:55 +000016438 return DAG.getNode(X86ISD::MMX_MOVD2W, SDLoc(InputVector),
Manman Ren4c74a952012-10-30 22:15:38 +000016439 N->getValueType(0),
16440 InputVector.getNode()->getOperand(0));
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016441
16442 // Only operate on vectors of 4 elements, where the alternative shuffling
16443 // gets to be more expensive.
16444 if (InputVector.getValueType() != MVT::v4i32)
16445 return SDValue();
16446
16447 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
16448 // single use which is a sign-extend or zero-extend, and all elements are
16449 // used.
16450 SmallVector<SDNode *, 4> Uses;
16451 unsigned ExtractedElements = 0;
16452 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
16453 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
16454 if (UI.getUse().getResNo() != InputVector.getResNo())
16455 return SDValue();
16456
16457 SDNode *Extract = *UI;
16458 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
16459 return SDValue();
16460
16461 if (Extract->getValueType(0) != MVT::i32)
16462 return SDValue();
16463 if (!Extract->hasOneUse())
16464 return SDValue();
16465 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
16466 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
16467 return SDValue();
16468 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
16469 return SDValue();
16470
16471 // Record which element was extracted.
16472 ExtractedElements |=
16473 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
16474
16475 Uses.push_back(Extract);
16476 }
16477
16478 // If not all the elements were used, this may not be worthwhile.
16479 if (ExtractedElements != 15)
16480 return SDValue();
16481
16482 // Ok, we've now decided to do the transformation.
Andrew Trickac6d9be2013-05-25 02:42:55 +000016483 SDLoc dl(InputVector);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016484
16485 // Store the value to a temporary stack slot.
16486 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000016487 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
16488 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016489
16490 // Replace each use (extract) with a load of the appropriate element.
16491 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
16492 UE = Uses.end(); UI != UE; ++UI) {
16493 SDNode *Extract = *UI;
16494
Nadav Rotem86694292011-05-17 08:31:57 +000016495 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016496 SDValue Idx = Extract->getOperand(1);
16497 unsigned EltSize =
16498 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
16499 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
Craig Topper89f4e662012-03-20 07:17:59 +000016500 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016501 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
16502
Nadav Rotem86694292011-05-17 08:31:57 +000016503 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000016504 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016505
16506 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000016507 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000016508 ScalarAddr, MachinePointerInfo(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000016509 false, false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000016510
16511 // Replace the exact with the load.
16512 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
16513 }
16514
16515 // The replacement was made in place; don't return anything.
16516 return SDValue();
16517}
16518
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016519/// \brief Matches a VSELECT onto min/max or return 0 if the node doesn't match.
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016520static std::pair<unsigned, bool>
16521matchIntegerMINMAX(SDValue Cond, EVT VT, SDValue LHS, SDValue RHS,
16522 SelectionDAG &DAG, const X86Subtarget *Subtarget) {
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016523 if (!VT.isVector())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016524 return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016525
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016526 bool NeedSplit = false;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016527 switch (VT.getSimpleVT().SimpleTy) {
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016528 default: return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016529 case MVT::v32i8:
16530 case MVT::v16i16:
16531 case MVT::v8i32:
16532 if (!Subtarget->hasAVX2())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016533 NeedSplit = true;
16534 if (!Subtarget->hasAVX())
16535 return std::make_pair(0, false);
16536 break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016537 case MVT::v16i8:
16538 case MVT::v8i16:
16539 case MVT::v4i32:
16540 if (!Subtarget->hasSSE2())
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016541 return std::make_pair(0, false);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016542 }
16543
16544 // SSE2 has only a small subset of the operations.
16545 bool hasUnsigned = Subtarget->hasSSE41() ||
16546 (Subtarget->hasSSE2() && VT == MVT::v16i8);
16547 bool hasSigned = Subtarget->hasSSE41() ||
16548 (Subtarget->hasSSE2() && VT == MVT::v8i16);
16549
16550 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16551
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016552 unsigned Opc = 0;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016553 // Check for x CC y ? x : y.
16554 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16555 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16556 switch (CC) {
16557 default: break;
16558 case ISD::SETULT:
16559 case ISD::SETULE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016560 Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016561 case ISD::SETUGT:
16562 case ISD::SETUGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016563 Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016564 case ISD::SETLT:
16565 case ISD::SETLE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016566 Opc = hasSigned ? X86ISD::SMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016567 case ISD::SETGT:
16568 case ISD::SETGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016569 Opc = hasSigned ? X86ISD::SMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016570 }
16571 // Check for x CC y ? y : x -- a min/max with reversed arms.
16572 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16573 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
16574 switch (CC) {
16575 default: break;
16576 case ISD::SETULT:
16577 case ISD::SETULE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016578 Opc = hasUnsigned ? X86ISD::UMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016579 case ISD::SETUGT:
16580 case ISD::SETUGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016581 Opc = hasUnsigned ? X86ISD::UMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016582 case ISD::SETLT:
16583 case ISD::SETLE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016584 Opc = hasSigned ? X86ISD::SMAX : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016585 case ISD::SETGT:
16586 case ISD::SETGE:
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016587 Opc = hasSigned ? X86ISD::SMIN : 0; break;
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016588 }
16589 }
16590
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016591 return std::make_pair(Opc, NeedSplit);
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016592}
16593
Duncan Sands6bcd2192011-09-17 16:49:39 +000016594/// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
16595/// nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000016596static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotemcc616562012-01-15 19:27:55 +000016597 TargetLowering::DAGCombinerInfo &DCI,
Chris Lattner47b4ce82009-03-11 05:48:52 +000016598 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000016599 SDLoc DL(N);
Dan Gohman475871a2008-07-27 21:46:04 +000016600 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000016601 // Get the LHS/RHS of the select.
16602 SDValue LHS = N->getOperand(1);
16603 SDValue RHS = N->getOperand(2);
Bruno Cardoso Lopes149f29f2011-09-20 22:34:45 +000016604 EVT VT = LHS.getValueType();
Juergen Ributzkad7174712013-09-05 23:02:56 +000016605 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Eric Christopherfd179292009-08-27 18:07:15 +000016606
Dan Gohman670e5392009-09-21 18:03:22 +000016607 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000016608 // instructions match the semantics of the common C idiom x<y?x:y but not
16609 // x<=y?x:y, because of how they handle negative zero (which can be
16610 // ignored in unsafe-math mode).
Benjamin Kramer2c2ccbf2011-09-22 03:27:22 +000016611 if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
Juergen Ributzkad7174712013-09-05 23:02:56 +000016612 VT != MVT::f80 && TLI.isTypeLegal(VT) &&
Craig Topper1accb7e2012-01-10 06:54:16 +000016613 (Subtarget->hasSSE2() ||
16614 (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016615 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016616
Chris Lattner47b4ce82009-03-11 05:48:52 +000016617 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000016618 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000016619 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16620 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016621 switch (CC) {
16622 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000016623 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000016624 // Converting this to a min would handle NaNs incorrectly, and swapping
16625 // the operands would cause it to handle comparisons between positive
16626 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016627 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016628 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016629 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16630 break;
16631 std::swap(LHS, RHS);
16632 }
Dan Gohman670e5392009-09-21 18:03:22 +000016633 Opcode = X86ISD::FMIN;
16634 break;
16635 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000016636 // Converting this to a min would handle comparisons between positive
16637 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016638 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016639 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
16640 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016641 Opcode = X86ISD::FMIN;
16642 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000016643 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000016644 // Converting this to a min would handle both negative zeros and NaNs
16645 // incorrectly, but we can swap the operands to fix both.
16646 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016647 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016648 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000016649 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016650 Opcode = X86ISD::FMIN;
16651 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016652
Dan Gohman670e5392009-09-21 18:03:22 +000016653 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016654 // Converting this to a max would handle comparisons between positive
16655 // and negative zero incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016656 if (!DAG.getTarget().Options.UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000016657 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016658 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016659 Opcode = X86ISD::FMAX;
16660 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000016661 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000016662 // Converting this to a max would handle NaNs incorrectly, and swapping
16663 // the operands would cause it to handle comparisons between positive
16664 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016665 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016666 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016667 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
16668 break;
16669 std::swap(LHS, RHS);
16670 }
Dan Gohman670e5392009-09-21 18:03:22 +000016671 Opcode = X86ISD::FMAX;
16672 break;
16673 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016674 // Converting this to a max would handle both negative zeros and NaNs
16675 // incorrectly, but we can swap the operands to fix both.
16676 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016677 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016678 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016679 case ISD::SETGE:
16680 Opcode = X86ISD::FMAX;
16681 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000016682 }
Dan Gohman670e5392009-09-21 18:03:22 +000016683 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000016684 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
16685 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000016686 switch (CC) {
16687 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000016688 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016689 // Converting this to a min would handle comparisons between positive
16690 // and negative zero incorrectly, and swapping the operands would
16691 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016692 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016693 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000016694 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016695 break;
16696 std::swap(LHS, RHS);
16697 }
Dan Gohman670e5392009-09-21 18:03:22 +000016698 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000016699 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016700 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000016701 // Converting this to a min would handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016702 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016703 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
16704 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016705 Opcode = X86ISD::FMIN;
16706 break;
16707 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000016708 // Converting this to a min would handle both negative zeros and NaNs
16709 // incorrectly, but we can swap the operands to fix both.
16710 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016711 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016712 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016713 case ISD::SETGE:
16714 Opcode = X86ISD::FMIN;
16715 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016716
Dan Gohman670e5392009-09-21 18:03:22 +000016717 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000016718 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000016719 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016720 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016721 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000016722 break;
Dan Gohman670e5392009-09-21 18:03:22 +000016723 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000016724 // Converting this to a max would handle comparisons between positive
16725 // and negative zero incorrectly, and swapping the operands would
16726 // cause it to handle NaNs incorrectly.
Nick Lewycky8a8d4792011-12-02 22:16:29 +000016727 if (!DAG.getTarget().Options.UnsafeFPMath &&
Dan Gohmane8326932010-02-24 06:52:40 +000016728 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000016729 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000016730 break;
16731 std::swap(LHS, RHS);
16732 }
Dan Gohman670e5392009-09-21 18:03:22 +000016733 Opcode = X86ISD::FMAX;
16734 break;
16735 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000016736 // Converting this to a max would handle both negative zeros and NaNs
16737 // incorrectly, but we can swap the operands to fix both.
16738 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000016739 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016740 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000016741 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000016742 Opcode = X86ISD::FMAX;
16743 break;
16744 }
Chris Lattner83e6c992006-10-04 06:57:07 +000016745 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000016746
Chris Lattner47b4ce82009-03-11 05:48:52 +000016747 if (Opcode)
16748 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000016749 }
Eric Christopherfd179292009-08-27 18:07:15 +000016750
Elena Demikhovskyf3280b52013-10-31 13:15:32 +000016751 EVT CondVT = Cond.getValueType();
16752 if (Subtarget->hasAVX512() && VT.isVector() && CondVT.isVector() &&
16753 CondVT.getVectorElementType() == MVT::i1) {
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000016754 // v16i8 (select v16i1, v16i8, v16i8) does not have a proper
16755 // lowering on AVX-512. In this case we convert it to
16756 // v16i8 (select v16i8, v16i8, v16i8) and use AVX instruction.
16757 // The same situation for all 128 and 256-bit vectors of i8 and i16
16758 EVT OpVT = LHS.getValueType();
16759 if ((OpVT.is128BitVector() || OpVT.is256BitVector()) &&
16760 (OpVT.getVectorElementType() == MVT::i8 ||
16761 OpVT.getVectorElementType() == MVT::i16)) {
16762 Cond = DAG.getNode(ISD::SIGN_EXTEND, DL, OpVT, Cond);
16763 DCI.AddToWorklist(Cond.getNode());
16764 return DAG.getNode(N->getOpcode(), DL, OpVT, Cond, LHS, RHS);
16765 }
Elena Demikhovsky4edfa222013-08-29 11:56:53 +000016766 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000016767 // If this is a select between two integer constants, try to do some
16768 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000016769 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
16770 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000016771 // Don't do this for crazy integer types.
16772 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
16773 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000016774 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000016775 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000016776
Chris Lattnercee56e72009-03-13 05:53:31 +000016777 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000016778 // Efficiently invertible.
16779 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
16780 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
16781 isa<ConstantSDNode>(Cond.getOperand(1))))) {
16782 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000016783 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000016784 }
Eric Christopherfd179292009-08-27 18:07:15 +000016785
Chris Lattnerd1980a52009-03-12 06:52:53 +000016786 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000016787 if (FalseC->getAPIntValue() == 0 &&
16788 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000016789 if (NeedsCondInvert) // Invert the condition if needed.
16790 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16791 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016792
Chris Lattnerd1980a52009-03-12 06:52:53 +000016793 // Zero extend the condition if needed.
16794 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000016795
Chris Lattnercee56e72009-03-13 05:53:31 +000016796 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000016797 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000016798 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000016799 }
Eric Christopherfd179292009-08-27 18:07:15 +000016800
Chris Lattner97a29a52009-03-13 05:22:11 +000016801 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000016802 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000016803 if (NeedsCondInvert) // Invert the condition if needed.
16804 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16805 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016806
Chris Lattner97a29a52009-03-13 05:22:11 +000016807 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000016808 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
16809 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000016810 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000016811 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000016812 }
Eric Christopherfd179292009-08-27 18:07:15 +000016813
Chris Lattnercee56e72009-03-13 05:53:31 +000016814 // Optimize cases that will turn into an LEA instruction. This requires
16815 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000016816 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000016817 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000016818 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000016819
Chris Lattnercee56e72009-03-13 05:53:31 +000016820 bool isFastMultiplier = false;
16821 if (Diff < 10) {
16822 switch ((unsigned char)Diff) {
16823 default: break;
16824 case 1: // result = add base, cond
16825 case 2: // result = lea base( , cond*2)
16826 case 3: // result = lea base(cond, cond*2)
16827 case 4: // result = lea base( , cond*4)
16828 case 5: // result = lea base(cond, cond*4)
16829 case 8: // result = lea base( , cond*8)
16830 case 9: // result = lea base(cond, cond*8)
16831 isFastMultiplier = true;
16832 break;
16833 }
16834 }
Eric Christopherfd179292009-08-27 18:07:15 +000016835
Chris Lattnercee56e72009-03-13 05:53:31 +000016836 if (isFastMultiplier) {
16837 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
16838 if (NeedsCondInvert) // Invert the condition if needed.
16839 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
16840 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016841
Chris Lattnercee56e72009-03-13 05:53:31 +000016842 // Zero extend the condition if needed.
16843 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
16844 Cond);
16845 // Scale the condition by the difference.
16846 if (Diff != 1)
16847 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
16848 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000016849
Chris Lattnercee56e72009-03-13 05:53:31 +000016850 // Add the base if non-zero.
16851 if (FalseC->getAPIntValue() != 0)
16852 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
16853 SDValue(FalseC, 0));
16854 return Cond;
16855 }
Eric Christopherfd179292009-08-27 18:07:15 +000016856 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000016857 }
16858 }
Eric Christopherfd179292009-08-27 18:07:15 +000016859
Evan Cheng56f582d2012-01-04 01:41:39 +000016860 // Canonicalize max and min:
16861 // (x > y) ? x : y -> (x >= y) ? x : y
16862 // (x < y) ? x : y -> (x <= y) ? x : y
16863 // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
16864 // the need for an extra compare
16865 // against zero. e.g.
16866 // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
16867 // subl %esi, %edi
16868 // testl %edi, %edi
16869 // movl $0, %eax
16870 // cmovgl %edi, %eax
16871 // =>
16872 // xorl %eax, %eax
16873 // subl %esi, $edi
16874 // cmovsl %eax, %edi
16875 if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
16876 DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
16877 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
16878 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16879 switch (CC) {
16880 default: break;
16881 case ISD::SETLT:
16882 case ISD::SETGT: {
16883 ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
Andrew Trickac6d9be2013-05-25 02:42:55 +000016884 Cond = DAG.getSetCC(SDLoc(Cond), Cond.getValueType(),
Evan Cheng56f582d2012-01-04 01:41:39 +000016885 Cond.getOperand(0), Cond.getOperand(1), NewCC);
16886 return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
16887 }
16888 }
16889 }
16890
Juergen Ributzkad7174712013-09-05 23:02:56 +000016891 // Early exit check
16892 if (!TLI.isTypeLegal(VT))
16893 return SDValue();
16894
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016895 // Match VSELECTs into subs with unsigned saturation.
Juergen Ributzkad7174712013-09-05 23:02:56 +000016896 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016897 // psubus is available in SSE2 and AVX2 for i8 and i16 vectors.
16898 ((Subtarget->hasSSE2() && (VT == MVT::v16i8 || VT == MVT::v8i16)) ||
16899 (Subtarget->hasAVX2() && (VT == MVT::v32i8 || VT == MVT::v16i16)))) {
16900 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
16901
16902 // Check if one of the arms of the VSELECT is a zero vector. If it's on the
16903 // left side invert the predicate to simplify logic below.
16904 SDValue Other;
16905 if (ISD::isBuildVectorAllZeros(LHS.getNode())) {
16906 Other = RHS;
16907 CC = ISD::getSetCCInverse(CC, true);
16908 } else if (ISD::isBuildVectorAllZeros(RHS.getNode())) {
16909 Other = LHS;
16910 }
16911
16912 if (Other.getNode() && Other->getNumOperands() == 2 &&
16913 DAG.isEqualTo(Other->getOperand(0), Cond.getOperand(0))) {
16914 SDValue OpLHS = Other->getOperand(0), OpRHS = Other->getOperand(1);
16915 SDValue CondRHS = Cond->getOperand(1);
16916
16917 // Look for a general sub with unsigned saturation first.
16918 // x >= y ? x-y : 0 --> subus x, y
16919 // x > y ? x-y : 0 --> subus x, y
16920 if ((CC == ISD::SETUGE || CC == ISD::SETUGT) &&
16921 Other->getOpcode() == ISD::SUB && DAG.isEqualTo(OpRHS, CondRHS))
16922 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16923
16924 // If the RHS is a constant we have to reverse the const canonicalization.
16925 // x > C-1 ? x+-C : 0 --> subus x, C
16926 if (CC == ISD::SETUGT && Other->getOpcode() == ISD::ADD &&
16927 isSplatVector(CondRHS.getNode()) && isSplatVector(OpRHS.getNode())) {
16928 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
Benjamin Kramer9fa92512013-02-04 15:19:25 +000016929 if (CondRHS.getConstantOperandVal(0) == -A-1)
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016930 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS,
Benjamin Kramer9fa92512013-02-04 15:19:25 +000016931 DAG.getConstant(-A, VT));
Benjamin Kramer388fc6a2012-12-15 16:47:44 +000016932 }
16933
16934 // Another special case: If C was a sign bit, the sub has been
16935 // canonicalized into a xor.
16936 // FIXME: Would it be better to use ComputeMaskedBits to determine whether
16937 // it's safe to decanonicalize the xor?
16938 // x s< 0 ? x^C : 0 --> subus x, C
16939 if (CC == ISD::SETLT && Other->getOpcode() == ISD::XOR &&
16940 ISD::isBuildVectorAllZeros(CondRHS.getNode()) &&
16941 isSplatVector(OpRHS.getNode())) {
16942 APInt A = cast<ConstantSDNode>(OpRHS.getOperand(0))->getAPIntValue();
16943 if (A.isSignBit())
16944 return DAG.getNode(X86ISD::SUBUS, DL, VT, OpLHS, OpRHS);
16945 }
16946 }
16947 }
16948
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016949 // Try to match a min/max vector operation.
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016950 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC) {
Juergen Ributzka7cdc3702013-09-21 05:15:01 +000016951 std::pair<unsigned, bool> ret = matchIntegerMINMAX(Cond, VT, LHS, RHS, DAG, Subtarget);
16952 unsigned Opc = ret.first;
16953 bool NeedSplit = ret.second;
Juergen Ributzkafcfc2342013-09-21 04:55:22 +000016954
16955 if (Opc && NeedSplit) {
16956 unsigned NumElems = VT.getVectorNumElements();
16957 // Extract the LHS vectors
16958 SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, DL);
16959 SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, DL);
16960
16961 // Extract the RHS vectors
16962 SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, DL);
16963 SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, DL);
16964
16965 // Create min/max for each subvector
16966 LHS = DAG.getNode(Opc, DL, LHS1.getValueType(), LHS1, RHS1);
16967 RHS = DAG.getNode(Opc, DL, LHS2.getValueType(), LHS2, RHS2);
16968
16969 // Merge the result
16970 return DAG.getNode(ISD::CONCAT_VECTORS, DL, VT, LHS, RHS);
16971 } else if (Opc)
16972 return DAG.getNode(Opc, DL, VT, LHS, RHS);
16973 }
Benjamin Kramer2556c6b2012-12-21 17:46:58 +000016974
Michael Liaobf538412013-04-11 05:15:54 +000016975 // Simplify vector selection if the selector will be produced by CMPP*/PCMP*.
Juergen Ributzkad7174712013-09-05 23:02:56 +000016976 if (N->getOpcode() == ISD::VSELECT && Cond.getOpcode() == ISD::SETCC &&
16977 // Check if SETCC has already been promoted
16978 TLI.getSetCCResultType(*DAG.getContext(), VT) == Cond.getValueType()) {
Michael Liaobf538412013-04-11 05:15:54 +000016979
16980 assert(Cond.getValueType().isVector() &&
16981 "vector select expects a vector selector!");
16982
16983 EVT IntVT = Cond.getValueType();
16984 bool TValIsAllOnes = ISD::isBuildVectorAllOnes(LHS.getNode());
16985 bool FValIsAllZeros = ISD::isBuildVectorAllZeros(RHS.getNode());
16986
16987 if (!TValIsAllOnes && !FValIsAllZeros) {
16988 // Try invert the condition if true value is not all 1s and false value
16989 // is not all 0s.
16990 bool TValIsAllZeros = ISD::isBuildVectorAllZeros(LHS.getNode());
16991 bool FValIsAllOnes = ISD::isBuildVectorAllOnes(RHS.getNode());
16992
16993 if (TValIsAllZeros || FValIsAllOnes) {
16994 SDValue CC = Cond.getOperand(2);
16995 ISD::CondCode NewCC =
16996 ISD::getSetCCInverse(cast<CondCodeSDNode>(CC)->get(),
16997 Cond.getOperand(0).getValueType().isInteger());
16998 Cond = DAG.getSetCC(DL, IntVT, Cond.getOperand(0), Cond.getOperand(1), NewCC);
16999 std::swap(LHS, RHS);
17000 TValIsAllOnes = FValIsAllOnes;
17001 FValIsAllZeros = TValIsAllZeros;
17002 }
17003 }
17004
17005 if (TValIsAllOnes || FValIsAllZeros) {
17006 SDValue Ret;
17007
17008 if (TValIsAllOnes && FValIsAllZeros)
17009 Ret = Cond;
17010 else if (TValIsAllOnes)
17011 Ret = DAG.getNode(ISD::OR, DL, IntVT, Cond,
17012 DAG.getNode(ISD::BITCAST, DL, IntVT, RHS));
17013 else if (FValIsAllZeros)
17014 Ret = DAG.getNode(ISD::AND, DL, IntVT, Cond,
17015 DAG.getNode(ISD::BITCAST, DL, IntVT, LHS));
17016
17017 return DAG.getNode(ISD::BITCAST, DL, VT, Ret);
17018 }
17019 }
17020
Nadav Rotemcc616562012-01-15 19:27:55 +000017021 // If we know that this node is legal then we know that it is going to be
17022 // matched by one of the SSE/AVX BLEND instructions. These instructions only
17023 // depend on the highest bit in each word. Try to use SimplifyDemandedBits
17024 // to simplify previous instructions.
Nadav Rotemcc616562012-01-15 19:27:55 +000017025 if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
Nadav Rotembdcae382012-06-07 20:53:48 +000017026 !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
Nadav Rotemcc616562012-01-15 19:27:55 +000017027 unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
Nadav Rotembdcae382012-06-07 20:53:48 +000017028
17029 // Don't optimize vector selects that map to mask-registers.
17030 if (BitWidth == 1)
17031 return SDValue();
17032
Bill Wendling16f81f72013-11-25 05:20:10 +000017033 // Check all uses of that condition operand to check whether it will be
17034 // consumed by non-BLEND instructions, which may depend on all bits are set
17035 // properly.
17036 for (SDNode::use_iterator I = Cond->use_begin(),
17037 E = Cond->use_end(); I != E; ++I)
17038 if (I->getOpcode() != ISD::VSELECT)
17039 // TODO: Add other opcodes eventually lowered into BLEND.
17040 return SDValue();
17041
Nadav Rotemcc616562012-01-15 19:27:55 +000017042 assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
17043 APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
17044
17045 APInt KnownZero, KnownOne;
17046 TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
17047 DCI.isBeforeLegalizeOps());
17048 if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
17049 TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
17050 DCI.CommitTargetLoweringOpt(TLO);
17051 }
17052
Dan Gohman475871a2008-07-27 21:46:04 +000017053 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000017054}
17055
Michael Liao2a33cec2012-08-10 19:58:13 +000017056// Check whether a boolean test is testing a boolean value generated by
17057// X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
17058// code.
17059//
17060// Simplify the following patterns:
17061// (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
17062// (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
17063// to (Op EFLAGS Cond)
17064//
17065// (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
17066// (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
17067// to (Op EFLAGS !Cond)
17068//
17069// where Op could be BRCOND or CMOV.
17070//
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017071static SDValue checkBoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
Michael Liao2a33cec2012-08-10 19:58:13 +000017072 // Quit if not CMP and SUB with its value result used.
17073 if (Cmp.getOpcode() != X86ISD::CMP &&
17074 (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
17075 return SDValue();
17076
17077 // Quit if not used as a boolean value.
17078 if (CC != X86::COND_E && CC != X86::COND_NE)
17079 return SDValue();
17080
17081 // Check CMP operands. One of them should be 0 or 1 and the other should be
17082 // an SetCC or extended from it.
17083 SDValue Op1 = Cmp.getOperand(0);
17084 SDValue Op2 = Cmp.getOperand(1);
17085
17086 SDValue SetCC;
17087 const ConstantSDNode* C = 0;
17088 bool needOppositeCond = (CC == X86::COND_E);
Michael Liao959ddbb2013-04-11 04:43:09 +000017089 bool checkAgainstTrue = false; // Is it a comparison against 1?
Michael Liao2a33cec2012-08-10 19:58:13 +000017090
17091 if ((C = dyn_cast<ConstantSDNode>(Op1)))
17092 SetCC = Op2;
17093 else if ((C = dyn_cast<ConstantSDNode>(Op2)))
17094 SetCC = Op1;
17095 else // Quit if all operands are not constants.
17096 return SDValue();
17097
Michael Liao959ddbb2013-04-11 04:43:09 +000017098 if (C->getZExtValue() == 1) {
Michael Liao2a33cec2012-08-10 19:58:13 +000017099 needOppositeCond = !needOppositeCond;
Michael Liao959ddbb2013-04-11 04:43:09 +000017100 checkAgainstTrue = true;
17101 } else if (C->getZExtValue() != 0)
Michael Liao2a33cec2012-08-10 19:58:13 +000017102 // Quit if the constant is neither 0 or 1.
17103 return SDValue();
17104
Michael Liao959ddbb2013-04-11 04:43:09 +000017105 bool truncatedToBoolWithAnd = false;
17106 // Skip (zext $x), (trunc $x), or (and $x, 1) node.
17107 while (SetCC.getOpcode() == ISD::ZERO_EXTEND ||
17108 SetCC.getOpcode() == ISD::TRUNCATE ||
17109 SetCC.getOpcode() == ISD::AND) {
17110 if (SetCC.getOpcode() == ISD::AND) {
17111 int OpIdx = -1;
17112 ConstantSDNode *CS;
17113 if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(0))) &&
17114 CS->getZExtValue() == 1)
17115 OpIdx = 1;
17116 if ((CS = dyn_cast<ConstantSDNode>(SetCC.getOperand(1))) &&
17117 CS->getZExtValue() == 1)
17118 OpIdx = 0;
17119 if (OpIdx == -1)
17120 break;
17121 SetCC = SetCC.getOperand(OpIdx);
17122 truncatedToBoolWithAnd = true;
17123 } else
17124 SetCC = SetCC.getOperand(0);
17125 }
Michael Liao2a33cec2012-08-10 19:58:13 +000017126
Michael Liao7fdc66b2012-09-10 16:36:16 +000017127 switch (SetCC.getOpcode()) {
Michael Liao959ddbb2013-04-11 04:43:09 +000017128 case X86ISD::SETCC_CARRY:
17129 // Since SETCC_CARRY gives output based on R = CF ? ~0 : 0, it's unsafe to
17130 // simplify it if the result of SETCC_CARRY is not canonicalized to 0 or 1,
17131 // i.e. it's a comparison against true but the result of SETCC_CARRY is not
17132 // truncated to i1 using 'and'.
17133 if (checkAgainstTrue && !truncatedToBoolWithAnd)
17134 break;
17135 assert(X86::CondCode(SetCC.getConstantOperandVal(0)) == X86::COND_B &&
17136 "Invalid use of SETCC_CARRY!");
17137 // FALL THROUGH
Michael Liao7fdc66b2012-09-10 16:36:16 +000017138 case X86ISD::SETCC:
17139 // Set the condition code or opposite one if necessary.
17140 CC = X86::CondCode(SetCC.getConstantOperandVal(0));
17141 if (needOppositeCond)
17142 CC = X86::GetOppositeBranchCondition(CC);
17143 return SetCC.getOperand(1);
17144 case X86ISD::CMOV: {
17145 // Check whether false/true value has canonical one, i.e. 0 or 1.
17146 ConstantSDNode *FVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(0));
17147 ConstantSDNode *TVal = dyn_cast<ConstantSDNode>(SetCC.getOperand(1));
17148 // Quit if true value is not a constant.
17149 if (!TVal)
17150 return SDValue();
17151 // Quit if false value is not a constant.
17152 if (!FVal) {
Michael Liao7fdc66b2012-09-10 16:36:16 +000017153 SDValue Op = SetCC.getOperand(0);
Michael Liao258d9b72013-03-28 23:38:52 +000017154 // Skip 'zext' or 'trunc' node.
17155 if (Op.getOpcode() == ISD::ZERO_EXTEND ||
17156 Op.getOpcode() == ISD::TRUNCATE)
17157 Op = Op.getOperand(0);
Michael Liaoc26392a2013-03-28 23:41:26 +000017158 // A special case for rdrand/rdseed, where 0 is set if false cond is
17159 // found.
17160 if ((Op.getOpcode() != X86ISD::RDRAND &&
17161 Op.getOpcode() != X86ISD::RDSEED) || Op.getResNo() != 0)
Michael Liao7fdc66b2012-09-10 16:36:16 +000017162 return SDValue();
17163 }
17164 // Quit if false value is not the constant 0 or 1.
17165 bool FValIsFalse = true;
17166 if (FVal && FVal->getZExtValue() != 0) {
17167 if (FVal->getZExtValue() != 1)
17168 return SDValue();
17169 // If FVal is 1, opposite cond is needed.
17170 needOppositeCond = !needOppositeCond;
17171 FValIsFalse = false;
17172 }
17173 // Quit if TVal is not the constant opposite of FVal.
17174 if (FValIsFalse && TVal->getZExtValue() != 1)
17175 return SDValue();
17176 if (!FValIsFalse && TVal->getZExtValue() != 0)
17177 return SDValue();
17178 CC = X86::CondCode(SetCC.getConstantOperandVal(2));
17179 if (needOppositeCond)
17180 CC = X86::GetOppositeBranchCondition(CC);
17181 return SetCC.getOperand(3);
17182 }
17183 }
Michael Liao2a33cec2012-08-10 19:58:13 +000017184
Michael Liao7fdc66b2012-09-10 16:36:16 +000017185 return SDValue();
Michael Liao2a33cec2012-08-10 19:58:13 +000017186}
17187
Chris Lattnerd1980a52009-03-12 06:52:53 +000017188/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
17189static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017190 TargetLowering::DAGCombinerInfo &DCI,
17191 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000017192 SDLoc DL(N);
Eric Christopherfd179292009-08-27 18:07:15 +000017193
Chris Lattnerd1980a52009-03-12 06:52:53 +000017194 // If the flag operand isn't dead, don't touch this CMOV.
17195 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
17196 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000017197
Evan Chengb5a55d92011-05-24 01:48:22 +000017198 SDValue FalseOp = N->getOperand(0);
17199 SDValue TrueOp = N->getOperand(1);
17200 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
17201 SDValue Cond = N->getOperand(3);
Michael Liao2a33cec2012-08-10 19:58:13 +000017202
Evan Chengb5a55d92011-05-24 01:48:22 +000017203 if (CC == X86::COND_E || CC == X86::COND_NE) {
17204 switch (Cond.getOpcode()) {
17205 default: break;
17206 case X86ISD::BSR:
17207 case X86ISD::BSF:
17208 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
17209 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
17210 return (CC == X86::COND_E) ? FalseOp : TrueOp;
17211 }
17212 }
17213
Michael Liao2a33cec2012-08-10 19:58:13 +000017214 SDValue Flags;
17215
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017216 Flags = checkBoolTestSetCCCombine(Cond, CC);
Michael Liao9eac20a2012-08-11 23:47:06 +000017217 if (Flags.getNode() &&
17218 // Extra check as FCMOV only supports a subset of X86 cond.
Michael Liao7859f432012-09-06 07:11:22 +000017219 (FalseOp.getValueType() != MVT::f80 || hasFPCMov(CC))) {
Michael Liaodbf8b5b2012-08-28 03:34:40 +000017220 SDValue Ops[] = { FalseOp, TrueOp,
17221 DAG.getConstant(CC, MVT::i8), Flags };
17222 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
17223 Ops, array_lengthof(Ops));
17224 }
17225
Chris Lattnerd1980a52009-03-12 06:52:53 +000017226 // If this is a select between two integer constants, try to do some
17227 // optimizations. Note that the operands are ordered the opposite of SELECT
17228 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000017229 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
17230 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000017231 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
17232 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000017233 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
17234 CC = X86::GetOppositeBranchCondition(CC);
17235 std::swap(TrueC, FalseC);
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017236 std::swap(TrueOp, FalseOp);
Chris Lattnerd1980a52009-03-12 06:52:53 +000017237 }
Eric Christopherfd179292009-08-27 18:07:15 +000017238
Chris Lattnerd1980a52009-03-12 06:52:53 +000017239 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000017240 // This is efficient for any integer data type (including i8/i16) and
17241 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000017242 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000017243 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17244 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017245
Chris Lattnerd1980a52009-03-12 06:52:53 +000017246 // Zero extend the condition if needed.
17247 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017248
Chris Lattnerd1980a52009-03-12 06:52:53 +000017249 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
17250 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000017251 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000017252 if (N->getNumValues() == 2) // Dead flag value?
17253 return DCI.CombineTo(N, Cond, SDValue());
17254 return Cond;
17255 }
Eric Christopherfd179292009-08-27 18:07:15 +000017256
Chris Lattnercee56e72009-03-13 05:53:31 +000017257 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
17258 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000017259 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000017260 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17261 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000017262
Chris Lattner97a29a52009-03-13 05:22:11 +000017263 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000017264 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
17265 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000017266 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17267 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000017268
Chris Lattner97a29a52009-03-13 05:22:11 +000017269 if (N->getNumValues() == 2) // Dead flag value?
17270 return DCI.CombineTo(N, Cond, SDValue());
17271 return Cond;
17272 }
Eric Christopherfd179292009-08-27 18:07:15 +000017273
Chris Lattnercee56e72009-03-13 05:53:31 +000017274 // Optimize cases that will turn into an LEA instruction. This requires
17275 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000017276 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000017277 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000017278 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000017279
Chris Lattnercee56e72009-03-13 05:53:31 +000017280 bool isFastMultiplier = false;
17281 if (Diff < 10) {
17282 switch ((unsigned char)Diff) {
17283 default: break;
17284 case 1: // result = add base, cond
17285 case 2: // result = lea base( , cond*2)
17286 case 3: // result = lea base(cond, cond*2)
17287 case 4: // result = lea base( , cond*4)
17288 case 5: // result = lea base(cond, cond*4)
17289 case 8: // result = lea base( , cond*8)
17290 case 9: // result = lea base(cond, cond*8)
17291 isFastMultiplier = true;
17292 break;
17293 }
17294 }
Eric Christopherfd179292009-08-27 18:07:15 +000017295
Chris Lattnercee56e72009-03-13 05:53:31 +000017296 if (isFastMultiplier) {
17297 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000017298 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
17299 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000017300 // Zero extend the condition if needed.
17301 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
17302 Cond);
17303 // Scale the condition by the difference.
17304 if (Diff != 1)
17305 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
17306 DAG.getConstant(Diff, Cond.getValueType()));
17307
17308 // Add the base if non-zero.
17309 if (FalseC->getAPIntValue() != 0)
17310 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
17311 SDValue(FalseC, 0));
17312 if (N->getNumValues() == 2) // Dead flag value?
17313 return DCI.CombineTo(N, Cond, SDValue());
17314 return Cond;
17315 }
Eric Christopherfd179292009-08-27 18:07:15 +000017316 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000017317 }
17318 }
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017319
17320 // Handle these cases:
17321 // (select (x != c), e, c) -> select (x != c), e, x),
17322 // (select (x == c), c, e) -> select (x == c), x, e)
17323 // where the c is an integer constant, and the "select" is the combination
17324 // of CMOV and CMP.
17325 //
17326 // The rationale for this change is that the conditional-move from a constant
17327 // needs two instructions, however, conditional-move from a register needs
17328 // only one instruction.
17329 //
17330 // CAVEAT: By replacing a constant with a symbolic value, it may obscure
17331 // some instruction-combining opportunities. This opt needs to be
17332 // postponed as late as possible.
17333 //
17334 if (!DCI.isBeforeLegalize() && !DCI.isBeforeLegalizeOps()) {
17335 // the DCI.xxxx conditions are provided to postpone the optimization as
17336 // late as possible.
17337
17338 ConstantSDNode *CmpAgainst = 0;
17339 if ((Cond.getOpcode() == X86ISD::CMP || Cond.getOpcode() == X86ISD::SUB) &&
17340 (CmpAgainst = dyn_cast<ConstantSDNode>(Cond.getOperand(1))) &&
Jakub Staszak30fcfc32013-02-16 13:34:26 +000017341 !isa<ConstantSDNode>(Cond.getOperand(0))) {
NAKAMURA Takumie2687452012-10-16 06:28:34 +000017342
17343 if (CC == X86::COND_NE &&
17344 CmpAgainst == dyn_cast<ConstantSDNode>(FalseOp)) {
17345 CC = X86::GetOppositeBranchCondition(CC);
17346 std::swap(TrueOp, FalseOp);
17347 }
17348
17349 if (CC == X86::COND_E &&
17350 CmpAgainst == dyn_cast<ConstantSDNode>(TrueOp)) {
17351 SDValue Ops[] = { FalseOp, Cond.getOperand(0),
17352 DAG.getConstant(CC, MVT::i8), Cond };
17353 return DAG.getNode(X86ISD::CMOV, DL, N->getVTList (), Ops,
17354 array_lengthof(Ops));
17355 }
17356 }
17357 }
17358
Chris Lattnerd1980a52009-03-12 06:52:53 +000017359 return SDValue();
17360}
17361
Evan Cheng0b0cd912009-03-28 05:57:29 +000017362/// PerformMulCombine - Optimize a single multiply with constant into two
17363/// in order to implement it with two cheaper instructions, e.g.
17364/// LEA + SHL, LEA + LEA.
17365static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
17366 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000017367 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
17368 return SDValue();
17369
Owen Andersone50ed302009-08-10 22:56:29 +000017370 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000017371 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000017372 return SDValue();
17373
17374 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
17375 if (!C)
17376 return SDValue();
17377 uint64_t MulAmt = C->getZExtValue();
17378 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
17379 return SDValue();
17380
17381 uint64_t MulAmt1 = 0;
17382 uint64_t MulAmt2 = 0;
17383 if ((MulAmt % 9) == 0) {
17384 MulAmt1 = 9;
17385 MulAmt2 = MulAmt / 9;
17386 } else if ((MulAmt % 5) == 0) {
17387 MulAmt1 = 5;
17388 MulAmt2 = MulAmt / 5;
17389 } else if ((MulAmt % 3) == 0) {
17390 MulAmt1 = 3;
17391 MulAmt2 = MulAmt / 3;
17392 }
17393 if (MulAmt2 &&
17394 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
Andrew Trickac6d9be2013-05-25 02:42:55 +000017395 SDLoc DL(N);
Evan Cheng0b0cd912009-03-28 05:57:29 +000017396
17397 if (isPowerOf2_64(MulAmt2) &&
17398 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
17399 // If second multiplifer is pow2, issue it first. We want the multiply by
17400 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
17401 // is an add.
17402 std::swap(MulAmt1, MulAmt2);
17403
17404 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000017405 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000017406 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000017407 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000017408 else
Evan Cheng73f24c92009-03-30 21:36:47 +000017409 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000017410 DAG.getConstant(MulAmt1, VT));
17411
Eric Christopherfd179292009-08-27 18:07:15 +000017412 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000017413 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000017414 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000017415 else
Evan Cheng73f24c92009-03-30 21:36:47 +000017416 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000017417 DAG.getConstant(MulAmt2, VT));
17418
17419 // Do not add new nodes to DAG combiner worklist.
17420 DCI.CombineTo(N, NewMul, false);
17421 }
17422 return SDValue();
17423}
17424
Evan Chengad9c0a32009-12-15 00:53:42 +000017425static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
17426 SDValue N0 = N->getOperand(0);
17427 SDValue N1 = N->getOperand(1);
17428 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
17429 EVT VT = N0.getValueType();
17430
17431 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
17432 // since the result of setcc_c is all zero's or all ones.
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017433 if (VT.isInteger() && !VT.isVector() &&
17434 N1C && N0.getOpcode() == ISD::AND &&
Evan Chengad9c0a32009-12-15 00:53:42 +000017435 N0.getOperand(1).getOpcode() == ISD::Constant) {
17436 SDValue N00 = N0.getOperand(0);
17437 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
17438 ((N00.getOpcode() == ISD::ANY_EXTEND ||
17439 N00.getOpcode() == ISD::ZERO_EXTEND) &&
17440 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
17441 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
17442 APInt ShAmt = N1C->getAPIntValue();
17443 Mask = Mask.shl(ShAmt);
17444 if (Mask != 0)
Andrew Trickac6d9be2013-05-25 02:42:55 +000017445 return DAG.getNode(ISD::AND, SDLoc(N), VT,
Evan Chengad9c0a32009-12-15 00:53:42 +000017446 N00, DAG.getConstant(Mask, VT));
17447 }
17448 }
17449
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017450 // Hardware support for vector shifts is sparse which makes us scalarize the
17451 // vector operations in many cases. Also, on sandybridge ADD is faster than
17452 // shl.
17453 // (shl V, 1) -> add V,V
17454 if (isSplatVector(N1.getNode())) {
17455 assert(N0.getValueType().isVector() && "Invalid vector shift type");
17456 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
17457 // We shift all of the values by one. In many cases we do not have
17458 // hardware support for this operation. This is better expressed as an ADD
17459 // of two values.
17460 if (N1C && (1 == N1C->getZExtValue())) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000017461 return DAG.getNode(ISD::ADD, SDLoc(N), VT, N0, N0);
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017462 }
17463 }
17464
Evan Chengad9c0a32009-12-15 00:53:42 +000017465 return SDValue();
17466}
Evan Cheng0b0cd912009-03-28 05:57:29 +000017467
Stephen Linfff96732013-07-12 15:31:36 +000017468/// \brief Returns a vector of 0s if the node in input is a vector logical
17469/// shift by a constant amount which is known to be bigger than or equal
17470/// to the vector element size in bits.
17471static SDValue performShiftToAllZeros(SDNode *N, SelectionDAG &DAG,
17472 const X86Subtarget *Subtarget) {
17473 EVT VT = N->getValueType(0);
17474
17475 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
17476 (!Subtarget->hasInt256() ||
17477 (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
17478 return SDValue();
17479
17480 SDValue Amt = N->getOperand(1);
17481 SDLoc DL(N);
17482 if (isSplatVector(Amt.getNode())) {
17483 SDValue SclrAmt = Amt->getOperand(0);
17484 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
17485 APInt ShiftAmt = C->getAPIntValue();
17486 unsigned MaxAmount = VT.getVectorElementType().getSizeInBits();
17487
17488 // SSE2/AVX2 logical shifts always return a vector of 0s
17489 // if the shift amount is bigger than or equal to
17490 // the element size. The constant shift amount will be
17491 // encoded as a 8-bit immediate.
17492 if (ShiftAmt.trunc(8).uge(MaxAmount))
17493 return getZeroVector(VT, Subtarget, DAG, DL);
17494 }
17495 }
17496
17497 return SDValue();
17498}
17499
Nadav Rotem0fb65232013-05-04 23:24:56 +000017500/// PerformShiftCombine - Combine shifts.
Nate Begeman740ab032009-01-26 00:52:55 +000017501static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
Mon P Wang845b1892012-02-01 22:15:20 +000017502 TargetLowering::DAGCombinerInfo &DCI,
Nate Begeman740ab032009-01-26 00:52:55 +000017503 const X86Subtarget *Subtarget) {
Nadav Rotemfb0dfbb2011-10-30 13:24:22 +000017504 if (N->getOpcode() == ISD::SHL) {
17505 SDValue V = PerformSHLCombine(N, DAG);
17506 if (V.getNode()) return V;
17507 }
Evan Chengad9c0a32009-12-15 00:53:42 +000017508
Stephen Linfff96732013-07-12 15:31:36 +000017509 if (N->getOpcode() != ISD::SRA) {
17510 // Try to fold this logical shift into a zero vector.
17511 SDValue V = performShiftToAllZeros(N, DAG, Subtarget);
17512 if (V.getNode()) return V;
17513 }
17514
Michael Liao42317cc2013-03-20 02:33:21 +000017515 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000017516}
17517
Stuart Hastings865f0932011-06-03 23:53:54 +000017518// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
17519// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
17520// and friends. Likewise for OR -> CMPNEQSS.
17521static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
17522 TargetLowering::DAGCombinerInfo &DCI,
17523 const X86Subtarget *Subtarget) {
17524 unsigned opcode;
17525
17526 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
17527 // we're requiring SSE2 for both.
Craig Topper1accb7e2012-01-10 06:54:16 +000017528 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
Stuart Hastings865f0932011-06-03 23:53:54 +000017529 SDValue N0 = N->getOperand(0);
17530 SDValue N1 = N->getOperand(1);
17531 SDValue CMP0 = N0->getOperand(1);
17532 SDValue CMP1 = N1->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017533 SDLoc DL(N);
Stuart Hastings865f0932011-06-03 23:53:54 +000017534
17535 // The SETCCs should both refer to the same CMP.
17536 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
17537 return SDValue();
17538
17539 SDValue CMP00 = CMP0->getOperand(0);
17540 SDValue CMP01 = CMP0->getOperand(1);
17541 EVT VT = CMP00.getValueType();
17542
17543 if (VT == MVT::f32 || VT == MVT::f64) {
17544 bool ExpectingFlags = false;
17545 // Check for any users that want flags:
Jakub Staszak30fcfc32013-02-16 13:34:26 +000017546 for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end();
Stuart Hastings865f0932011-06-03 23:53:54 +000017547 !ExpectingFlags && UI != UE; ++UI)
17548 switch (UI->getOpcode()) {
17549 default:
17550 case ISD::BR_CC:
17551 case ISD::BRCOND:
17552 case ISD::SELECT:
17553 ExpectingFlags = true;
17554 break;
17555 case ISD::CopyToReg:
17556 case ISD::SIGN_EXTEND:
17557 case ISD::ZERO_EXTEND:
17558 case ISD::ANY_EXTEND:
17559 break;
17560 }
17561
17562 if (!ExpectingFlags) {
17563 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
17564 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
17565
17566 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
17567 X86::CondCode tmp = cc0;
17568 cc0 = cc1;
17569 cc1 = tmp;
17570 }
17571
17572 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
17573 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
17574 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
17575 X86ISD::NodeType NTOperator = is64BitFP ?
17576 X86ISD::FSETCCsd : X86ISD::FSETCCss;
17577 // FIXME: need symbolic constants for these magic numbers.
17578 // See X86ATTInstPrinter.cpp:printSSECC().
17579 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
17580 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
17581 DAG.getConstant(x86cc, MVT::i8));
17582 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
17583 OnesOrZeroesF);
17584 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
17585 DAG.getConstant(1, MVT::i32));
17586 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
17587 return OneBitOfTruth;
17588 }
17589 }
17590 }
17591 }
17592 return SDValue();
17593}
17594
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017595/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
17596/// so it can be folded inside ANDNP.
17597static bool CanFoldXORWithAllOnes(const SDNode *N) {
17598 EVT VT = N->getValueType(0);
17599
17600 // Match direct AllOnes for 128 and 256-bit vectors
17601 if (ISD::isBuildVectorAllOnes(N))
17602 return true;
17603
17604 // Look through a bit convert.
17605 if (N->getOpcode() == ISD::BITCAST)
17606 N = N->getOperand(0).getNode();
17607
17608 // Sometimes the operand may come from a insert_subvector building a 256-bit
17609 // allones vector
Craig Topper7a9a28b2012-08-12 02:23:29 +000017610 if (VT.is256BitVector() &&
Bill Wendling456a9252011-08-04 00:32:58 +000017611 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
17612 SDValue V1 = N->getOperand(0);
17613 SDValue V2 = N->getOperand(1);
17614
17615 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
17616 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
17617 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
17618 ISD::isBuildVectorAllOnes(V2.getNode()))
17619 return true;
17620 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017621
17622 return false;
17623}
17624
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017625// On AVX/AVX2 the type v8i1 is legalized to v8i16, which is an XMM sized
17626// register. In most cases we actually compare or select YMM-sized registers
17627// and mixing the two types creates horrible code. This method optimizes
17628// some of the transition sequences.
17629static SDValue WidenMaskArithmetic(SDNode *N, SelectionDAG &DAG,
17630 TargetLowering::DAGCombinerInfo &DCI,
17631 const X86Subtarget *Subtarget) {
17632 EVT VT = N->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000017633 if (!VT.is256BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017634 return SDValue();
17635
17636 assert((N->getOpcode() == ISD::ANY_EXTEND ||
17637 N->getOpcode() == ISD::ZERO_EXTEND ||
17638 N->getOpcode() == ISD::SIGN_EXTEND) && "Invalid Node");
17639
17640 SDValue Narrow = N->getOperand(0);
17641 EVT NarrowVT = Narrow->getValueType(0);
Craig Topper5a529e42013-01-18 06:44:29 +000017642 if (!NarrowVT.is128BitVector())
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017643 return SDValue();
17644
17645 if (Narrow->getOpcode() != ISD::XOR &&
17646 Narrow->getOpcode() != ISD::AND &&
17647 Narrow->getOpcode() != ISD::OR)
17648 return SDValue();
17649
17650 SDValue N0 = Narrow->getOperand(0);
17651 SDValue N1 = Narrow->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017652 SDLoc DL(Narrow);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017653
17654 // The Left side has to be a trunc.
17655 if (N0.getOpcode() != ISD::TRUNCATE)
17656 return SDValue();
17657
17658 // The type of the truncated inputs.
17659 EVT WideVT = N0->getOperand(0)->getValueType(0);
17660 if (WideVT != VT)
17661 return SDValue();
17662
17663 // The right side has to be a 'trunc' or a constant vector.
17664 bool RHSTrunc = N1.getOpcode() == ISD::TRUNCATE;
17665 bool RHSConst = (isSplatVector(N1.getNode()) &&
17666 isa<ConstantSDNode>(N1->getOperand(0)));
17667 if (!RHSTrunc && !RHSConst)
17668 return SDValue();
17669
17670 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
17671
17672 if (!TLI.isOperationLegalOrPromote(Narrow->getOpcode(), WideVT))
17673 return SDValue();
17674
17675 // Set N0 and N1 to hold the inputs to the new wide operation.
17676 N0 = N0->getOperand(0);
17677 if (RHSConst) {
17678 N1 = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT.getScalarType(),
17679 N1->getOperand(0));
17680 SmallVector<SDValue, 8> C(WideVT.getVectorNumElements(), N1);
17681 N1 = DAG.getNode(ISD::BUILD_VECTOR, DL, WideVT, &C[0], C.size());
17682 } else if (RHSTrunc) {
17683 N1 = N1->getOperand(0);
17684 }
17685
17686 // Generate the wide operation.
Nadav Roteme3b24892013-01-02 17:41:03 +000017687 SDValue Op = DAG.getNode(Narrow->getOpcode(), DL, WideVT, N0, N1);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017688 unsigned Opcode = N->getOpcode();
17689 switch (Opcode) {
17690 case ISD::ANY_EXTEND:
17691 return Op;
17692 case ISD::ZERO_EXTEND: {
17693 unsigned InBits = NarrowVT.getScalarType().getSizeInBits();
17694 APInt Mask = APInt::getAllOnesValue(InBits);
17695 Mask = Mask.zext(VT.getScalarType().getSizeInBits());
17696 return DAG.getNode(ISD::AND, DL, VT,
17697 Op, DAG.getConstant(Mask, VT));
17698 }
17699 case ISD::SIGN_EXTEND:
17700 return DAG.getNode(ISD::SIGN_EXTEND_INREG, DL, VT,
17701 Op, DAG.getValueType(NarrowVT));
17702 default:
17703 llvm_unreachable("Unexpected opcode");
17704 }
17705}
17706
Nate Begemanb65c1752010-12-17 22:55:37 +000017707static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
17708 TargetLowering::DAGCombinerInfo &DCI,
17709 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017710 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000017711 if (DCI.isBeforeLegalizeOps())
17712 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017713
Stuart Hastings865f0932011-06-03 23:53:54 +000017714 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17715 if (R.getNode())
17716 return R;
17717
Craig Topperb6ac30a2013-08-30 06:52:21 +000017718 // Create BLSI, BLSR, and BZHI instructions
Craig Topperb4c94572011-10-21 06:55:01 +000017719 // BLSI is X & (-X)
17720 // BLSR is X & (X-1)
Craig Topperb6ac30a2013-08-30 06:52:21 +000017721 // BZHI is X & ((1 << Y) - 1)
Craig Topper69c474f2013-09-02 07:53:17 +000017722 // BEXTR is ((X >> imm) & (2**size-1))
Craig Topperb6ac30a2013-08-30 06:52:21 +000017723 if (VT == MVT::i32 || VT == MVT::i64) {
Craig Topper54a11172011-10-14 07:06:56 +000017724 SDValue N0 = N->getOperand(0);
17725 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017726 SDLoc DL(N);
Craig Topper54a11172011-10-14 07:06:56 +000017727
Craig Topperb6ac30a2013-08-30 06:52:21 +000017728 if (Subtarget->hasBMI()) {
17729 // Check LHS for neg
17730 if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
17731 isZero(N0.getOperand(0)))
17732 return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
Craig Topperb4c94572011-10-21 06:55:01 +000017733
Craig Topperb6ac30a2013-08-30 06:52:21 +000017734 // Check RHS for neg
17735 if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
17736 isZero(N1.getOperand(0)))
17737 return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
Craig Topperb4c94572011-10-21 06:55:01 +000017738
Craig Topperb6ac30a2013-08-30 06:52:21 +000017739 // Check LHS for X-1
17740 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
17741 isAllOnes(N0.getOperand(1)))
17742 return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
Craig Topperb4c94572011-10-21 06:55:01 +000017743
Craig Topperb6ac30a2013-08-30 06:52:21 +000017744 // Check RHS for X-1
17745 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
17746 isAllOnes(N1.getOperand(1)))
17747 return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
17748 }
17749
17750 if (Subtarget->hasBMI2()) {
17751 // Check for (and (add (shl 1, Y), -1), X)
17752 if (N0.getOpcode() == ISD::ADD && isAllOnes(N0.getOperand(1))) {
17753 SDValue N00 = N0.getOperand(0);
17754 if (N00.getOpcode() == ISD::SHL) {
17755 SDValue N001 = N00.getOperand(1);
17756 assert(N001.getValueType() == MVT::i8 && "unexpected type");
17757 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N00.getOperand(0));
17758 if (C && C->getZExtValue() == 1)
Craig Toppera9080652013-08-30 07:16:16 +000017759 return DAG.getNode(X86ISD::BZHI, DL, VT, N1, N001);
Craig Topperb6ac30a2013-08-30 06:52:21 +000017760 }
17761 }
17762
17763 // Check for (and X, (add (shl 1, Y), -1))
17764 if (N1.getOpcode() == ISD::ADD && isAllOnes(N1.getOperand(1))) {
17765 SDValue N10 = N1.getOperand(0);
17766 if (N10.getOpcode() == ISD::SHL) {
17767 SDValue N101 = N10.getOperand(1);
17768 assert(N101.getValueType() == MVT::i8 && "unexpected type");
17769 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N10.getOperand(0));
17770 if (C && C->getZExtValue() == 1)
Craig Toppera9080652013-08-30 07:16:16 +000017771 return DAG.getNode(X86ISD::BZHI, DL, VT, N0, N101);
Craig Topperb6ac30a2013-08-30 06:52:21 +000017772 }
17773 }
17774 }
Craig Topperb4c94572011-10-21 06:55:01 +000017775
Craig Topperfafe4bb2013-10-03 04:16:45 +000017776 // Check for BEXTR.
17777 if ((Subtarget->hasBMI() || Subtarget->hasTBM()) &&
17778 (N0.getOpcode() == ISD::SRA || N0.getOpcode() == ISD::SRL)) {
17779 ConstantSDNode *MaskNode = dyn_cast<ConstantSDNode>(N1);
17780 ConstantSDNode *ShiftNode = dyn_cast<ConstantSDNode>(N0.getOperand(1));
17781 if (MaskNode && ShiftNode) {
17782 uint64_t Mask = MaskNode->getZExtValue();
17783 uint64_t Shift = ShiftNode->getZExtValue();
17784 if (isMask_64(Mask)) {
17785 uint64_t MaskSize = CountPopulation_64(Mask);
17786 if (Shift + MaskSize <= VT.getSizeInBits())
17787 return DAG.getNode(X86ISD::BEXTR, DL, VT, N0.getOperand(0),
17788 DAG.getConstant(Shift | (MaskSize << 8), VT));
17789 }
17790 }
17791 } // BEXTR
17792
Craig Topper54a11172011-10-14 07:06:56 +000017793 return SDValue();
17794 }
17795
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000017796 // Want to form ANDNP nodes:
17797 // 1) In the hopes of then easily combining them with OR and AND nodes
17798 // to form PBLEND/PSIGN.
17799 // 2) To match ANDN packed intrinsics
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000017800 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000017801 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017802
Nate Begemanb65c1752010-12-17 22:55:37 +000017803 SDValue N0 = N->getOperand(0);
17804 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017805 SDLoc DL(N);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017806
Nate Begemanb65c1752010-12-17 22:55:37 +000017807 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017808 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017809 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
17810 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000017811 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000017812
17813 // Check RHS for vnot
17814 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000017815 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
17816 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000017817 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017818
Nate Begemanb65c1752010-12-17 22:55:37 +000017819 return SDValue();
17820}
17821
Evan Cheng760d1942010-01-04 21:22:48 +000017822static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000017823 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000017824 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000017825 EVT VT = N->getValueType(0);
Evan Cheng39cfeec2010-04-28 02:25:18 +000017826 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000017827 return SDValue();
17828
Stuart Hastings865f0932011-06-03 23:53:54 +000017829 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
17830 if (R.getNode())
17831 return R;
17832
Evan Cheng760d1942010-01-04 21:22:48 +000017833 SDValue N0 = N->getOperand(0);
17834 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017835
Nate Begemanb65c1752010-12-17 22:55:37 +000017836 // look for psign/blend
Craig Topper1666cb62011-11-19 07:07:26 +000017837 if (VT == MVT::v2i64 || VT == MVT::v4i64) {
Craig Topperd0a31172012-01-10 06:37:29 +000017838 if (!Subtarget->hasSSSE3() ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000017839 (VT == MVT::v4i64 && !Subtarget->hasInt256()))
Craig Topper1666cb62011-11-19 07:07:26 +000017840 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017841
Craig Topper1666cb62011-11-19 07:07:26 +000017842 // Canonicalize pandn to RHS
17843 if (N0.getOpcode() == X86ISD::ANDNP)
17844 std::swap(N0, N1);
Lang Hames9ffaa6a2012-01-10 22:53:20 +000017845 // or (and (m, y), (pandn m, x))
Craig Topper1666cb62011-11-19 07:07:26 +000017846 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
17847 SDValue Mask = N1.getOperand(0);
17848 SDValue X = N1.getOperand(1);
17849 SDValue Y;
17850 if (N0.getOperand(0) == Mask)
17851 Y = N0.getOperand(1);
17852 if (N0.getOperand(1) == Mask)
17853 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017854
Craig Topper1666cb62011-11-19 07:07:26 +000017855 // Check to see if the mask appeared in both the AND and ANDNP and
17856 if (!Y.getNode())
17857 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017858
Craig Topper1666cb62011-11-19 07:07:26 +000017859 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
Craig Topper1666cb62011-11-19 07:07:26 +000017860 // Look through mask bitcast.
Nadav Rotem4ac90812012-04-01 19:31:22 +000017861 if (Mask.getOpcode() == ISD::BITCAST)
17862 Mask = Mask.getOperand(0);
17863 if (X.getOpcode() == ISD::BITCAST)
17864 X = X.getOperand(0);
17865 if (Y.getOpcode() == ISD::BITCAST)
17866 Y = Y.getOperand(0);
17867
Craig Topper1666cb62011-11-19 07:07:26 +000017868 EVT MaskVT = Mask.getValueType();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017869
Craig Toppered2e13d2012-01-22 19:15:14 +000017870 // Validate that the Mask operand is a vector sra node.
Craig Topper1666cb62011-11-19 07:07:26 +000017871 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
17872 // there is no psrai.b
Craig Topper1666cb62011-11-19 07:07:26 +000017873 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
Michael Liao42317cc2013-03-20 02:33:21 +000017874 unsigned SraAmt = ~0;
17875 if (Mask.getOpcode() == ISD::SRA) {
17876 SDValue Amt = Mask.getOperand(1);
17877 if (isSplatVector(Amt.getNode())) {
17878 SDValue SclrAmt = Amt->getOperand(0);
17879 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt))
17880 SraAmt = C->getZExtValue();
17881 }
17882 } else if (Mask.getOpcode() == X86ISD::VSRAI) {
17883 SDValue SraC = Mask.getOperand(1);
17884 SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
17885 }
Craig Topper1666cb62011-11-19 07:07:26 +000017886 if ((SraAmt + 1) != EltBits)
17887 return SDValue();
17888
Andrew Trickac6d9be2013-05-25 02:42:55 +000017889 SDLoc DL(N);
Craig Topper1666cb62011-11-19 07:07:26 +000017890
17891 // Now we know we at least have a plendvb with the mask val. See if
17892 // we can form a psignb/w/d.
17893 // psign = x.type == y.type == mask.type && y = sub(0, x);
Craig Topper1666cb62011-11-19 07:07:26 +000017894 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
17895 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
Craig Toppered2e13d2012-01-22 19:15:14 +000017896 X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
17897 assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
17898 "Unsupported VT for PSIGN");
Nadav Rotemf8db4472013-02-24 07:09:35 +000017899 Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
Craig Toppered2e13d2012-01-22 19:15:14 +000017900 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Craig Topper1666cb62011-11-19 07:07:26 +000017901 }
17902 // PBLENDVB only available on SSE 4.1
Craig Topperd0a31172012-01-10 06:37:29 +000017903 if (!Subtarget->hasSSE41())
Craig Topper1666cb62011-11-19 07:07:26 +000017904 return SDValue();
17905
17906 EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
17907
17908 X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
17909 Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
17910 Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
Nadav Rotem18197d72011-11-30 10:13:37 +000017911 Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
Craig Topper1666cb62011-11-19 07:07:26 +000017912 return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000017913 }
17914 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017915
Craig Topper1666cb62011-11-19 07:07:26 +000017916 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
17917 return SDValue();
17918
Nate Begemanb65c1752010-12-17 22:55:37 +000017919 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000017920 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
17921 std::swap(N0, N1);
17922 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
17923 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000017924 if (!N0.hasOneUse() || !N1.hasOneUse())
17925 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000017926
17927 SDValue ShAmt0 = N0.getOperand(1);
17928 if (ShAmt0.getValueType() != MVT::i8)
17929 return SDValue();
17930 SDValue ShAmt1 = N1.getOperand(1);
17931 if (ShAmt1.getValueType() != MVT::i8)
17932 return SDValue();
17933 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
17934 ShAmt0 = ShAmt0.getOperand(0);
17935 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
17936 ShAmt1 = ShAmt1.getOperand(0);
17937
Andrew Trickac6d9be2013-05-25 02:42:55 +000017938 SDLoc DL(N);
Evan Cheng760d1942010-01-04 21:22:48 +000017939 unsigned Opc = X86ISD::SHLD;
17940 SDValue Op0 = N0.getOperand(0);
17941 SDValue Op1 = N1.getOperand(0);
17942 if (ShAmt0.getOpcode() == ISD::SUB) {
17943 Opc = X86ISD::SHRD;
17944 std::swap(Op0, Op1);
17945 std::swap(ShAmt0, ShAmt1);
17946 }
17947
Evan Cheng8b1190a2010-04-28 01:18:01 +000017948 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000017949 if (ShAmt1.getOpcode() == ISD::SUB) {
17950 SDValue Sum = ShAmt1.getOperand(0);
17951 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000017952 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
17953 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
17954 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
17955 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000017956 return DAG.getNode(Opc, DL, VT,
17957 Op0, Op1,
17958 DAG.getNode(ISD::TRUNCATE, DL,
17959 MVT::i8, ShAmt0));
17960 }
17961 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
17962 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
17963 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000017964 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000017965 return DAG.getNode(Opc, DL, VT,
17966 N0.getOperand(0), N1.getOperand(0),
17967 DAG.getNode(ISD::TRUNCATE, DL,
17968 MVT::i8, ShAmt0));
17969 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000017970
Evan Cheng760d1942010-01-04 21:22:48 +000017971 return SDValue();
17972}
17973
Manman Ren92363622012-06-07 22:39:10 +000017974// Generate NEG and CMOV for integer abs.
17975static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
17976 EVT VT = N->getValueType(0);
17977
17978 // Since X86 does not have CMOV for 8-bit integer, we don't convert
17979 // 8-bit integer abs to NEG and CMOV.
17980 if (VT.isInteger() && VT.getSizeInBits() == 8)
17981 return SDValue();
17982
17983 SDValue N0 = N->getOperand(0);
17984 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000017985 SDLoc DL(N);
Manman Ren92363622012-06-07 22:39:10 +000017986
17987 // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
17988 // and change it to SUB and CMOV.
17989 if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
17990 N0.getOpcode() == ISD::ADD &&
17991 N0.getOperand(1) == N1 &&
17992 N1.getOpcode() == ISD::SRA &&
17993 N1.getOperand(0) == N0.getOperand(0))
17994 if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
17995 if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
17996 // Generate SUB & CMOV.
17997 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
17998 DAG.getConstant(0, VT), N0.getOperand(0));
17999
18000 SDValue Ops[] = { N0.getOperand(0), Neg,
18001 DAG.getConstant(X86::COND_GE, MVT::i8),
18002 SDValue(Neg.getNode(), 1) };
18003 return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
18004 Ops, array_lengthof(Ops));
18005 }
18006 return SDValue();
18007}
18008
Craig Topper3738ccd2011-12-27 06:27:23 +000018009// PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
Craig Topperb4c94572011-10-21 06:55:01 +000018010static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
18011 TargetLowering::DAGCombinerInfo &DCI,
18012 const X86Subtarget *Subtarget) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018013 EVT VT = N->getValueType(0);
Craig Topperb4c94572011-10-21 06:55:01 +000018014 if (DCI.isBeforeLegalizeOps())
18015 return SDValue();
18016
Manman Ren45d53b82012-06-08 18:58:26 +000018017 if (Subtarget->hasCMov()) {
18018 SDValue RV = performIntegerAbsCombine(N, DAG);
18019 if (RV.getNode())
18020 return RV;
18021 }
Manman Ren92363622012-06-07 22:39:10 +000018022
18023 // Try forming BMI if it is available.
18024 if (!Subtarget->hasBMI())
18025 return SDValue();
18026
Craig Topperb4c94572011-10-21 06:55:01 +000018027 if (VT != MVT::i32 && VT != MVT::i64)
18028 return SDValue();
18029
Craig Topper3738ccd2011-12-27 06:27:23 +000018030 assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
18031
Craig Topperb4c94572011-10-21 06:55:01 +000018032 // Create BLSMSK instructions by finding X ^ (X-1)
18033 SDValue N0 = N->getOperand(0);
18034 SDValue N1 = N->getOperand(1);
Andrew Trickac6d9be2013-05-25 02:42:55 +000018035 SDLoc DL(N);
Craig Topperb4c94572011-10-21 06:55:01 +000018036
18037 if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
18038 isAllOnes(N0.getOperand(1)))
18039 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
18040
18041 if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
18042 isAllOnes(N1.getOperand(1)))
18043 return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
18044
18045 return SDValue();
18046}
18047
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018048/// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
18049static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018050 TargetLowering::DAGCombinerInfo &DCI,
18051 const X86Subtarget *Subtarget) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018052 LoadSDNode *Ld = cast<LoadSDNode>(N);
18053 EVT RegVT = Ld->getValueType(0);
18054 EVT MemVT = Ld->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018055 SDLoc dl(Ld);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018056 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Nadav Rotem48177ac2013-01-18 23:10:30 +000018057 unsigned RegSz = RegVT.getSizeInBits();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018058
Michael Liaod4584c92013-03-25 23:50:10 +000018059 // On Sandybridge unaligned 256bit loads are inefficient.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018060 ISD::LoadExtType Ext = Ld->getExtensionType();
Nadav Rotem48177ac2013-01-18 23:10:30 +000018061 unsigned Alignment = Ld->getAlignment();
Michael Liaod4584c92013-03-25 23:50:10 +000018062 bool IsAligned = Alignment == 0 || Alignment >= MemVT.getSizeInBits()/8;
Nadav Rotem48177ac2013-01-18 23:10:30 +000018063 if (RegVT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000018064 !DCI.isBeforeLegalizeOps() && !IsAligned && Ext == ISD::NON_EXTLOAD) {
Nadav Rotem48177ac2013-01-18 23:10:30 +000018065 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotemba958652013-01-19 08:38:41 +000018066 if (NumElems < 2)
18067 return SDValue();
18068
Nadav Rotem48177ac2013-01-18 23:10:30 +000018069 SDValue Ptr = Ld->getBasePtr();
18070 SDValue Increment = DAG.getConstant(16, TLI.getPointerTy());
18071
18072 EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
18073 NumElems/2);
18074 SDValue Load1 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
18075 Ld->getPointerInfo(), Ld->isVolatile(),
18076 Ld->isNonTemporal(), Ld->isInvariant(),
18077 Alignment);
18078 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18079 SDValue Load2 = DAG.getLoad(HalfVT, dl, Ld->getChain(), Ptr,
18080 Ld->getPointerInfo(), Ld->isVolatile(),
18081 Ld->isNonTemporal(), Ld->isInvariant(),
Michael Liaod4584c92013-03-25 23:50:10 +000018082 std::min(16U, Alignment));
Nadav Rotem48177ac2013-01-18 23:10:30 +000018083 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
18084 Load1.getValue(1),
18085 Load2.getValue(1));
18086
18087 SDValue NewVec = DAG.getUNDEF(RegVT);
18088 NewVec = Insert128BitVector(NewVec, Load1, 0, DAG, dl);
18089 NewVec = Insert128BitVector(NewVec, Load2, NumElems/2, DAG, dl);
18090 return DCI.CombineTo(N, NewVec, TF, true);
18091 }
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018092
Nadav Rotemca6f2962011-09-18 19:00:23 +000018093 // If this is a vector EXT Load then attempt to optimize it using a
Benjamin Kramer17347912012-12-22 11:34:28 +000018094 // shuffle. If SSSE3 is not available we may emit an illegal shuffle but the
18095 // expansion is still better than scalar code.
18096 // We generate X86ISD::VSEXT for SEXTLOADs if it's available, otherwise we'll
18097 // emit a shuffle and a arithmetic shift.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018098 // TODO: It is possible to support ZExt by zeroing the undef values
18099 // during the shuffle phase or after the shuffle.
Benjamin Kramer17347912012-12-22 11:34:28 +000018100 if (RegVT.isVector() && RegVT.isInteger() && Subtarget->hasSSE2() &&
18101 (Ext == ISD::EXTLOAD || Ext == ISD::SEXTLOAD)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018102 assert(MemVT != RegVT && "Cannot extend to the same type");
18103 assert(MemVT.isVector() && "Must load a vector from memory");
18104
18105 unsigned NumElems = RegVT.getVectorNumElements();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018106 unsigned MemSz = MemVT.getSizeInBits();
18107 assert(RegSz > MemSz && "Register size must be greater than the mem size");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018108
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018109 if (Ext == ISD::SEXTLOAD && RegSz == 256 && !Subtarget->hasInt256())
18110 return SDValue();
18111
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018112 // All sizes must be a power of two.
18113 if (!isPowerOf2_32(RegSz * MemSz * NumElems))
18114 return SDValue();
18115
18116 // Attempt to load the original value using scalar loads.
18117 // Find the largest scalar type that divides the total loaded size.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018118 MVT SclrLoadTy = MVT::i8;
18119 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18120 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18121 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018122 if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018123 SclrLoadTy = Tp;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018124 }
18125 }
18126
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018127 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18128 if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
18129 (64 <= MemSz))
18130 SclrLoadTy = MVT::f64;
18131
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018132 // Calculate the number of scalar loads that we need to perform
18133 // in order to load our vector from memory.
18134 unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018135 if (Ext == ISD::SEXTLOAD && NumLoads > 1)
18136 return SDValue();
18137
18138 unsigned loadRegZize = RegSz;
18139 if (Ext == ISD::SEXTLOAD && RegSz == 256)
18140 loadRegZize /= 2;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018141
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018142 // Represent our vector as a sequence of elements which are the
18143 // largest scalar that we can load.
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018144 EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018145 loadRegZize/SclrLoadTy.getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018146
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018147 // Represent the data using the same element type that is stored in
18148 // memory. In practice, we ''widen'' MemVT.
Eric Christophere187e252013-01-31 00:50:48 +000018149 EVT WideVecVT =
18150 EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018151 loadRegZize/MemVT.getScalarType().getSizeInBits());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018152
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018153 assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
18154 "Invalid vector type");
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018155
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018156 // We can't shuffle using an illegal type.
18157 if (!TLI.isTypeLegal(WideVecVT))
18158 return SDValue();
18159
18160 SmallVector<SDValue, 8> Chains;
18161 SDValue Ptr = Ld->getBasePtr();
18162 SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
18163 TLI.getPointerTy());
18164 SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
18165
18166 for (unsigned i = 0; i < NumLoads; ++i) {
18167 // Perform a single load.
18168 SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
18169 Ptr, Ld->getPointerInfo(),
18170 Ld->isVolatile(), Ld->isNonTemporal(),
18171 Ld->isInvariant(), Ld->getAlignment());
18172 Chains.push_back(ScalarLoad.getValue(1));
18173 // Create the first element type using SCALAR_TO_VECTOR in order to avoid
18174 // another round of DAGCombining.
18175 if (i == 0)
18176 Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
18177 else
18178 Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
18179 ScalarLoad, DAG.getIntPtrConstant(i));
18180
18181 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18182 }
18183
18184 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18185 Chains.size());
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018186
18187 // Bitcast the loaded value to a vector of the original element type, in
18188 // the size of the target vector type.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018189 SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018190 unsigned SizeRatio = RegSz/MemSz;
18191
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018192 if (Ext == ISD::SEXTLOAD) {
Benjamin Kramer17347912012-12-22 11:34:28 +000018193 // If we have SSE4.1 we can directly emit a VSEXT node.
18194 if (Subtarget->hasSSE41()) {
18195 SDValue Sext = DAG.getNode(X86ISD::VSEXT, dl, RegVT, SlicedVec);
18196 return DCI.CombineTo(N, Sext, TF, true);
18197 }
18198
18199 // Otherwise we'll shuffle the small elements in the high bits of the
18200 // larger type and perform an arithmetic shift. If the shift is not legal
18201 // it's better to scalarize.
18202 if (!TLI.isOperationLegalOrCustom(ISD::SRA, RegVT))
18203 return SDValue();
18204
18205 // Redistribute the loaded elements into the different locations.
18206 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
18207 for (unsigned i = 0; i != NumElems; ++i)
18208 ShuffleVec[i*SizeRatio + SizeRatio-1] = i;
18209
18210 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
18211 DAG.getUNDEF(WideVecVT),
18212 &ShuffleVec[0]);
18213
18214 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18215
18216 // Build the arithmetic shift.
18217 unsigned Amt = RegVT.getVectorElementType().getSizeInBits() -
18218 MemVT.getVectorElementType().getSizeInBits();
Benjamin Kramer9fa92512013-02-04 15:19:25 +000018219 Shuff = DAG.getNode(ISD::SRA, dl, RegVT, Shuff,
18220 DAG.getConstant(Amt, RegVT));
Benjamin Kramer17347912012-12-22 11:34:28 +000018221
18222 return DCI.CombineTo(N, Shuff, TF, true);
Elena Demikhovsky4b977312012-12-19 07:50:20 +000018223 }
Benjamin Kramer17347912012-12-22 11:34:28 +000018224
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018225 // Redistribute the loaded elements into the different locations.
18226 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000018227 for (unsigned i = 0; i != NumElems; ++i)
18228 ShuffleVec[i*SizeRatio] = i;
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018229
18230 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
Craig Topperdf966f62012-04-22 19:17:57 +000018231 DAG.getUNDEF(WideVecVT),
18232 &ShuffleVec[0]);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018233
18234 // Bitcast to the requested type.
18235 Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
18236 // Replace the original load with the new sequence
18237 // and return the new chain.
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018238 return DCI.CombineTo(N, Shuff, TF, true);
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018239 }
18240
18241 return SDValue();
18242}
18243
Chris Lattner149a4e52008-02-22 02:09:43 +000018244/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018245static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000018246 const X86Subtarget *Subtarget) {
Nadav Rotem614061b2011-08-10 19:30:14 +000018247 StoreSDNode *St = cast<StoreSDNode>(N);
18248 EVT VT = St->getValue().getValueType();
18249 EVT StVT = St->getMemoryVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018250 SDLoc dl(St);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018251 SDValue StoredVal = St->getOperand(1);
18252 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18253
Nick Lewycky8a8d4792011-12-02 22:16:29 +000018254 // If we are saving a concatenation of two XMM registers, perform two stores.
Nadav Rotem87d35e82012-05-19 20:30:08 +000018255 // On Sandy Bridge, 256-bit memory operations are executed by two
18256 // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
18257 // memory operation.
Michael Liaod4584c92013-03-25 23:50:10 +000018258 unsigned Alignment = St->getAlignment();
18259 bool IsAligned = Alignment == 0 || Alignment >= VT.getSizeInBits()/8;
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018260 if (VT.is256BitVector() && !Subtarget->hasInt256() &&
Nadav Rotemba958652013-01-19 08:38:41 +000018261 StVT == VT && !IsAligned) {
18262 unsigned NumElems = VT.getVectorNumElements();
18263 if (NumElems < 2)
18264 return SDValue();
18265
18266 SDValue Value0 = Extract128BitVector(StoredVal, 0, DAG, dl);
18267 SDValue Value1 = Extract128BitVector(StoredVal, NumElems/2, DAG, dl);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018268
18269 SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
18270 SDValue Ptr0 = St->getBasePtr();
18271 SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
18272
18273 SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
18274 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000018275 St->isNonTemporal(), Alignment);
Nadav Rotem5e742a32011-08-11 16:41:21 +000018276 SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
18277 St->getPointerInfo(), St->isVolatile(),
Nadav Rotemba958652013-01-19 08:38:41 +000018278 St->isNonTemporal(),
Michael Liaod4584c92013-03-25 23:50:10 +000018279 std::min(16U, Alignment));
Nadav Rotem5e742a32011-08-11 16:41:21 +000018280 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
18281 }
Nadav Rotem614061b2011-08-10 19:30:14 +000018282
18283 // Optimize trunc store (of multiple scalars) to shuffle and store.
18284 // First, pack all of the elements in one place. Next, store to memory
18285 // in fewer chunks.
18286 if (St->isTruncatingStore() && VT.isVector()) {
18287 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
18288 unsigned NumElems = VT.getVectorNumElements();
18289 assert(StVT != VT && "Cannot truncate to the same type");
18290 unsigned FromSz = VT.getVectorElementType().getSizeInBits();
18291 unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
18292
18293 // From, To sizes and ElemCount must be pow of two
18294 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000018295 // We are going to use the original vector elt for storing.
Nadav Rotem64ac73b2011-09-21 17:14:40 +000018296 // Accumulated smaller vector elements must be a multiple of the store size.
Nadav Rotem9c6cdf42011-09-21 08:45:10 +000018297 if (0 != (NumElems * FromSz) % ToSz) return SDValue();
Nadav Rotem91e43fd2011-09-18 10:39:32 +000018298
Nadav Rotem614061b2011-08-10 19:30:14 +000018299 unsigned SizeRatio = FromSz / ToSz;
18300
18301 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
18302
18303 // Create a type on which we perform the shuffle
18304 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
18305 StVT.getScalarType(), NumElems*SizeRatio);
18306
18307 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
18308
18309 SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
18310 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
Craig Topper31a207a2012-05-04 06:39:13 +000018311 for (unsigned i = 0; i != NumElems; ++i)
18312 ShuffleVec[i] = i * SizeRatio;
Nadav Rotem614061b2011-08-10 19:30:14 +000018313
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000018314 // Can't shuffle using an illegal type.
18315 if (!TLI.isTypeLegal(WideVecVT))
18316 return SDValue();
Nadav Rotem614061b2011-08-10 19:30:14 +000018317
18318 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
Craig Topperdf966f62012-04-22 19:17:57 +000018319 DAG.getUNDEF(WideVecVT),
18320 &ShuffleVec[0]);
Nadav Rotem614061b2011-08-10 19:30:14 +000018321 // At this point all of the data is stored at the bottom of the
18322 // register. We now need to save it to mem.
18323
18324 // Find the largest store unit
18325 MVT StoreType = MVT::i8;
18326 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
18327 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
18328 MVT Tp = (MVT::SimpleValueType)tp;
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018329 if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
Nadav Rotem614061b2011-08-10 19:30:14 +000018330 StoreType = Tp;
18331 }
18332
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018333 // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
18334 if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
18335 (64 <= NumElems * ToSz))
18336 StoreType = MVT::f64;
18337
Nadav Rotem614061b2011-08-10 19:30:14 +000018338 // Bitcast the original vector into a vector of store-size units
18339 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
Nadav Rotem5cd95e12012-07-11 13:27:05 +000018340 StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
Nadav Rotem614061b2011-08-10 19:30:14 +000018341 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
18342 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
18343 SmallVector<SDValue, 8> Chains;
18344 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
18345 TLI.getPointerTy());
18346 SDValue Ptr = St->getBasePtr();
18347
18348 // Perform one or more big stores into memory.
Craig Topper31a207a2012-05-04 06:39:13 +000018349 for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
Nadav Rotem614061b2011-08-10 19:30:14 +000018350 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
18351 StoreType, ShuffWide,
18352 DAG.getIntPtrConstant(i));
18353 SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
18354 St->getPointerInfo(), St->isVolatile(),
18355 St->isNonTemporal(), St->getAlignment());
18356 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
18357 Chains.push_back(Ch);
18358 }
18359
18360 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
18361 Chains.size());
18362 }
18363
Chris Lattner149a4e52008-02-22 02:09:43 +000018364 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
18365 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000018366 // A preferable solution to the general problem is to figure out the right
18367 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000018368
18369 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng536e6672009-03-12 05:59:15 +000018370 if (VT.getSizeInBits() != 64)
18371 return SDValue();
18372
Devang Patel578efa92009-06-05 21:57:13 +000018373 const Function *F = DAG.getMachineFunction().getFunction();
Bill Wendling831737d2012-12-30 10:32:01 +000018374 bool NoImplicitFloatOps = F->getAttributes().
18375 hasAttribute(AttributeSet::FunctionIndex, Attribute::NoImplicitFloat);
Nick Lewycky8a8d4792011-12-02 22:16:29 +000018376 bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
Craig Topper1accb7e2012-01-10 06:54:16 +000018377 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000018378 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000018379 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000018380 isa<LoadSDNode>(St->getValue()) &&
18381 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
18382 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000018383 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018384 LoadSDNode *Ld = 0;
18385 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000018386 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000018387 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018388 // Must be a store of a load. We currently handle two cases: the load
18389 // is a direct child, and it's under an intervening TokenFactor. It is
18390 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000018391 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000018392 Ld = cast<LoadSDNode>(St->getChain());
18393 else if (St->getValue().hasOneUse() &&
18394 ChainVal->getOpcode() == ISD::TokenFactor) {
Chad Rosierc2348d52012-02-01 18:45:51 +000018395 for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000018396 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000018397 TokenFactorIndex = i;
18398 Ld = cast<LoadSDNode>(St->getValue());
18399 } else
18400 Ops.push_back(ChainVal->getOperand(i));
18401 }
18402 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000018403
Evan Cheng536e6672009-03-12 05:59:15 +000018404 if (!Ld || !ISD::isNormalLoad(Ld))
18405 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018406
Evan Cheng536e6672009-03-12 05:59:15 +000018407 // If this is not the MMX case, i.e. we are just turning i64 load/store
18408 // into f64 load/store, avoid the transformation if there are multiple
18409 // uses of the loaded value.
18410 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
18411 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000018412
Andrew Trickac6d9be2013-05-25 02:42:55 +000018413 SDLoc LdDL(Ld);
18414 SDLoc StDL(N);
Evan Cheng536e6672009-03-12 05:59:15 +000018415 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
18416 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
18417 // pair instead.
18418 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000018419 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000018420 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
18421 Ld->getPointerInfo(), Ld->isVolatile(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018422 Ld->isNonTemporal(), Ld->isInvariant(),
18423 Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000018424 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000018425 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000018426 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000018427 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000018428 Ops.size());
18429 }
Evan Cheng536e6672009-03-12 05:59:15 +000018430 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000018431 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018432 St->isVolatile(), St->isNonTemporal(),
18433 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000018434 }
Evan Cheng536e6672009-03-12 05:59:15 +000018435
18436 // Otherwise, lower to two pairs of 32-bit loads / stores.
18437 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000018438 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
18439 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000018440
Owen Anderson825b72b2009-08-11 20:47:22 +000018441 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000018442 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018443 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018444 Ld->isInvariant(), Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000018445 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000018446 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000018447 Ld->isVolatile(), Ld->isNonTemporal(),
Pete Cooperd752e0f2011-11-08 18:42:53 +000018448 Ld->isInvariant(),
Evan Cheng536e6672009-03-12 05:59:15 +000018449 MinAlign(Ld->getAlignment(), 4));
18450
18451 SDValue NewChain = LoLd.getValue(1);
18452 if (TokenFactorIndex != -1) {
18453 Ops.push_back(LoLd);
18454 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000018455 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000018456 Ops.size());
18457 }
18458
18459 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000018460 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
18461 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000018462
18463 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000018464 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000018465 St->isVolatile(), St->isNonTemporal(),
18466 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000018467 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000018468 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000018469 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000018470 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000018471 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000018472 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000018473 }
Dan Gohman475871a2008-07-27 21:46:04 +000018474 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000018475}
18476
Duncan Sands17470be2011-09-22 20:15:48 +000018477/// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
18478/// and return the operands for the horizontal operation in LHS and RHS. A
18479/// horizontal operation performs the binary operation on successive elements
18480/// of its first operand, then on successive elements of its second operand,
18481/// returning the resulting values in a vector. For example, if
18482/// A = < float a0, float a1, float a2, float a3 >
18483/// and
18484/// B = < float b0, float b1, float b2, float b3 >
18485/// then the result of doing a horizontal operation on A and B is
18486/// A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
18487/// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
18488/// A horizontal-op B, for some already available A and B, and if so then LHS is
18489/// set to A, RHS to B, and the routine returns 'true'.
18490/// Note that the binary operation should have the property that if one of the
18491/// operands is UNDEF then the result is UNDEF.
Craig Topperbeabc6c2011-12-05 06:56:46 +000018492static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
Duncan Sands17470be2011-09-22 20:15:48 +000018493 // Look for the following pattern: if
18494 // A = < float a0, float a1, float a2, float a3 >
18495 // B = < float b0, float b1, float b2, float b3 >
18496 // and
18497 // LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
18498 // RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
18499 // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
18500 // which is A horizontal-op B.
18501
18502 // At least one of the operands should be a vector shuffle.
18503 if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
18504 RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
18505 return false;
18506
Craig Topper5a0910b2013-08-15 02:33:50 +000018507 MVT VT = LHS.getSimpleValueType();
Craig Topperf8363302011-12-02 08:18:41 +000018508
18509 assert((VT.is128BitVector() || VT.is256BitVector()) &&
18510 "Unsupported vector type for horizontal add/sub");
18511
18512 // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
18513 // operate independently on 128-bit lanes.
Craig Topperb72039c2011-11-30 09:10:50 +000018514 unsigned NumElts = VT.getVectorNumElements();
18515 unsigned NumLanes = VT.getSizeInBits()/128;
18516 unsigned NumLaneElts = NumElts / NumLanes;
Craig Topperf8363302011-12-02 08:18:41 +000018517 assert((NumLaneElts % 2 == 0) &&
18518 "Vector type should have an even number of elements in each lane");
18519 unsigned HalfLaneElts = NumLaneElts/2;
Duncan Sands17470be2011-09-22 20:15:48 +000018520
18521 // View LHS in the form
18522 // LHS = VECTOR_SHUFFLE A, B, LMask
18523 // If LHS is not a shuffle then pretend it is the shuffle
18524 // LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
18525 // NOTE: in what follows a default initialized SDValue represents an UNDEF of
18526 // type VT.
18527 SDValue A, B;
Craig Topperb72039c2011-11-30 09:10:50 +000018528 SmallVector<int, 16> LMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018529 if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18530 if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
18531 A = LHS.getOperand(0);
18532 if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
18533 B = LHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000018534 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
18535 std::copy(Mask.begin(), Mask.end(), LMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000018536 } else {
18537 if (LHS.getOpcode() != ISD::UNDEF)
18538 A = LHS;
Craig Topperb72039c2011-11-30 09:10:50 +000018539 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000018540 LMask[i] = i;
18541 }
18542
18543 // Likewise, view RHS in the form
18544 // RHS = VECTOR_SHUFFLE C, D, RMask
18545 SDValue C, D;
Craig Topperb72039c2011-11-30 09:10:50 +000018546 SmallVector<int, 16> RMask(NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018547 if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
18548 if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
18549 C = RHS.getOperand(0);
18550 if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
18551 D = RHS.getOperand(1);
Benjamin Kramered4c8c62012-01-15 13:16:05 +000018552 ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
18553 std::copy(Mask.begin(), Mask.end(), RMask.begin());
Duncan Sands17470be2011-09-22 20:15:48 +000018554 } else {
18555 if (RHS.getOpcode() != ISD::UNDEF)
18556 C = RHS;
Craig Topperb72039c2011-11-30 09:10:50 +000018557 for (unsigned i = 0; i != NumElts; ++i)
Duncan Sands17470be2011-09-22 20:15:48 +000018558 RMask[i] = i;
18559 }
18560
18561 // Check that the shuffles are both shuffling the same vectors.
18562 if (!(A == C && B == D) && !(A == D && B == C))
18563 return false;
18564
18565 // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
18566 if (!A.getNode() && !B.getNode())
18567 return false;
18568
18569 // If A and B occur in reverse order in RHS, then "swap" them (which means
18570 // rewriting the mask).
18571 if (A != C)
Craig Topperbeabc6c2011-12-05 06:56:46 +000018572 CommuteVectorShuffleMask(RMask, NumElts);
Duncan Sands17470be2011-09-22 20:15:48 +000018573
18574 // At this point LHS and RHS are equivalent to
18575 // LHS = VECTOR_SHUFFLE A, B, LMask
18576 // RHS = VECTOR_SHUFFLE A, B, RMask
18577 // Check that the masks correspond to performing a horizontal operation.
Craig Topper57bc5a02013-08-06 06:54:25 +000018578 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
18579 for (unsigned i = 0; i != NumLaneElts; ++i) {
18580 int LIdx = LMask[i+l], RIdx = RMask[i+l];
Duncan Sands17470be2011-09-22 20:15:48 +000018581
Craig Topper57bc5a02013-08-06 06:54:25 +000018582 // Ignore any UNDEF components.
18583 if (LIdx < 0 || RIdx < 0 ||
18584 (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
18585 (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
18586 continue;
Duncan Sands17470be2011-09-22 20:15:48 +000018587
Craig Topper57bc5a02013-08-06 06:54:25 +000018588 // Check that successive elements are being operated on. If not, this is
18589 // not a horizontal operation.
18590 unsigned Src = (i/HalfLaneElts); // each lane is split between srcs
18591 int Index = 2*(i%HalfLaneElts) + NumElts*Src + l;
18592 if (!(LIdx == Index && RIdx == Index + 1) &&
18593 !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
18594 return false;
18595 }
Duncan Sands17470be2011-09-22 20:15:48 +000018596 }
18597
18598 LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
18599 RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
18600 return true;
18601}
18602
18603/// PerformFADDCombine - Do target-specific dag combines on floating point adds.
18604static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
18605 const X86Subtarget *Subtarget) {
18606 EVT VT = N->getValueType(0);
18607 SDValue LHS = N->getOperand(0);
18608 SDValue RHS = N->getOperand(1);
18609
18610 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018611 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018612 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000018613 isHorizontalBinOp(LHS, RHS, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018614 return DAG.getNode(X86ISD::FHADD, SDLoc(N), VT, LHS, RHS);
Duncan Sands17470be2011-09-22 20:15:48 +000018615 return SDValue();
18616}
18617
18618/// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
18619static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
18620 const X86Subtarget *Subtarget) {
18621 EVT VT = N->getValueType(0);
18622 SDValue LHS = N->getOperand(0);
18623 SDValue RHS = N->getOperand(1);
18624
18625 // Try to synthesize horizontal subs from subs of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000018626 if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018627 (Subtarget->hasFp256() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
Duncan Sands17470be2011-09-22 20:15:48 +000018628 isHorizontalBinOp(LHS, RHS, false))
Andrew Trickac6d9be2013-05-25 02:42:55 +000018629 return DAG.getNode(X86ISD::FHSUB, SDLoc(N), VT, LHS, RHS);
Duncan Sands17470be2011-09-22 20:15:48 +000018630 return SDValue();
18631}
18632
Chris Lattner6cf73262008-01-25 06:14:17 +000018633/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
18634/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018635static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000018636 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
18637 // F[X]OR(0.0, x) -> x
18638 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000018639 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18640 if (C->getValueAPF().isPosZero())
18641 return N->getOperand(1);
18642 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18643 if (C->getValueAPF().isPosZero())
18644 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000018645 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000018646}
18647
Nadav Rotemd60cb112012-08-19 13:06:16 +000018648/// PerformFMinFMaxCombine - Do target-specific dag combines on X86ISD::FMIN and
18649/// X86ISD::FMAX nodes.
18650static SDValue PerformFMinFMaxCombine(SDNode *N, SelectionDAG &DAG) {
18651 assert(N->getOpcode() == X86ISD::FMIN || N->getOpcode() == X86ISD::FMAX);
18652
18653 // Only perform optimizations if UnsafeMath is used.
18654 if (!DAG.getTarget().Options.UnsafeFPMath)
18655 return SDValue();
18656
18657 // If we run in unsafe-math mode, then convert the FMAX and FMIN nodes
Craig Topper8365e9b2012-09-01 06:33:50 +000018658 // into FMINC and FMAXC, which are Commutative operations.
Nadav Rotemd60cb112012-08-19 13:06:16 +000018659 unsigned NewOp = 0;
18660 switch (N->getOpcode()) {
18661 default: llvm_unreachable("unknown opcode");
18662 case X86ISD::FMIN: NewOp = X86ISD::FMINC; break;
18663 case X86ISD::FMAX: NewOp = X86ISD::FMAXC; break;
18664 }
18665
Andrew Trickac6d9be2013-05-25 02:42:55 +000018666 return DAG.getNode(NewOp, SDLoc(N), N->getValueType(0),
Nadav Rotemd60cb112012-08-19 13:06:16 +000018667 N->getOperand(0), N->getOperand(1));
18668}
18669
Chris Lattneraf723b92008-01-25 05:46:26 +000018670/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000018671static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000018672 // FAND(0.0, x) -> 0.0
18673 // FAND(x, 0.0) -> 0.0
18674 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18675 if (C->getValueAPF().isPosZero())
18676 return N->getOperand(0);
18677 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18678 if (C->getValueAPF().isPosZero())
18679 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000018680 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000018681}
18682
Benjamin Kramer75311b72013-08-04 12:05:16 +000018683/// PerformFANDNCombine - Do target-specific dag combines on X86ISD::FANDN nodes
18684static SDValue PerformFANDNCombine(SDNode *N, SelectionDAG &DAG) {
18685 // FANDN(x, 0.0) -> 0.0
18686 // FANDN(0.0, x) -> x
18687 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
18688 if (C->getValueAPF().isPosZero())
18689 return N->getOperand(1);
18690 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
18691 if (C->getValueAPF().isPosZero())
18692 return N->getOperand(1);
18693 return SDValue();
18694}
18695
Dan Gohmane5af2d32009-01-29 01:59:02 +000018696static SDValue PerformBTCombine(SDNode *N,
18697 SelectionDAG &DAG,
18698 TargetLowering::DAGCombinerInfo &DCI) {
18699 // BT ignores high bits in the bit index operand.
18700 SDValue Op1 = N->getOperand(1);
18701 if (Op1.hasOneUse()) {
18702 unsigned BitWidth = Op1.getValueSizeInBits();
18703 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
18704 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000018705 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
18706 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000018707 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000018708 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
18709 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
18710 DCI.CommitTargetLoweringOpt(TLO);
18711 }
18712 return SDValue();
18713}
Chris Lattner83e6c992006-10-04 06:57:07 +000018714
Eli Friedman7a5e5552009-06-07 06:52:44 +000018715static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
18716 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000018717 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000018718 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000018719 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000018720 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000018721 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000018722 OpVT.getVectorElementType().getSizeInBits()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018723 return DAG.getNode(ISD::BITCAST, SDLoc(N), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000018724 }
18725 return SDValue();
18726}
18727
Matt Arsenault225ed702013-05-18 00:21:46 +000018728static SDValue PerformSIGN_EXTEND_INREGCombine(SDNode *N, SelectionDAG &DAG,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018729 const X86Subtarget *Subtarget) {
18730 EVT VT = N->getValueType(0);
18731 if (!VT.isVector())
18732 return SDValue();
18733
18734 SDValue N0 = N->getOperand(0);
18735 SDValue N1 = N->getOperand(1);
18736 EVT ExtraVT = cast<VTSDNode>(N1)->getVT();
Andrew Trickac6d9be2013-05-25 02:42:55 +000018737 SDLoc dl(N);
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018738
18739 // The SIGN_EXTEND_INREG to v4i64 is expensive operation on the
18740 // both SSE and AVX2 since there is no sign-extended shift right
18741 // operation on a vector with 64-bit elements.
18742 //(sext_in_reg (v4i64 anyext (v4i32 x )), ExtraVT) ->
18743 // (v4i64 sext (v4i32 sext_in_reg (v4i32 x , ExtraVT)))
18744 if (VT == MVT::v4i64 && (N0.getOpcode() == ISD::ANY_EXTEND ||
18745 N0.getOpcode() == ISD::SIGN_EXTEND)) {
18746 SDValue N00 = N0.getOperand(0);
18747
Matt Arsenault225ed702013-05-18 00:21:46 +000018748 // EXTLOAD has a better solution on AVX2,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018749 // it may be replaced with X86ISD::VSEXT node.
18750 if (N00.getOpcode() == ISD::LOAD && Subtarget->hasInt256())
18751 if (!ISD::isNormalLoad(N00.getNode()))
18752 return SDValue();
18753
18754 if (N00.getValueType() == MVT::v4i32 && ExtraVT.getSizeInBits() < 128) {
Matt Arsenault225ed702013-05-18 00:21:46 +000018755 SDValue Tmp = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, MVT::v4i32,
Elena Demikhovsky52981c42013-02-20 12:42:54 +000018756 N00, N1);
18757 return DAG.getNode(ISD::SIGN_EXTEND, dl, MVT::v4i64, Tmp);
18758 }
18759 }
18760 return SDValue();
18761}
18762
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018763static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
18764 TargetLowering::DAGCombinerInfo &DCI,
18765 const X86Subtarget *Subtarget) {
18766 if (!DCI.isBeforeLegalizeOps())
18767 return SDValue();
18768
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000018769 if (!Subtarget->hasFp256())
Elena Demikhovskyf6020402012-02-08 08:37:26 +000018770 return SDValue();
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018771
Nadav Rotem0c8607b2013-01-20 08:35:56 +000018772 EVT VT = N->getValueType(0);
18773 if (VT.isVector() && VT.getSizeInBits() == 256) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018774 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18775 if (R.getNode())
18776 return R;
18777 }
18778
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000018779 return SDValue();
18780}
18781
Michael Liaof6c24ee2012-08-10 14:39:24 +000018782static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018783 const X86Subtarget* Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018784 SDLoc dl(N);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018785 EVT VT = N->getValueType(0);
18786
Craig Topperb1bdd7d2012-08-30 06:56:15 +000018787 // Let legalize expand this if it isn't a legal type yet.
18788 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
18789 return SDValue();
18790
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018791 EVT ScalarVT = VT.getScalarType();
Craig Topperbf404372012-08-31 15:40:30 +000018792 if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) ||
18793 (!Subtarget->hasFMA() && !Subtarget->hasFMA4()))
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018794 return SDValue();
18795
18796 SDValue A = N->getOperand(0);
18797 SDValue B = N->getOperand(1);
18798 SDValue C = N->getOperand(2);
18799
18800 bool NegA = (A.getOpcode() == ISD::FNEG);
18801 bool NegB = (B.getOpcode() == ISD::FNEG);
18802 bool NegC = (C.getOpcode() == ISD::FNEG);
18803
Michael Liaof6c24ee2012-08-10 14:39:24 +000018804 // Negative multiplication when NegA xor NegB
18805 bool NegMul = (NegA != NegB);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018806 if (NegA)
18807 A = A.getOperand(0);
18808 if (NegB)
18809 B = B.getOperand(0);
18810 if (NegC)
18811 C = C.getOperand(0);
18812
18813 unsigned Opcode;
18814 if (!NegMul)
Craig Topperbf404372012-08-31 15:40:30 +000018815 Opcode = (!NegC) ? X86ISD::FMADD : X86ISD::FMSUB;
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018816 else
Craig Topperbf404372012-08-31 15:40:30 +000018817 Opcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
18818
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000018819 return DAG.getNode(Opcode, dl, VT, A, B, C);
18820}
18821
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018822static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
Craig Topperc16f8512012-04-25 06:39:39 +000018823 TargetLowering::DAGCombinerInfo &DCI,
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018824 const X86Subtarget *Subtarget) {
Evan Cheng2e489c42009-12-16 00:53:11 +000018825 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
18826 // (and (i32 x86isd::setcc_carry), 1)
18827 // This eliminates the zext. This transformation is necessary because
18828 // ISD::SETCC is always legalized to i8.
Andrew Trickac6d9be2013-05-25 02:42:55 +000018829 SDLoc dl(N);
Evan Cheng2e489c42009-12-16 00:53:11 +000018830 SDValue N0 = N->getOperand(0);
18831 EVT VT = N->getValueType(0);
Elena Demikhovsky28d7e712012-01-24 13:54:13 +000018832
Evan Cheng2e489c42009-12-16 00:53:11 +000018833 if (N0.getOpcode() == ISD::AND &&
18834 N0.hasOneUse() &&
18835 N0.getOperand(0).hasOneUse()) {
18836 SDValue N00 = N0.getOperand(0);
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018837 if (N00.getOpcode() == X86ISD::SETCC_CARRY) {
18838 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
18839 if (!C || C->getZExtValue() != 1)
18840 return SDValue();
18841 return DAG.getNode(ISD::AND, dl, VT,
18842 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
18843 N00.getOperand(0), N00.getOperand(1)),
18844 DAG.getConstant(1, VT));
18845 }
18846 }
18847
Craig Topper5a529e42013-01-18 06:44:29 +000018848 if (VT.is256BitVector()) {
Nadav Rotemd6fb53a2012-12-27 08:15:45 +000018849 SDValue R = WidenMaskArithmetic(N, DAG, DCI, Subtarget);
18850 if (R.getNode())
18851 return R;
Evan Cheng2e489c42009-12-16 00:53:11 +000018852 }
Craig Topperd0cf5652012-04-21 18:13:35 +000018853
Evan Cheng2e489c42009-12-16 00:53:11 +000018854 return SDValue();
18855}
18856
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018857// Optimize x == -y --> x+y == 0
18858// x != -y --> x+y != 0
18859static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
18860 ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
18861 SDValue LHS = N->getOperand(0);
Chad Rosiera20e1e72012-08-01 18:39:17 +000018862 SDValue RHS = N->getOperand(1);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018863
18864 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
18865 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
18866 if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018867 SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018868 LHS.getValueType(), RHS, LHS.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018869 return DAG.getSetCC(SDLoc(N), N->getValueType(0),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018870 addV, DAG.getConstant(0, addV.getValueType()), CC);
18871 }
18872 if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
18873 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
18874 if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018875 SDValue addV = DAG.getNode(ISD::ADD, SDLoc(N),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018876 RHS.getValueType(), LHS, RHS.getOperand(1));
Andrew Trickac6d9be2013-05-25 02:42:55 +000018877 return DAG.getSetCC(SDLoc(N), N->getValueType(0),
Chad Rosiera73b6fc2012-04-27 22:33:25 +000018878 addV, DAG.getConstant(0, addV.getValueType()), CC);
18879 }
18880 return SDValue();
18881}
18882
Eric Christophere187e252013-01-31 00:50:48 +000018883// Helper function of PerformSETCCCombine. It is to materialize "setb reg"
18884// as "sbb reg,reg", since it can be extended without zext and produces
Shuxin Yanga5526a92012-10-31 23:11:48 +000018885// an all-ones bit which is more useful than 0/1 in some cases.
Andrew Trickac6d9be2013-05-25 02:42:55 +000018886static SDValue MaterializeSETB(SDLoc DL, SDValue EFLAGS, SelectionDAG &DAG) {
Shuxin Yanga5526a92012-10-31 23:11:48 +000018887 return DAG.getNode(ISD::AND, DL, MVT::i8,
18888 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
18889 DAG.getConstant(X86::COND_B, MVT::i8), EFLAGS),
18890 DAG.getConstant(1, MVT::i8));
18891}
18892
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018893// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018894static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG,
18895 TargetLowering::DAGCombinerInfo &DCI,
18896 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018897 SDLoc DL(N);
Michael Liao2a33cec2012-08-10 19:58:13 +000018898 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
18899 SDValue EFLAGS = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018900
Shuxin Yanga5526a92012-10-31 23:11:48 +000018901 if (CC == X86::COND_A) {
Eric Christophere187e252013-01-31 00:50:48 +000018902 // Try to convert COND_A into COND_B in an attempt to facilitate
Shuxin Yanga5526a92012-10-31 23:11:48 +000018903 // materializing "setb reg".
18904 //
18905 // Do not flip "e > c", where "c" is a constant, because Cmp instruction
18906 // cannot take an immediate as its first operand.
18907 //
Eric Christophere187e252013-01-31 00:50:48 +000018908 if (EFLAGS.getOpcode() == X86ISD::SUB && EFLAGS.hasOneUse() &&
Shuxin Yanga5526a92012-10-31 23:11:48 +000018909 EFLAGS.getValueType().isInteger() &&
18910 !isa<ConstantSDNode>(EFLAGS.getOperand(1))) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018911 SDValue NewSub = DAG.getNode(X86ISD::SUB, SDLoc(EFLAGS),
Shuxin Yanga5526a92012-10-31 23:11:48 +000018912 EFLAGS.getNode()->getVTList(),
18913 EFLAGS.getOperand(1), EFLAGS.getOperand(0));
18914 SDValue NewEFLAGS = SDValue(NewSub.getNode(), EFLAGS.getResNo());
18915 return MaterializeSETB(DL, NewEFLAGS, DAG);
18916 }
18917 }
18918
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018919 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
18920 // a zext and produces an all-ones bit which is more useful than 0/1 in some
18921 // cases.
Michael Liao2a33cec2012-08-10 19:58:13 +000018922 if (CC == X86::COND_B)
Shuxin Yanga5526a92012-10-31 23:11:48 +000018923 return MaterializeSETB(DL, EFLAGS, DAG);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018924
Michael Liao2a33cec2012-08-10 19:58:13 +000018925 SDValue Flags;
18926
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018927 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18928 if (Flags.getNode()) {
18929 SDValue Cond = DAG.getConstant(CC, MVT::i8);
18930 return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
18931 }
18932
Michael Liao2a33cec2012-08-10 19:58:13 +000018933 return SDValue();
18934}
18935
18936// Optimize branch condition evaluation.
18937//
18938static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
18939 TargetLowering::DAGCombinerInfo &DCI,
18940 const X86Subtarget *Subtarget) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018941 SDLoc DL(N);
Michael Liao2a33cec2012-08-10 19:58:13 +000018942 SDValue Chain = N->getOperand(0);
18943 SDValue Dest = N->getOperand(1);
18944 SDValue EFLAGS = N->getOperand(3);
18945 X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
18946
18947 SDValue Flags;
18948
Michael Liaodbf8b5b2012-08-28 03:34:40 +000018949 Flags = checkBoolTestSetCCCombine(EFLAGS, CC);
18950 if (Flags.getNode()) {
18951 SDValue Cond = DAG.getConstant(CC, MVT::i8);
18952 return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
18953 Flags);
18954 }
18955
Chris Lattnerc19d1c32010-12-19 22:08:31 +000018956 return SDValue();
18957}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000018958
Benjamin Kramer1396c402011-06-18 11:09:41 +000018959static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
18960 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018961 SDValue Op0 = N->getOperand(0);
Nadav Rotema3540772012-04-23 21:53:37 +000018962 EVT InVT = Op0->getValueType(0);
Nadav Rotema3540772012-04-23 21:53:37 +000018963
18964 // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
Craig Topper7fd5e162012-04-24 06:02:29 +000018965 if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000018966 SDLoc dl(N);
Craig Topper7fd5e162012-04-24 06:02:29 +000018967 MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
Nadav Rotema3540772012-04-23 21:53:37 +000018968 SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
18969 return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
18970 }
18971
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018972 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
18973 // a 32-bit target where SSE doesn't support i64->FP operations.
18974 if (Op0.getOpcode() == ISD::LOAD) {
18975 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
18976 EVT VT = Ld->getValueType(0);
18977 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
18978 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
18979 !XTLI->getSubtarget()->is64Bit() &&
Benjamin Kramer51a82802013-10-07 19:11:35 +000018980 VT == MVT::i64) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000018981 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
18982 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000018983 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
18984 return FILDChain;
18985 }
18986 }
18987 return SDValue();
18988}
18989
Chris Lattner23a01992010-12-20 01:37:09 +000018990// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
18991static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
18992 X86TargetLowering::DAGCombinerInfo &DCI) {
18993 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
18994 // the result is either zero or one (depending on the input carry bit).
18995 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
18996 if (X86::isZeroNode(N->getOperand(0)) &&
18997 X86::isZeroNode(N->getOperand(1)) &&
18998 // We don't have a good way to replace an EFLAGS use, so only do this when
18999 // dead right now.
19000 SDValue(N, 1).use_empty()) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000019001 SDLoc DL(N);
Chris Lattner23a01992010-12-20 01:37:09 +000019002 EVT VT = N->getValueType(0);
19003 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
19004 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
19005 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
19006 DAG.getConstant(X86::COND_B,MVT::i8),
19007 N->getOperand(2)),
19008 DAG.getConstant(1, VT));
19009 return DCI.CombineTo(N, Res1, CarryOut);
19010 }
19011
19012 return SDValue();
19013}
19014
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000019015// fold (add Y, (sete X, 0)) -> adc 0, Y
19016// (add Y, (setne X, 0)) -> sbb -1, Y
19017// (sub (sete X, 0), Y) -> sbb 0, Y
19018// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000019019static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Andrew Trickac6d9be2013-05-25 02:42:55 +000019020 SDLoc DL(N);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000019021
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000019022 // Look through ZExts.
19023 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
19024 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
19025 return SDValue();
19026
19027 SDValue SetCC = Ext.getOperand(0);
19028 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
19029 return SDValue();
19030
19031 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
19032 if (CC != X86::COND_E && CC != X86::COND_NE)
19033 return SDValue();
19034
19035 SDValue Cmp = SetCC.getOperand(1);
19036 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000019037 !X86::isZeroNode(Cmp.getOperand(1)) ||
19038 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000019039 return SDValue();
19040
19041 SDValue CmpOp0 = Cmp.getOperand(0);
19042 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
19043 DAG.getConstant(1, CmpOp0.getValueType()));
19044
19045 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
19046 if (CC == X86::COND_NE)
19047 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
19048 DL, OtherVal.getValueType(), OtherVal,
19049 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
19050 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
19051 DL, OtherVal.getValueType(), OtherVal,
19052 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
19053}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000019054
Craig Topper54f952a2011-11-19 09:02:40 +000019055/// PerformADDCombine - Do target-specific dag combines on integer adds.
19056static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
19057 const X86Subtarget *Subtarget) {
19058 EVT VT = N->getValueType(0);
19059 SDValue Op0 = N->getOperand(0);
19060 SDValue Op1 = N->getOperand(1);
19061
19062 // Try to synthesize horizontal adds from adds of shuffles.
Craig Topperd0a31172012-01-10 06:37:29 +000019063 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000019064 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topper54f952a2011-11-19 09:02:40 +000019065 isHorizontalBinOp(Op0, Op1, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000019066 return DAG.getNode(X86ISD::HADD, SDLoc(N), VT, Op0, Op1);
Craig Topper54f952a2011-11-19 09:02:40 +000019067
19068 return OptimizeConditionalInDecrement(N, DAG);
19069}
19070
19071static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
19072 const X86Subtarget *Subtarget) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000019073 SDValue Op0 = N->getOperand(0);
19074 SDValue Op1 = N->getOperand(1);
19075
19076 // X86 can't encode an immediate LHS of a sub. See if we can push the
19077 // negation into a preceding instruction.
19078 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000019079 // If the RHS of the sub is a XOR with one use and a constant, invert the
19080 // immediate. Then add one to the LHS of the sub so we can turn
19081 // X-Y -> X+~Y+1, saving one register.
19082 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
19083 isa<ConstantSDNode>(Op1.getOperand(1))) {
Nick Lewycky726ebd62011-08-23 19:01:24 +000019084 APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000019085 EVT VT = Op0.getValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +000019086 SDValue NewXor = DAG.getNode(ISD::XOR, SDLoc(Op1), VT,
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000019087 Op1.getOperand(0),
19088 DAG.getConstant(~XorC, VT));
Andrew Trickac6d9be2013-05-25 02:42:55 +000019089 return DAG.getNode(ISD::ADD, SDLoc(N), VT, NewXor,
Nick Lewycky726ebd62011-08-23 19:01:24 +000019090 DAG.getConstant(C->getAPIntValue()+1, VT));
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000019091 }
19092 }
19093
Craig Topper54f952a2011-11-19 09:02:40 +000019094 // Try to synthesize horizontal adds from adds of shuffles.
19095 EVT VT = N->getValueType(0);
Craig Topperd0a31172012-01-10 06:37:29 +000019096 if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000019097 (Subtarget->hasInt256() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
Craig Topperb72039c2011-11-30 09:10:50 +000019098 isHorizontalBinOp(Op0, Op1, true))
Andrew Trickac6d9be2013-05-25 02:42:55 +000019099 return DAG.getNode(X86ISD::HSUB, SDLoc(N), VT, Op0, Op1);
Craig Topper54f952a2011-11-19 09:02:40 +000019100
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000019101 return OptimizeConditionalInDecrement(N, DAG);
19102}
19103
Michael Liaod9d09602012-10-23 17:34:00 +000019104/// performVZEXTCombine - Performs build vector combines
19105static SDValue performVZEXTCombine(SDNode *N, SelectionDAG &DAG,
19106 TargetLowering::DAGCombinerInfo &DCI,
19107 const X86Subtarget *Subtarget) {
19108 // (vzext (bitcast (vzext (x)) -> (vzext x)
19109 SDValue In = N->getOperand(0);
19110 while (In.getOpcode() == ISD::BITCAST)
19111 In = In.getOperand(0);
19112
19113 if (In.getOpcode() != X86ISD::VZEXT)
19114 return SDValue();
19115
Andrew Trickac6d9be2013-05-25 02:42:55 +000019116 return DAG.getNode(X86ISD::VZEXT, SDLoc(N), N->getValueType(0),
Nadav Rotemb39a5522013-02-14 18:20:48 +000019117 In.getOperand(0));
Michael Liaod9d09602012-10-23 17:34:00 +000019118}
19119
Dan Gohman475871a2008-07-27 21:46:04 +000019120SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000019121 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000019122 SelectionDAG &DAG = DCI.DAG;
19123 switch (N->getOpcode()) {
19124 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000019125 case ISD::EXTRACT_VECTOR_ELT:
Craig Topper89f4e662012-03-20 07:17:59 +000019126 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
Duncan Sands6bcd2192011-09-17 16:49:39 +000019127 case ISD::VSELECT:
Nadav Rotemcc616562012-01-15 19:27:55 +000019128 case ISD::SELECT: return PerformSELECTCombine(N, DAG, DCI, Subtarget);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000019129 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI, Subtarget);
Craig Topper54f952a2011-11-19 09:02:40 +000019130 case ISD::ADD: return PerformAddCombine(N, DAG, Subtarget);
19131 case ISD::SUB: return PerformSubCombine(N, DAG, Subtarget);
Chris Lattner23a01992010-12-20 01:37:09 +000019132 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000019133 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000019134 case ISD::SHL:
19135 case ISD::SRA:
Mon P Wang845b1892012-02-01 22:15:20 +000019136 case ISD::SRL: return PerformShiftCombine(N, DAG, DCI, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000019137 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000019138 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Craig Topperb4c94572011-10-21 06:55:01 +000019139 case ISD::XOR: return PerformXorCombine(N, DAG, DCI, Subtarget);
Nadav Rotem2dd83eb2012-07-10 13:25:08 +000019140 case ISD::LOAD: return PerformLOADCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000019141 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000019142 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Duncan Sands17470be2011-09-22 20:15:48 +000019143 case ISD::FADD: return PerformFADDCombine(N, DAG, Subtarget);
19144 case ISD::FSUB: return PerformFSUBCombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000019145 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000019146 case X86ISD::FOR: return PerformFORCombine(N, DAG);
Nadav Rotemd60cb112012-08-19 13:06:16 +000019147 case X86ISD::FMIN:
19148 case X86ISD::FMAX: return PerformFMinFMaxCombine(N, DAG);
Chris Lattneraf723b92008-01-25 05:46:26 +000019149 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Benjamin Kramer75311b72013-08-04 12:05:16 +000019150 case X86ISD::FANDN: return PerformFANDNCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000019151 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000019152 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Elena Demikhovsky1da58672012-04-22 09:39:03 +000019153 case ISD::ANY_EXTEND:
Craig Topperc16f8512012-04-25 06:39:39 +000019154 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG, DCI, Subtarget);
Elena Demikhovskydcabc7b2012-02-02 09:10:43 +000019155 case ISD::SIGN_EXTEND: return PerformSExtCombine(N, DAG, DCI, Subtarget);
Elena Demikhovsky52981c42013-02-20 12:42:54 +000019156 case ISD::SIGN_EXTEND_INREG: return PerformSIGN_EXTEND_INREGCombine(N, DAG, Subtarget);
Craig Topper55b24052012-09-11 06:15:32 +000019157 case ISD::TRUNCATE: return PerformTruncateCombine(N, DAG,DCI,Subtarget);
Chad Rosiera73b6fc2012-04-27 22:33:25 +000019158 case ISD::SETCC: return PerformISDSETCCCombine(N, DAG);
Michael Liaodbf8b5b2012-08-28 03:34:40 +000019159 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG, DCI, Subtarget);
Michael Liao2a33cec2012-08-10 19:58:13 +000019160 case X86ISD::BRCOND: return PerformBrCondCombine(N, DAG, DCI, Subtarget);
Michael Liaod9d09602012-10-23 17:34:00 +000019161 case X86ISD::VZEXT: return performVZEXTCombine(N, DAG, DCI, Subtarget);
Craig Topperb3982da2011-12-31 23:50:21 +000019162 case X86ISD::SHUFP: // Handle all target specific shuffles
Craig Topper4aee1bb2013-01-28 06:48:25 +000019163 case X86ISD::PALIGNR:
Craig Topper34671b82011-12-06 08:21:25 +000019164 case X86ISD::UNPCKH:
19165 case X86ISD::UNPCKL:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000019166 case X86ISD::MOVHLPS:
19167 case X86ISD::MOVLHPS:
19168 case X86ISD::PSHUFD:
19169 case X86ISD::PSHUFHW:
19170 case X86ISD::PSHUFLW:
19171 case X86ISD::MOVSS:
19172 case X86ISD::MOVSD:
Craig Topper316cd2a2011-11-30 06:25:25 +000019173 case X86ISD::VPERMILP:
Craig Topperec24e612011-11-30 07:47:51 +000019174 case X86ISD::VPERM2X128:
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000019175 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
Elena Demikhovsky1503aba2012-08-01 12:06:00 +000019176 case ISD::FMA: return PerformFMACombine(N, DAG, Subtarget);
Evan Cheng206ee9d2006-07-07 08:33:52 +000019177 }
19178
Dan Gohman475871a2008-07-27 21:46:04 +000019179 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000019180}
19181
Evan Chenge5b51ac2010-04-17 06:13:15 +000019182/// isTypeDesirableForOp - Return true if the target has native support for
19183/// the specified value type and it is 'desirable' to use the type for the
19184/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
19185/// instruction encodings are longer and some i16 instructions are slow.
19186bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
19187 if (!isTypeLegal(VT))
19188 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019189 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000019190 return true;
19191
19192 switch (Opc) {
19193 default:
19194 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000019195 case ISD::LOAD:
19196 case ISD::SIGN_EXTEND:
19197 case ISD::ZERO_EXTEND:
19198 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000019199 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000019200 case ISD::SRL:
19201 case ISD::SUB:
19202 case ISD::ADD:
19203 case ISD::MUL:
19204 case ISD::AND:
19205 case ISD::OR:
19206 case ISD::XOR:
19207 return false;
19208 }
19209}
19210
19211/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000019212/// beneficial for dag combiner to promote the specified node. If true, it
19213/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000019214bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000019215 EVT VT = Op.getValueType();
19216 if (VT != MVT::i16)
19217 return false;
19218
Evan Cheng4c26e932010-04-19 19:29:22 +000019219 bool Promote = false;
19220 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019221 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000019222 default: break;
19223 case ISD::LOAD: {
19224 LoadSDNode *LD = cast<LoadSDNode>(Op);
19225 // If the non-extending load has a single use and it's not live out, then it
19226 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019227 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
19228 Op.hasOneUse()*/) {
19229 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
19230 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
19231 // The only case where we'd want to promote LOAD (rather then it being
19232 // promoted as an operand is when it's only use is liveout.
19233 if (UI->getOpcode() != ISD::CopyToReg)
19234 return false;
19235 }
19236 }
Evan Cheng4c26e932010-04-19 19:29:22 +000019237 Promote = true;
19238 break;
19239 }
19240 case ISD::SIGN_EXTEND:
19241 case ISD::ZERO_EXTEND:
19242 case ISD::ANY_EXTEND:
19243 Promote = true;
19244 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000019245 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000019246 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000019247 SDValue N0 = Op.getOperand(0);
19248 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000019249 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000019250 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000019251 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000019252 break;
19253 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000019254 case ISD::ADD:
19255 case ISD::MUL:
19256 case ISD::AND:
19257 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000019258 case ISD::XOR:
19259 Commute = true;
19260 // fallthrough
19261 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000019262 SDValue N0 = Op.getOperand(0);
19263 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000019264 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019265 return false;
19266 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000019267 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019268 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000019269 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000019270 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000019271 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019272 }
19273 }
19274
19275 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000019276 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000019277}
19278
Evan Cheng60c07e12006-07-05 22:17:51 +000019279//===----------------------------------------------------------------------===//
19280// X86 Inline Assembly Support
19281//===----------------------------------------------------------------------===//
19282
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019283namespace {
19284 // Helper to match a string separated by whitespace.
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019285 bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019286 s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019287
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019288 for (unsigned i = 0, e = args.size(); i != e; ++i) {
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019289 StringRef piece(*args[i]);
19290 if (!s.startswith(piece)) // Check if the piece matches.
19291 return false;
19292
19293 s = s.substr(piece.size());
19294 StringRef::size_type pos = s.find_first_not_of(" \t");
19295 if (pos == 0) // We matched a prefix.
19296 return false;
19297
19298 s = s.substr(pos);
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019299 }
19300
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019301 return s.empty();
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019302 }
Benjamin Kramer0581ed72011-12-18 20:51:31 +000019303 const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019304}
19305
Eric Christopher3faf43f2013-11-04 21:41:21 +000019306static bool clobbersFlagRegisters(const SmallVector<StringRef, 4> &AsmPieces) {
19307
19308 if (AsmPieces.size() == 3 || AsmPieces.size() == 4) {
19309 if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{cc}") &&
19310 std::count(AsmPieces.begin(), AsmPieces.end(), "~{flags}") &&
19311 std::count(AsmPieces.begin(), AsmPieces.end(), "~{fpsr}")) {
19312
19313 if (AsmPieces.size() == 3)
19314 return true;
19315 else if (std::count(AsmPieces.begin(), AsmPieces.end(), "~{dirflag}"))
19316 return true;
19317 }
19318 }
19319 return false;
19320}
19321
Chris Lattnerb8105652009-07-20 17:51:36 +000019322bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
19323 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000019324
19325 std::string AsmStr = IA->getAsmString();
19326
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019327 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
19328 if (!Ty || Ty->getBitWidth() % 16 != 0)
19329 return false;
19330
Chris Lattnerb8105652009-07-20 17:51:36 +000019331 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000019332 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000019333 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000019334
19335 switch (AsmPieces.size()) {
19336 default: return false;
19337 case 1:
Chris Lattner7a2bdde2011-04-15 05:18:47 +000019338 // FIXME: this should verify that we are targeting a 486 or better. If not,
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019339 // we will turn this bswap into something that will be lowered to logical
19340 // ops instead of emitting the bswap asm. For now, we don't support 486 or
19341 // lower so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000019342 // bswap $0
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019343 if (matchAsm(AsmPieces[0], "bswap", "$0") ||
19344 matchAsm(AsmPieces[0], "bswapl", "$0") ||
19345 matchAsm(AsmPieces[0], "bswapq", "$0") ||
19346 matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
19347 matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
19348 matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
Chris Lattnerb8105652009-07-20 17:51:36 +000019349 // No need to check constraints, nothing other than the equivalent of
19350 // "=r,0" would be valid here.
Evan Cheng55d42002011-01-08 01:24:27 +000019351 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019352 }
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019353
Chris Lattnerb8105652009-07-20 17:51:36 +000019354 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000019355 if (CI->getType()->isIntegerTy(16) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019356 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019357 (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
19358 matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
Dan Gohman0ef701e2010-03-04 19:58:08 +000019359 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000019360 const std::string &ConstraintsStr = IA->getConstraintString();
19361 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Jakub Staszak56f58ad2013-02-18 23:18:22 +000019362 array_pod_sort(AsmPieces.begin(), AsmPieces.end());
Eric Christopher3faf43f2013-11-04 21:41:21 +000019363 if (clobbersFlagRegisters(AsmPieces))
19364 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019365 }
19366 break;
19367 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000019368 if (CI->getType()->isIntegerTy(32) &&
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019369 IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019370 matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
19371 matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
19372 matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019373 AsmPieces.clear();
19374 const std::string &ConstraintsStr = IA->getConstraintString();
19375 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Jakub Staszak56f58ad2013-02-18 23:18:22 +000019376 array_pod_sort(AsmPieces.begin(), AsmPieces.end());
Eric Christopher3faf43f2013-11-04 21:41:21 +000019377 if (clobbersFlagRegisters(AsmPieces))
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019378 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000019379 }
Evan Cheng55d42002011-01-08 01:24:27 +000019380
19381 if (CI->getType()->isIntegerTy(64)) {
19382 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
19383 if (Constraints.size() >= 2 &&
19384 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
19385 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
19386 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramer2ea4cdb2011-12-18 19:59:20 +000019387 if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
19388 matchAsm(AsmPieces[1], "bswap", "%edx") &&
19389 matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
Benjamin Kramere6cddb72011-12-17 14:36:05 +000019390 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000019391 }
19392 }
19393 break;
19394 }
19395 return false;
19396}
19397
Chris Lattnerf4dff842006-07-11 02:54:03 +000019398/// getConstraintType - Given a constraint letter, return the type of
19399/// constraint it is for this target.
19400X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000019401X86TargetLowering::getConstraintType(const std::string &Constraint) const {
19402 if (Constraint.size() == 1) {
19403 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000019404 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000019405 case 'q':
19406 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000019407 case 'f':
19408 case 't':
19409 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000019410 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000019411 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000019412 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000019413 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000019414 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000019415 case 'a':
19416 case 'b':
19417 case 'c':
19418 case 'd':
19419 case 'S':
19420 case 'D':
19421 case 'A':
19422 return C_Register;
19423 case 'I':
19424 case 'J':
19425 case 'K':
19426 case 'L':
19427 case 'M':
19428 case 'N':
19429 case 'G':
19430 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000019431 case 'e':
19432 case 'Z':
19433 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000019434 default:
19435 break;
19436 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000019437 }
Chris Lattner4234f572007-03-25 02:14:49 +000019438 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000019439}
19440
John Thompson44ab89e2010-10-29 17:29:13 +000019441/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000019442/// This object must already have been set up with the operand type
19443/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000019444TargetLowering::ConstraintWeight
19445 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000019446 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000019447 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019448 Value *CallOperandVal = info.CallOperandVal;
19449 // If we don't have a value, we can't do a match,
19450 // but allow it at the lowest weight.
19451 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000019452 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000019453 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000019454 // Look at the constraint type.
19455 switch (*constraint) {
19456 default:
John Thompson44ab89e2010-10-29 17:29:13 +000019457 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
19458 case 'R':
19459 case 'q':
19460 case 'Q':
19461 case 'a':
19462 case 'b':
19463 case 'c':
19464 case 'd':
19465 case 'S':
19466 case 'D':
19467 case 'A':
19468 if (CallOperandVal->getType()->isIntegerTy())
19469 weight = CW_SpecificReg;
19470 break;
19471 case 'f':
19472 case 't':
19473 case 'u':
Jakub Staszakc20323a2012-12-29 15:57:26 +000019474 if (type->isFloatingPointTy())
19475 weight = CW_SpecificReg;
19476 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019477 case 'y':
Jakub Staszakc20323a2012-12-29 15:57:26 +000019478 if (type->isX86_MMXTy() && Subtarget->hasMMX())
19479 weight = CW_SpecificReg;
19480 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019481 case 'x':
19482 case 'Y':
Craig Topper1accb7e2012-01-10 06:54:16 +000019483 if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
Elena Demikhovsky8564dc62012-11-29 12:44:59 +000019484 ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasFp256()))
John Thompson44ab89e2010-10-29 17:29:13 +000019485 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019486 break;
19487 case 'I':
19488 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
19489 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000019490 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019491 }
19492 break;
John Thompson44ab89e2010-10-29 17:29:13 +000019493 case 'J':
19494 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19495 if (C->getZExtValue() <= 63)
19496 weight = CW_Constant;
19497 }
19498 break;
19499 case 'K':
19500 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19501 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
19502 weight = CW_Constant;
19503 }
19504 break;
19505 case 'L':
19506 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19507 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
19508 weight = CW_Constant;
19509 }
19510 break;
19511 case 'M':
19512 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19513 if (C->getZExtValue() <= 3)
19514 weight = CW_Constant;
19515 }
19516 break;
19517 case 'N':
19518 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19519 if (C->getZExtValue() <= 0xff)
19520 weight = CW_Constant;
19521 }
19522 break;
19523 case 'G':
19524 case 'C':
19525 if (dyn_cast<ConstantFP>(CallOperandVal)) {
19526 weight = CW_Constant;
19527 }
19528 break;
19529 case 'e':
19530 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19531 if ((C->getSExtValue() >= -0x80000000LL) &&
19532 (C->getSExtValue() <= 0x7fffffffLL))
19533 weight = CW_Constant;
19534 }
19535 break;
19536 case 'Z':
19537 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
19538 if (C->getZExtValue() <= 0xffffffff)
19539 weight = CW_Constant;
19540 }
19541 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000019542 }
19543 return weight;
19544}
19545
Dale Johannesenba2a0b92008-01-29 02:21:21 +000019546/// LowerXConstraint - try to replace an X constraint, which matches anything,
19547/// with another that has more specific requirements based on the type of the
19548/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000019549const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000019550LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000019551 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
19552 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000019553 if (ConstraintVT.isFloatingPoint()) {
Craig Topper1accb7e2012-01-10 06:54:16 +000019554 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +000019555 return "Y";
Craig Topper1accb7e2012-01-10 06:54:16 +000019556 if (Subtarget->hasSSE1())
Chris Lattner5e764232008-04-26 23:02:14 +000019557 return "x";
19558 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019559
Chris Lattner5e764232008-04-26 23:02:14 +000019560 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000019561}
19562
Chris Lattner48884cd2007-08-25 00:47:38 +000019563/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
19564/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000019565void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000019566 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000019567 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000019568 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000019569 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000019570
Eric Christopher100c8332011-06-02 23:16:42 +000019571 // Only support length 1 constraints for now.
19572 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000019573
Eric Christopher100c8332011-06-02 23:16:42 +000019574 char ConstraintLetter = Constraint[0];
19575 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019576 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000019577 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000019578 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000019579 if (C->getZExtValue() <= 31) {
19580 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000019581 break;
19582 }
Devang Patel84f7fd22007-03-17 00:13:28 +000019583 }
Chris Lattner48884cd2007-08-25 00:47:38 +000019584 return;
Evan Cheng364091e2008-09-22 23:57:37 +000019585 case 'J':
19586 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000019587 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000019588 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19589 break;
19590 }
19591 }
19592 return;
19593 case 'K':
19594 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Jakub Staszakdccd7f92012-11-06 23:52:19 +000019595 if (isInt<8>(C->getSExtValue())) {
Evan Cheng364091e2008-09-22 23:57:37 +000019596 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19597 break;
19598 }
19599 }
19600 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000019601 case 'N':
19602 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000019603 if (C->getZExtValue() <= 255) {
19604 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000019605 break;
19606 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000019607 }
Chris Lattner48884cd2007-08-25 00:47:38 +000019608 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000019609 case 'e': {
19610 // 32-bit signed value
19611 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000019612 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19613 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019614 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000019615 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000019616 break;
19617 }
19618 // FIXME gcc accepts some relocatable values here too, but only in certain
19619 // memory models; it's complicated.
19620 }
19621 return;
19622 }
19623 case 'Z': {
19624 // 32-bit unsigned value
19625 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000019626 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
19627 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019628 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
19629 break;
19630 }
19631 }
19632 // FIXME gcc accepts some relocatable values here too, but only in certain
19633 // memory models; it's complicated.
19634 return;
19635 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019636 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019637 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000019638 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000019639 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000019640 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000019641 break;
19642 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019643
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000019644 // In any sort of PIC mode addresses need to be computed at runtime by
19645 // adding in a register or some sort of table lookup. These can't
19646 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000019647 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000019648 return;
19649
Chris Lattnerdc43a882007-05-03 16:52:29 +000019650 // If we are in non-pic codegen mode, we allow the address of a global (with
19651 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000019652 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000019653 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000019654
Chris Lattner49921962009-05-08 18:23:14 +000019655 // Match either (GA), (GA+C), (GA+C1+C2), etc.
19656 while (1) {
19657 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
19658 Offset += GA->getOffset();
19659 break;
19660 } else if (Op.getOpcode() == ISD::ADD) {
19661 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19662 Offset += C->getZExtValue();
19663 Op = Op.getOperand(0);
19664 continue;
19665 }
19666 } else if (Op.getOpcode() == ISD::SUB) {
19667 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
19668 Offset += -C->getZExtValue();
19669 Op = Op.getOperand(0);
19670 continue;
19671 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019672 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019673
Chris Lattner49921962009-05-08 18:23:14 +000019674 // Otherwise, this isn't something we can handle, reject it.
19675 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000019676 }
Eric Christopherfd179292009-08-27 18:07:15 +000019677
Dan Gohman46510a72010-04-15 01:51:59 +000019678 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019679 // If we require an extra load to get this address, as in PIC mode, we
19680 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000019681 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
19682 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000019683 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000019684
Andrew Trickac6d9be2013-05-25 02:42:55 +000019685 Result = DAG.getTargetGlobalAddress(GV, SDLoc(Op),
Devang Patel0d881da2010-07-06 22:08:15 +000019686 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000019687 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019688 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000019689 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019690
Gabor Greifba36cb52008-08-28 21:40:38 +000019691 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000019692 Ops.push_back(Result);
19693 return;
19694 }
Dale Johannesen1784d162010-06-25 21:55:36 +000019695 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000019696}
19697
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019698std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000019699X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Chad Rosier5b3fca52013-06-22 18:37:38 +000019700 MVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000019701 // First, see if this is a constraint that directly corresponds to an LLVM
19702 // register class.
19703 if (Constraint.size() == 1) {
19704 // GCC Constraint Letters
19705 switch (Constraint[0]) {
19706 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000019707 // TODO: Slight differences here in allocation order and leaving
19708 // RIP in the class. Do they matter any more here than they do
19709 // in the normal allocation?
19710 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
19711 if (Subtarget->is64Bit()) {
Craig Topperc9099502012-04-20 06:31:50 +000019712 if (VT == MVT::i32 || VT == MVT::f32)
19713 return std::make_pair(0U, &X86::GR32RegClass);
19714 if (VT == MVT::i16)
19715 return std::make_pair(0U, &X86::GR16RegClass);
19716 if (VT == MVT::i8 || VT == MVT::i1)
19717 return std::make_pair(0U, &X86::GR8RegClass);
19718 if (VT == MVT::i64 || VT == MVT::f64)
19719 return std::make_pair(0U, &X86::GR64RegClass);
19720 break;
Eric Christopherd176af82011-06-29 17:23:50 +000019721 }
19722 // 32-bit fallthrough
19723 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000019724 if (VT == MVT::i32 || VT == MVT::f32)
Craig Topperc9099502012-04-20 06:31:50 +000019725 return std::make_pair(0U, &X86::GR32_ABCDRegClass);
19726 if (VT == MVT::i16)
19727 return std::make_pair(0U, &X86::GR16_ABCDRegClass);
19728 if (VT == MVT::i8 || VT == MVT::i1)
19729 return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
19730 if (VT == MVT::i64)
19731 return std::make_pair(0U, &X86::GR64_ABCDRegClass);
Eric Christopherd176af82011-06-29 17:23:50 +000019732 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000019733 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000019734 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000019735 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000019736 return std::make_pair(0U, &X86::GR8RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019737 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000019738 return std::make_pair(0U, &X86::GR16RegClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000019739 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000019740 return std::make_pair(0U, &X86::GR32RegClass);
19741 return std::make_pair(0U, &X86::GR64RegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019742 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000019743 if (VT == MVT::i8 || VT == MVT::i1)
Craig Topperc9099502012-04-20 06:31:50 +000019744 return std::make_pair(0U, &X86::GR8_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019745 if (VT == MVT::i16)
Craig Topperc9099502012-04-20 06:31:50 +000019746 return std::make_pair(0U, &X86::GR16_NOREXRegClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000019747 if (VT == MVT::i32 || !Subtarget->is64Bit())
Craig Topperc9099502012-04-20 06:31:50 +000019748 return std::make_pair(0U, &X86::GR32_NOREXRegClass);
19749 return std::make_pair(0U, &X86::GR64_NOREXRegClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000019750 case 'f': // FP Stack registers.
19751 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
19752 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000019753 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000019754 return std::make_pair(0U, &X86::RFP32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019755 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Craig Topperc9099502012-04-20 06:31:50 +000019756 return std::make_pair(0U, &X86::RFP64RegClass);
19757 return std::make_pair(0U, &X86::RFP80RegClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000019758 case 'y': // MMX_REGS if MMX allowed.
19759 if (!Subtarget->hasMMX()) break;
Craig Topperc9099502012-04-20 06:31:50 +000019760 return std::make_pair(0U, &X86::VR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019761 case 'Y': // SSE_REGS if SSE2 allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000019762 if (!Subtarget->hasSSE2()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000019763 // FALL THROUGH.
Eric Christopher55487552012-01-07 01:02:09 +000019764 case 'x': // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
Craig Topper1accb7e2012-01-10 06:54:16 +000019765 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000019766
Chad Rosier5b3fca52013-06-22 18:37:38 +000019767 switch (VT.SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000019768 default: break;
19769 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000019770 case MVT::f32:
19771 case MVT::i32:
Craig Topperc9099502012-04-20 06:31:50 +000019772 return std::make_pair(0U, &X86::FR32RegClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000019773 case MVT::f64:
19774 case MVT::i64:
Craig Topperc9099502012-04-20 06:31:50 +000019775 return std::make_pair(0U, &X86::FR64RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019776 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000019777 case MVT::v16i8:
19778 case MVT::v8i16:
19779 case MVT::v4i32:
19780 case MVT::v2i64:
19781 case MVT::v4f32:
19782 case MVT::v2f64:
Craig Topperc9099502012-04-20 06:31:50 +000019783 return std::make_pair(0U, &X86::VR128RegClass);
Eric Christopher55487552012-01-07 01:02:09 +000019784 // AVX types.
19785 case MVT::v32i8:
19786 case MVT::v16i16:
19787 case MVT::v8i32:
19788 case MVT::v4i64:
19789 case MVT::v8f32:
19790 case MVT::v4f64:
Craig Topperc9099502012-04-20 06:31:50 +000019791 return std::make_pair(0U, &X86::VR256RegClass);
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019792 case MVT::v8f64:
19793 case MVT::v16f32:
19794 case MVT::v16i32:
19795 case MVT::v8i64:
19796 return std::make_pair(0U, &X86::VR512RegClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000019797 }
Chris Lattnerad043e82007-04-09 05:11:28 +000019798 break;
19799 }
19800 }
Scott Michelfdc40a02009-02-17 22:15:04 +000019801
Chris Lattnerf76d1802006-07-31 23:26:50 +000019802 // Use the default implementation in TargetLowering to convert the register
19803 // constraint into a member of a register class.
19804 std::pair<unsigned, const TargetRegisterClass*> Res;
19805 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000019806
19807 // Not found as a standard register?
19808 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000019809 // Map st(0) -> st(7) -> ST0
19810 if (Constraint.size() == 7 && Constraint[0] == '{' &&
19811 tolower(Constraint[1]) == 's' &&
19812 tolower(Constraint[2]) == 't' &&
19813 Constraint[3] == '(' &&
19814 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
19815 Constraint[5] == ')' &&
19816 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000019817
Chris Lattner56d77c72009-09-13 22:41:48 +000019818 Res.first = X86::ST0+Constraint[4]-'0';
Craig Topperc9099502012-04-20 06:31:50 +000019819 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019820 return Res;
19821 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000019822
Chris Lattner56d77c72009-09-13 22:41:48 +000019823 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000019824 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000019825 Res.first = X86::ST0;
Craig Topperc9099502012-04-20 06:31:50 +000019826 Res.second = &X86::RFP80RegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019827 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000019828 }
Chris Lattner56d77c72009-09-13 22:41:48 +000019829
19830 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000019831 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000019832 Res.first = X86::EFLAGS;
Craig Topperc9099502012-04-20 06:31:50 +000019833 Res.second = &X86::CCRRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019834 return Res;
19835 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000019836
Dale Johannesen330169f2008-11-13 21:52:36 +000019837 // 'A' means EAX + EDX.
19838 if (Constraint == "A") {
19839 Res.first = X86::EAX;
Craig Topperc9099502012-04-20 06:31:50 +000019840 Res.second = &X86::GR32_ADRegClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000019841 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000019842 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000019843 return Res;
19844 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019845
Chris Lattnerf76d1802006-07-31 23:26:50 +000019846 // Otherwise, check to see if this is a register class of the wrong value
19847 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
19848 // turn into {ax},{dx}.
19849 if (Res.second->hasType(VT))
19850 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019851
Chris Lattnerf76d1802006-07-31 23:26:50 +000019852 // All of the single-register GCC register classes map their values onto
19853 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
19854 // really want an 8-bit or 32-bit register, map to the appropriate register
19855 // class and return the appropriate register.
Craig Topperc9099502012-04-20 06:31:50 +000019856 if (Res.second == &X86::GR16RegClass) {
Eric Christopher23571f42013-02-13 06:01:05 +000019857 if (VT == MVT::i8 || VT == MVT::i1) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019858 unsigned DestReg = 0;
19859 switch (Res.first) {
19860 default: break;
19861 case X86::AX: DestReg = X86::AL; break;
19862 case X86::DX: DestReg = X86::DL; break;
19863 case X86::CX: DestReg = X86::CL; break;
19864 case X86::BX: DestReg = X86::BL; break;
19865 }
19866 if (DestReg) {
19867 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019868 Res.second = &X86::GR8RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019869 }
Eric Christophera9bd4b42013-01-31 00:50:46 +000019870 } else if (VT == MVT::i32 || VT == MVT::f32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019871 unsigned DestReg = 0;
19872 switch (Res.first) {
19873 default: break;
19874 case X86::AX: DestReg = X86::EAX; break;
19875 case X86::DX: DestReg = X86::EDX; break;
19876 case X86::CX: DestReg = X86::ECX; break;
19877 case X86::BX: DestReg = X86::EBX; break;
19878 case X86::SI: DestReg = X86::ESI; break;
19879 case X86::DI: DestReg = X86::EDI; break;
19880 case X86::BP: DestReg = X86::EBP; break;
19881 case X86::SP: DestReg = X86::ESP; break;
19882 }
19883 if (DestReg) {
19884 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019885 Res.second = &X86::GR32RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019886 }
Eric Christophera9bd4b42013-01-31 00:50:46 +000019887 } else if (VT == MVT::i64 || VT == MVT::f64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019888 unsigned DestReg = 0;
19889 switch (Res.first) {
19890 default: break;
19891 case X86::AX: DestReg = X86::RAX; break;
19892 case X86::DX: DestReg = X86::RDX; break;
19893 case X86::CX: DestReg = X86::RCX; break;
19894 case X86::BX: DestReg = X86::RBX; break;
19895 case X86::SI: DestReg = X86::RSI; break;
19896 case X86::DI: DestReg = X86::RDI; break;
19897 case X86::BP: DestReg = X86::RBP; break;
19898 case X86::SP: DestReg = X86::RSP; break;
19899 }
19900 if (DestReg) {
19901 Res.first = DestReg;
Craig Topperc9099502012-04-20 06:31:50 +000019902 Res.second = &X86::GR64RegClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000019903 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000019904 }
Craig Topperc9099502012-04-20 06:31:50 +000019905 } else if (Res.second == &X86::FR32RegClass ||
19906 Res.second == &X86::FR64RegClass ||
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019907 Res.second == &X86::VR128RegClass ||
19908 Res.second == &X86::VR256RegClass ||
19909 Res.second == &X86::FR32XRegClass ||
19910 Res.second == &X86::FR64XRegClass ||
19911 Res.second == &X86::VR128XRegClass ||
19912 Res.second == &X86::VR256XRegClass ||
19913 Res.second == &X86::VR512RegClass) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000019914 // Handle references to XMM physical registers that got mapped into the
19915 // wrong class. This can happen with constraints like {xmm0} where the
19916 // target independent register mapper will just pick the first match it can
19917 // find, ignoring the required type.
Eli Friedman52d418d2012-06-25 23:42:33 +000019918
19919 if (VT == MVT::f32 || VT == MVT::i32)
Craig Topperc9099502012-04-20 06:31:50 +000019920 Res.second = &X86::FR32RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000019921 else if (VT == MVT::f64 || VT == MVT::i64)
Craig Topperc9099502012-04-20 06:31:50 +000019922 Res.second = &X86::FR64RegClass;
19923 else if (X86::VR128RegClass.hasType(VT))
19924 Res.second = &X86::VR128RegClass;
Eli Friedman52d418d2012-06-25 23:42:33 +000019925 else if (X86::VR256RegClass.hasType(VT))
19926 Res.second = &X86::VR256RegClass;
Elena Demikhovskye3809ee2013-07-24 11:02:47 +000019927 else if (X86::VR512RegClass.hasType(VT))
19928 Res.second = &X86::VR512RegClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000019929 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000019930
Chris Lattnerf76d1802006-07-31 23:26:50 +000019931 return Res;
19932}