blob: fd7d1f730d42d2401abf01eef1a3130978eb6bfa [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"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000016#include "X86.h"
Evan Cheng0cc39452006-01-16 21:21:29 +000017#include "X86InstrBuilder.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000018#include "X86ISelLowering.h"
19#include "X86TargetMachine.h"
Chris Lattner8c6ed052009-09-16 01:46:41 +000020#include "X86TargetObjectFile.h"
David Greene583b68f2011-02-17 19:18:59 +000021#include "Utils/X86ShuffleDecode.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000022#include "llvm/CallingConv.h"
Evan Cheng223547a2006-01-31 22:28:30 +000023#include "llvm/Constants.h"
Evan Cheng347d5f72006-04-28 21:29:37 +000024#include "llvm/DerivedTypes.h"
Chris Lattnerb903bed2009-06-26 21:20:29 +000025#include "llvm/GlobalAlias.h"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000026#include "llvm/GlobalVariable.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000027#include "llvm/Function.h"
Chris Lattnerb8105652009-07-20 17:51:36 +000028#include "llvm/Instructions.h"
Evan Cheng6be2c582006-04-05 23:38:46 +000029#include "llvm/Intrinsics.h"
Owen Andersona90b3dc2009-07-15 21:51:10 +000030#include "llvm/LLVMContext.h"
Evan Cheng55d42002011-01-08 01:24:27 +000031#include "llvm/CodeGen/IntrinsicLowering.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000032#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Cheng4a460802006-01-11 00:33:36 +000033#include "llvm/CodeGen/MachineFunction.h"
34#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner5e1df8d2010-01-25 23:38:14 +000035#include "llvm/CodeGen/MachineJumpTableInfo.h"
Evan Chenga844bde2008-02-02 04:07:54 +000036#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000037#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000038#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner589c6f62010-01-26 06:28:43 +000039#include "llvm/MC/MCAsmInfo.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000040#include "llvm/MC/MCContext.h"
Daniel Dunbar4e815f82010-03-15 23:51:06 +000041#include "llvm/MC/MCExpr.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000042#include "llvm/MC/MCSymbol.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000043#include "llvm/ADT/BitVector.h"
Evan Cheng14b32e12007-12-11 01:46:18 +000044#include "llvm/ADT/SmallSet.h"
Evan Chengb1712452010-01-27 06:25:16 +000045#include "llvm/ADT/Statistic.h"
Chris Lattner1a60aa72006-10-31 19:42:44 +000046#include "llvm/ADT/StringExtras.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000047#include "llvm/ADT/VectorExtras.h"
Evan Cheng485fafc2011-03-21 01:19:09 +000048#include "llvm/Support/CallSite.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000049#include "llvm/Support/Debug.h"
Bill Wendlingec041eb2010-03-12 19:20:40 +000050#include "llvm/Support/Dwarf.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000051#include "llvm/Support/ErrorHandling.h"
52#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000053#include "llvm/Support/raw_ostream.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000054using namespace llvm;
Bill Wendlingec041eb2010-03-12 19:20:40 +000055using namespace dwarf;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000056
Evan Chengb1712452010-01-27 06:25:16 +000057STATISTIC(NumTailCalls, "Number of tail calls");
58
Evan Cheng10e86422008-04-25 19:11:04 +000059// Forward declarations.
Owen Andersone50ed302009-08-10 22:56:29 +000060static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +000061 SDValue V2);
Evan Cheng10e86422008-04-25 19:11:04 +000062
David Greenea5f26012011-02-07 19:36:54 +000063static SDValue Insert128BitVector(SDValue Result,
64 SDValue Vec,
65 SDValue Idx,
66 SelectionDAG &DAG,
67 DebugLoc dl);
David Greenef125a292011-02-08 19:04:41 +000068
David Greenea5f26012011-02-07 19:36:54 +000069static SDValue Extract128BitVector(SDValue Vec,
70 SDValue Idx,
71 SelectionDAG &DAG,
72 DebugLoc dl);
73
David Greenef125a292011-02-08 19:04:41 +000074static SDValue ConcatVectors(SDValue Lower, SDValue Upper, SelectionDAG &DAG);
75
76
David Greenea5f26012011-02-07 19:36:54 +000077/// Generate a DAG to grab 128-bits from a vector > 128 bits. This
78/// sets things up to match to an AVX VEXTRACTF128 instruction or a
David Greene74a579d2011-02-10 16:57:36 +000079/// simple subregister reference. Idx is an index in the 128 bits we
80/// want. It need not be aligned to a 128-bit bounday. That makes
81/// lowering EXTRACT_VECTOR_ELT operations easier.
David Greenea5f26012011-02-07 19:36:54 +000082static SDValue Extract128BitVector(SDValue Vec,
83 SDValue Idx,
84 SelectionDAG &DAG,
85 DebugLoc dl) {
86 EVT VT = Vec.getValueType();
87 assert(VT.getSizeInBits() == 256 && "Unexpected vector size!");
88
89 EVT ElVT = VT.getVectorElementType();
90
91 int Factor = VT.getSizeInBits() / 128;
92
93 EVT ResultVT = EVT::getVectorVT(*DAG.getContext(),
94 ElVT,
95 VT.getVectorNumElements() / Factor);
96
97 // Extract from UNDEF is UNDEF.
98 if (Vec.getOpcode() == ISD::UNDEF)
99 return DAG.getNode(ISD::UNDEF, dl, ResultVT);
100
101 if (isa<ConstantSDNode>(Idx)) {
102 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
103
104 // Extract the relevant 128 bits. Generate an EXTRACT_SUBVECTOR
105 // we can match to VEXTRACTF128.
106 unsigned ElemsPerChunk = 128 / ElVT.getSizeInBits();
107
108 // This is the index of the first element of the 128-bit chunk
109 // we want.
110 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / 128)
111 * ElemsPerChunk);
112
113 SDValue VecIdx = DAG.getConstant(NormalizedIdxVal, MVT::i32);
114
115 SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
116 VecIdx);
117
118 return Result;
119 }
120
121 return SDValue();
122}
123
124/// Generate a DAG to put 128-bits into a vector > 128 bits. This
125/// sets things up to match to an AVX VINSERTF128 instruction or a
David Greene6b381262011-02-09 15:32:06 +0000126/// simple superregister reference. Idx is an index in the 128 bits
127/// we want. It need not be aligned to a 128-bit bounday. That makes
128/// lowering INSERT_VECTOR_ELT operations easier.
David Greenea5f26012011-02-07 19:36:54 +0000129static SDValue Insert128BitVector(SDValue Result,
130 SDValue Vec,
131 SDValue Idx,
132 SelectionDAG &DAG,
133 DebugLoc dl) {
134 if (isa<ConstantSDNode>(Idx)) {
135 EVT VT = Vec.getValueType();
136 assert(VT.getSizeInBits() == 128 && "Unexpected vector size!");
137
138 EVT ElVT = VT.getVectorElementType();
139
140 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
141
142 EVT ResultVT = Result.getValueType();
143
144 // Insert the relevant 128 bits.
145 unsigned ElemsPerChunk = 128 / ElVT.getSizeInBits();
146
147 // This is the index of the first element of the 128-bit chunk
148 // we want.
149 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / 128)
150 * ElemsPerChunk);
151
152 SDValue VecIdx = DAG.getConstant(NormalizedIdxVal, MVT::i32);
153
154 Result = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
155 VecIdx);
156 return Result;
157 }
158
159 return SDValue();
160}
161
David Greenef125a292011-02-08 19:04:41 +0000162/// Given two vectors, concat them.
163static SDValue ConcatVectors(SDValue Lower, SDValue Upper, SelectionDAG &DAG) {
164 DebugLoc dl = Lower.getDebugLoc();
165
166 assert(Lower.getValueType() == Upper.getValueType() && "Mismatched vectors!");
167
168 EVT VT = EVT::getVectorVT(*DAG.getContext(),
169 Lower.getValueType().getVectorElementType(),
170 Lower.getValueType().getVectorNumElements() * 2);
171
172 // TODO: Generalize to arbitrary vector length (this assumes 256-bit vectors).
173 assert(VT.getSizeInBits() == 256 && "Unsupported vector concat!");
174
175 // Insert the upper subvector.
176 SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Upper,
177 DAG.getConstant(
178 // This is half the length of the result
179 // vector. Start inserting the upper 128
180 // bits here.
181 Lower.getValueType().getVectorNumElements(),
182 MVT::i32),
183 DAG, dl);
184
185 // Insert the lower subvector.
186 Vec = Insert128BitVector(Vec, Lower, DAG.getConstant(0, MVT::i32), DAG, dl);
187 return Vec;
188}
189
Chris Lattnerf0144122009-07-28 03:13:23 +0000190static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
Evan Cheng2bffee22011-02-01 01:14:13 +0000191 const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
192 bool is64Bit = Subtarget->is64Bit();
NAKAMURA Takumi27635382011-02-05 15:10:54 +0000193
Evan Cheng2bffee22011-02-01 01:14:13 +0000194 if (Subtarget->isTargetEnvMacho()) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000195 if (is64Bit)
196 return new X8664_MachoTargetObjectFile();
Anton Korobeynikov293d5922010-02-21 20:28:15 +0000197 return new TargetLoweringObjectFileMachO();
Michael J. Spencerec38de22010-10-10 22:04:20 +0000198 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000199
Evan Cheng2bffee22011-02-01 01:14:13 +0000200 if (Subtarget->isTargetELF()) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000201 if (is64Bit)
202 return new X8664_ELFTargetObjectFile(TM);
203 return new X8632_ELFTargetObjectFile(TM);
204 }
Evan Cheng2bffee22011-02-01 01:14:13 +0000205 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
Chris Lattnere019ec12010-12-19 20:07:10 +0000206 return new TargetLoweringObjectFileCOFF();
Eric Christopher62f35a22010-07-05 19:26:33 +0000207 llvm_unreachable("unknown subtarget type");
Chris Lattnerf0144122009-07-28 03:13:23 +0000208}
209
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +0000210X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +0000211 : TargetLowering(TM, createTLOF(TM)) {
Evan Cheng559806f2006-01-27 08:10:46 +0000212 Subtarget = &TM.getSubtarget<X86Subtarget>();
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000213 X86ScalarSSEf64 = Subtarget->hasXMMInt();
214 X86ScalarSSEf32 = Subtarget->hasXMM();
Evan Cheng25ab6902006-09-08 06:48:29 +0000215 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000216
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000217 RegInfo = TM.getRegisterInfo();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000218 TD = getTargetData();
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000219
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000220 // Set up the TargetLowering object.
Chris Lattnera34b3cf2010-12-19 20:03:11 +0000221 static MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000222
223 // X86 is weird, it always uses i8 for shift amounts and setcc results.
Duncan Sands03228082008-11-23 15:47:28 +0000224 setBooleanContents(ZeroOrOneBooleanContent);
Eric Christopherde5e1012011-03-11 01:05:58 +0000225
226 // For 64-bit since we have so many registers use the ILP scheduler, for
227 // 32-bit code use the register pressure specific scheduling.
228 if (Subtarget->is64Bit())
229 setSchedulingPreference(Sched::ILP);
230 else
231 setSchedulingPreference(Sched::RegPressure);
Evan Cheng25ab6902006-09-08 06:48:29 +0000232 setStackPointerRegisterToSaveRestore(X86StackPtr);
Evan Cheng714554d2006-03-16 21:47:42 +0000233
Michael J. Spencer92bf38c2010-10-10 23:11:06 +0000234 if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000235 // Setup Windows compiler runtime calls.
236 setLibcallName(RTLIB::SDIV_I64, "_alldiv");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000237 setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
238 setLibcallName(RTLIB::FPTOUINT_F64_I64, "_ftol2");
Michael J. Spencer94f7eeb2010-10-19 07:32:52 +0000239 setLibcallName(RTLIB::FPTOUINT_F32_I64, "_ftol2");
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000240 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer335b8062010-10-11 05:29:15 +0000241 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer6dad10e2010-10-27 18:52:38 +0000242 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::C);
243 setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::C);
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000244 }
245
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000246 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +0000247 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000248 setUseUnderscoreSetJmp(false);
249 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000250 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000251 // MS runtime is weird: it exports _setjmp, but longjmp!
252 setUseUnderscoreSetJmp(true);
253 setUseUnderscoreLongJmp(false);
254 } else {
255 setUseUnderscoreSetJmp(true);
256 setUseUnderscoreLongJmp(true);
257 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000258
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000259 // Set up the register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000260 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
Dan Gohman71edb242010-04-30 18:30:26 +0000261 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000262 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
Evan Cheng25ab6902006-09-08 06:48:29 +0000263 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000264 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000265
Owen Anderson825b72b2009-08-11 20:47:22 +0000266 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +0000267
Scott Michelfdc40a02009-02-17 22:15:04 +0000268 // We don't accept any truncstore of integer registers.
Owen Anderson825b72b2009-08-11 20:47:22 +0000269 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000270 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000271 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000272 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000273 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
274 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Evan Cheng7f042682008-10-15 02:05:31 +0000275
276 // SETOEQ and SETUNE require checking two conditions.
Owen Anderson825b72b2009-08-11 20:47:22 +0000277 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
278 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
279 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
280 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
281 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
282 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000283
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000284 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
285 // operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000286 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
287 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
288 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000289
Evan Cheng25ab6902006-09-08 06:48:29 +0000290 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000291 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
292 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Eli Friedman948e95a2009-05-23 09:59:16 +0000293 } else if (!UseSoftFloat) {
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000294 // We have an algorithm for SSE2->double, and we turn this into a
295 // 64-bit FILD followed by conditional FADD for other targets.
296 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Eli Friedman948e95a2009-05-23 09:59:16 +0000297 // We have an algorithm for SSE2, and we turn this into a 64-bit
298 // FILD for other targets.
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000299 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000300 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000301
302 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
303 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000304 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
305 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000306
Devang Patel6a784892009-06-05 18:48:29 +0000307 if (!UseSoftFloat) {
Bill Wendling105be5a2009-03-13 08:41:47 +0000308 // SSE has no i16 to fp conversion, only i32
309 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000310 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000311 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000312 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000313 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000314 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
315 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000316 }
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000317 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000318 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
319 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000320 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000321
Dale Johannesen73328d12007-09-19 23:55:34 +0000322 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
323 // are Legal, f80 is custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000324 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
325 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000326
Evan Cheng02568ff2006-01-30 22:13:22 +0000327 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
328 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000329 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
330 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
Evan Cheng02568ff2006-01-30 22:13:22 +0000331
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000332 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000333 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000334 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000335 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000336 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000337 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
338 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000339 }
340
341 // Handle FP_TO_UINT by promoting the destination to a larger signed
342 // conversion.
Owen Anderson825b72b2009-08-11 20:47:22 +0000343 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
344 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
345 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000346
Evan Cheng25ab6902006-09-08 06:48:29 +0000347 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000348 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
349 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Eli Friedman948e95a2009-05-23 09:59:16 +0000350 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000351 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000352 // Expand FP_TO_UINT into a select.
353 // FIXME: We would like to use a Custom expander here eventually to do
354 // the optimal thing for SSE vs. the default expansion in the legalizer.
Owen Anderson825b72b2009-08-11 20:47:22 +0000355 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000356 else
Eli Friedman948e95a2009-05-23 09:59:16 +0000357 // With SSE3 we can use fisttpll to convert to a signed i64; without
358 // SSE, we're stuck with a fistpll.
Owen Anderson825b72b2009-08-11 20:47:22 +0000359 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000360 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000361
Chris Lattner399610a2006-12-05 18:22:22 +0000362 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Michael J. Spencerec38de22010-10-10 22:04:20 +0000363 if (!X86ScalarSSEf64) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000364 setOperationAction(ISD::BITCAST , MVT::f32 , Expand);
365 setOperationAction(ISD::BITCAST , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000366 if (Subtarget->is64Bit()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000367 setOperationAction(ISD::BITCAST , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000368 // Without SSE, i64->f64 goes through memory.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000369 setOperationAction(ISD::BITCAST , MVT::i64 , Expand);
Dale Johannesen7d07b482010-05-21 00:52:33 +0000370 }
Chris Lattnerf3597a12006-12-05 18:45:06 +0000371 }
Chris Lattner21f66852005-12-23 05:15:23 +0000372
Dan Gohmanb00ee212008-02-18 19:34:53 +0000373 // Scalar integer divide and remainder are lowered to use operations that
374 // produce two results, to match the available instructions. This exposes
375 // the two-result form to trivial CSE, which is able to combine x/y and x%y
376 // into a single instruction.
377 //
378 // Scalar integer multiply-high is also lowered to use two-result
379 // operations, to match the available instructions. However, plain multiply
380 // (low) operations are left as Legal, as there are single-result
381 // instructions for this in x86. Using the two-result multiply instructions
382 // when both high and low results are needed must be arranged by dagcombine.
Chris Lattnere019ec12010-12-19 20:07:10 +0000383 for (unsigned i = 0, e = 4; i != e; ++i) {
384 MVT VT = IntVTs[i];
385 setOperationAction(ISD::MULHS, VT, Expand);
386 setOperationAction(ISD::MULHU, VT, Expand);
387 setOperationAction(ISD::SDIV, VT, Expand);
388 setOperationAction(ISD::UDIV, VT, Expand);
389 setOperationAction(ISD::SREM, VT, Expand);
390 setOperationAction(ISD::UREM, VT, Expand);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000391
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000392 // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
Chris Lattnerd8ff7ec2010-12-20 01:03:27 +0000393 setOperationAction(ISD::ADDC, VT, Custom);
394 setOperationAction(ISD::ADDE, VT, Custom);
395 setOperationAction(ISD::SUBC, VT, Custom);
396 setOperationAction(ISD::SUBE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000397 }
Dan Gohmana37c9f72007-09-25 18:23:27 +0000398
Owen Anderson825b72b2009-08-11 20:47:22 +0000399 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
400 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
401 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
402 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000403 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000404 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
405 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
406 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
407 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
408 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
409 setOperationAction(ISD::FREM , MVT::f32 , Expand);
410 setOperationAction(ISD::FREM , MVT::f64 , Expand);
411 setOperationAction(ISD::FREM , MVT::f80 , Expand);
412 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000413
Owen Anderson825b72b2009-08-11 20:47:22 +0000414 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
415 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000416 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
417 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000418 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
419 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000420 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000421 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
422 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000423 }
424
Benjamin Kramer1292c222010-12-04 20:32:23 +0000425 if (Subtarget->hasPOPCNT()) {
426 setOperationAction(ISD::CTPOP , MVT::i8 , Promote);
427 } else {
428 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
429 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
430 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
431 if (Subtarget->is64Bit())
432 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
433 }
434
Owen Anderson825b72b2009-08-11 20:47:22 +0000435 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
436 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000437
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000438 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000439 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000440 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000441 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000442 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000443 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
444 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
445 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
446 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
447 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000448 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000449 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
450 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
451 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
452 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000453 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000454 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
Andrew Trickf6c39412011-03-23 23:11:02 +0000455 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000456 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000457 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000458
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000459 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000460 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
461 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
462 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
463 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000464 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000465 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
466 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000467 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000468 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000469 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
470 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
471 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
472 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000473 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000474 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000475 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000476 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
477 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
478 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000479 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000480 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
481 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
482 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000483 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000484
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000485 if (Subtarget->hasXMM())
Owen Anderson825b72b2009-08-11 20:47:22 +0000486 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000487
Eric Christopher9a9d2752010-07-22 02:48:34 +0000488 // We may not have a libcall for MEMBARRIER so we should lower this.
489 setOperationAction(ISD::MEMBARRIER , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000490
Jim Grosbachf1ab49e2010-06-23 16:25:07 +0000491 // On X86 and X86-64, atomic operations are lowered to locked instructions.
492 // Locked instructions, in turn, have implicit fence semantics (all memory
493 // operations are flushed before issuing the locked instruction, and they
494 // are not buffered), so we can fold away the common pattern of
495 // fence-atomic-fence.
496 setShouldFoldAtomicFences(true);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000497
Mon P Wang63307c32008-05-05 19:05:59 +0000498 // Expand certain atomics
Chris Lattnere019ec12010-12-19 20:07:10 +0000499 for (unsigned i = 0, e = 4; i != e; ++i) {
500 MVT VT = IntVTs[i];
501 setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
502 setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
503 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000504
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000505 if (!Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000506 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
507 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
508 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
509 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
510 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
511 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
512 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000513 }
514
Evan Cheng3c992d22006-03-07 02:02:57 +0000515 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000516 if (!Subtarget->isTargetDarwin() &&
517 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000518 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000519 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000520 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000521
Owen Anderson825b72b2009-08-11 20:47:22 +0000522 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
523 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
524 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
525 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000526 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000527 setExceptionPointerRegister(X86::RAX);
528 setExceptionSelectorRegister(X86::RDX);
529 } else {
530 setExceptionPointerRegister(X86::EAX);
531 setExceptionSelectorRegister(X86::EDX);
532 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000533 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
534 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000535
Owen Anderson825b72b2009-08-11 20:47:22 +0000536 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000537
Owen Anderson825b72b2009-08-11 20:47:22 +0000538 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000539
Nate Begemanacc398c2006-01-25 18:21:52 +0000540 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000541 setOperationAction(ISD::VASTART , MVT::Other, Custom);
542 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000543 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000544 setOperationAction(ISD::VAARG , MVT::Other, Custom);
545 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000546 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000547 setOperationAction(ISD::VAARG , MVT::Other, Expand);
548 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000549 }
Evan Chengae642192007-03-02 23:16:35 +0000550
Owen Anderson825b72b2009-08-11 20:47:22 +0000551 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
552 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000553 setOperationAction(ISD::DYNAMIC_STACKALLOC,
554 (Subtarget->is64Bit() ? MVT::i64 : MVT::i32),
555 (Subtarget->isTargetCOFF()
556 && !Subtarget->isTargetEnvMacho()
557 ? Custom : Expand));
Chris Lattnerb99329e2006-01-13 02:42:53 +0000558
Evan Chengc7ce29b2009-02-13 22:36:38 +0000559 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000560 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000561 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000562 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
563 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000564
Evan Cheng223547a2006-01-31 22:28:30 +0000565 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000566 setOperationAction(ISD::FABS , MVT::f64, Custom);
567 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000568
569 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000570 setOperationAction(ISD::FNEG , MVT::f64, Custom);
571 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000572
Evan Cheng68c47cb2007-01-05 07:55:56 +0000573 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000574 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
575 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000576
Evan Chengd25e9e82006-02-02 00:28:23 +0000577 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000578 setOperationAction(ISD::FSIN , MVT::f64, Expand);
579 setOperationAction(ISD::FCOS , MVT::f64, Expand);
580 setOperationAction(ISD::FSIN , MVT::f32, Expand);
581 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000582
Chris Lattnera54aa942006-01-29 06:26:08 +0000583 // Expand FP immediates into loads from the stack, except for the special
584 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000585 addLegalFPImmediate(APFloat(+0.0)); // xorpd
586 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000587 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000588 // Use SSE for f32, x87 for f64.
589 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000590 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
591 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000592
593 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000594 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000595
596 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000597 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000598
Owen Anderson825b72b2009-08-11 20:47:22 +0000599 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000600
601 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000602 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
603 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000604
605 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000606 setOperationAction(ISD::FSIN , MVT::f32, Expand);
607 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000608
Nate Begemane1795842008-02-14 08:57:00 +0000609 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000610 addLegalFPImmediate(APFloat(+0.0f)); // xorps
611 addLegalFPImmediate(APFloat(+0.0)); // FLD0
612 addLegalFPImmediate(APFloat(+1.0)); // FLD1
613 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
614 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
615
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000616 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000617 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
618 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000619 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000620 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000621 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000622 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000623 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
624 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000625
Owen Anderson825b72b2009-08-11 20:47:22 +0000626 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
627 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
628 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
629 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000630
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000631 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000632 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
633 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000634 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000635 addLegalFPImmediate(APFloat(+0.0)); // FLD0
636 addLegalFPImmediate(APFloat(+1.0)); // FLD1
637 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
638 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000639 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
640 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
641 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
642 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000643 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000644
Dale Johannesen59a58732007-08-05 18:49:15 +0000645 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000646 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000647 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
648 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
649 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000650 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000651 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000652 addLegalFPImmediate(TmpFlt); // FLD0
653 TmpFlt.changeSign();
654 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000655
656 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000657 APFloat TmpFlt2(+1.0);
658 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
659 &ignored);
660 addLegalFPImmediate(TmpFlt2); // FLD1
661 TmpFlt2.changeSign();
662 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
663 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000664
Evan Chengc7ce29b2009-02-13 22:36:38 +0000665 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000666 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
667 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000668 }
Dale Johannesen2f429012007-09-26 21:10:55 +0000669 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000670
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000671 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000672 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
673 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
674 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000675
Owen Anderson825b72b2009-08-11 20:47:22 +0000676 setOperationAction(ISD::FLOG, MVT::f80, Expand);
677 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
678 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
679 setOperationAction(ISD::FEXP, MVT::f80, Expand);
680 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000681
Mon P Wangf007a8b2008-11-06 05:31:54 +0000682 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000683 // (for widening) or expand (for scalarization). Then we will selectively
684 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000685 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
686 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
687 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
688 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
689 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
690 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
691 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
692 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
693 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
694 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
695 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
696 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
697 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
698 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
699 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
700 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
701 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000702 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
David Greenecfe33c42011-01-26 19:13:22 +0000703 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
704 setOperationAction(ISD::INSERT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000705 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
706 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
707 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
708 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
709 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
710 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
711 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
712 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
713 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
714 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
715 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
716 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
717 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
718 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
719 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
720 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
721 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
722 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
723 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
724 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
725 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
726 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
727 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
728 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
729 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
730 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
731 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
732 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
733 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
734 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
735 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000736 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000737 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
738 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
739 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
740 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
741 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
742 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
743 setTruncStoreAction((MVT::SimpleValueType)VT,
744 (MVT::SimpleValueType)InnerVT, Expand);
745 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
746 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
747 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000748 }
749
Evan Chengc7ce29b2009-02-13 22:36:38 +0000750 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
751 // with -msoft-float, disable use of MMX as well.
Chris Lattner2a786eb2010-12-19 20:19:20 +0000752 if (!UseSoftFloat && Subtarget->hasMMX()) {
Dale Johannesene93d99c2010-10-20 21:32:10 +0000753 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000754 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000755 }
756
Dale Johannesen0488fb62010-09-30 23:57:10 +0000757 // MMX-sized vectors (other than x86mmx) are expected to be expanded
758 // into smaller operations.
759 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
760 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
761 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
762 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
763 setOperationAction(ISD::AND, MVT::v8i8, Expand);
764 setOperationAction(ISD::AND, MVT::v4i16, Expand);
765 setOperationAction(ISD::AND, MVT::v2i32, Expand);
766 setOperationAction(ISD::AND, MVT::v1i64, Expand);
767 setOperationAction(ISD::OR, MVT::v8i8, Expand);
768 setOperationAction(ISD::OR, MVT::v4i16, Expand);
769 setOperationAction(ISD::OR, MVT::v2i32, Expand);
770 setOperationAction(ISD::OR, MVT::v1i64, Expand);
771 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
772 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
773 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
774 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
775 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
776 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
777 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
778 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
779 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
780 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
781 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
782 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
783 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000784 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
785 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
786 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
787 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000788
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000789 if (!UseSoftFloat && Subtarget->hasXMM()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000790 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000791
Owen Anderson825b72b2009-08-11 20:47:22 +0000792 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
793 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
794 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
795 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
796 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
797 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
798 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
799 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
800 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
801 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
802 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
803 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000804 }
805
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000806 if (!UseSoftFloat && Subtarget->hasXMMInt()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000807 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000808
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000809 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
810 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000811 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
812 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
813 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
814 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000815
Owen Anderson825b72b2009-08-11 20:47:22 +0000816 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
817 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
818 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
819 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
820 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
821 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
822 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
823 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
824 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
825 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
826 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
827 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
828 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
829 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
830 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
831 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000832
Owen Anderson825b72b2009-08-11 20:47:22 +0000833 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
834 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
835 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
836 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000837
Owen Anderson825b72b2009-08-11 20:47:22 +0000838 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
839 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
840 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
841 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
842 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000843
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000844 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
845 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
846 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
847 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
848 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
849
Evan Cheng2c3ae372006-04-12 21:21:57 +0000850 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000851 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
852 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000853 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000854 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000855 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000856 // Do not attempt to custom lower non-128-bit vectors
857 if (!VT.is128BitVector())
858 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000859 setOperationAction(ISD::BUILD_VECTOR,
860 VT.getSimpleVT().SimpleTy, Custom);
861 setOperationAction(ISD::VECTOR_SHUFFLE,
862 VT.getSimpleVT().SimpleTy, Custom);
863 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
864 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000865 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000866
Owen Anderson825b72b2009-08-11 20:47:22 +0000867 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
868 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
869 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
870 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
871 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
872 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000873
Nate Begemancdd1eec2008-02-12 22:51:28 +0000874 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000875 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
876 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000877 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000878
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000879 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000880 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
881 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000882 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000883
884 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000885 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000886 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000887
Owen Andersond6662ad2009-08-10 20:46:15 +0000888 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000889 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000890 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000891 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000892 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000893 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000894 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000895 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000896 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000897 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000898 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000899
Owen Anderson825b72b2009-08-11 20:47:22 +0000900 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000901
Evan Cheng2c3ae372006-04-12 21:21:57 +0000902 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000903 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
904 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
905 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
906 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000907
Owen Anderson825b72b2009-08-11 20:47:22 +0000908 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
909 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000910 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000911
Nate Begeman14d12ca2008-02-11 04:19:36 +0000912 if (Subtarget->hasSSE41()) {
Dale Johannesen54feef22010-05-27 20:12:41 +0000913 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
914 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
915 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
916 setOperationAction(ISD::FRINT, MVT::f32, Legal);
917 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
918 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
919 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
920 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
921 setOperationAction(ISD::FRINT, MVT::f64, Legal);
922 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
923
Nate Begeman14d12ca2008-02-11 04:19:36 +0000924 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000925 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000926
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000927 // Can turn SHL into an integer multiply.
928 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Nate Begeman51409212010-07-28 00:21:48 +0000929 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000930
Nate Begeman14d12ca2008-02-11 04:19:36 +0000931 // i8 and i16 vectors are custom , because the source register and source
932 // source memory operand types are not the same width. f32 vectors are
933 // custom since the immediate controlling the insert encodes additional
934 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000935 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
936 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
937 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
938 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000939
Owen Anderson825b72b2009-08-11 20:47:22 +0000940 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
941 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
942 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
943 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000944
945 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000946 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
947 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000948 }
949 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000950
Nadav Rotem43012222011-05-11 08:12:09 +0000951 if (Subtarget->hasSSE2()) {
952 setOperationAction(ISD::SRL, MVT::v2i64, Custom);
953 setOperationAction(ISD::SRL, MVT::v4i32, Custom);
954 setOperationAction(ISD::SRL, MVT::v16i8, Custom);
955
956 setOperationAction(ISD::SHL, MVT::v2i64, Custom);
957 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
958 setOperationAction(ISD::SHL, MVT::v8i16, Custom);
959
960 setOperationAction(ISD::SRA, MVT::v4i32, Custom);
961 setOperationAction(ISD::SRA, MVT::v8i16, Custom);
962 }
963
Chris Lattnera34b3cf2010-12-19 20:03:11 +0000964 if (Subtarget->hasSSE42())
Owen Anderson825b72b2009-08-11 20:47:22 +0000965 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000966
David Greene9b9838d2009-06-29 16:47:10 +0000967 if (!UseSoftFloat && Subtarget->hasAVX()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000968 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
969 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
970 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
971 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
Bruno Cardoso Lopes405f11b2010-08-10 01:43:16 +0000972 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000973
Owen Anderson825b72b2009-08-11 20:47:22 +0000974 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
975 setOperationAction(ISD::LOAD, MVT::v8i32, Legal);
976 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
977 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +0000978
Owen Anderson825b72b2009-08-11 20:47:22 +0000979 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
980 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
981 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
982 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
983 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
984 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000985
Owen Anderson825b72b2009-08-11 20:47:22 +0000986 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
987 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
988 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
989 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
990 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
991 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000992
David Greene54d8eba2011-01-27 22:38:56 +0000993 // Custom lower build_vector, vector_shuffle, scalar_to_vector,
994 // insert_vector_elt extract_subvector and extract_vector_elt for
995 // 256-bit types.
996 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
997 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE;
998 ++i) {
999 MVT::SimpleValueType VT = (MVT::SimpleValueType)i;
1000 // Do not attempt to custom lower non-256-bit vectors
1001 if (!isPowerOf2_32(MVT(VT).getVectorNumElements())
1002 || (MVT(VT).getSizeInBits() < 256))
David Greene9b9838d2009-06-29 16:47:10 +00001003 continue;
David Greene9b9838d2009-06-29 16:47:10 +00001004 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
1005 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
David Greene54d8eba2011-01-27 22:38:56 +00001006 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001007 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
David Greene54d8eba2011-01-27 22:38:56 +00001008 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001009 }
David Greene54d8eba2011-01-27 22:38:56 +00001010 // Custom-lower insert_subvector and extract_subvector based on
1011 // the result type.
1012 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1013 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE;
1014 ++i) {
1015 MVT::SimpleValueType VT = (MVT::SimpleValueType)i;
1016 // Do not attempt to custom lower non-256-bit vectors
1017 if (!isPowerOf2_32(MVT(VT).getVectorNumElements()))
David Greene9b9838d2009-06-29 16:47:10 +00001018 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001019
1020 if (MVT(VT).getSizeInBits() == 128) {
1021 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001022 }
David Greene54d8eba2011-01-27 22:38:56 +00001023 else if (MVT(VT).getSizeInBits() == 256) {
1024 setOperationAction(ISD::INSERT_SUBVECTOR, VT, Custom);
1025 }
David Greene9b9838d2009-06-29 16:47:10 +00001026 }
1027
David Greene54d8eba2011-01-27 22:38:56 +00001028 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1029 // Don't promote loads because we need them for VPERM vector index versions.
1030
1031 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1032 VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE;
1033 VT++) {
1034 if (!isPowerOf2_32(MVT((MVT::SimpleValueType)VT).getVectorNumElements())
1035 || (MVT((MVT::SimpleValueType)VT).getSizeInBits() < 256))
1036 continue;
1037 setOperationAction(ISD::AND, (MVT::SimpleValueType)VT, Promote);
1038 AddPromotedToType (ISD::AND, (MVT::SimpleValueType)VT, MVT::v4i64);
1039 setOperationAction(ISD::OR, (MVT::SimpleValueType)VT, Promote);
1040 AddPromotedToType (ISD::OR, (MVT::SimpleValueType)VT, MVT::v4i64);
1041 setOperationAction(ISD::XOR, (MVT::SimpleValueType)VT, Promote);
1042 AddPromotedToType (ISD::XOR, (MVT::SimpleValueType)VT, MVT::v4i64);
1043 //setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Promote);
1044 //AddPromotedToType (ISD::LOAD, (MVT::SimpleValueType)VT, MVT::v4i64);
1045 setOperationAction(ISD::SELECT, (MVT::SimpleValueType)VT, Promote);
1046 AddPromotedToType (ISD::SELECT, (MVT::SimpleValueType)VT, MVT::v4i64);
1047 }
David Greene9b9838d2009-06-29 16:47:10 +00001048 }
1049
Evan Cheng6be2c582006-04-05 23:38:46 +00001050 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001051 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001052
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001053
Eli Friedman962f5492010-06-02 19:35:46 +00001054 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1055 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001056 //
Eli Friedman962f5492010-06-02 19:35:46 +00001057 // FIXME: We really should do custom legalization for addition and
1058 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1059 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001060 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1061 // Add/Sub/Mul with overflow operations are custom lowered.
1062 MVT VT = IntVTs[i];
1063 setOperationAction(ISD::SADDO, VT, Custom);
1064 setOperationAction(ISD::UADDO, VT, Custom);
1065 setOperationAction(ISD::SSUBO, VT, Custom);
1066 setOperationAction(ISD::USUBO, VT, Custom);
1067 setOperationAction(ISD::SMULO, VT, Custom);
1068 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001069 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001070
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001071 // There are no 8-bit 3-address imul/mul instructions
1072 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1073 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001074
Evan Chengd54f2d52009-03-31 19:38:51 +00001075 if (!Subtarget->is64Bit()) {
1076 // These libcalls are not available in 32-bit.
1077 setLibcallName(RTLIB::SHL_I128, 0);
1078 setLibcallName(RTLIB::SRL_I128, 0);
1079 setLibcallName(RTLIB::SRA_I128, 0);
1080 }
1081
Evan Cheng206ee9d2006-07-07 08:33:52 +00001082 // We have target-specific dag combine patterns for the following nodes:
1083 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001084 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +00001085 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +00001086 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001087 setTargetDAGCombine(ISD::SHL);
1088 setTargetDAGCombine(ISD::SRA);
1089 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001090 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001091 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001092 setTargetDAGCombine(ISD::ADD);
1093 setTargetDAGCombine(ISD::SUB);
Chris Lattner149a4e52008-02-22 02:09:43 +00001094 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001095 setTargetDAGCombine(ISD::ZERO_EXTEND);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001096 if (Subtarget->is64Bit())
1097 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001098
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001099 computeRegisterProperties();
1100
Evan Cheng05219282011-01-06 06:52:41 +00001101 // On Darwin, -Os means optimize for size without hurting performance,
1102 // do not reduce the limit.
Dan Gohman87060f52008-06-30 21:00:56 +00001103 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001104 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
Evan Cheng255f20f2010-04-01 06:04:33 +00001105 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001106 maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1107 maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1108 maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Evan Chengfb8075d2008-02-28 00:43:03 +00001109 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +00001110 benefitFromCodePlacementOpt = true;
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001111
1112 setPrefFunctionAlignment(4);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001113}
1114
Scott Michel5b8f82e2008-03-10 15:42:14 +00001115
Owen Anderson825b72b2009-08-11 20:47:22 +00001116MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1117 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +00001118}
1119
1120
Evan Cheng29286502008-01-23 23:17:41 +00001121/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1122/// the desired ByVal argument alignment.
1123static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
1124 if (MaxAlign == 16)
1125 return;
1126 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1127 if (VTy->getBitWidth() == 128)
1128 MaxAlign = 16;
Evan Cheng29286502008-01-23 23:17:41 +00001129 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1130 unsigned EltAlign = 0;
1131 getMaxByValAlign(ATy->getElementType(), EltAlign);
1132 if (EltAlign > MaxAlign)
1133 MaxAlign = EltAlign;
1134 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
1135 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1136 unsigned EltAlign = 0;
1137 getMaxByValAlign(STy->getElementType(i), EltAlign);
1138 if (EltAlign > MaxAlign)
1139 MaxAlign = EltAlign;
1140 if (MaxAlign == 16)
1141 break;
1142 }
1143 }
1144 return;
1145}
1146
1147/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1148/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001149/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1150/// are at 4-byte boundaries.
Evan Cheng29286502008-01-23 23:17:41 +00001151unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001152 if (Subtarget->is64Bit()) {
1153 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001154 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001155 if (TyAlign > 8)
1156 return TyAlign;
1157 return 8;
1158 }
1159
Evan Cheng29286502008-01-23 23:17:41 +00001160 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001161 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001162 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001163 return Align;
1164}
Chris Lattner2b02a442007-02-25 08:29:00 +00001165
Evan Chengf0df0312008-05-15 08:39:06 +00001166/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001167/// and store operations as a result of memset, memcpy, and memmove
1168/// lowering. If DstAlign is zero that means it's safe to destination
1169/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1170/// means there isn't a need to check it against alignment requirement,
1171/// probably because the source does not need to be loaded. If
1172/// 'NonScalarIntSafe' is true, that means it's safe to return a
1173/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1174/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1175/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001176/// It returns EVT::Other if the type should be determined using generic
1177/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001178EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001179X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1180 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001181 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001182 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001183 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001184 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1185 // linux. This is because the stack realignment code can't handle certain
1186 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001187 const Function *F = MF.getFunction();
Evan Chenga5e13622011-01-07 19:35:30 +00001188 if (NonScalarIntSafe &&
1189 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001190 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001191 (Subtarget->isUnalignedMemAccessFast() ||
1192 ((DstAlign == 0 || DstAlign >= 16) &&
1193 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001194 Subtarget->getStackAlignment() >= 16) {
1195 if (Subtarget->hasSSE2())
1196 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001197 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001198 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001199 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001200 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001201 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001202 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001203 // Do not use f64 to lower memcpy if source is string constant. It's
1204 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001205 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001206 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001207 }
Evan Chengf0df0312008-05-15 08:39:06 +00001208 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001209 return MVT::i64;
1210 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001211}
1212
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001213/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1214/// current function. The returned value is a member of the
1215/// MachineJumpTableInfo::JTEntryKind enum.
1216unsigned X86TargetLowering::getJumpTableEncoding() const {
1217 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1218 // symbol.
1219 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1220 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001221 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001222
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001223 // Otherwise, use the normal jump table encoding heuristics.
1224 return TargetLowering::getJumpTableEncoding();
1225}
1226
Chris Lattnerc64daab2010-01-26 05:02:42 +00001227const MCExpr *
1228X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1229 const MachineBasicBlock *MBB,
1230 unsigned uid,MCContext &Ctx) const{
1231 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1232 Subtarget->isPICStyleGOT());
1233 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1234 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001235 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1236 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001237}
1238
Evan Chengcc415862007-11-09 01:32:10 +00001239/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1240/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001241SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001242 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001243 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001244 // This doesn't have DebugLoc associated with it, but is not really the
1245 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001246 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001247 return Table;
1248}
1249
Chris Lattner589c6f62010-01-26 06:28:43 +00001250/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1251/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1252/// MCExpr.
1253const MCExpr *X86TargetLowering::
1254getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1255 MCContext &Ctx) const {
1256 // X86-64 uses RIP relative addressing based on the jump table label.
1257 if (Subtarget->isPICStyleRIPRel())
1258 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1259
1260 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001261 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001262}
1263
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001264// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001265std::pair<const TargetRegisterClass*, uint8_t>
1266X86TargetLowering::findRepresentativeClass(EVT VT) const{
1267 const TargetRegisterClass *RRC = 0;
1268 uint8_t Cost = 1;
1269 switch (VT.getSimpleVT().SimpleTy) {
1270 default:
1271 return TargetLowering::findRepresentativeClass(VT);
1272 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1273 RRC = (Subtarget->is64Bit()
1274 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1275 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001276 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001277 RRC = X86::VR64RegisterClass;
1278 break;
1279 case MVT::f32: case MVT::f64:
1280 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1281 case MVT::v4f32: case MVT::v2f64:
1282 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1283 case MVT::v4f64:
1284 RRC = X86::VR128RegisterClass;
1285 break;
1286 }
1287 return std::make_pair(RRC, Cost);
1288}
1289
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001290bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1291 unsigned &Offset) const {
1292 if (!Subtarget->isTargetLinux())
1293 return false;
1294
1295 if (Subtarget->is64Bit()) {
1296 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1297 Offset = 0x28;
1298 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1299 AddressSpace = 256;
1300 else
1301 AddressSpace = 257;
1302 } else {
1303 // %gs:0x14 on i386
1304 Offset = 0x14;
1305 AddressSpace = 256;
1306 }
1307 return true;
1308}
1309
1310
Chris Lattner2b02a442007-02-25 08:29:00 +00001311//===----------------------------------------------------------------------===//
1312// Return Value Calling Convention Implementation
1313//===----------------------------------------------------------------------===//
1314
Chris Lattner59ed56b2007-02-28 04:55:35 +00001315#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001316
Michael J. Spencerec38de22010-10-10 22:04:20 +00001317bool
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001318X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001319 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001320 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001321 SmallVector<CCValAssign, 16> RVLocs;
1322 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001323 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001324 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001325}
1326
Dan Gohman98ca4f22009-08-05 01:29:28 +00001327SDValue
1328X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001329 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001330 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001331 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001332 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001333 MachineFunction &MF = DAG.getMachineFunction();
1334 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001335
Chris Lattner9774c912007-02-27 05:28:59 +00001336 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001337 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1338 RVLocs, *DAG.getContext());
1339 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001340
Evan Chengdcea1632010-02-04 02:40:39 +00001341 // Add the regs to the liveout set for the function.
1342 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1343 for (unsigned i = 0; i != RVLocs.size(); ++i)
1344 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1345 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001346
Dan Gohman475871a2008-07-27 21:46:04 +00001347 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001348
Dan Gohman475871a2008-07-27 21:46:04 +00001349 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001350 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1351 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001352 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1353 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001354
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001355 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001356 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1357 CCValAssign &VA = RVLocs[i];
1358 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001359 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001360 EVT ValVT = ValToCopy.getValueType();
1361
Dale Johannesenc4510512010-09-24 19:05:48 +00001362 // If this is x86-64, and we disabled SSE, we can't return FP values,
1363 // or SSE or MMX vectors.
1364 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1365 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001366 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001367 report_fatal_error("SSE register return with SSE disabled");
1368 }
1369 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1370 // llvm-gcc has never done it right and no one has noticed, so this
1371 // should be OK for now.
1372 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001373 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001374 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001375
Chris Lattner447ff682008-03-11 03:23:40 +00001376 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1377 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001378 if (VA.getLocReg() == X86::ST0 ||
1379 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001380 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1381 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001382 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001383 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001384 RetOps.push_back(ValToCopy);
1385 // Don't emit a copytoreg.
1386 continue;
1387 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001388
Evan Cheng242b38b2009-02-23 09:03:22 +00001389 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1390 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001391 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001392 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001393 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001394 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001395 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1396 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001397 // If we don't have SSE2 available, convert to v4f32 so the generated
1398 // register is legal.
1399 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001400 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001401 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001402 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001403 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001404
Dale Johannesendd64c412009-02-04 00:33:20 +00001405 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001406 Flag = Chain.getValue(1);
1407 }
Dan Gohman61a92132008-04-21 23:59:07 +00001408
1409 // The x86-64 ABI for returning structs by value requires that we copy
1410 // the sret argument into %rax for the return. We saved the argument into
1411 // a virtual register in the entry block, so now we copy the value out
1412 // and into %rax.
1413 if (Subtarget->is64Bit() &&
1414 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1415 MachineFunction &MF = DAG.getMachineFunction();
1416 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1417 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001418 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001419 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001420 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001421
Dale Johannesendd64c412009-02-04 00:33:20 +00001422 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001423 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001424
1425 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001426 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001427 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001428
Chris Lattner447ff682008-03-11 03:23:40 +00001429 RetOps[0] = Chain; // Update chain.
1430
1431 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001432 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001433 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001434
1435 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001436 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001437}
1438
Evan Cheng3d2125c2010-11-30 23:55:39 +00001439bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1440 if (N->getNumValues() != 1)
1441 return false;
1442 if (!N->hasNUsesOfValue(1, 0))
1443 return false;
1444
1445 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001446 if (Copy->getOpcode() != ISD::CopyToReg &&
1447 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001448 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001449
1450 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001451 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001452 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001453 if (UI->getOpcode() != X86ISD::RET_FLAG)
1454 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001455 HasRet = true;
1456 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001457
Evan Cheng1bf891a2010-12-01 22:59:46 +00001458 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001459}
1460
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001461EVT
1462X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001463 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001464 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001465 // TODO: Is this also valid on 32-bit?
1466 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001467 ReturnMVT = MVT::i8;
1468 else
1469 ReturnMVT = MVT::i32;
1470
1471 EVT MinVT = getRegisterType(Context, ReturnMVT);
1472 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001473}
1474
Dan Gohman98ca4f22009-08-05 01:29:28 +00001475/// LowerCallResult - Lower the result values of a call into the
1476/// appropriate copies out of appropriate physical registers.
1477///
1478SDValue
1479X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001480 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001481 const SmallVectorImpl<ISD::InputArg> &Ins,
1482 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001483 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001484
Chris Lattnere32bbf62007-02-28 07:09:55 +00001485 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001486 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001487 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001488 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +00001489 RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001490 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001491
Chris Lattner3085e152007-02-25 08:59:22 +00001492 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001493 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001494 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001495 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001496
Torok Edwin3f142c32009-02-01 18:15:56 +00001497 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001498 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001499 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001500 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001501 }
1502
Evan Cheng79fb3b42009-02-20 20:43:02 +00001503 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001504
1505 // If this is a call to a function that returns an fp value on the floating
1506 // point stack, we must guarantee the the value is popped from the stack, so
1507 // a CopyFromReg is not good enough - the copy instruction may be eliminated
1508 // if the return value is not used. We use the FpGET_ST0 instructions
1509 // instead.
1510 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1511 // If we prefer to use the value in xmm registers, copy it out as f80 and
1512 // use a truncate to move it from fp stack reg to xmm reg.
1513 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1514 bool isST0 = VA.getLocReg() == X86::ST0;
1515 unsigned Opc = 0;
1516 if (CopyVT == MVT::f32) Opc = isST0 ? X86::FpGET_ST0_32:X86::FpGET_ST1_32;
1517 if (CopyVT == MVT::f64) Opc = isST0 ? X86::FpGET_ST0_64:X86::FpGET_ST1_64;
1518 if (CopyVT == MVT::f80) Opc = isST0 ? X86::FpGET_ST0_80:X86::FpGET_ST1_80;
1519 SDValue Ops[] = { Chain, InFlag };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001520 Chain = SDValue(DAG.getMachineNode(Opc, dl, CopyVT, MVT::Other, MVT::Glue,
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001521 Ops, 2), 1);
1522 Val = Chain.getValue(0);
1523
1524 // Round the f80 to the right size, which also moves it to the appropriate
1525 // xmm register.
1526 if (CopyVT != VA.getValVT())
1527 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1528 // This truncation won't change the value.
1529 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001530 } else {
1531 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1532 CopyVT, InFlag).getValue(1);
1533 Val = Chain.getValue(0);
1534 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001535 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001536 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001537 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001538
Dan Gohman98ca4f22009-08-05 01:29:28 +00001539 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001540}
1541
1542
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001543//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001544// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001545//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001546// StdCall calling convention seems to be standard for many Windows' API
1547// routines and around. It differs from C calling convention just a little:
1548// callee should clean up the stack, not caller. Symbols should be also
1549// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001550// For info on fast calling convention see Fast Calling Convention (tail call)
1551// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001552
Dan Gohman98ca4f22009-08-05 01:29:28 +00001553/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001554/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001555static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1556 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001557 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001558
Dan Gohman98ca4f22009-08-05 01:29:28 +00001559 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001560}
1561
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001562/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001563/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001564static bool
1565ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1566 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001567 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001568
Dan Gohman98ca4f22009-08-05 01:29:28 +00001569 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001570}
1571
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001572/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1573/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001574/// the specific parameter attribute. The copy will be passed as a byval
1575/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001576static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001577CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001578 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1579 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001580 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001581
Dale Johannesendd64c412009-02-04 00:33:20 +00001582 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00001583 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001584 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001585}
1586
Chris Lattner29689432010-03-11 00:22:57 +00001587/// IsTailCallConvention - Return true if the calling convention is one that
1588/// supports tail call optimization.
1589static bool IsTailCallConvention(CallingConv::ID CC) {
1590 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1591}
1592
Evan Cheng485fafc2011-03-21 01:19:09 +00001593bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1594 if (!CI->isTailCall())
1595 return false;
1596
1597 CallSite CS(CI);
1598 CallingConv::ID CalleeCC = CS.getCallingConv();
1599 if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1600 return false;
1601
1602 return true;
1603}
1604
Evan Cheng0c439eb2010-01-27 00:07:07 +00001605/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1606/// a tailcall target by changing its ABI.
1607static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001608 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001609}
1610
Dan Gohman98ca4f22009-08-05 01:29:28 +00001611SDValue
1612X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001613 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001614 const SmallVectorImpl<ISD::InputArg> &Ins,
1615 DebugLoc dl, SelectionDAG &DAG,
1616 const CCValAssign &VA,
1617 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001618 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001619 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001620 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001621 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001622 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001623 EVT ValVT;
1624
1625 // If value is passed by pointer we have address passed instead of the value
1626 // itself.
1627 if (VA.getLocInfo() == CCValAssign::Indirect)
1628 ValVT = VA.getLocVT();
1629 else
1630 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001631
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001632 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001633 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001634 // In case of tail call optimization mark all arguments mutable. Since they
1635 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001636 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00001637 unsigned Bytes = Flags.getByValSize();
1638 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1639 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001640 return DAG.getFrameIndex(FI, getPointerTy());
1641 } else {
1642 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001643 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001644 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1645 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001646 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001647 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001648 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001649}
1650
Dan Gohman475871a2008-07-27 21:46:04 +00001651SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001652X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001653 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001654 bool isVarArg,
1655 const SmallVectorImpl<ISD::InputArg> &Ins,
1656 DebugLoc dl,
1657 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001658 SmallVectorImpl<SDValue> &InVals)
1659 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001660 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001661 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001662
Gordon Henriksen86737662008-01-05 16:56:59 +00001663 const Function* Fn = MF.getFunction();
1664 if (Fn->hasExternalLinkage() &&
1665 Subtarget->isTargetCygMing() &&
1666 Fn->getName() == "main")
1667 FuncInfo->setForceFramePointer(true);
1668
Evan Cheng1bc78042006-04-26 01:20:17 +00001669 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001670 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001671 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001672
Chris Lattner29689432010-03-11 00:22:57 +00001673 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1674 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001675
Chris Lattner638402b2007-02-28 07:00:42 +00001676 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001677 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001678 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1679 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001680
1681 // Allocate shadow area for Win64
1682 if (IsWin64) {
1683 CCInfo.AllocateStack(32, 8);
1684 }
1685
Duncan Sands45907662010-10-31 13:21:44 +00001686 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001687
Chris Lattnerf39f7712007-02-28 05:46:49 +00001688 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001689 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001690 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1691 CCValAssign &VA = ArgLocs[i];
1692 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1693 // places.
1694 assert(VA.getValNo() != LastVal &&
1695 "Don't support value assigned to multiple locs yet");
1696 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001697
Chris Lattnerf39f7712007-02-28 05:46:49 +00001698 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001699 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001700 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001701 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001702 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001703 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001704 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001705 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001706 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001707 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001708 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001709 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1710 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001711 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001712 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001713 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001714 RC = X86::VR64RegisterClass;
1715 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001716 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001717
Devang Patel68e6bee2011-02-21 23:21:26 +00001718 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001719 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001720
Chris Lattnerf39f7712007-02-28 05:46:49 +00001721 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1722 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1723 // right size.
1724 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001725 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001726 DAG.getValueType(VA.getValVT()));
1727 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001728 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001729 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001730 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001731 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001732
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001733 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001734 // Handle MMX values passed in XMM regs.
1735 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001736 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1737 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001738 } else
1739 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001740 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001741 } else {
1742 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001743 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001744 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001745
1746 // If value is passed via pointer - do a load.
1747 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001748 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1749 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001750
Dan Gohman98ca4f22009-08-05 01:29:28 +00001751 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001752 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001753
Dan Gohman61a92132008-04-21 23:59:07 +00001754 // The x86-64 ABI for returning structs by value requires that we copy
1755 // the sret argument into %rax for the return. Save the argument into
1756 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001757 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001758 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1759 unsigned Reg = FuncInfo->getSRetReturnReg();
1760 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001761 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001762 FuncInfo->setSRetReturnReg(Reg);
1763 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001764 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001765 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001766 }
1767
Chris Lattnerf39f7712007-02-28 05:46:49 +00001768 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001769 // Align stack specially for tail calls.
1770 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001771 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001772
Evan Cheng1bc78042006-04-26 01:20:17 +00001773 // If the function takes variable number of arguments, make a frame index for
1774 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001775 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001776 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1777 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001778 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001779 }
1780 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001781 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1782
1783 // FIXME: We should really autogenerate these arrays
1784 static const unsigned GPR64ArgRegsWin64[] = {
1785 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001786 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001787 static const unsigned GPR64ArgRegs64Bit[] = {
1788 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1789 };
1790 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001791 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1792 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1793 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001794 const unsigned *GPR64ArgRegs;
1795 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001796
1797 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001798 // The XMM registers which might contain var arg parameters are shadowed
1799 // in their paired GPR. So we only need to save the GPR to their home
1800 // slots.
1801 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001802 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001803 } else {
1804 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1805 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001806
1807 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001808 }
1809 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1810 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001811
Devang Patel578efa92009-06-05 21:57:13 +00001812 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001813 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001814 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001815 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001816 "SSE register cannot be used when SSE is disabled!");
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001817 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001818 // Kernel mode asks for SSE to be disabled, so don't push them
1819 // on the stack.
1820 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001821
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001822 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001823 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001824 // Get to the caller-allocated home save location. Add 8 to account
1825 // for the return address.
1826 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001827 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001828 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001829 // Fixup to set vararg frame on shadow area (4 x i64).
1830 if (NumIntRegs < 4)
1831 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001832 } else {
1833 // For X86-64, if there are vararg parameters that are passed via
1834 // registers, then we must store them to their spots on the stack so they
1835 // may be loaded by deferencing the result of va_next.
1836 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1837 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1838 FuncInfo->setRegSaveFrameIndex(
1839 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001840 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001841 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001842
Gordon Henriksen86737662008-01-05 16:56:59 +00001843 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001844 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001845 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1846 getPointerTy());
1847 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001848 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001849 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1850 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001851 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001852 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001853 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001854 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001855 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001856 MachinePointerInfo::getFixedStack(
1857 FuncInfo->getRegSaveFrameIndex(), Offset),
1858 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001859 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001860 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001861 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001862
Dan Gohmanface41a2009-08-16 21:24:25 +00001863 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1864 // Now store the XMM (fp + vector) parameter registers.
1865 SmallVector<SDValue, 11> SaveXMMOps;
1866 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001867
Devang Patel68e6bee2011-02-21 23:21:26 +00001868 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001869 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1870 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001871
Dan Gohman1e93df62010-04-17 14:41:14 +00001872 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1873 FuncInfo->getRegSaveFrameIndex()));
1874 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1875 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001876
Dan Gohmanface41a2009-08-16 21:24:25 +00001877 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001878 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001879 X86::VR128RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001880 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1881 SaveXMMOps.push_back(Val);
1882 }
1883 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1884 MVT::Other,
1885 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001886 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001887
1888 if (!MemOps.empty())
1889 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1890 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001891 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001892 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001893
Gordon Henriksen86737662008-01-05 16:56:59 +00001894 // Some CCs need callee pop.
Dan Gohman4d3d6e12010-05-27 18:43:40 +00001895 if (Subtarget->IsCalleePop(isVarArg, CallConv)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001896 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001897 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001898 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001899 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001900 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001901 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001902 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001903
Gordon Henriksen86737662008-01-05 16:56:59 +00001904 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001905 // RegSaveFrameIndex is X86-64 only.
1906 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001907 if (CallConv == CallingConv::X86_FastCall ||
1908 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001909 // fastcc functions can't have varargs.
1910 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001911 }
Evan Cheng25caf632006-05-23 21:06:34 +00001912
Dan Gohman98ca4f22009-08-05 01:29:28 +00001913 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001914}
1915
Dan Gohman475871a2008-07-27 21:46:04 +00001916SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001917X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1918 SDValue StackPtr, SDValue Arg,
1919 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001920 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001921 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001922 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001923 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001924 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001925 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001926 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001927
1928 return DAG.getStore(Chain, dl, Arg, PtrOff,
1929 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001930 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001931}
1932
Bill Wendling64e87322009-01-16 19:25:27 +00001933/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001934/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001935SDValue
1936X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001937 SDValue &OutRetAddr, SDValue Chain,
1938 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001939 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001940 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001941 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001942 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001943
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001944 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001945 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1946 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001947 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001948}
1949
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001950/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001951/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001952static SDValue
1953EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001954 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001955 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001956 // Store the return address to the appropriate stack slot.
1957 if (!FPDiff) return Chain;
1958 // Calculate the new stack slot for the return address.
1959 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001960 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001961 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001962 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001963 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001964 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001965 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001966 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001967 return Chain;
1968}
1969
Dan Gohman98ca4f22009-08-05 01:29:28 +00001970SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001971X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001972 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001973 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001974 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001975 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001976 const SmallVectorImpl<ISD::InputArg> &Ins,
1977 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001978 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001979 MachineFunction &MF = DAG.getMachineFunction();
1980 bool Is64Bit = Subtarget->is64Bit();
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00001981 bool IsWin64 = Subtarget->isTargetWin64();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001982 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001983 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001984
Evan Cheng5f941932010-02-05 02:21:12 +00001985 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001986 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001987 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1988 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001989 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001990
1991 // Sibcalls are automatically detected tailcalls which do not require
1992 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001993 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001994 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001995
1996 if (isTailCall)
1997 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001998 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001999
Chris Lattner29689432010-03-11 00:22:57 +00002000 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2001 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002002
Chris Lattner638402b2007-02-28 07:00:42 +00002003 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002004 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002005 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
2006 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002007
2008 // Allocate shadow area for Win64
2009 if (IsWin64) {
2010 CCInfo.AllocateStack(32, 8);
2011 }
2012
Duncan Sands45907662010-10-31 13:21:44 +00002013 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002014
Chris Lattner423c5f42007-02-28 05:31:48 +00002015 // Get a count of how many bytes are to be pushed on the stack.
2016 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002017 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002018 // This is a sibcall. The memory operands are available in caller's
2019 // own caller's stack.
2020 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00002021 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002022 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002023
Gordon Henriksen86737662008-01-05 16:56:59 +00002024 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002025 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002026 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00002027 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00002028 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
2029 FPDiff = NumBytesCallerPushed - NumBytes;
2030
2031 // Set the delta of movement of the returnaddr stackslot.
2032 // But only set if delta is greater than previous delta.
2033 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2034 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2035 }
2036
Evan Chengf22f9b32010-02-06 03:28:46 +00002037 if (!IsSibcall)
2038 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002039
Dan Gohman475871a2008-07-27 21:46:04 +00002040 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002041 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002042 if (isTailCall && FPDiff)
2043 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2044 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002045
Dan Gohman475871a2008-07-27 21:46:04 +00002046 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2047 SmallVector<SDValue, 8> MemOpChains;
2048 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002049
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002050 // Walk the register/memloc assignments, inserting copies/loads. In the case
2051 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00002052 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2053 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002054 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002055 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002056 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002057 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002058
Chris Lattner423c5f42007-02-28 05:31:48 +00002059 // Promote the value if needed.
2060 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002061 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002062 case CCValAssign::Full: break;
2063 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002064 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002065 break;
2066 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002067 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002068 break;
2069 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002070 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2071 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002072 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002073 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2074 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002075 } else
2076 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2077 break;
2078 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002079 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002080 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002081 case CCValAssign::Indirect: {
2082 // Store the argument.
2083 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002084 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002085 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002086 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002087 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002088 Arg = SpillSlot;
2089 break;
2090 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002091 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002092
Chris Lattner423c5f42007-02-28 05:31:48 +00002093 if (VA.isRegLoc()) {
Stuart Hastingsaa4e6af2011-05-26 02:44:56 +00002094 if (isByVal) {
2095 if (CCInfo.isFirstByValRegValid()) {
2096 EVT PtrVT = DAG.getTargetLoweringInfo().getPointerTy();
2097 unsigned reg = CCInfo.getFirstByValReg();
2098 SDValue Load = DAG.getLoad(PtrVT, dl, Chain, Arg,
2099 MachinePointerInfo(),
2100 false, false, 0);
2101 MemOpChains.push_back(Load.getValue(1));
2102 RegsToPass.push_back(std::make_pair(reg, Load));
2103 if (Flags.getByValSize() > 8) {
2104 SDValue Const8 = DAG.getConstant(8, MVT::i32);
2105 SDValue AddArg = DAG.getNode(ISD::ADD, dl, PtrVT, Arg, Const8);
2106 SDValue Load2 = DAG.getLoad(PtrVT, dl, Chain, AddArg,
2107 MachinePointerInfo(),
2108 false, false, 0);
2109 MemOpChains.push_back(Load.getValue(1));
2110 RegsToPass.push_back(std::make_pair(reg+1, Load));
2111 }
2112 CCInfo.clearFirstByValReg();
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002113 }
Stuart Hastingsaa4e6af2011-05-26 02:44:56 +00002114 } else {
2115 // Usual case:
2116 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2117 if (isVarArg && IsWin64) {
2118 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2119 // shadow reg if callee is a varargs function.
2120 unsigned ShadowReg = 0;
2121 switch (VA.getLocReg()) {
2122 case X86::XMM0: ShadowReg = X86::RCX; break;
2123 case X86::XMM1: ShadowReg = X86::RDX; break;
2124 case X86::XMM2: ShadowReg = X86::R8; break;
2125 case X86::XMM3: ShadowReg = X86::R9; break;
2126 }
2127 if (ShadowReg)
2128 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2129 }
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002130 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002131 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Stuart Hastingsaa4e6af2011-05-26 02:44:56 +00002132 if (isByVal) { // In memory.
2133 // ??
2134 }
Evan Cheng5f941932010-02-05 02:21:12 +00002135 assert(VA.isMemLoc());
2136 if (StackPtr.getNode() == 0)
2137 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2138 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2139 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002140 }
Stuart Hastingsaa4e6af2011-05-26 02:44:56 +00002141 } // end for (all register/memloc assignments)
Scott Michelfdc40a02009-02-17 22:15:04 +00002142
Evan Cheng32fe1032006-05-25 00:59:30 +00002143 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002144 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002145 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002146
Evan Cheng347d5f72006-04-28 21:29:37 +00002147 // Build a sequence of copy-to-reg nodes chained together with token chain
2148 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002149 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002150 // Tail call byval lowering might overwrite argument registers so in case of
2151 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002152 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002153 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002154 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002155 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002156 InFlag = Chain.getValue(1);
2157 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002158
Chris Lattner88e1fd52009-07-09 04:24:46 +00002159 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002160 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2161 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002162 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002163 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2164 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002165 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002166 InFlag);
2167 InFlag = Chain.getValue(1);
2168 } else {
2169 // If we are tail calling and generating PIC/GOT style code load the
2170 // address of the callee into ECX. The value in ecx is used as target of
2171 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2172 // for tail calls on PIC/GOT architectures. Normally we would just put the
2173 // address of GOT into ebx and then call target@PLT. But for tail calls
2174 // ebx would be restored (since ebx is callee saved) before jumping to the
2175 // target@PLT.
2176
2177 // Note: The actual moving to ECX is done further down.
2178 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2179 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2180 !G->getGlobal()->hasProtectedVisibility())
2181 Callee = LowerGlobalAddress(Callee, DAG);
2182 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002183 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002184 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002185 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002186
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002187 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002188 // From AMD64 ABI document:
2189 // For calls that may call functions that use varargs or stdargs
2190 // (prototype-less calls or calls to functions containing ellipsis (...) in
2191 // the declaration) %al is used as hidden argument to specify the number
2192 // of SSE registers used. The contents of %al do not need to match exactly
2193 // the number of registers, but must be an ubound on the number of SSE
2194 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002195
Gordon Henriksen86737662008-01-05 16:56:59 +00002196 // Count the number of XMM registers allocated.
2197 static const unsigned XMMArgRegs[] = {
2198 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2199 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2200 };
2201 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002202 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002203 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002204
Dale Johannesendd64c412009-02-04 00:33:20 +00002205 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002206 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002207 InFlag = Chain.getValue(1);
2208 }
2209
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002210
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002211 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002212 if (isTailCall) {
2213 // Force all the incoming stack arguments to be loaded from the stack
2214 // before any new outgoing arguments are stored to the stack, because the
2215 // outgoing stack slots may alias the incoming argument stack slots, and
2216 // the alias isn't otherwise explicit. This is slightly more conservative
2217 // than necessary, because it means that each store effectively depends
2218 // on every argument instead of just those arguments it would clobber.
2219 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2220
Dan Gohman475871a2008-07-27 21:46:04 +00002221 SmallVector<SDValue, 8> MemOpChains2;
2222 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002223 int FI = 0;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002224 // Do not flag preceding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002225 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002226 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002227 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2228 CCValAssign &VA = ArgLocs[i];
2229 if (VA.isRegLoc())
2230 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002231 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002232 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002233 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002234 // Create frame index.
2235 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002236 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002237 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002238 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002239
Duncan Sands276dcbd2008-03-21 09:14:45 +00002240 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002241 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002242 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002243 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002244 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002245 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002246 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002247
Dan Gohman98ca4f22009-08-05 01:29:28 +00002248 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2249 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002250 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002251 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002252 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002253 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002254 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002255 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002256 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002257 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002258 }
2259 }
2260
2261 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002262 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002263 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002264
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002265 // Copy arguments to their registers.
2266 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002267 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002268 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002269 InFlag = Chain.getValue(1);
2270 }
Dan Gohman475871a2008-07-27 21:46:04 +00002271 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002272
Gordon Henriksen86737662008-01-05 16:56:59 +00002273 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002274 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002275 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002276 }
2277
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002278 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2279 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2280 // In the 64-bit large code model, we have to make all calls
2281 // through a register, since the call instruction's 32-bit
2282 // pc-relative offset may not be large enough to hold the whole
2283 // address.
2284 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002285 // If the callee is a GlobalAddress node (quite common, every direct call
2286 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2287 // it.
2288
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002289 // We should use extra load for direct calls to dllimported functions in
2290 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002291 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002292 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002293 unsigned char OpFlags = 0;
Eric Christopherfd179292009-08-27 18:07:15 +00002294
Chris Lattner48a7d022009-07-09 05:02:21 +00002295 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2296 // external symbols most go through the PLT in PIC mode. If the symbol
2297 // has hidden or protected visibility, or if it is static or local, then
2298 // we don't need to use the PLT - we can directly call it.
2299 if (Subtarget->isTargetELF() &&
2300 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002301 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002302 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002303 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002304 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002305 (!Subtarget->getTargetTriple().isMacOSX() ||
2306 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002307 // PC-relative references to external symbols should go through $stub,
2308 // unless we're building with the leopard linker or later, which
2309 // automatically synthesizes these stubs.
2310 OpFlags = X86II::MO_DARWIN_STUB;
2311 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002312
Devang Patel0d881da2010-07-06 22:08:15 +00002313 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002314 G->getOffset(), OpFlags);
2315 }
Bill Wendling056292f2008-09-16 21:48:12 +00002316 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002317 unsigned char OpFlags = 0;
2318
Evan Cheng1bf891a2010-12-01 22:59:46 +00002319 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2320 // external symbols should go through the PLT.
2321 if (Subtarget->isTargetELF() &&
2322 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2323 OpFlags = X86II::MO_PLT;
2324 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002325 (!Subtarget->getTargetTriple().isMacOSX() ||
2326 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002327 // PC-relative references to external symbols should go through $stub,
2328 // unless we're building with the leopard linker or later, which
2329 // automatically synthesizes these stubs.
2330 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002331 }
Eric Christopherfd179292009-08-27 18:07:15 +00002332
Chris Lattner48a7d022009-07-09 05:02:21 +00002333 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2334 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002335 }
2336
Chris Lattnerd96d0722007-02-25 06:40:16 +00002337 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002338 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002339 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002340
Evan Chengf22f9b32010-02-06 03:28:46 +00002341 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002342 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2343 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002344 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002345 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002346
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002347 Ops.push_back(Chain);
2348 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002349
Dan Gohman98ca4f22009-08-05 01:29:28 +00002350 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002351 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002352
Gordon Henriksen86737662008-01-05 16:56:59 +00002353 // Add argument registers to the end of the list so that they are known live
2354 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002355 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2356 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2357 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002358
Evan Cheng586ccac2008-03-18 23:36:35 +00002359 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002360 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002361 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2362
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002363 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002364 if (Is64Bit && isVarArg && !IsWin64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002365 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002366
Gabor Greifba36cb52008-08-28 21:40:38 +00002367 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002368 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002369
Dan Gohman98ca4f22009-08-05 01:29:28 +00002370 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002371 // We used to do:
2372 //// If this is the first return lowered for this function, add the regs
2373 //// to the liveout set for the function.
2374 // This isn't right, although it's probably harmless on x86; liveouts
2375 // should be computed from returns not tail calls. Consider a void
2376 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002377 return DAG.getNode(X86ISD::TC_RETURN, dl,
2378 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002379 }
2380
Dale Johannesenace16102009-02-03 19:33:06 +00002381 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002382 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002383
Chris Lattner2d297092006-05-23 18:50:38 +00002384 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002385 unsigned NumBytesForCalleeToPush;
Dan Gohman4d3d6e12010-05-27 18:43:40 +00002386 if (Subtarget->IsCalleePop(isVarArg, CallConv))
Gordon Henriksen86737662008-01-05 16:56:59 +00002387 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002388 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002389 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002390 // pops the hidden struct pointer, so we have to push it back.
2391 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002392 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002393 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002394 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002395
Gordon Henriksenae636f82008-01-03 16:47:34 +00002396 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002397 if (!IsSibcall) {
2398 Chain = DAG.getCALLSEQ_END(Chain,
2399 DAG.getIntPtrConstant(NumBytes, true),
2400 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2401 true),
2402 InFlag);
2403 InFlag = Chain.getValue(1);
2404 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002405
Chris Lattner3085e152007-02-25 08:59:22 +00002406 // Handle result values, copying them out of physregs into vregs that we
2407 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002408 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2409 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002410}
2411
Evan Cheng25ab6902006-09-08 06:48:29 +00002412
2413//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002414// Fast Calling Convention (tail call) implementation
2415//===----------------------------------------------------------------------===//
2416
2417// Like std call, callee cleans arguments, convention except that ECX is
2418// reserved for storing the tail called function address. Only 2 registers are
2419// free for argument passing (inreg). Tail call optimization is performed
2420// provided:
2421// * tailcallopt is enabled
2422// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002423// On X86_64 architecture with GOT-style position independent code only local
2424// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002425// To keep the stack aligned according to platform abi the function
2426// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2427// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002428// If a tail called function callee has more arguments than the caller the
2429// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002430// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002431// original REtADDR, but before the saved framepointer or the spilled registers
2432// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2433// stack layout:
2434// arg1
2435// arg2
2436// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002437// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002438// move area ]
2439// (possible EBP)
2440// ESI
2441// EDI
2442// local1 ..
2443
2444/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2445/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002446unsigned
2447X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2448 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002449 MachineFunction &MF = DAG.getMachineFunction();
2450 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002451 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002452 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002453 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002454 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002455 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002456 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2457 // Number smaller than 12 so just add the difference.
2458 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2459 } else {
2460 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002461 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002462 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002463 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002464 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002465}
2466
Stuart Hastingsaa4e6af2011-05-26 02:44:56 +00002467/// HandleByVal - Every parameter *after* a byval parameter is passed
2468/// on the stack. Remember the next parameter register to allocate,
2469/// and then confiscate the rest of the parameter registers to insure
2470/// this.
2471void
2472llvm::X86TargetLowering::HandleByVal(CCState *State, unsigned &size) const {
2473 if (!Subtarget->is64Bit())
2474 return;
2475
2476 if (size == 0 || size > 16)
2477 return;
2478
2479 int RegsRequired = (size > 8) ? 2 : 1;
2480
2481 static const unsigned GPR64ArgRegs64Bit[] = {
2482 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
2483 };
2484 unsigned NextRegToAlloc = State->getFirstUnallocated(GPR64ArgRegs64Bit, 6);
2485
2486 // If insufficient registers available
2487 if (NextRegToAlloc + RegsRequired > 6)
2488 return;
2489
2490 size = 0; // Tell caller not to allocate stack.
2491
2492 unsigned reg = State->AllocateReg(GPR64ArgRegs64Bit, 6);
2493 State->setFirstByValReg(reg);
2494
2495 if (RegsRequired == 2) {
2496 State->AllocateReg(GPR64ArgRegs64Bit, 6);
2497 }
2498}
2499
Evan Cheng5f941932010-02-05 02:21:12 +00002500/// MatchingStackOffset - Return true if the given stack call argument is
2501/// already available in the same position (relatively) of the caller's
2502/// incoming argument stack.
2503static
2504bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2505 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2506 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002507 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2508 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002509 if (Arg.getOpcode() == ISD::CopyFromReg) {
2510 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002511 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002512 return false;
2513 MachineInstr *Def = MRI->getVRegDef(VR);
2514 if (!Def)
2515 return false;
2516 if (!Flags.isByVal()) {
2517 if (!TII->isLoadFromStackSlot(Def, FI))
2518 return false;
2519 } else {
2520 unsigned Opcode = Def->getOpcode();
2521 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2522 Def->getOperand(1).isFI()) {
2523 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002524 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002525 } else
2526 return false;
2527 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002528 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2529 if (Flags.isByVal())
2530 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002531 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002532 // define @foo(%struct.X* %A) {
2533 // tail call @bar(%struct.X* byval %A)
2534 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002535 return false;
2536 SDValue Ptr = Ld->getBasePtr();
2537 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2538 if (!FINode)
2539 return false;
2540 FI = FINode->getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002541 } else
2542 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002543
Evan Cheng4cae1332010-03-05 08:38:04 +00002544 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002545 if (!MFI->isFixedObjectIndex(FI))
2546 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002547 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002548}
2549
Dan Gohman98ca4f22009-08-05 01:29:28 +00002550/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2551/// for tail call optimization. Targets which want to do tail call
2552/// optimization should implement this function.
2553bool
2554X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002555 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002556 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002557 bool isCalleeStructRet,
2558 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002559 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002560 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002561 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002562 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002563 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002564 CalleeCC != CallingConv::C)
2565 return false;
2566
Evan Cheng7096ae42010-01-29 06:45:59 +00002567 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002568 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002569 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002570 CallingConv::ID CallerCC = CallerF->getCallingConv();
2571 bool CCMatch = CallerCC == CalleeCC;
2572
Dan Gohman1797ed52010-02-08 20:27:50 +00002573 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002574 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002575 return true;
2576 return false;
2577 }
2578
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002579 // Look for obvious safe cases to perform tail call optimization that do not
2580 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002581
Evan Cheng2c12cb42010-03-26 16:26:03 +00002582 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2583 // emit a special epilogue.
2584 if (RegInfo->needsStackRealignment(MF))
2585 return false;
2586
Evan Chenga375d472010-03-15 18:54:48 +00002587 // Also avoid sibcall optimization if either caller or callee uses struct
2588 // return semantics.
2589 if (isCalleeStructRet || isCallerStructRet)
2590 return false;
2591
Chad Rosier871f6642011-05-18 19:59:50 +00002592 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00002593 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00002594 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00002595
2596 // Optimizing for varargs on Win64 is unlikely to be safe without
2597 // additional testing.
2598 if (Subtarget->isTargetWin64())
2599 return false;
2600
Chad Rosier871f6642011-05-18 19:59:50 +00002601 SmallVector<CCValAssign, 16> ArgLocs;
2602 CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(),
2603 ArgLocs, *DAG.getContext());
2604
Chad Rosier871f6642011-05-18 19:59:50 +00002605 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2606 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2607 if (!ArgLocs[i].isRegLoc())
2608 return false;
2609 }
2610
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002611 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2612 // Therefore if it's not used by the call it is not safe to optimize this into
2613 // a sibcall.
2614 bool Unused = false;
2615 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2616 if (!Ins[i].Used) {
2617 Unused = true;
2618 break;
2619 }
2620 }
2621 if (Unused) {
2622 SmallVector<CCValAssign, 16> RVLocs;
2623 CCState CCInfo(CalleeCC, false, getTargetMachine(),
2624 RVLocs, *DAG.getContext());
2625 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002626 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002627 CCValAssign &VA = RVLocs[i];
2628 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2629 return false;
2630 }
2631 }
2632
Evan Cheng13617962010-04-30 01:12:32 +00002633 // If the calling conventions do not match, then we'd better make sure the
2634 // results are returned in the same way as what the caller expects.
2635 if (!CCMatch) {
2636 SmallVector<CCValAssign, 16> RVLocs1;
2637 CCState CCInfo1(CalleeCC, false, getTargetMachine(),
2638 RVLocs1, *DAG.getContext());
2639 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2640
2641 SmallVector<CCValAssign, 16> RVLocs2;
2642 CCState CCInfo2(CallerCC, false, getTargetMachine(),
2643 RVLocs2, *DAG.getContext());
2644 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2645
2646 if (RVLocs1.size() != RVLocs2.size())
2647 return false;
2648 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2649 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2650 return false;
2651 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2652 return false;
2653 if (RVLocs1[i].isRegLoc()) {
2654 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2655 return false;
2656 } else {
2657 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2658 return false;
2659 }
2660 }
2661 }
2662
Evan Chenga6bff982010-01-30 01:22:00 +00002663 // If the callee takes no arguments then go on to check the results of the
2664 // call.
2665 if (!Outs.empty()) {
2666 // Check if stack adjustment is needed. For now, do not do this if any
2667 // argument is passed on the stack.
2668 SmallVector<CCValAssign, 16> ArgLocs;
2669 CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(),
2670 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002671
2672 // Allocate shadow area for Win64
2673 if (Subtarget->isTargetWin64()) {
2674 CCInfo.AllocateStack(32, 8);
2675 }
2676
Duncan Sands45907662010-10-31 13:21:44 +00002677 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00002678 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00002679 MachineFunction &MF = DAG.getMachineFunction();
2680 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2681 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00002682
2683 // Check if the arguments are already laid out in the right way as
2684 // the caller's fixed stack objects.
2685 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002686 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2687 const X86InstrInfo *TII =
2688 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002689 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2690 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002691 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002692 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002693 if (VA.getLocInfo() == CCValAssign::Indirect)
2694 return false;
2695 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002696 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2697 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002698 return false;
2699 }
2700 }
2701 }
Evan Cheng9c044672010-05-29 01:35:22 +00002702
2703 // If the tailcall address may be in a register, then make sure it's
2704 // possible to register allocate for it. In 32-bit, the call address can
2705 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002706 // callee-saved registers are restored. These happen to be the same
2707 // registers used to pass 'inreg' arguments so watch out for those.
2708 if (!Subtarget->is64Bit() &&
2709 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002710 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002711 unsigned NumInRegs = 0;
2712 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2713 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002714 if (!VA.isRegLoc())
2715 continue;
2716 unsigned Reg = VA.getLocReg();
2717 switch (Reg) {
2718 default: break;
2719 case X86::EAX: case X86::EDX: case X86::ECX:
2720 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002721 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002722 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002723 }
2724 }
2725 }
Evan Chenga6bff982010-01-30 01:22:00 +00002726 }
Evan Chengb1712452010-01-27 06:25:16 +00002727
Dale Johannesend155d7e2010-10-25 22:17:05 +00002728 // An stdcall caller is expected to clean up its arguments; the callee
Dale Johannesen0e034562010-11-12 00:43:18 +00002729 // isn't going to do that.
Dale Johannesend155d7e2010-10-25 22:17:05 +00002730 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2731 return false;
2732
Evan Cheng86809cc2010-02-03 03:28:02 +00002733 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002734}
2735
Dan Gohman3df24e62008-09-03 23:12:08 +00002736FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002737X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2738 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002739}
2740
2741
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002742//===----------------------------------------------------------------------===//
2743// Other Lowering Hooks
2744//===----------------------------------------------------------------------===//
2745
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002746static bool MayFoldLoad(SDValue Op) {
2747 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2748}
2749
2750static bool MayFoldIntoStore(SDValue Op) {
2751 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2752}
2753
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002754static bool isTargetShuffle(unsigned Opcode) {
2755 switch(Opcode) {
2756 default: return false;
2757 case X86ISD::PSHUFD:
2758 case X86ISD::PSHUFHW:
2759 case X86ISD::PSHUFLW:
2760 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002761 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002762 case X86ISD::SHUFPS:
2763 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002764 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002765 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002766 case X86ISD::MOVLPS:
2767 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002768 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002769 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002770 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002771 case X86ISD::MOVSS:
2772 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002773 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002774 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002775 case X86ISD::VUNPCKLPS:
2776 case X86ISD::VUNPCKLPD:
2777 case X86ISD::VUNPCKLPSY:
2778 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002779 case X86ISD::PUNPCKLWD:
2780 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002781 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002782 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002783 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002784 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002785 case X86ISD::PUNPCKHWD:
2786 case X86ISD::PUNPCKHBW:
2787 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002788 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002789 return true;
2790 }
2791 return false;
2792}
2793
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002794static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002795 SDValue V1, SelectionDAG &DAG) {
2796 switch(Opc) {
2797 default: llvm_unreachable("Unknown x86 shuffle node");
2798 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002799 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002800 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002801 return DAG.getNode(Opc, dl, VT, V1);
2802 }
2803
2804 return SDValue();
2805}
2806
2807static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002808 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002809 switch(Opc) {
2810 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002811 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002812 case X86ISD::PSHUFHW:
2813 case X86ISD::PSHUFLW:
2814 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2815 }
2816
2817 return SDValue();
2818}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002819
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002820static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2821 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2822 switch(Opc) {
2823 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002824 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002825 case X86ISD::SHUFPD:
2826 case X86ISD::SHUFPS:
2827 return DAG.getNode(Opc, dl, VT, V1, V2,
2828 DAG.getConstant(TargetMask, MVT::i8));
2829 }
2830 return SDValue();
2831}
2832
2833static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2834 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2835 switch(Opc) {
2836 default: llvm_unreachable("Unknown x86 shuffle node");
2837 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002838 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002839 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002840 case X86ISD::MOVLPS:
2841 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002842 case X86ISD::MOVSS:
2843 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002844 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002845 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002846 case X86ISD::VUNPCKLPS:
2847 case X86ISD::VUNPCKLPD:
2848 case X86ISD::VUNPCKLPSY:
2849 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002850 case X86ISD::PUNPCKLWD:
2851 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002852 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002853 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002854 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002855 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002856 case X86ISD::PUNPCKHWD:
2857 case X86ISD::PUNPCKHBW:
2858 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002859 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002860 return DAG.getNode(Opc, dl, VT, V1, V2);
2861 }
2862 return SDValue();
2863}
2864
Dan Gohmand858e902010-04-17 15:26:15 +00002865SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002866 MachineFunction &MF = DAG.getMachineFunction();
2867 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2868 int ReturnAddrIndex = FuncInfo->getRAIndex();
2869
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002870 if (ReturnAddrIndex == 0) {
2871 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002872 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002873 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002874 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002875 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002876 }
2877
Evan Cheng25ab6902006-09-08 06:48:29 +00002878 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002879}
2880
2881
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002882bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2883 bool hasSymbolicDisplacement) {
2884 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002885 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002886 return false;
2887
2888 // If we don't have a symbolic displacement - we don't have any extra
2889 // restrictions.
2890 if (!hasSymbolicDisplacement)
2891 return true;
2892
2893 // FIXME: Some tweaks might be needed for medium code model.
2894 if (M != CodeModel::Small && M != CodeModel::Kernel)
2895 return false;
2896
2897 // For small code model we assume that latest object is 16MB before end of 31
2898 // bits boundary. We may also accept pretty large negative constants knowing
2899 // that all objects are in the positive half of address space.
2900 if (M == CodeModel::Small && Offset < 16*1024*1024)
2901 return true;
2902
2903 // For kernel code model we know that all object resist in the negative half
2904 // of 32bits address space. We may not accept negative offsets, since they may
2905 // be just off and we may accept pretty large positive ones.
2906 if (M == CodeModel::Kernel && Offset > 0)
2907 return true;
2908
2909 return false;
2910}
2911
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002912/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2913/// specific condition code, returning the condition code and the LHS/RHS of the
2914/// comparison to make.
2915static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2916 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002917 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002918 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2919 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2920 // X > -1 -> X == 0, jump !sign.
2921 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002922 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002923 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2924 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002925 return X86::COND_S;
Andrew Trickf6c39412011-03-23 23:11:02 +00002926 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002927 // X < 1 -> X <= 0
2928 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002929 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002930 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002931 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002932
Evan Chengd9558e02006-01-06 00:43:03 +00002933 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002934 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002935 case ISD::SETEQ: return X86::COND_E;
2936 case ISD::SETGT: return X86::COND_G;
2937 case ISD::SETGE: return X86::COND_GE;
2938 case ISD::SETLT: return X86::COND_L;
2939 case ISD::SETLE: return X86::COND_LE;
2940 case ISD::SETNE: return X86::COND_NE;
2941 case ISD::SETULT: return X86::COND_B;
2942 case ISD::SETUGT: return X86::COND_A;
2943 case ISD::SETULE: return X86::COND_BE;
2944 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002945 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002946 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002947
Chris Lattner4c78e022008-12-23 23:42:27 +00002948 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002949
Chris Lattner4c78e022008-12-23 23:42:27 +00002950 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00002951 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
2952 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00002953 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2954 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002955 }
2956
Chris Lattner4c78e022008-12-23 23:42:27 +00002957 switch (SetCCOpcode) {
2958 default: break;
2959 case ISD::SETOLT:
2960 case ISD::SETOLE:
2961 case ISD::SETUGT:
2962 case ISD::SETUGE:
2963 std::swap(LHS, RHS);
2964 break;
2965 }
2966
2967 // On a floating point condition, the flags are set as follows:
2968 // ZF PF CF op
2969 // 0 | 0 | 0 | X > Y
2970 // 0 | 0 | 1 | X < Y
2971 // 1 | 0 | 0 | X == Y
2972 // 1 | 1 | 1 | unordered
2973 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002974 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002975 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002976 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002977 case ISD::SETOLT: // flipped
2978 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002979 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002980 case ISD::SETOLE: // flipped
2981 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002982 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002983 case ISD::SETUGT: // flipped
2984 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002985 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002986 case ISD::SETUGE: // flipped
2987 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002988 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002989 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002990 case ISD::SETNE: return X86::COND_NE;
2991 case ISD::SETUO: return X86::COND_P;
2992 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002993 case ISD::SETOEQ:
2994 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002995 }
Evan Chengd9558e02006-01-06 00:43:03 +00002996}
2997
Evan Cheng4a460802006-01-11 00:33:36 +00002998/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2999/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00003000/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00003001static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00003002 switch (X86CC) {
3003 default:
3004 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003005 case X86::COND_B:
3006 case X86::COND_BE:
3007 case X86::COND_E:
3008 case X86::COND_P:
3009 case X86::COND_A:
3010 case X86::COND_AE:
3011 case X86::COND_NE:
3012 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003013 return true;
3014 }
3015}
3016
Evan Chengeb2f9692009-10-27 19:56:55 +00003017/// isFPImmLegal - Returns true if the target can instruction select the
3018/// specified FP immediate natively. If false, the legalizer will
3019/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003020bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003021 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3022 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3023 return true;
3024 }
3025 return false;
3026}
3027
Nate Begeman9008ca62009-04-27 18:41:29 +00003028/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3029/// the specified range (L, H].
3030static bool isUndefOrInRange(int Val, int Low, int Hi) {
3031 return (Val < 0) || (Val >= Low && Val < Hi);
3032}
3033
3034/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3035/// specified value.
3036static bool isUndefOrEqual(int Val, int CmpVal) {
3037 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003038 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00003039 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00003040}
3041
Nate Begeman9008ca62009-04-27 18:41:29 +00003042/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3043/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3044/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00003045static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003046 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003047 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003048 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003049 return (Mask[0] < 2 && Mask[1] < 2);
3050 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003051}
3052
Nate Begeman9008ca62009-04-27 18:41:29 +00003053bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003054 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003055 N->getMask(M);
3056 return ::isPSHUFDMask(M, N->getValueType(0));
3057}
Evan Cheng0188ecb2006-03-22 18:59:22 +00003058
Nate Begeman9008ca62009-04-27 18:41:29 +00003059/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3060/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00003061static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003062 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00003063 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003064
Nate Begeman9008ca62009-04-27 18:41:29 +00003065 // Lower quadword copied in order or undef.
3066 for (int i = 0; i != 4; ++i)
3067 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00003068 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003069
Evan Cheng506d3df2006-03-29 23:07:14 +00003070 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003071 for (int i = 4; i != 8; ++i)
3072 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00003073 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003074
Evan Cheng506d3df2006-03-29 23:07:14 +00003075 return true;
3076}
3077
Nate Begeman9008ca62009-04-27 18:41:29 +00003078bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003079 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003080 N->getMask(M);
3081 return ::isPSHUFHWMask(M, N->getValueType(0));
3082}
Evan Cheng506d3df2006-03-29 23:07:14 +00003083
Nate Begeman9008ca62009-04-27 18:41:29 +00003084/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3085/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00003086static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003087 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00003088 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003089
Rafael Espindola15684b22009-04-24 12:40:33 +00003090 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00003091 for (int i = 4; i != 8; ++i)
3092 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00003093 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003094
Rafael Espindola15684b22009-04-24 12:40:33 +00003095 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003096 for (int i = 0; i != 4; ++i)
3097 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00003098 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003099
Rafael Espindola15684b22009-04-24 12:40:33 +00003100 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003101}
3102
Nate Begeman9008ca62009-04-27 18:41:29 +00003103bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003104 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003105 N->getMask(M);
3106 return ::isPSHUFLWMask(M, N->getValueType(0));
3107}
3108
Nate Begemana09008b2009-10-19 02:17:23 +00003109/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3110/// is suitable for input to PALIGNR.
3111static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
3112 bool hasSSSE3) {
3113 int i, e = VT.getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003114
Nate Begemana09008b2009-10-19 02:17:23 +00003115 // Do not handle v2i64 / v2f64 shuffles with palignr.
3116 if (e < 4 || !hasSSSE3)
3117 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003118
Nate Begemana09008b2009-10-19 02:17:23 +00003119 for (i = 0; i != e; ++i)
3120 if (Mask[i] >= 0)
3121 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003122
Nate Begemana09008b2009-10-19 02:17:23 +00003123 // All undef, not a palignr.
3124 if (i == e)
3125 return false;
3126
3127 // Determine if it's ok to perform a palignr with only the LHS, since we
3128 // don't have access to the actual shuffle elements to see if RHS is undef.
3129 bool Unary = Mask[i] < (int)e;
3130 bool NeedsUnary = false;
3131
3132 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003133
Nate Begemana09008b2009-10-19 02:17:23 +00003134 // Check the rest of the elements to see if they are consecutive.
3135 for (++i; i != e; ++i) {
3136 int m = Mask[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00003137 if (m < 0)
Nate Begemana09008b2009-10-19 02:17:23 +00003138 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003139
Nate Begemana09008b2009-10-19 02:17:23 +00003140 Unary = Unary && (m < (int)e);
3141 NeedsUnary = NeedsUnary || (m < s);
3142
3143 if (NeedsUnary && !Unary)
3144 return false;
3145 if (Unary && m != ((s+i) & (e-1)))
3146 return false;
3147 if (!Unary && m != (s+i))
3148 return false;
3149 }
3150 return true;
3151}
3152
3153bool X86::isPALIGNRMask(ShuffleVectorSDNode *N) {
3154 SmallVector<int, 8> M;
3155 N->getMask(M);
3156 return ::isPALIGNRMask(M, N->getValueType(0), true);
3157}
3158
Evan Cheng14aed5e2006-03-24 01:18:28 +00003159/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3160/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00003161static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003162 int NumElems = VT.getVectorNumElements();
3163 if (NumElems != 2 && NumElems != 4)
3164 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003165
Nate Begeman9008ca62009-04-27 18:41:29 +00003166 int Half = NumElems / 2;
3167 for (int i = 0; i < Half; ++i)
3168 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003169 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003170 for (int i = Half; i < NumElems; ++i)
3171 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003172 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003173
Evan Cheng14aed5e2006-03-24 01:18:28 +00003174 return true;
3175}
3176
Nate Begeman9008ca62009-04-27 18:41:29 +00003177bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3178 SmallVector<int, 8> M;
3179 N->getMask(M);
3180 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003181}
3182
Evan Cheng213d2cf2007-05-17 18:45:50 +00003183/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00003184/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
3185/// half elements to come from vector 1 (which would equal the dest.) and
3186/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00003187static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003188 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003189
3190 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00003191 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003192
Nate Begeman9008ca62009-04-27 18:41:29 +00003193 int Half = NumElems / 2;
3194 for (int i = 0; i < Half; ++i)
3195 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003196 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003197 for (int i = Half; i < NumElems; ++i)
3198 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003199 return false;
3200 return true;
3201}
3202
Nate Begeman9008ca62009-04-27 18:41:29 +00003203static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3204 SmallVector<int, 8> M;
3205 N->getMask(M);
3206 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003207}
3208
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003209/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3210/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003211bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
3212 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003213 return false;
3214
Evan Cheng2064a2b2006-03-28 06:50:32 +00003215 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003216 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3217 isUndefOrEqual(N->getMaskElt(1), 7) &&
3218 isUndefOrEqual(N->getMaskElt(2), 2) &&
3219 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003220}
3221
Nate Begeman0b10b912009-11-07 23:17:15 +00003222/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3223/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3224/// <2, 3, 2, 3>
3225bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
3226 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003227
Nate Begeman0b10b912009-11-07 23:17:15 +00003228 if (NumElems != 4)
3229 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003230
Nate Begeman0b10b912009-11-07 23:17:15 +00003231 return isUndefOrEqual(N->getMaskElt(0), 2) &&
3232 isUndefOrEqual(N->getMaskElt(1), 3) &&
3233 isUndefOrEqual(N->getMaskElt(2), 2) &&
3234 isUndefOrEqual(N->getMaskElt(3), 3);
3235}
3236
Evan Cheng5ced1d82006-04-06 23:23:56 +00003237/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3238/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003239bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3240 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003241
Evan Cheng5ced1d82006-04-06 23:23:56 +00003242 if (NumElems != 2 && NumElems != 4)
3243 return false;
3244
Evan Chengc5cdff22006-04-07 21:53:05 +00003245 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003246 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003247 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003248
Evan Chengc5cdff22006-04-07 21:53:05 +00003249 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003250 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003251 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003252
3253 return true;
3254}
3255
Nate Begeman0b10b912009-11-07 23:17:15 +00003256/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3257/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3258bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003259 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003260
David Greenea20244d2011-03-02 17:23:43 +00003261 if ((NumElems != 2 && NumElems != 4)
3262 || N->getValueType(0).getSizeInBits() > 128)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003263 return false;
3264
Evan Chengc5cdff22006-04-07 21:53:05 +00003265 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003266 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003267 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003268
Nate Begeman9008ca62009-04-27 18:41:29 +00003269 for (unsigned i = 0; i < NumElems/2; ++i)
3270 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003271 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003272
3273 return true;
3274}
3275
Evan Cheng0038e592006-03-28 00:39:58 +00003276/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3277/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003278static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003279 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003280 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003281 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00003282 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003283
David Greenea20244d2011-03-02 17:23:43 +00003284 // Handle vector lengths > 128 bits. Define a "section" as a set of
3285 // 128 bits. AVX defines UNPCK* to operate independently on 128-bit
3286 // sections.
3287 unsigned NumSections = VT.getSizeInBits() / 128;
3288 if (NumSections == 0 ) NumSections = 1; // Handle MMX
3289 unsigned NumSectionElts = NumElts / NumSections;
3290
3291 unsigned Start = 0;
3292 unsigned End = NumSectionElts;
3293 for (unsigned s = 0; s < NumSections; ++s) {
3294 for (unsigned i = Start, j = s * NumSectionElts;
3295 i != End;
3296 i += 2, ++j) {
3297 int BitI = Mask[i];
3298 int BitI1 = Mask[i+1];
3299 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003300 return false;
David Greenea20244d2011-03-02 17:23:43 +00003301 if (V2IsSplat) {
3302 if (!isUndefOrEqual(BitI1, NumElts))
3303 return false;
3304 } else {
3305 if (!isUndefOrEqual(BitI1, j + NumElts))
3306 return false;
3307 }
Evan Cheng39623da2006-04-20 08:58:49 +00003308 }
David Greenea20244d2011-03-02 17:23:43 +00003309 // Process the next 128 bits.
3310 Start += NumSectionElts;
3311 End += NumSectionElts;
Evan Cheng0038e592006-03-28 00:39:58 +00003312 }
David Greenea20244d2011-03-02 17:23:43 +00003313
Evan Cheng0038e592006-03-28 00:39:58 +00003314 return true;
3315}
3316
Nate Begeman9008ca62009-04-27 18:41:29 +00003317bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3318 SmallVector<int, 8> M;
3319 N->getMask(M);
3320 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003321}
3322
Evan Cheng4fcb9222006-03-28 02:43:26 +00003323/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3324/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003325static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003326 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003327 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003328 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003329 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003330
Nate Begeman9008ca62009-04-27 18:41:29 +00003331 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3332 int BitI = Mask[i];
3333 int BitI1 = Mask[i+1];
Chris Lattner5a88b832007-02-25 07:10:00 +00003334 if (!isUndefOrEqual(BitI, j + NumElts/2))
Evan Chengc5cdff22006-04-07 21:53:05 +00003335 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003336 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00003337 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003338 return false;
3339 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003340 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003341 return false;
3342 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003343 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003344 return true;
3345}
3346
Nate Begeman9008ca62009-04-27 18:41:29 +00003347bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3348 SmallVector<int, 8> M;
3349 N->getMask(M);
3350 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003351}
3352
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003353/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3354/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3355/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003356static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003357 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003358 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003359 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003360
David Greenea20244d2011-03-02 17:23:43 +00003361 // Handle vector lengths > 128 bits. Define a "section" as a set of
3362 // 128 bits. AVX defines UNPCK* to operate independently on 128-bit
3363 // sections.
3364 unsigned NumSections = VT.getSizeInBits() / 128;
3365 if (NumSections == 0 ) NumSections = 1; // Handle MMX
3366 unsigned NumSectionElts = NumElems / NumSections;
3367
3368 for (unsigned s = 0; s < NumSections; ++s) {
3369 for (unsigned i = s * NumSectionElts, j = s * NumSectionElts;
3370 i != NumSectionElts * (s + 1);
3371 i += 2, ++j) {
3372 int BitI = Mask[i];
3373 int BitI1 = Mask[i+1];
3374
3375 if (!isUndefOrEqual(BitI, j))
3376 return false;
3377 if (!isUndefOrEqual(BitI1, j))
3378 return false;
3379 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003380 }
David Greenea20244d2011-03-02 17:23:43 +00003381
Rafael Espindola15684b22009-04-24 12:40:33 +00003382 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003383}
3384
Nate Begeman9008ca62009-04-27 18:41:29 +00003385bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3386 SmallVector<int, 8> M;
3387 N->getMask(M);
3388 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3389}
3390
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003391/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3392/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3393/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003394static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003395 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003396 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3397 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003398
Nate Begeman9008ca62009-04-27 18:41:29 +00003399 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3400 int BitI = Mask[i];
3401 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003402 if (!isUndefOrEqual(BitI, j))
3403 return false;
3404 if (!isUndefOrEqual(BitI1, j))
3405 return false;
3406 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003407 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003408}
3409
Nate Begeman9008ca62009-04-27 18:41:29 +00003410bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3411 SmallVector<int, 8> M;
3412 N->getMask(M);
3413 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3414}
3415
Evan Cheng017dcc62006-04-21 01:05:10 +00003416/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3417/// specifies a shuffle of elements that is suitable for input to MOVSS,
3418/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003419static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003420 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003421 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003422
3423 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003424
Nate Begeman9008ca62009-04-27 18:41:29 +00003425 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003426 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003427
Nate Begeman9008ca62009-04-27 18:41:29 +00003428 for (int i = 1; i < NumElts; ++i)
3429 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003430 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003431
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003432 return true;
3433}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003434
Nate Begeman9008ca62009-04-27 18:41:29 +00003435bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3436 SmallVector<int, 8> M;
3437 N->getMask(M);
3438 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003439}
3440
Evan Cheng017dcc62006-04-21 01:05:10 +00003441/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3442/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003443/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003444static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003445 bool V2IsSplat = false, bool V2IsUndef = false) {
3446 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003447 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003448 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003449
Nate Begeman9008ca62009-04-27 18:41:29 +00003450 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003451 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003452
Nate Begeman9008ca62009-04-27 18:41:29 +00003453 for (int i = 1; i < NumOps; ++i)
3454 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3455 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3456 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003457 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003458
Evan Cheng39623da2006-04-20 08:58:49 +00003459 return true;
3460}
3461
Nate Begeman9008ca62009-04-27 18:41:29 +00003462static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003463 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003464 SmallVector<int, 8> M;
3465 N->getMask(M);
3466 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003467}
3468
Evan Chengd9539472006-04-14 21:59:03 +00003469/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3470/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003471bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) {
3472 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003473 return false;
3474
3475 // Expect 1, 1, 3, 3
Rafael Espindola15684b22009-04-24 12:40:33 +00003476 for (unsigned i = 0; i < 2; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003477 int Elt = N->getMaskElt(i);
3478 if (Elt >= 0 && Elt != 1)
3479 return false;
Rafael Espindola15684b22009-04-24 12:40:33 +00003480 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003481
3482 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003483 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003484 int Elt = N->getMaskElt(i);
3485 if (Elt >= 0 && Elt != 3)
3486 return false;
3487 if (Elt == 3)
3488 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003489 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003490 // Don't use movshdup if it can be done with a shufps.
Nate Begeman9008ca62009-04-27 18:41:29 +00003491 // FIXME: verify that matching u, u, 3, 3 is what we want.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003492 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003493}
3494
3495/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3496/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003497bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) {
3498 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003499 return false;
3500
3501 // Expect 0, 0, 2, 2
Nate Begeman9008ca62009-04-27 18:41:29 +00003502 for (unsigned i = 0; i < 2; ++i)
3503 if (N->getMaskElt(i) > 0)
3504 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003505
3506 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003507 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003508 int Elt = N->getMaskElt(i);
3509 if (Elt >= 0 && Elt != 2)
3510 return false;
3511 if (Elt == 2)
3512 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003513 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003514 // Don't use movsldup if it can be done with a shufps.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003515 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003516}
3517
Evan Cheng0b457f02008-09-25 20:50:48 +00003518/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3519/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003520bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3521 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003522
Nate Begeman9008ca62009-04-27 18:41:29 +00003523 for (int i = 0; i < e; ++i)
3524 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003525 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003526 for (int i = 0; i < e; ++i)
3527 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003528 return false;
3529 return true;
3530}
3531
David Greenec38a03e2011-02-03 15:50:00 +00003532/// isVEXTRACTF128Index - Return true if the specified
3533/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3534/// suitable for input to VEXTRACTF128.
3535bool X86::isVEXTRACTF128Index(SDNode *N) {
3536 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3537 return false;
3538
3539 // The index should be aligned on a 128-bit boundary.
3540 uint64_t Index =
3541 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3542
3543 unsigned VL = N->getValueType(0).getVectorNumElements();
3544 unsigned VBits = N->getValueType(0).getSizeInBits();
3545 unsigned ElSize = VBits / VL;
3546 bool Result = (Index * ElSize) % 128 == 0;
3547
3548 return Result;
3549}
3550
David Greeneccacdc12011-02-04 16:08:29 +00003551/// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
3552/// operand specifies a subvector insert that is suitable for input to
3553/// VINSERTF128.
3554bool X86::isVINSERTF128Index(SDNode *N) {
3555 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3556 return false;
3557
3558 // The index should be aligned on a 128-bit boundary.
3559 uint64_t Index =
3560 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3561
3562 unsigned VL = N->getValueType(0).getVectorNumElements();
3563 unsigned VBits = N->getValueType(0).getSizeInBits();
3564 unsigned ElSize = VBits / VL;
3565 bool Result = (Index * ElSize) % 128 == 0;
3566
3567 return Result;
3568}
3569
Evan Cheng63d33002006-03-22 08:01:21 +00003570/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003571/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003572unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003573 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3574 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3575
Evan Chengb9df0ca2006-03-22 02:53:00 +00003576 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3577 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003578 for (int i = 0; i < NumOperands; ++i) {
3579 int Val = SVOp->getMaskElt(NumOperands-i-1);
3580 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003581 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003582 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003583 if (i != NumOperands - 1)
3584 Mask <<= Shift;
3585 }
Evan Cheng63d33002006-03-22 08:01:21 +00003586 return Mask;
3587}
3588
Evan Cheng506d3df2006-03-29 23:07:14 +00003589/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003590/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003591unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003592 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003593 unsigned Mask = 0;
3594 // 8 nodes, but we only care about the last 4.
3595 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003596 int Val = SVOp->getMaskElt(i);
3597 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003598 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003599 if (i != 4)
3600 Mask <<= 2;
3601 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003602 return Mask;
3603}
3604
3605/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003606/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003607unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003608 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003609 unsigned Mask = 0;
3610 // 8 nodes, but we only care about the first 4.
3611 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003612 int Val = SVOp->getMaskElt(i);
3613 if (Val >= 0)
3614 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003615 if (i != 0)
3616 Mask <<= 2;
3617 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003618 return Mask;
3619}
3620
Nate Begemana09008b2009-10-19 02:17:23 +00003621/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3622/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3623unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3624 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3625 EVT VVT = N->getValueType(0);
3626 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3627 int Val = 0;
3628
3629 unsigned i, e;
3630 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3631 Val = SVOp->getMaskElt(i);
3632 if (Val >= 0)
3633 break;
3634 }
3635 return (Val - i) * EltSize;
3636}
3637
David Greenec38a03e2011-02-03 15:50:00 +00003638/// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
3639/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
3640/// instructions.
3641unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
3642 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3643 llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
3644
3645 uint64_t Index =
3646 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3647
3648 EVT VecVT = N->getOperand(0).getValueType();
3649 EVT ElVT = VecVT.getVectorElementType();
3650
3651 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
3652
3653 return Index / NumElemsPerChunk;
3654}
3655
David Greeneccacdc12011-02-04 16:08:29 +00003656/// getInsertVINSERTF128Immediate - Return the appropriate immediate
3657/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
3658/// instructions.
3659unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
3660 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3661 llvm_unreachable("Illegal insert subvector for VINSERTF128");
3662
3663 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00003664 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00003665
3666 EVT VecVT = N->getValueType(0);
3667 EVT ElVT = VecVT.getVectorElementType();
3668
3669 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
3670
3671 return Index / NumElemsPerChunk;
3672}
3673
Evan Cheng37b73872009-07-30 08:33:02 +00003674/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3675/// constant +0.0.
3676bool X86::isZeroNode(SDValue Elt) {
3677 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003678 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003679 (isa<ConstantFPSDNode>(Elt) &&
3680 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3681}
3682
Nate Begeman9008ca62009-04-27 18:41:29 +00003683/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3684/// their permute mask.
3685static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3686 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003687 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003688 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003689 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003690
Nate Begeman5a5ca152009-04-29 05:20:52 +00003691 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003692 int idx = SVOp->getMaskElt(i);
3693 if (idx < 0)
3694 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003695 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003696 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003697 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003698 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003699 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003700 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3701 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003702}
3703
Evan Cheng779ccea2007-12-07 21:30:01 +00003704/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3705/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003706static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003707 unsigned NumElems = VT.getVectorNumElements();
3708 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003709 int idx = Mask[i];
3710 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003711 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003712 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003713 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003714 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003715 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003716 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003717}
3718
Evan Cheng533a0aa2006-04-19 20:35:22 +00003719/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3720/// match movhlps. The lower half elements should come from upper half of
3721/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003722/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003723static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3724 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003725 return false;
3726 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003727 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003728 return false;
3729 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003730 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003731 return false;
3732 return true;
3733}
3734
Evan Cheng5ced1d82006-04-06 23:23:56 +00003735/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003736/// is promoted to a vector. It also returns the LoadSDNode by reference if
3737/// required.
3738static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003739 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3740 return false;
3741 N = N->getOperand(0).getNode();
3742 if (!ISD::isNON_EXTLoad(N))
3743 return false;
3744 if (LD)
3745 *LD = cast<LoadSDNode>(N);
3746 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003747}
3748
Evan Cheng533a0aa2006-04-19 20:35:22 +00003749/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3750/// match movlp{s|d}. The lower half elements should come from lower half of
3751/// V1 (and in order), and the upper half elements should come from the upper
3752/// half of V2 (and in order). And since V1 will become the source of the
3753/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003754static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3755 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003756 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003757 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003758 // Is V2 is a vector load, don't do this transformation. We will try to use
3759 // load folding shufps op.
3760 if (ISD::isNON_EXTLoad(V2))
3761 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003762
Nate Begeman5a5ca152009-04-29 05:20:52 +00003763 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003764
Evan Cheng533a0aa2006-04-19 20:35:22 +00003765 if (NumElems != 2 && NumElems != 4)
3766 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003767 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003768 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003769 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003770 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003771 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003772 return false;
3773 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003774}
3775
Evan Cheng39623da2006-04-20 08:58:49 +00003776/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3777/// all the same.
3778static bool isSplatVector(SDNode *N) {
3779 if (N->getOpcode() != ISD::BUILD_VECTOR)
3780 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003781
Dan Gohman475871a2008-07-27 21:46:04 +00003782 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003783 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3784 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003785 return false;
3786 return true;
3787}
3788
Evan Cheng213d2cf2007-05-17 18:45:50 +00003789/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003790/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003791/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003792static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003793 SDValue V1 = N->getOperand(0);
3794 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003795 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3796 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003797 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003798 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003799 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003800 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3801 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003802 if (Opc != ISD::BUILD_VECTOR ||
3803 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003804 return false;
3805 } else if (Idx >= 0) {
3806 unsigned Opc = V1.getOpcode();
3807 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3808 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003809 if (Opc != ISD::BUILD_VECTOR ||
3810 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003811 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003812 }
3813 }
3814 return true;
3815}
3816
3817/// getZeroVector - Returns a vector of specified type with all zero elements.
3818///
Owen Andersone50ed302009-08-10 22:56:29 +00003819static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003820 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003821 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003822
Dale Johannesen0488fb62010-09-30 23:57:10 +00003823 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003824 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003825 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003826 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003827 if (HasSSE2) { // SSE2
3828 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3829 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3830 } else { // SSE1
3831 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3832 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3833 }
3834 } else if (VT.getSizeInBits() == 256) { // AVX
3835 // 256-bit logic and arithmetic instructions in AVX are
3836 // all floating-point, no support for integer ops. Default
3837 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003838 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003839 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3840 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003841 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003842 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003843}
3844
Chris Lattner8a594482007-11-25 00:24:49 +00003845/// getOnesVector - Returns a vector of specified type with all bits set.
3846///
Owen Andersone50ed302009-08-10 22:56:29 +00003847static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003848 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003849
Chris Lattner8a594482007-11-25 00:24:49 +00003850 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
3851 // type. This ensures they get CSE'd.
Owen Anderson825b72b2009-08-11 20:47:22 +00003852 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +00003853 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003854 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003855 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00003856}
3857
3858
Evan Cheng39623da2006-04-20 08:58:49 +00003859/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
3860/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00003861static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003862 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003863 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003864
Evan Cheng39623da2006-04-20 08:58:49 +00003865 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003866 SmallVector<int, 8> MaskVec;
3867 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00003868
Nate Begeman5a5ca152009-04-29 05:20:52 +00003869 for (unsigned i = 0; i != NumElems; ++i) {
3870 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003871 MaskVec[i] = NumElems;
3872 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00003873 }
Evan Cheng39623da2006-04-20 08:58:49 +00003874 }
Evan Cheng39623da2006-04-20 08:58:49 +00003875 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00003876 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
3877 SVOp->getOperand(1), &MaskVec[0]);
3878 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00003879}
3880
Evan Cheng017dcc62006-04-21 01:05:10 +00003881/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
3882/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00003883static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003884 SDValue V2) {
3885 unsigned NumElems = VT.getVectorNumElements();
3886 SmallVector<int, 8> Mask;
3887 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00003888 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003889 Mask.push_back(i);
3890 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00003891}
3892
Nate Begeman9008ca62009-04-27 18:41:29 +00003893/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003894static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003895 SDValue V2) {
3896 unsigned NumElems = VT.getVectorNumElements();
3897 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00003898 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003899 Mask.push_back(i);
3900 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00003901 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003902 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00003903}
3904
Nate Begeman9008ca62009-04-27 18:41:29 +00003905/// getUnpackhMask - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003906static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003907 SDValue V2) {
3908 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00003909 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003910 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00003911 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003912 Mask.push_back(i + Half);
3913 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00003914 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003915 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00003916}
3917
Bruno Cardoso Lopesbb0a9482010-08-13 17:50:47 +00003918/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32.
3919static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003920 EVT PVT = MVT::v4f32;
Owen Andersone50ed302009-08-10 22:56:29 +00003921 EVT VT = SV->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00003922 DebugLoc dl = SV->getDebugLoc();
3923 SDValue V1 = SV->getOperand(0);
3924 int NumElems = VT.getVectorNumElements();
3925 int EltNo = SV->getSplatIndex();
Rafael Espindola15684b22009-04-24 12:40:33 +00003926
Nate Begeman9008ca62009-04-27 18:41:29 +00003927 // unpack elements to the correct location
3928 while (NumElems > 4) {
3929 if (EltNo < NumElems/2) {
3930 V1 = getUnpackl(DAG, dl, VT, V1, V1);
3931 } else {
3932 V1 = getUnpackh(DAG, dl, VT, V1, V1);
3933 EltNo -= NumElems/2;
3934 }
3935 NumElems >>= 1;
3936 }
Eric Christopherfd179292009-08-27 18:07:15 +00003937
Nate Begeman9008ca62009-04-27 18:41:29 +00003938 // Perform the splat.
3939 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003940 V1 = DAG.getNode(ISD::BITCAST, dl, PVT, V1);
Nate Begeman9008ca62009-04-27 18:41:29 +00003941 V1 = DAG.getVectorShuffle(PVT, dl, V1, DAG.getUNDEF(PVT), &SplatMask[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003942 return DAG.getNode(ISD::BITCAST, dl, VT, V1);
Evan Chengc575ca22006-04-17 20:43:08 +00003943}
3944
Evan Chengba05f722006-04-21 23:03:30 +00003945/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00003946/// vector of zero or undef vector. This produces a shuffle where the low
3947/// element of V2 is swizzled into the zero/undef vector, landing at element
3948/// 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 +00003949static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00003950 bool isZero, bool HasSSE2,
3951 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003952 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003953 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00003954 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
3955 unsigned NumElems = VT.getVectorNumElements();
3956 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00003957 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003958 // If this is the insertion idx, put the low elt of V2 here.
3959 MaskVec.push_back(i == Idx ? NumElems : i);
3960 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00003961}
3962
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003963/// getShuffleScalarElt - Returns the scalar element that will make up the ith
3964/// element of the result of the vector shuffle.
Benjamin Kramer050db522011-03-26 12:38:19 +00003965static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
3966 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003967 if (Depth == 6)
3968 return SDValue(); // Limit search depth.
3969
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003970 SDValue V = SDValue(N, 0);
3971 EVT VT = V.getValueType();
3972 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003973
3974 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
3975 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
3976 Index = SV->getMaskElt(Index);
3977
3978 if (Index < 0)
3979 return DAG.getUNDEF(VT.getVectorElementType());
3980
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003981 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003982 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003983 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00003984 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003985
3986 // Recurse into target specific vector shuffles to find scalars.
3987 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003988 int NumElems = VT.getVectorNumElements();
3989 SmallVector<unsigned, 16> ShuffleMask;
3990 SDValue ImmN;
3991
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003992 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003993 case X86ISD::SHUFPS:
3994 case X86ISD::SHUFPD:
3995 ImmN = N->getOperand(N->getNumOperands()-1);
3996 DecodeSHUFPSMask(NumElems,
3997 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3998 ShuffleMask);
3999 break;
4000 case X86ISD::PUNPCKHBW:
4001 case X86ISD::PUNPCKHWD:
4002 case X86ISD::PUNPCKHDQ:
4003 case X86ISD::PUNPCKHQDQ:
4004 DecodePUNPCKHMask(NumElems, ShuffleMask);
4005 break;
4006 case X86ISD::UNPCKHPS:
4007 case X86ISD::UNPCKHPD:
4008 DecodeUNPCKHPMask(NumElems, ShuffleMask);
4009 break;
4010 case X86ISD::PUNPCKLBW:
4011 case X86ISD::PUNPCKLWD:
4012 case X86ISD::PUNPCKLDQ:
4013 case X86ISD::PUNPCKLQDQ:
David Greenec4db4e52011-02-28 19:06:56 +00004014 DecodePUNPCKLMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004015 break;
4016 case X86ISD::UNPCKLPS:
4017 case X86ISD::UNPCKLPD:
David Greenec4db4e52011-02-28 19:06:56 +00004018 case X86ISD::VUNPCKLPS:
4019 case X86ISD::VUNPCKLPD:
4020 case X86ISD::VUNPCKLPSY:
4021 case X86ISD::VUNPCKLPDY:
4022 DecodeUNPCKLPMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004023 break;
4024 case X86ISD::MOVHLPS:
4025 DecodeMOVHLPSMask(NumElems, ShuffleMask);
4026 break;
4027 case X86ISD::MOVLHPS:
4028 DecodeMOVLHPSMask(NumElems, ShuffleMask);
4029 break;
4030 case X86ISD::PSHUFD:
4031 ImmN = N->getOperand(N->getNumOperands()-1);
4032 DecodePSHUFMask(NumElems,
4033 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4034 ShuffleMask);
4035 break;
4036 case X86ISD::PSHUFHW:
4037 ImmN = N->getOperand(N->getNumOperands()-1);
4038 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4039 ShuffleMask);
4040 break;
4041 case X86ISD::PSHUFLW:
4042 ImmN = N->getOperand(N->getNumOperands()-1);
4043 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4044 ShuffleMask);
4045 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004046 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004047 case X86ISD::MOVSD: {
4048 // The index 0 always comes from the first element of the second source,
4049 // this is why MOVSS and MOVSD are used in the first place. The other
4050 // elements come from the other positions of the first source vector.
4051 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004052 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
4053 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004054 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004055 default:
4056 assert("not implemented for target shuffle node");
4057 return SDValue();
4058 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004059
4060 Index = ShuffleMask[Index];
4061 if (Index < 0)
4062 return DAG.getUNDEF(VT.getVectorElementType());
4063
4064 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
4065 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
4066 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004067 }
4068
4069 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004070 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004071 V = V.getOperand(0);
4072 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004073 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004074
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004075 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004076 return SDValue();
4077 }
4078
4079 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4080 return (Index == 0) ? V.getOperand(0)
4081 : DAG.getUNDEF(VT.getVectorElementType());
4082
4083 if (V.getOpcode() == ISD::BUILD_VECTOR)
4084 return V.getOperand(Index);
4085
4086 return SDValue();
4087}
4088
4089/// getNumOfConsecutiveZeros - Return the number of elements of a vector
4090/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00004091/// search can start in two different directions, from left or right.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004092static
4093unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
4094 bool ZerosFromLeft, SelectionDAG &DAG) {
4095 int i = 0;
4096
4097 while (i < NumElems) {
4098 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004099 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004100 if (!(Elt.getNode() &&
4101 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4102 break;
4103 ++i;
4104 }
4105
4106 return i;
4107}
4108
4109/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
4110/// MaskE correspond consecutively to elements from one of the vector operands,
4111/// starting from its index OpIdx. Also tell OpNum which source vector operand.
4112static
4113bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
4114 int OpIdx, int NumElems, unsigned &OpNum) {
4115 bool SeenV1 = false;
4116 bool SeenV2 = false;
4117
4118 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
4119 int Idx = SVOp->getMaskElt(i);
4120 // Ignore undef indicies
4121 if (Idx < 0)
4122 continue;
4123
4124 if (Idx < NumElems)
4125 SeenV1 = true;
4126 else
4127 SeenV2 = true;
4128
4129 // Only accept consecutive elements from the same vector
4130 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4131 return false;
4132 }
4133
4134 OpNum = SeenV1 ? 0 : 1;
4135 return true;
4136}
4137
4138/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4139/// logical left shift of a vector.
4140static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4141 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4142 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4143 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4144 false /* check zeros from right */, DAG);
4145 unsigned OpSrc;
4146
4147 if (!NumZeros)
4148 return false;
4149
4150 // Considering the elements in the mask that are not consecutive zeros,
4151 // check if they consecutively come from only one of the source vectors.
4152 //
4153 // V1 = {X, A, B, C} 0
4154 // \ \ \ /
4155 // vector_shuffle V1, V2 <1, 2, 3, X>
4156 //
4157 if (!isShuffleMaskConsecutive(SVOp,
4158 0, // Mask Start Index
4159 NumElems-NumZeros-1, // Mask End Index
4160 NumZeros, // Where to start looking in the src vector
4161 NumElems, // Number of elements in vector
4162 OpSrc)) // Which source operand ?
4163 return false;
4164
4165 isLeft = false;
4166 ShAmt = NumZeros;
4167 ShVal = SVOp->getOperand(OpSrc);
4168 return true;
4169}
4170
4171/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4172/// logical left shift of a vector.
4173static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4174 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4175 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4176 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4177 true /* check zeros from left */, DAG);
4178 unsigned OpSrc;
4179
4180 if (!NumZeros)
4181 return false;
4182
4183 // Considering the elements in the mask that are not consecutive zeros,
4184 // check if they consecutively come from only one of the source vectors.
4185 //
4186 // 0 { A, B, X, X } = V2
4187 // / \ / /
4188 // vector_shuffle V1, V2 <X, X, 4, 5>
4189 //
4190 if (!isShuffleMaskConsecutive(SVOp,
4191 NumZeros, // Mask Start Index
4192 NumElems-1, // Mask End Index
4193 0, // Where to start looking in the src vector
4194 NumElems, // Number of elements in vector
4195 OpSrc)) // Which source operand ?
4196 return false;
4197
4198 isLeft = true;
4199 ShAmt = NumZeros;
4200 ShVal = SVOp->getOperand(OpSrc);
4201 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004202}
4203
4204/// isVectorShift - Returns true if the shuffle can be implemented as a
4205/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004206static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004207 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004208 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4209 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4210 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004211
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004212 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00004213}
4214
Evan Chengc78d3b42006-04-24 18:01:45 +00004215/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4216///
Dan Gohman475871a2008-07-27 21:46:04 +00004217static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00004218 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00004219 SelectionDAG &DAG,
4220 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004221 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00004222 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004223
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004224 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004225 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004226 bool First = true;
4227 for (unsigned i = 0; i < 16; ++i) {
4228 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4229 if (ThisIsNonZero && First) {
4230 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004231 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004232 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004233 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004234 First = false;
4235 }
4236
4237 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00004238 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004239 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4240 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004241 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004242 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00004243 }
4244 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004245 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4246 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4247 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00004248 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004249 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00004250 } else
4251 ThisElt = LastElt;
4252
Gabor Greifba36cb52008-08-28 21:40:38 +00004253 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00004254 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00004255 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00004256 }
4257 }
4258
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004259 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00004260}
4261
Bill Wendlinga348c562007-03-22 18:42:45 +00004262/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00004263///
Dan Gohman475871a2008-07-27 21:46:04 +00004264static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00004265 unsigned NumNonZero, unsigned NumZero,
4266 SelectionDAG &DAG,
4267 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004268 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00004269 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004270
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004271 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004272 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004273 bool First = true;
4274 for (unsigned i = 0; i < 8; ++i) {
4275 bool isNonZero = (NonZeros & (1 << i)) != 0;
4276 if (isNonZero) {
4277 if (First) {
4278 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004279 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004280 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004281 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004282 First = false;
4283 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004284 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004285 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00004286 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00004287 }
4288 }
4289
4290 return V;
4291}
4292
Evan Chengf26ffe92008-05-29 08:22:04 +00004293/// getVShift - Return a vector logical shift node.
4294///
Owen Andersone50ed302009-08-10 22:56:29 +00004295static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00004296 unsigned NumBits, SelectionDAG &DAG,
4297 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004298 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00004299 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004300 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4301 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004302 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00004303 DAG.getConstant(NumBits,
4304 TLI.getShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00004305}
4306
Dan Gohman475871a2008-07-27 21:46:04 +00004307SDValue
Evan Chengc3630942009-12-09 21:00:30 +00004308X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00004309 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00004310
Evan Chengc3630942009-12-09 21:00:30 +00004311 // Check if the scalar load can be widened into a vector load. And if
4312 // the address is "base + cst" see if the cst can be "absorbed" into
4313 // the shuffle mask.
4314 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4315 SDValue Ptr = LD->getBasePtr();
4316 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4317 return SDValue();
4318 EVT PVT = LD->getValueType(0);
4319 if (PVT != MVT::i32 && PVT != MVT::f32)
4320 return SDValue();
4321
4322 int FI = -1;
4323 int64_t Offset = 0;
4324 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4325 FI = FINode->getIndex();
4326 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00004327 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00004328 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4329 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4330 Offset = Ptr.getConstantOperandVal(1);
4331 Ptr = Ptr.getOperand(0);
4332 } else {
4333 return SDValue();
4334 }
4335
4336 SDValue Chain = LD->getChain();
4337 // Make sure the stack object alignment is at least 16.
4338 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4339 if (DAG.InferPtrAlignment(Ptr) < 16) {
4340 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004341 // Can't change the alignment. FIXME: It's possible to compute
4342 // the exact stack offset and reference FI + adjust offset instead.
4343 // If someone *really* cares about this. That's the way to implement it.
4344 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004345 } else {
4346 MFI->setObjectAlignment(FI, 16);
4347 }
4348 }
4349
4350 // (Offset % 16) must be multiple of 4. Then address is then
4351 // Ptr + (Offset & ~15).
4352 if (Offset < 0)
4353 return SDValue();
4354 if ((Offset % 16) & 3)
4355 return SDValue();
4356 int64_t StartOffset = Offset & ~15;
4357 if (StartOffset)
4358 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4359 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4360
4361 int EltNo = (Offset - StartOffset) >> 2;
4362 int Mask[4] = { EltNo, EltNo, EltNo, EltNo };
4363 EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32;
Chris Lattner51abfe42010-09-21 06:02:19 +00004364 SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr,
4365 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004366 false, false, 0);
Evan Chengc3630942009-12-09 21:00:30 +00004367 // Canonicalize it to a v4i32 shuffle.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004368 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V1);
4369 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Chengc3630942009-12-09 21:00:30 +00004370 DAG.getVectorShuffle(MVT::v4i32, dl, V1,
Chris Lattner51abfe42010-09-21 06:02:19 +00004371 DAG.getUNDEF(MVT::v4i32),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004372 }
4373
4374 return SDValue();
4375}
4376
Michael J. Spencerec38de22010-10-10 22:04:20 +00004377/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4378/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004379/// load which has the same value as a build_vector whose operands are 'elts'.
4380///
4381/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004382///
Nate Begeman1449f292010-03-24 22:19:06 +00004383/// FIXME: we'd also like to handle the case where the last elements are zero
4384/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4385/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004386static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004387 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004388 EVT EltVT = VT.getVectorElementType();
4389 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004390
Nate Begemanfdea31a2010-03-24 20:49:50 +00004391 LoadSDNode *LDBase = NULL;
4392 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004393
Nate Begeman1449f292010-03-24 22:19:06 +00004394 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004395 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004396 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004397 for (unsigned i = 0; i < NumElems; ++i) {
4398 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004399
Nate Begemanfdea31a2010-03-24 20:49:50 +00004400 if (!Elt.getNode() ||
4401 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4402 return SDValue();
4403 if (!LDBase) {
4404 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4405 return SDValue();
4406 LDBase = cast<LoadSDNode>(Elt.getNode());
4407 LastLoadedElt = i;
4408 continue;
4409 }
4410 if (Elt.getOpcode() == ISD::UNDEF)
4411 continue;
4412
4413 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4414 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4415 return SDValue();
4416 LastLoadedElt = i;
4417 }
Nate Begeman1449f292010-03-24 22:19:06 +00004418
4419 // If we have found an entire vector of loads and undefs, then return a large
4420 // load of the entire vector width starting at the base pointer. If we found
4421 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004422 if (LastLoadedElt == NumElems - 1) {
4423 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004424 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004425 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004426 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004427 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004428 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004429 LDBase->isVolatile(), LDBase->isNonTemporal(),
4430 LDBase->getAlignment());
4431 } else if (NumElems == 4 && LastLoadedElt == 1) {
4432 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4433 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004434 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4435 Ops, 2, MVT::i32,
4436 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004437 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004438 }
4439 return SDValue();
4440}
4441
Evan Chengc3630942009-12-09 21:00:30 +00004442SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004443X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004444 DebugLoc dl = Op.getDebugLoc();
David Greenea5f26012011-02-07 19:36:54 +00004445
David Greenef125a292011-02-08 19:04:41 +00004446 EVT VT = Op.getValueType();
4447 EVT ExtVT = VT.getVectorElementType();
4448
4449 unsigned NumElems = Op.getNumOperands();
4450
4451 // For AVX-length vectors, build the individual 128-bit pieces and
4452 // use shuffles to put them in place.
Owen Anderson95771af2011-02-25 21:41:48 +00004453 if (VT.getSizeInBits() > 256 &&
4454 Subtarget->hasAVX() &&
David Greenef125a292011-02-08 19:04:41 +00004455 !ISD::isBuildVectorAllZeros(Op.getNode())) {
4456 SmallVector<SDValue, 8> V;
4457 V.resize(NumElems);
4458 for (unsigned i = 0; i < NumElems; ++i) {
4459 V[i] = Op.getOperand(i);
4460 }
Owen Anderson95771af2011-02-25 21:41:48 +00004461
David Greenef125a292011-02-08 19:04:41 +00004462 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
4463
4464 // Build the lower subvector.
4465 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
4466 // Build the upper subvector.
4467 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
4468 NumElems/2);
4469
4470 return ConcatVectors(Lower, Upper, DAG);
4471 }
4472
Chris Lattner6e80e442010-08-28 17:15:43 +00004473 // All zero's are handled with pxor in SSE2 and above, xorps in SSE1.
4474 // All one's are handled with pcmpeqd. In AVX, zero's are handled with
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004475 // vpxor in 128-bit and xor{pd,ps} in 256-bit, but no 256 version of pcmpeqd
4476 // is present, so AllOnes is ignored.
4477 if (ISD::isBuildVectorAllZeros(Op.getNode()) ||
4478 (Op.getValueType().getSizeInBits() != 256 &&
4479 ISD::isBuildVectorAllOnes(Op.getNode()))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004480 // Canonicalize this to <4 x i32> (SSE) to
Chris Lattner8a594482007-11-25 00:24:49 +00004481 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
4482 // eliminated on x86-32 hosts.
Dale Johannesen0488fb62010-09-30 23:57:10 +00004483 if (Op.getValueType() == MVT::v4i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004484 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004485
Gabor Greifba36cb52008-08-28 21:40:38 +00004486 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004487 return getOnesVector(Op.getValueType(), DAG, dl);
4488 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004489 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004490
Owen Andersone50ed302009-08-10 22:56:29 +00004491 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004492
Evan Cheng0db9fe62006-04-25 20:13:52 +00004493 unsigned NumZero = 0;
4494 unsigned NumNonZero = 0;
4495 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004496 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004497 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004498 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004499 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004500 if (Elt.getOpcode() == ISD::UNDEF)
4501 continue;
4502 Values.insert(Elt);
4503 if (Elt.getOpcode() != ISD::Constant &&
4504 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004505 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004506 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004507 NumZero++;
4508 else {
4509 NonZeros |= (1 << i);
4510 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004511 }
4512 }
4513
Chris Lattner97a2a562010-08-26 05:24:29 +00004514 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4515 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004516 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004517
Chris Lattner67f453a2008-03-09 05:42:06 +00004518 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004519 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004520 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004521 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004522
Chris Lattner62098042008-03-09 01:05:04 +00004523 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4524 // the value are obviously zero, truncate the value to i32 and do the
4525 // insertion that way. Only do this if the value is non-constant or if the
4526 // value is a constant being inserted into element 0. It is cheaper to do
4527 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004528 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004529 (!IsAllConstants || Idx == 0)) {
4530 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004531 // Handle SSE only.
4532 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4533 EVT VecVT = MVT::v4i32;
4534 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004535
Chris Lattner62098042008-03-09 01:05:04 +00004536 // Truncate the value (which may itself be a constant) to i32, and
4537 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004538 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004539 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004540 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4541 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004542
Chris Lattner62098042008-03-09 01:05:04 +00004543 // Now we have our 32-bit value zero extended in the low element of
4544 // a vector. If Idx != 0, swizzle it into place.
4545 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004546 SmallVector<int, 4> Mask;
4547 Mask.push_back(Idx);
4548 for (unsigned i = 1; i != VecElts; ++i)
4549 Mask.push_back(i);
4550 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004551 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004552 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004553 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004554 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004555 }
4556 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004557
Chris Lattner19f79692008-03-08 22:59:52 +00004558 // If we have a constant or non-constant insertion into the low element of
4559 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4560 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004561 // depending on what the source datatype is.
4562 if (Idx == 0) {
4563 if (NumZero == 0) {
4564 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004565 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4566 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004567 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4568 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4569 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4570 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004571 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4572 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004573 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4574 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004575 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4576 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4577 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004578 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00004579 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004580 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004581
4582 // Is it a vector logical left shift?
4583 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004584 X86::isZeroNode(Op.getOperand(0)) &&
4585 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004586 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004587 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004588 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004589 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004590 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004591 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004592
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004593 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004594 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004595
Chris Lattner19f79692008-03-08 22:59:52 +00004596 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4597 // is a non-constant being inserted into an element other than the low one,
4598 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4599 // movd/movss) to move this into the low element, then shuffle it into
4600 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004601 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004602 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004603
Evan Cheng0db9fe62006-04-25 20:13:52 +00004604 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004605 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4606 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004607 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004608 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004609 MaskVec.push_back(i == Idx ? 0 : 1);
4610 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004611 }
4612 }
4613
Chris Lattner67f453a2008-03-09 05:42:06 +00004614 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004615 if (Values.size() == 1) {
4616 if (EVTBits == 32) {
4617 // Instead of a shuffle like this:
4618 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4619 // Check if it's possible to issue this instead.
4620 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4621 unsigned Idx = CountTrailingZeros_32(NonZeros);
4622 SDValue Item = Op.getOperand(Idx);
4623 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4624 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4625 }
Dan Gohman475871a2008-07-27 21:46:04 +00004626 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004627 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004628
Dan Gohmana3941172007-07-24 22:55:08 +00004629 // A vector full of immediates; various special cases are already
4630 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004631 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004632 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004633
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004634 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004635 if (EVTBits == 64) {
4636 if (NumNonZero == 1) {
4637 // One half is zero or undef.
4638 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004639 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004640 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004641 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4642 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004643 }
Dan Gohman475871a2008-07-27 21:46:04 +00004644 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004645 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004646
4647 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004648 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004649 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004650 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004651 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004652 }
4653
Bill Wendling826f36f2007-03-28 00:57:11 +00004654 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004655 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004656 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004657 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004658 }
4659
4660 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004661 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004662 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004663 if (NumElems == 4 && NumZero > 0) {
4664 for (unsigned i = 0; i < 4; ++i) {
4665 bool isZero = !(NonZeros & (1 << i));
4666 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004667 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004668 else
Dale Johannesenace16102009-02-03 19:33:06 +00004669 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004670 }
4671
4672 for (unsigned i = 0; i < 2; ++i) {
4673 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4674 default: break;
4675 case 0:
4676 V[i] = V[i*2]; // Must be a zero vector.
4677 break;
4678 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004679 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004680 break;
4681 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004682 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004683 break;
4684 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004685 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004686 break;
4687 }
4688 }
4689
Nate Begeman9008ca62009-04-27 18:41:29 +00004690 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004691 bool Reverse = (NonZeros & 0x3) == 2;
4692 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004693 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004694 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4695 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004696 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4697 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004698 }
4699
Nate Begemanfdea31a2010-03-24 20:49:50 +00004700 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4701 // Check for a build vector of consecutive loads.
4702 for (unsigned i = 0; i < NumElems; ++i)
4703 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004704
Nate Begemanfdea31a2010-03-24 20:49:50 +00004705 // Check for elements which are consecutive loads.
4706 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4707 if (LD.getNode())
4708 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004709
4710 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004711 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004712 SDValue Result;
4713 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4714 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4715 else
4716 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004717
Chris Lattner24faf612010-08-28 17:59:08 +00004718 for (unsigned i = 1; i < NumElems; ++i) {
4719 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4720 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004721 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004722 }
4723 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004724 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004725
Chris Lattner6e80e442010-08-28 17:15:43 +00004726 // Otherwise, expand into a number of unpckl*, start by extending each of
4727 // our (non-undef) elements to the full vector width with the element in the
4728 // bottom slot of the vector (which generates no code for SSE).
4729 for (unsigned i = 0; i < NumElems; ++i) {
4730 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4731 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4732 else
4733 V[i] = DAG.getUNDEF(VT);
4734 }
4735
4736 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004737 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4738 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4739 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00004740 unsigned EltStride = NumElems >> 1;
4741 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00004742 for (unsigned i = 0; i < EltStride; ++i) {
4743 // If V[i+EltStride] is undef and this is the first round of mixing,
4744 // then it is safe to just drop this shuffle: V[i] is already in the
4745 // right place, the one element (since it's the first round) being
4746 // inserted as undef can be dropped. This isn't safe for successive
4747 // rounds because they will permute elements within both vectors.
4748 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
4749 EltStride == NumElems/2)
4750 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004751
Chris Lattner6e80e442010-08-28 17:15:43 +00004752 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00004753 }
Chris Lattner6e80e442010-08-28 17:15:43 +00004754 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004755 }
4756 return V[0];
4757 }
Dan Gohman475871a2008-07-27 21:46:04 +00004758 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004759}
4760
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004761SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004762X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004763 // We support concatenate two MMX registers and place them in a MMX
4764 // register. This is better than doing a stack convert.
4765 DebugLoc dl = Op.getDebugLoc();
4766 EVT ResVT = Op.getValueType();
4767 assert(Op.getNumOperands() == 2);
4768 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
4769 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
4770 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004771 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004772 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4773 InVec = Op.getOperand(1);
4774 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4775 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004776 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004777 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
4778 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
4779 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004780 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004781 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4782 Mask[0] = 0; Mask[1] = 2;
4783 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
4784 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004785 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004786}
4787
Nate Begemanb9a47b82009-02-23 08:49:38 +00004788// v8i16 shuffles - Prefer shuffles in the following order:
4789// 1. [all] pshuflw, pshufhw, optional move
4790// 2. [ssse3] 1 x pshufb
4791// 3. [ssse3] 2 x pshufb + 1 x por
4792// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004793SDValue
4794X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
4795 SelectionDAG &DAG) const {
4796 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00004797 SDValue V1 = SVOp->getOperand(0);
4798 SDValue V2 = SVOp->getOperand(1);
4799 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004800 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00004801
Nate Begemanb9a47b82009-02-23 08:49:38 +00004802 // Determine if more than 1 of the words in each of the low and high quadwords
4803 // of the result come from the same quadword of one of the two inputs. Undef
4804 // mask values count as coming from any quadword, for better codegen.
4805 SmallVector<unsigned, 4> LoQuad(4);
4806 SmallVector<unsigned, 4> HiQuad(4);
4807 BitVector InputQuads(4);
4808 for (unsigned i = 0; i < 8; ++i) {
4809 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00004810 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004811 MaskVals.push_back(EltIdx);
4812 if (EltIdx < 0) {
4813 ++Quad[0];
4814 ++Quad[1];
4815 ++Quad[2];
4816 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00004817 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004818 }
4819 ++Quad[EltIdx / 4];
4820 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00004821 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004822
Nate Begemanb9a47b82009-02-23 08:49:38 +00004823 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004824 unsigned MaxQuad = 1;
4825 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004826 if (LoQuad[i] > MaxQuad) {
4827 BestLoQuad = i;
4828 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004829 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004830 }
4831
Nate Begemanb9a47b82009-02-23 08:49:38 +00004832 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004833 MaxQuad = 1;
4834 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004835 if (HiQuad[i] > MaxQuad) {
4836 BestHiQuad = i;
4837 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004838 }
4839 }
4840
Nate Begemanb9a47b82009-02-23 08:49:38 +00004841 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00004842 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00004843 // single pshufb instruction is necessary. If There are more than 2 input
4844 // quads, disable the next transformation since it does not help SSSE3.
4845 bool V1Used = InputQuads[0] || InputQuads[1];
4846 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004847 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004848 if (InputQuads.count() == 2 && V1Used && V2Used) {
4849 BestLoQuad = InputQuads.find_first();
4850 BestHiQuad = InputQuads.find_next(BestLoQuad);
4851 }
4852 if (InputQuads.count() > 2) {
4853 BestLoQuad = -1;
4854 BestHiQuad = -1;
4855 }
4856 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004857
Nate Begemanb9a47b82009-02-23 08:49:38 +00004858 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
4859 // the shuffle mask. If a quad is scored as -1, that means that it contains
4860 // words from all 4 input quadwords.
4861 SDValue NewV;
4862 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004863 SmallVector<int, 8> MaskV;
4864 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
4865 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00004866 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004867 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
4868 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
4869 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004870
Nate Begemanb9a47b82009-02-23 08:49:38 +00004871 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
4872 // source words for the shuffle, to aid later transformations.
4873 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00004874 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00004875 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004876 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00004877 if (idx != (int)i)
4878 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004879 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00004880 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004881 AllWordsInNewV = false;
4882 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00004883 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004884
Nate Begemanb9a47b82009-02-23 08:49:38 +00004885 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
4886 if (AllWordsInNewV) {
4887 for (int i = 0; i != 8; ++i) {
4888 int idx = MaskVals[i];
4889 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004890 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004891 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004892 if ((idx != i) && idx < 4)
4893 pshufhw = false;
4894 if ((idx != i) && idx > 3)
4895 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00004896 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00004897 V1 = NewV;
4898 V2Used = false;
4899 BestLoQuad = 0;
4900 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004901 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004902
Nate Begemanb9a47b82009-02-23 08:49:38 +00004903 // If we've eliminated the use of V2, and the new mask is a pshuflw or
4904 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00004905 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004906 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
4907 unsigned TargetMask = 0;
4908 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00004909 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004910 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
4911 X86::getShufflePSHUFLWImmediate(NewV.getNode());
4912 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004913 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00004914 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004915 }
Eric Christopherfd179292009-08-27 18:07:15 +00004916
Nate Begemanb9a47b82009-02-23 08:49:38 +00004917 // If we have SSSE3, and all words of the result are from 1 input vector,
4918 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
4919 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004920 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004921 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004922
Nate Begemanb9a47b82009-02-23 08:49:38 +00004923 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00004924 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00004925 // mask, and elements that come from V1 in the V2 mask, so that the two
4926 // results can be OR'd together.
4927 bool TwoInputs = V1Used && V2Used;
4928 for (unsigned i = 0; i != 8; ++i) {
4929 int EltIdx = MaskVals[i] * 2;
4930 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004931 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4932 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004933 continue;
4934 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004935 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
4936 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004937 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004938 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004939 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004940 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004941 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004942 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004943 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004944
Nate Begemanb9a47b82009-02-23 08:49:38 +00004945 // Calculate the shuffle mask for the second input, shuffle it, and
4946 // OR it with the first shuffled input.
4947 pshufbMask.clear();
4948 for (unsigned i = 0; i != 8; ++i) {
4949 int EltIdx = MaskVals[i] * 2;
4950 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004951 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4952 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004953 continue;
4954 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004955 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
4956 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004957 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004958 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00004959 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004960 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004961 MVT::v16i8, &pshufbMask[0], 16));
4962 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004963 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004964 }
4965
4966 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
4967 // and update MaskVals with new element order.
4968 BitVector InOrder(8);
4969 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004970 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004971 for (int i = 0; i != 4; ++i) {
4972 int idx = MaskVals[i];
4973 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004974 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004975 InOrder.set(i);
4976 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004977 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004978 InOrder.set(i);
4979 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004980 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004981 }
4982 }
4983 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004984 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00004985 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004986 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004987
4988 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4989 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
4990 NewV.getOperand(0),
4991 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
4992 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004993 }
Eric Christopherfd179292009-08-27 18:07:15 +00004994
Nate Begemanb9a47b82009-02-23 08:49:38 +00004995 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
4996 // and update MaskVals with the new element order.
4997 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004998 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004999 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005000 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005001 for (unsigned i = 4; i != 8; ++i) {
5002 int idx = MaskVals[i];
5003 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005004 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005005 InOrder.set(i);
5006 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005007 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005008 InOrder.set(i);
5009 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005010 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005011 }
5012 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005013 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005014 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005015
5016 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5017 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5018 NewV.getOperand(0),
5019 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
5020 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005021 }
Eric Christopherfd179292009-08-27 18:07:15 +00005022
Nate Begemanb9a47b82009-02-23 08:49:38 +00005023 // In case BestHi & BestLo were both -1, which means each quadword has a word
5024 // from each of the four input quadwords, calculate the InOrder bitvector now
5025 // before falling through to the insert/extract cleanup.
5026 if (BestLoQuad == -1 && BestHiQuad == -1) {
5027 NewV = V1;
5028 for (int i = 0; i != 8; ++i)
5029 if (MaskVals[i] < 0 || MaskVals[i] == i)
5030 InOrder.set(i);
5031 }
Eric Christopherfd179292009-08-27 18:07:15 +00005032
Nate Begemanb9a47b82009-02-23 08:49:38 +00005033 // The other elements are put in the right place using pextrw and pinsrw.
5034 for (unsigned i = 0; i != 8; ++i) {
5035 if (InOrder[i])
5036 continue;
5037 int EltIdx = MaskVals[i];
5038 if (EltIdx < 0)
5039 continue;
5040 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005041 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005042 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00005043 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005044 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00005045 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005046 DAG.getIntPtrConstant(i));
5047 }
5048 return NewV;
5049}
5050
5051// v16i8 shuffles - Prefer shuffles in the following order:
5052// 1. [ssse3] 1 x pshufb
5053// 2. [ssse3] 2 x pshufb + 1 x por
5054// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
5055static
Nate Begeman9008ca62009-04-27 18:41:29 +00005056SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00005057 SelectionDAG &DAG,
5058 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005059 SDValue V1 = SVOp->getOperand(0);
5060 SDValue V2 = SVOp->getOperand(1);
5061 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005062 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00005063 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00005064
Nate Begemanb9a47b82009-02-23 08:49:38 +00005065 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00005066 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00005067 // present, fall back to case 3.
5068 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
5069 bool V1Only = true;
5070 bool V2Only = true;
5071 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005072 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00005073 if (EltIdx < 0)
5074 continue;
5075 if (EltIdx < 16)
5076 V2Only = false;
5077 else
5078 V1Only = false;
5079 }
Eric Christopherfd179292009-08-27 18:07:15 +00005080
Nate Begemanb9a47b82009-02-23 08:49:38 +00005081 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
5082 if (TLI.getSubtarget()->hasSSSE3()) {
5083 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005084
Nate Begemanb9a47b82009-02-23 08:49:38 +00005085 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00005086 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005087 //
5088 // Otherwise, we have elements from both input vectors, and must zero out
5089 // elements that come from V2 in the first mask, and V1 in the second mask
5090 // so that we can OR them together.
5091 bool TwoInputs = !(V1Only || V2Only);
5092 for (unsigned i = 0; i != 16; ++i) {
5093 int EltIdx = MaskVals[i];
5094 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005095 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005096 continue;
5097 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005098 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005099 }
5100 // If all the elements are from V2, assign it to V1 and return after
5101 // building the first pshufb.
5102 if (V2Only)
5103 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00005104 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005105 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005106 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005107 if (!TwoInputs)
5108 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00005109
Nate Begemanb9a47b82009-02-23 08:49:38 +00005110 // Calculate the shuffle mask for the second input, shuffle it, and
5111 // OR it with the first shuffled input.
5112 pshufbMask.clear();
5113 for (unsigned i = 0; i != 16; ++i) {
5114 int EltIdx = MaskVals[i];
5115 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005116 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005117 continue;
5118 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005119 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005120 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005121 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005122 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005123 MVT::v16i8, &pshufbMask[0], 16));
5124 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005125 }
Eric Christopherfd179292009-08-27 18:07:15 +00005126
Nate Begemanb9a47b82009-02-23 08:49:38 +00005127 // No SSSE3 - Calculate in place words and then fix all out of place words
5128 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
5129 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005130 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5131 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005132 SDValue NewV = V2Only ? V2 : V1;
5133 for (int i = 0; i != 8; ++i) {
5134 int Elt0 = MaskVals[i*2];
5135 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00005136
Nate Begemanb9a47b82009-02-23 08:49:38 +00005137 // This word of the result is all undef, skip it.
5138 if (Elt0 < 0 && Elt1 < 0)
5139 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005140
Nate Begemanb9a47b82009-02-23 08:49:38 +00005141 // This word of the result is already in the correct place, skip it.
5142 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5143 continue;
5144 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
5145 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005146
Nate Begemanb9a47b82009-02-23 08:49:38 +00005147 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5148 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5149 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00005150
5151 // If Elt0 and Elt1 are defined, are consecutive, and can be load
5152 // using a single extract together, load it and store it.
5153 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005154 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005155 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00005156 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005157 DAG.getIntPtrConstant(i));
5158 continue;
5159 }
5160
Nate Begemanb9a47b82009-02-23 08:49:38 +00005161 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00005162 // source byte is not also odd, shift the extracted word left 8 bits
5163 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005164 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005165 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005166 DAG.getIntPtrConstant(Elt1 / 2));
5167 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005168 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00005169 DAG.getConstant(8,
5170 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005171 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005172 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5173 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005174 }
5175 // If Elt0 is defined, extract it from the appropriate source. If the
5176 // source byte is not also even, shift the extracted word right 8 bits. If
5177 // Elt1 was also defined, OR the extracted values together before
5178 // inserting them in the result.
5179 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005180 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005181 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5182 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005183 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00005184 DAG.getConstant(8,
5185 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005186 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005187 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5188 DAG.getConstant(0x00FF, MVT::i16));
5189 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00005190 : InsElt0;
5191 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005192 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005193 DAG.getIntPtrConstant(i));
5194 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005195 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005196}
5197
Evan Cheng7a831ce2007-12-15 03:00:47 +00005198/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005199/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00005200/// done when every pair / quad of shuffle mask elements point to elements in
5201/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005202/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00005203static
Nate Begeman9008ca62009-04-27 18:41:29 +00005204SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005205 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00005206 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00005207 SDValue V1 = SVOp->getOperand(0);
5208 SDValue V2 = SVOp->getOperand(1);
5209 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00005210 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005211 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00005212 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005213 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00005214 case MVT::v4f32: NewVT = MVT::v2f64; break;
5215 case MVT::v4i32: NewVT = MVT::v2i64; break;
5216 case MVT::v8i16: NewVT = MVT::v4i32; break;
5217 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00005218 }
5219
Nate Begeman9008ca62009-04-27 18:41:29 +00005220 int Scale = NumElems / NewWidth;
5221 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00005222 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005223 int StartIdx = -1;
5224 for (int j = 0; j < Scale; ++j) {
5225 int EltIdx = SVOp->getMaskElt(i+j);
5226 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005227 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00005228 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00005229 StartIdx = EltIdx - (EltIdx % Scale);
5230 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00005231 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005232 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005233 if (StartIdx == -1)
5234 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00005235 else
Nate Begeman9008ca62009-04-27 18:41:29 +00005236 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005237 }
5238
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005239 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
5240 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005241 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005242}
5243
Evan Chengd880b972008-05-09 21:53:03 +00005244/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005245///
Owen Andersone50ed302009-08-10 22:56:29 +00005246static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00005247 SDValue SrcOp, SelectionDAG &DAG,
5248 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005249 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005250 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00005251 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00005252 LD = dyn_cast<LoadSDNode>(SrcOp);
5253 if (!LD) {
5254 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
5255 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00005256 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00005257 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00005258 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005259 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00005260 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005261 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00005262 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005263 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005264 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5265 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5266 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00005267 SrcOp.getOperand(0)
5268 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005269 }
5270 }
5271 }
5272
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005273 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005274 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005275 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00005276 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005277}
5278
Evan Chengace3c172008-07-22 21:13:36 +00005279/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
5280/// shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00005281static SDValue
Nate Begeman9008ca62009-04-27 18:41:29 +00005282LowerVECTOR_SHUFFLE_4wide(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
5283 SDValue V1 = SVOp->getOperand(0);
5284 SDValue V2 = SVOp->getOperand(1);
5285 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00005286 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00005287
Evan Chengace3c172008-07-22 21:13:36 +00005288 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00005289 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005290 SmallVector<int, 8> Mask1(4U, -1);
5291 SmallVector<int, 8> PermMask;
5292 SVOp->getMask(PermMask);
5293
Evan Chengace3c172008-07-22 21:13:36 +00005294 unsigned NumHi = 0;
5295 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00005296 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005297 int Idx = PermMask[i];
5298 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005299 Locs[i] = std::make_pair(-1, -1);
5300 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005301 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
5302 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005303 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00005304 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005305 NumLo++;
5306 } else {
5307 Locs[i] = std::make_pair(1, NumHi);
5308 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005309 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005310 NumHi++;
5311 }
5312 }
5313 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005314
Evan Chengace3c172008-07-22 21:13:36 +00005315 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005316 // If no more than two elements come from either vector. This can be
5317 // implemented with two shuffles. First shuffle gather the elements.
5318 // The second shuffle, which takes the first shuffle as both of its
5319 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00005320 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005321
Nate Begeman9008ca62009-04-27 18:41:29 +00005322 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00005323
Evan Chengace3c172008-07-22 21:13:36 +00005324 for (unsigned i = 0; i != 4; ++i) {
5325 if (Locs[i].first == -1)
5326 continue;
5327 else {
5328 unsigned Idx = (i < 2) ? 0 : 4;
5329 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005330 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005331 }
5332 }
5333
Nate Begeman9008ca62009-04-27 18:41:29 +00005334 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005335 } else if (NumLo == 3 || NumHi == 3) {
5336 // Otherwise, we must have three elements from one vector, call it X, and
5337 // one element from the other, call it Y. First, use a shufps to build an
5338 // intermediate vector with the one element from Y and the element from X
5339 // that will be in the same half in the final destination (the indexes don't
5340 // matter). Then, use a shufps to build the final vector, taking the half
5341 // containing the element from Y from the intermediate, and the other half
5342 // from X.
5343 if (NumHi == 3) {
5344 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00005345 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005346 std::swap(V1, V2);
5347 }
5348
5349 // Find the element from V2.
5350 unsigned HiIndex;
5351 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005352 int Val = PermMask[HiIndex];
5353 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005354 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005355 if (Val >= 4)
5356 break;
5357 }
5358
Nate Begeman9008ca62009-04-27 18:41:29 +00005359 Mask1[0] = PermMask[HiIndex];
5360 Mask1[1] = -1;
5361 Mask1[2] = PermMask[HiIndex^1];
5362 Mask1[3] = -1;
5363 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005364
5365 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005366 Mask1[0] = PermMask[0];
5367 Mask1[1] = PermMask[1];
5368 Mask1[2] = HiIndex & 1 ? 6 : 4;
5369 Mask1[3] = HiIndex & 1 ? 4 : 6;
5370 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005371 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005372 Mask1[0] = HiIndex & 1 ? 2 : 0;
5373 Mask1[1] = HiIndex & 1 ? 0 : 2;
5374 Mask1[2] = PermMask[2];
5375 Mask1[3] = PermMask[3];
5376 if (Mask1[2] >= 0)
5377 Mask1[2] += 4;
5378 if (Mask1[3] >= 0)
5379 Mask1[3] += 4;
5380 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005381 }
Evan Chengace3c172008-07-22 21:13:36 +00005382 }
5383
5384 // Break it into (shuffle shuffle_hi, shuffle_lo).
5385 Locs.clear();
David Greenec4db4e52011-02-28 19:06:56 +00005386 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005387 SmallVector<int,8> LoMask(4U, -1);
5388 SmallVector<int,8> HiMask(4U, -1);
5389
5390 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005391 unsigned MaskIdx = 0;
5392 unsigned LoIdx = 0;
5393 unsigned HiIdx = 2;
5394 for (unsigned i = 0; i != 4; ++i) {
5395 if (i == 2) {
5396 MaskPtr = &HiMask;
5397 MaskIdx = 1;
5398 LoIdx = 0;
5399 HiIdx = 2;
5400 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005401 int Idx = PermMask[i];
5402 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005403 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005404 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005405 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005406 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005407 LoIdx++;
5408 } else {
5409 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005410 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005411 HiIdx++;
5412 }
5413 }
5414
Nate Begeman9008ca62009-04-27 18:41:29 +00005415 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5416 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5417 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005418 for (unsigned i = 0; i != 4; ++i) {
5419 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005420 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005421 } else {
5422 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005423 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005424 }
5425 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005426 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005427}
5428
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005429static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005430 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005431 V = V.getOperand(0);
5432 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5433 V = V.getOperand(0);
5434 if (MayFoldLoad(V))
5435 return true;
5436 return false;
5437}
5438
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005439// FIXME: the version above should always be used. Since there's
5440// a bug where several vector shuffles can't be folded because the
5441// DAG is not updated during lowering and a node claims to have two
5442// uses while it only has one, use this version, and let isel match
5443// another instruction if the load really happens to have more than
5444// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005445// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005446static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005447 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005448 V = V.getOperand(0);
5449 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5450 V = V.getOperand(0);
5451 if (ISD::isNormalLoad(V.getNode()))
5452 return true;
5453 return false;
5454}
5455
5456/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5457/// a vector extract, and if both can be later optimized into a single load.
5458/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5459/// here because otherwise a target specific shuffle node is going to be
5460/// emitted for this shuffle, and the optimization not done.
5461/// FIXME: This is probably not the best approach, but fix the problem
5462/// until the right path is decided.
5463static
5464bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5465 const TargetLowering &TLI) {
5466 EVT VT = V.getValueType();
5467 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5468
5469 // Be sure that the vector shuffle is present in a pattern like this:
5470 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5471 if (!V.hasOneUse())
5472 return false;
5473
5474 SDNode *N = *V.getNode()->use_begin();
5475 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5476 return false;
5477
5478 SDValue EltNo = N->getOperand(1);
5479 if (!isa<ConstantSDNode>(EltNo))
5480 return false;
5481
5482 // If the bit convert changed the number of elements, it is unsafe
5483 // to examine the mask.
5484 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005485 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005486 EVT SrcVT = V.getOperand(0).getValueType();
5487 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5488 return false;
5489 V = V.getOperand(0);
5490 HasShuffleIntoBitcast = true;
5491 }
5492
5493 // Select the input vector, guarding against out of range extract vector.
5494 unsigned NumElems = VT.getVectorNumElements();
5495 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5496 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5497 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5498
5499 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005500 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005501 V = V.getOperand(0);
5502
5503 if (ISD::isNormalLoad(V.getNode())) {
5504 // Is the original load suitable?
5505 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5506
5507 // FIXME: avoid the multi-use bug that is preventing lots of
5508 // of foldings to be detected, this is still wrong of course, but
5509 // give the temporary desired behavior, and if it happens that
5510 // the load has real more uses, during isel it will not fold, and
5511 // will generate poor code.
5512 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5513 return false;
5514
5515 if (!HasShuffleIntoBitcast)
5516 return true;
5517
5518 // If there's a bitcast before the shuffle, check if the load type and
5519 // alignment is valid.
5520 unsigned Align = LN0->getAlignment();
5521 unsigned NewAlign =
5522 TLI.getTargetData()->getABITypeAlignment(
5523 VT.getTypeForEVT(*DAG.getContext()));
5524
5525 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5526 return false;
5527 }
5528
5529 return true;
5530}
5531
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005532static
Evan Cheng835580f2010-10-07 20:50:20 +00005533SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5534 EVT VT = Op.getValueType();
5535
5536 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005537 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
5538 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00005539 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5540 V1, DAG));
5541}
5542
5543static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005544SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5545 bool HasSSE2) {
5546 SDValue V1 = Op.getOperand(0);
5547 SDValue V2 = Op.getOperand(1);
5548 EVT VT = Op.getValueType();
5549
5550 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5551
5552 if (HasSSE2 && VT == MVT::v2f64)
5553 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5554
5555 // v4f32 or v4i32
5556 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5557}
5558
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005559static
5560SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5561 SDValue V1 = Op.getOperand(0);
5562 SDValue V2 = Op.getOperand(1);
5563 EVT VT = Op.getValueType();
5564
5565 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5566 "unsupported shuffle type");
5567
5568 if (V2.getOpcode() == ISD::UNDEF)
5569 V2 = V1;
5570
5571 // v4i32 or v4f32
5572 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5573}
5574
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005575static
5576SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5577 SDValue V1 = Op.getOperand(0);
5578 SDValue V2 = Op.getOperand(1);
5579 EVT VT = Op.getValueType();
5580 unsigned NumElems = VT.getVectorNumElements();
5581
5582 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5583 // operand of these instructions is only memory, so check if there's a
5584 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5585 // same masks.
5586 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005587
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005588 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005589 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005590 CanFoldLoad = true;
5591
5592 // When V1 is a load, it can be folded later into a store in isel, example:
5593 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5594 // turns into:
5595 // (MOVLPSmr addr:$src1, VR128:$src2)
5596 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005597 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005598 CanFoldLoad = true;
5599
Eric Christopher893a8822011-02-20 05:04:42 +00005600 // Both of them can't be memory operations though.
5601 if (MayFoldVectorLoad(V1) && MayFoldVectorLoad(V2))
5602 CanFoldLoad = false;
Owen Anderson95771af2011-02-25 21:41:48 +00005603
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005604 if (CanFoldLoad) {
5605 if (HasSSE2 && NumElems == 2)
5606 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5607
5608 if (NumElems == 4)
5609 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5610 }
5611
5612 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5613 // movl and movlp will both match v2i64, but v2i64 is never matched by
5614 // movl earlier because we make it strict to avoid messing with the movlp load
5615 // folding logic (see the code above getMOVLP call). Match it here then,
5616 // this is horrible, but will stay like this until we move all shuffle
5617 // matching to x86 specific nodes. Note that for the 1st condition all
5618 // types are matched with movsd.
5619 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5620 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5621 else if (HasSSE2)
5622 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5623
5624
5625 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5626
5627 // Invert the operand order and use SHUFPS to match it.
5628 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5629 X86::getShuffleSHUFImmediate(SVOp), DAG);
5630}
5631
David Greenec4db4e52011-02-28 19:06:56 +00005632static inline unsigned getUNPCKLOpcode(EVT VT, const X86Subtarget *Subtarget) {
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005633 switch(VT.getSimpleVT().SimpleTy) {
5634 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5635 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
David Greenec4db4e52011-02-28 19:06:56 +00005636 case MVT::v4f32:
5637 return Subtarget->hasAVX() ? X86ISD::VUNPCKLPS : X86ISD::UNPCKLPS;
5638 case MVT::v2f64:
5639 return Subtarget->hasAVX() ? X86ISD::VUNPCKLPD : X86ISD::UNPCKLPD;
5640 case MVT::v8f32: return X86ISD::VUNPCKLPSY;
5641 case MVT::v4f64: return X86ISD::VUNPCKLPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005642 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5643 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5644 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00005645 llvm_unreachable("Unknown type for unpckl");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005646 }
5647 return 0;
5648}
5649
5650static inline unsigned getUNPCKHOpcode(EVT VT) {
5651 switch(VT.getSimpleVT().SimpleTy) {
5652 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5653 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5654 case MVT::v4f32: return X86ISD::UNPCKHPS;
5655 case MVT::v2f64: return X86ISD::UNPCKHPD;
5656 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5657 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5658 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00005659 llvm_unreachable("Unknown type for unpckh");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005660 }
5661 return 0;
5662}
5663
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005664static
5665SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005666 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005667 const X86Subtarget *Subtarget) {
5668 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5669 EVT VT = Op.getValueType();
5670 DebugLoc dl = Op.getDebugLoc();
5671 SDValue V1 = Op.getOperand(0);
5672 SDValue V2 = Op.getOperand(1);
5673
5674 if (isZeroShuffle(SVOp))
5675 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
5676
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005677 // Handle splat operations
5678 if (SVOp->isSplat()) {
5679 // Special case, this is the only place now where it's
5680 // allowed to return a vector_shuffle operation without
5681 // using a target specific node, because *hopefully* it
5682 // will be optimized away by the dag combiner.
5683 if (VT.getVectorNumElements() <= 4 &&
5684 CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
5685 return Op;
5686
5687 // Handle splats by matching through known masks
5688 if (VT.getVectorNumElements() <= 4)
5689 return SDValue();
5690
Evan Cheng835580f2010-10-07 20:50:20 +00005691 // Canonicalize all of the remaining to v4f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005692 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005693 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005694
5695 // If the shuffle can be profitably rewritten as a narrower shuffle, then
5696 // do it!
5697 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
5698 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5699 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005700 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005701 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
5702 // FIXME: Figure out a cleaner way to do this.
5703 // Try to make use of movq to zero out the top part.
5704 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
5705 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5706 if (NewOp.getNode()) {
5707 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
5708 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
5709 DAG, Subtarget, dl);
5710 }
5711 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
5712 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5713 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
5714 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
5715 DAG, Subtarget, dl);
5716 }
5717 }
5718 return SDValue();
5719}
5720
Dan Gohman475871a2008-07-27 21:46:04 +00005721SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005722X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00005723 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005724 SDValue V1 = Op.getOperand(0);
5725 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005726 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005727 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00005728 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005729 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005730 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
5731 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00005732 bool V1IsSplat = false;
5733 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005734 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005735 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005736 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005737 MachineFunction &MF = DAG.getMachineFunction();
5738 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005739
Dale Johannesen0488fb62010-09-30 23:57:10 +00005740 // Shuffle operations on MMX not supported.
5741 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00005742 return Op;
5743
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005744 // Vector shuffle lowering takes 3 steps:
5745 //
5746 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
5747 // narrowing and commutation of operands should be handled.
5748 // 2) Matching of shuffles with known shuffle masks to x86 target specific
5749 // shuffle nodes.
5750 // 3) Rewriting of unmatched masks into new generic shuffle operations,
5751 // so the shuffle can be broken into other shuffles and the legalizer can
5752 // try the lowering again.
5753 //
5754 // The general ideia is that no vector_shuffle operation should be left to
5755 // be matched during isel, all of them must be converted to a target specific
5756 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00005757
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005758 // Normalize the input vectors. Here splats, zeroed vectors, profitable
5759 // narrowing and commutation of operands should be handled. The actual code
5760 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005761 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005762 if (NewOp.getNode())
5763 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00005764
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005765 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
5766 // unpckh_undef). Only use pshufd if speed is more important than size.
5767 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
5768 if (VT != MVT::v2i64 && VT != MVT::v2f64)
David Greenec4db4e52011-02-28 19:06:56 +00005769 return getTargetShuffleNode(getUNPCKLOpcode(VT, getSubtarget()), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005770 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
5771 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5772 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00005773
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005774 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00005775 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00005776 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005777
Dale Johannesen0488fb62010-09-30 23:57:10 +00005778 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005779 return getMOVHighToLow(Op, dl, DAG);
5780
5781 // Use to match splats
5782 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
5783 (VT == MVT::v2f64 || VT == MVT::v2i64))
5784 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5785
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005786 if (X86::isPSHUFDMask(SVOp)) {
5787 // The actual implementation will match the mask in the if above and then
5788 // during isel it can match several different instructions, not only pshufd
5789 // as its name says, sad but true, emulate the behavior for now...
5790 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
5791 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
5792
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005793 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5794
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005795 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005796 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
5797
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005798 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005799 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
5800 TargetMask, DAG);
5801
5802 if (VT == MVT::v4f32)
5803 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
5804 TargetMask, DAG);
5805 }
Eric Christopherfd179292009-08-27 18:07:15 +00005806
Evan Chengf26ffe92008-05-29 08:22:04 +00005807 // Check if this can be converted into a logical shift.
5808 bool isLeft = false;
5809 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00005810 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00005811 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00005812 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00005813 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005814 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00005815 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005816 EVT EltVT = VT.getVectorElementType();
5817 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005818 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005819 }
Eric Christopherfd179292009-08-27 18:07:15 +00005820
Nate Begeman9008ca62009-04-27 18:41:29 +00005821 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005822 if (V1IsUndef)
5823 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00005824 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00005825 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00005826 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005827 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005828 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5829
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005830 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005831 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5832 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00005833 }
Eric Christopherfd179292009-08-27 18:07:15 +00005834
Nate Begeman9008ca62009-04-27 18:41:29 +00005835 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00005836 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
5837 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005838
Dale Johannesen0488fb62010-09-30 23:57:10 +00005839 if (X86::isMOVHLPSMask(SVOp))
5840 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005841
Dale Johannesen0488fb62010-09-30 23:57:10 +00005842 if (X86::isMOVSHDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5843 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005844
Dale Johannesen0488fb62010-09-30 23:57:10 +00005845 if (X86::isMOVSLDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5846 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00005847
Dale Johannesen0488fb62010-09-30 23:57:10 +00005848 if (X86::isMOVLPMask(SVOp))
5849 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005850
Nate Begeman9008ca62009-04-27 18:41:29 +00005851 if (ShouldXformToMOVHLPS(SVOp) ||
5852 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
5853 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005854
Evan Chengf26ffe92008-05-29 08:22:04 +00005855 if (isShift) {
5856 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005857 EVT EltVT = VT.getVectorElementType();
5858 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005859 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005860 }
Eric Christopherfd179292009-08-27 18:07:15 +00005861
Evan Cheng9eca5e82006-10-25 21:49:50 +00005862 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00005863 // FIXME: This should also accept a bitcast of a splat? Be careful, not
5864 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00005865 V1IsSplat = isSplatVector(V1.getNode());
5866 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005867
Chris Lattner8a594482007-11-25 00:24:49 +00005868 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00005869 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005870 Op = CommuteVectorShuffle(SVOp, DAG);
5871 SVOp = cast<ShuffleVectorSDNode>(Op);
5872 V1 = SVOp->getOperand(0);
5873 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00005874 std::swap(V1IsSplat, V2IsSplat);
5875 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005876 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00005877 }
5878
Nate Begeman9008ca62009-04-27 18:41:29 +00005879 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
5880 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00005881 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00005882 return V1;
5883 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
5884 // the instruction selector will not match, so get a canonical MOVL with
5885 // swapped operands to undo the commute.
5886 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00005887 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005888
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005889 if (X86::isUNPCKLMask(SVOp))
David Greenec4db4e52011-02-28 19:06:56 +00005890 return getTargetShuffleNode(getUNPCKLOpcode(VT, getSubtarget()),
5891 dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005892
5893 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005894 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00005895
Evan Cheng9bbbb982006-10-25 20:48:19 +00005896 if (V2IsSplat) {
5897 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00005898 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00005899 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00005900 SDValue NewMask = NormalizeMask(SVOp, DAG);
5901 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
5902 if (NSVOp != SVOp) {
5903 if (X86::isUNPCKLMask(NSVOp, true)) {
5904 return NewMask;
5905 } else if (X86::isUNPCKHMask(NSVOp, true)) {
5906 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005907 }
5908 }
5909 }
5910
Evan Cheng9eca5e82006-10-25 21:49:50 +00005911 if (Commuted) {
5912 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00005913 // FIXME: this seems wrong.
5914 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
5915 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005916
5917 if (X86::isUNPCKLMask(NewSVOp))
David Greenec4db4e52011-02-28 19:06:56 +00005918 return getTargetShuffleNode(getUNPCKLOpcode(VT, getSubtarget()),
5919 dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005920
5921 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005922 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005923 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005924
Nate Begeman9008ca62009-04-27 18:41:29 +00005925 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00005926 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00005927 return CommuteVectorShuffle(SVOp, DAG);
5928
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00005929 // The checks below are all present in isShuffleMaskLegal, but they are
5930 // inlined here right now to enable us to directly emit target specific
5931 // nodes, and remove one by one until they don't return Op anymore.
5932 SmallVector<int, 16> M;
5933 SVOp->getMask(M);
5934
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005935 if (isPALIGNRMask(M, VT, HasSSSE3))
5936 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
5937 X86::getShufflePALIGNRImmediate(SVOp),
5938 DAG);
5939
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00005940 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
5941 SVOp->getSplatIndex() == 0 && V2IsUndef) {
David Greenec4db4e52011-02-28 19:06:56 +00005942 if (VT == MVT::v2f64) {
5943 X86ISD::NodeType Opcode =
5944 getSubtarget()->hasAVX() ? X86ISD::VUNPCKLPD : X86ISD::UNPCKLPD;
5945 return getTargetShuffleNode(Opcode, dl, VT, V1, V1, DAG);
5946 }
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00005947 if (VT == MVT::v2i64)
5948 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
5949 }
5950
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00005951 if (isPSHUFHWMask(M, VT))
5952 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
5953 X86::getShufflePSHUFHWImmediate(SVOp),
5954 DAG);
5955
5956 if (isPSHUFLWMask(M, VT))
5957 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
5958 X86::getShufflePSHUFLWImmediate(SVOp),
5959 DAG);
5960
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00005961 if (isSHUFPMask(M, VT)) {
5962 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5963 if (VT == MVT::v4f32 || VT == MVT::v4i32)
5964 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
5965 TargetMask, DAG);
5966 if (VT == MVT::v2f64 || VT == MVT::v2i64)
5967 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
5968 TargetMask, DAG);
5969 }
5970
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005971 if (X86::isUNPCKL_v_undef_Mask(SVOp))
5972 if (VT != MVT::v2i64 && VT != MVT::v2f64)
David Greenec4db4e52011-02-28 19:06:56 +00005973 return getTargetShuffleNode(getUNPCKLOpcode(VT, getSubtarget()),
5974 dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005975 if (X86::isUNPCKH_v_undef_Mask(SVOp))
5976 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5977 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5978
Evan Cheng14b32e12007-12-11 01:46:18 +00005979 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
Owen Anderson825b72b2009-08-11 20:47:22 +00005980 if (VT == MVT::v8i16) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005981 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005982 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00005983 return NewOp;
5984 }
5985
Owen Anderson825b72b2009-08-11 20:47:22 +00005986 if (VT == MVT::v16i8) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005987 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005988 if (NewOp.getNode())
5989 return NewOp;
5990 }
Eric Christopherfd179292009-08-27 18:07:15 +00005991
Dale Johannesen0488fb62010-09-30 23:57:10 +00005992 // Handle all 4 wide cases with a number of shuffles.
5993 if (NumElems == 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005994 return LowerVECTOR_SHUFFLE_4wide(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005995
Dan Gohman475871a2008-07-27 21:46:04 +00005996 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005997}
5998
Dan Gohman475871a2008-07-27 21:46:04 +00005999SDValue
6000X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00006001 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006002 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006003 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006004 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006005 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006006 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006007 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006008 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006009 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006010 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00006011 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6012 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
6013 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006014 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6015 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006016 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006017 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00006018 Op.getOperand(0)),
6019 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006020 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006021 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006022 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006023 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006024 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00006025 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00006026 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
6027 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006028 // result has a single use which is a store or a bitcast to i32. And in
6029 // the case of a store, it's not worth it if the index is a constant 0,
6030 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00006031 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00006032 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006033 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006034 if ((User->getOpcode() != ISD::STORE ||
6035 (isa<ConstantSDNode>(Op.getOperand(1)) &&
6036 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006037 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006038 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00006039 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00006040 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006041 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00006042 Op.getOperand(0)),
6043 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006044 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00006045 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00006046 // ExtractPS works with constant index.
6047 if (isa<ConstantSDNode>(Op.getOperand(1)))
6048 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006049 }
Dan Gohman475871a2008-07-27 21:46:04 +00006050 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006051}
6052
6053
Dan Gohman475871a2008-07-27 21:46:04 +00006054SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006055X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6056 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006057 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00006058 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006059
David Greene74a579d2011-02-10 16:57:36 +00006060 SDValue Vec = Op.getOperand(0);
6061 EVT VecVT = Vec.getValueType();
6062
6063 // If this is a 256-bit vector result, first extract the 128-bit
6064 // vector and then extract from the 128-bit vector.
6065 if (VecVT.getSizeInBits() > 128) {
6066 DebugLoc dl = Op.getNode()->getDebugLoc();
6067 unsigned NumElems = VecVT.getVectorNumElements();
6068 SDValue Idx = Op.getOperand(1);
6069
6070 if (!isa<ConstantSDNode>(Idx))
6071 return SDValue();
6072
6073 unsigned ExtractNumElems = NumElems / (VecVT.getSizeInBits() / 128);
6074 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
6075
6076 // Get the 128-bit vector.
6077 bool Upper = IdxVal >= ExtractNumElems;
6078 Vec = Extract128BitVector(Vec, Idx, DAG, dl);
6079
6080 // Extract from it.
6081 SDValue ScaledIdx = Idx;
6082 if (Upper)
6083 ScaledIdx = DAG.getNode(ISD::SUB, dl, Idx.getValueType(), Idx,
6084 DAG.getConstant(ExtractNumElems,
6085 Idx.getValueType()));
6086 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
6087 ScaledIdx);
6088 }
6089
6090 assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
6091
Evan Cheng62a3f152008-03-24 21:52:23 +00006092 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006093 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006094 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00006095 return Res;
6096 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00006097
Owen Andersone50ed302009-08-10 22:56:29 +00006098 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006099 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006100 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006101 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006102 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006103 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006104 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006105 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6106 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006107 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006108 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00006109 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006110 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00006111 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00006112 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006113 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00006114 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006115 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006116 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006117 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006118 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006119 if (Idx == 0)
6120 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00006121
Evan Cheng0db9fe62006-04-25 20:13:52 +00006122 // SHUFPS the element to the lowest double word, then movss.
Nate Begeman9008ca62009-04-27 18:41:29 +00006123 int Mask[4] = { Idx, -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006124 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006125 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006126 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006127 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006128 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00006129 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006130 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
6131 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
6132 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006133 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006134 if (Idx == 0)
6135 return Op;
6136
6137 // UNPCKHPD the element to the lowest double word, then movsd.
6138 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6139 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00006140 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006141 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006142 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006143 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006144 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006145 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006146 }
6147
Dan Gohman475871a2008-07-27 21:46:04 +00006148 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006149}
6150
Dan Gohman475871a2008-07-27 21:46:04 +00006151SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006152X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6153 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006154 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006155 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006156 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006157
Dan Gohman475871a2008-07-27 21:46:04 +00006158 SDValue N0 = Op.getOperand(0);
6159 SDValue N1 = Op.getOperand(1);
6160 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00006161
Dan Gohman8a55ce42009-09-23 21:02:20 +00006162 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00006163 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006164 unsigned Opc;
6165 if (VT == MVT::v8i16)
6166 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006167 else if (VT == MVT::v16i8)
6168 Opc = X86ISD::PINSRB;
6169 else
6170 Opc = X86ISD::PINSRB;
6171
Nate Begeman14d12ca2008-02-11 04:19:36 +00006172 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
6173 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006174 if (N1.getValueType() != MVT::i32)
6175 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6176 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006177 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00006178 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006179 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006180 // Bits [7:6] of the constant are the source select. This will always be
6181 // zero here. The DAG Combiner may combine an extract_elt index into these
6182 // bits. For example (insert (extract, 3), 2) could be matched by putting
6183 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00006184 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00006185 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00006186 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00006187 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006188 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00006189 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00006190 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00006191 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006192 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00006193 // PINSR* works with constant index.
6194 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006195 }
Dan Gohman475871a2008-07-27 21:46:04 +00006196 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006197}
6198
Dan Gohman475871a2008-07-27 21:46:04 +00006199SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006200X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006201 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006202 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006203
David Greene6b381262011-02-09 15:32:06 +00006204 DebugLoc dl = Op.getDebugLoc();
6205 SDValue N0 = Op.getOperand(0);
6206 SDValue N1 = Op.getOperand(1);
6207 SDValue N2 = Op.getOperand(2);
6208
6209 // If this is a 256-bit vector result, first insert into a 128-bit
6210 // vector and then insert into the 256-bit vector.
6211 if (VT.getSizeInBits() > 128) {
6212 if (!isa<ConstantSDNode>(N2))
6213 return SDValue();
6214
6215 // Get the 128-bit vector.
6216 unsigned NumElems = VT.getVectorNumElements();
6217 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
6218 bool Upper = IdxVal >= NumElems / 2;
6219
6220 SDValue SubN0 = Extract128BitVector(N0, N2, DAG, dl);
6221
6222 // Insert into it.
6223 SDValue ScaledN2 = N2;
6224 if (Upper)
6225 ScaledN2 = DAG.getNode(ISD::SUB, dl, N2.getValueType(), N2,
Owen Anderson95771af2011-02-25 21:41:48 +00006226 DAG.getConstant(NumElems /
David Greene6b381262011-02-09 15:32:06 +00006227 (VT.getSizeInBits() / 128),
6228 N2.getValueType()));
6229 Op = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, SubN0.getValueType(), SubN0,
6230 N1, ScaledN2);
6231
6232 // Insert the 128-bit vector
6233 // FIXME: Why UNDEF?
6234 return Insert128BitVector(N0, Op, N2, DAG, dl);
6235 }
6236
Nate Begeman14d12ca2008-02-11 04:19:36 +00006237 if (Subtarget->hasSSE41())
6238 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
6239
Dan Gohman8a55ce42009-09-23 21:02:20 +00006240 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00006241 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00006242
Dan Gohman8a55ce42009-09-23 21:02:20 +00006243 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00006244 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
6245 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006246 if (N1.getValueType() != MVT::i32)
6247 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6248 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006249 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00006250 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006251 }
Dan Gohman475871a2008-07-27 21:46:04 +00006252 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006253}
6254
Dan Gohman475871a2008-07-27 21:46:04 +00006255SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006256X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
David Greene2fcdfb42011-02-10 23:11:29 +00006257 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006258 DebugLoc dl = Op.getDebugLoc();
David Greene2fcdfb42011-02-10 23:11:29 +00006259 EVT OpVT = Op.getValueType();
6260
6261 // If this is a 256-bit vector result, first insert into a 128-bit
6262 // vector and then insert into the 256-bit vector.
6263 if (OpVT.getSizeInBits() > 128) {
6264 // Insert into a 128-bit vector.
6265 EVT VT128 = EVT::getVectorVT(*Context,
6266 OpVT.getVectorElementType(),
6267 OpVT.getVectorNumElements() / 2);
6268
6269 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
6270
6271 // Insert the 128-bit vector.
6272 return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op,
6273 DAG.getConstant(0, MVT::i32),
6274 DAG, dl);
6275 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006276
Chris Lattnerf172ecd2010-07-04 23:07:25 +00006277 if (Op.getValueType() == MVT::v1i64 &&
6278 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00006279 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00006280
Owen Anderson825b72b2009-08-11 20:47:22 +00006281 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00006282 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
6283 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006284 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00006285 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006286}
6287
David Greene91585092011-01-26 15:38:49 +00006288// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
6289// a simple subregister reference or explicit instructions to grab
6290// upper bits of a vector.
6291SDValue
6292X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6293 if (Subtarget->hasAVX()) {
David Greenea5f26012011-02-07 19:36:54 +00006294 DebugLoc dl = Op.getNode()->getDebugLoc();
6295 SDValue Vec = Op.getNode()->getOperand(0);
6296 SDValue Idx = Op.getNode()->getOperand(1);
6297
6298 if (Op.getNode()->getValueType(0).getSizeInBits() == 128
6299 && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
6300 return Extract128BitVector(Vec, Idx, DAG, dl);
6301 }
David Greene91585092011-01-26 15:38:49 +00006302 }
6303 return SDValue();
6304}
6305
David Greenecfe33c42011-01-26 19:13:22 +00006306// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
6307// simple superregister reference or explicit instructions to insert
6308// the upper bits of a vector.
6309SDValue
6310X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6311 if (Subtarget->hasAVX()) {
6312 DebugLoc dl = Op.getNode()->getDebugLoc();
6313 SDValue Vec = Op.getNode()->getOperand(0);
6314 SDValue SubVec = Op.getNode()->getOperand(1);
6315 SDValue Idx = Op.getNode()->getOperand(2);
6316
6317 if (Op.getNode()->getValueType(0).getSizeInBits() == 256
6318 && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
David Greenea5f26012011-02-07 19:36:54 +00006319 return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00006320 }
6321 }
6322 return SDValue();
6323}
6324
Bill Wendling056292f2008-09-16 21:48:12 +00006325// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
6326// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
6327// one of the above mentioned nodes. It has to be wrapped because otherwise
6328// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
6329// be used to form addressing mode. These wrapped nodes will be selected
6330// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00006331SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006332X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006333 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006334
Chris Lattner41621a22009-06-26 19:22:52 +00006335 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6336 // global base reg.
6337 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006338 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006339 CodeModel::Model M = getTargetMachine().getCodeModel();
6340
Chris Lattner4f066492009-07-11 20:29:19 +00006341 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006342 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006343 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006344 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006345 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006346 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006347 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006348
Evan Cheng1606e8e2009-03-13 07:51:59 +00006349 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00006350 CP->getAlignment(),
6351 CP->getOffset(), OpFlag);
6352 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00006353 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006354 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00006355 if (OpFlag) {
6356 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00006357 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006358 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006359 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006360 }
6361
6362 return Result;
6363}
6364
Dan Gohmand858e902010-04-17 15:26:15 +00006365SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006366 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006367
Chris Lattner18c59872009-06-27 04:16:01 +00006368 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6369 // global base reg.
6370 unsigned char OpFlag = 0;
6371 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006372 CodeModel::Model M = getTargetMachine().getCodeModel();
6373
Chris Lattner4f066492009-07-11 20:29:19 +00006374 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006375 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006376 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006377 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006378 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006379 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006380 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006381
Chris Lattner18c59872009-06-27 04:16:01 +00006382 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
6383 OpFlag);
6384 DebugLoc DL = JT->getDebugLoc();
6385 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006386
Chris Lattner18c59872009-06-27 04:16:01 +00006387 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00006388 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00006389 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6390 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006391 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006392 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006393
Chris Lattner18c59872009-06-27 04:16:01 +00006394 return Result;
6395}
6396
6397SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006398X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006399 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00006400
Chris Lattner18c59872009-06-27 04:16:01 +00006401 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6402 // global base reg.
6403 unsigned char OpFlag = 0;
6404 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006405 CodeModel::Model M = getTargetMachine().getCodeModel();
6406
Chris Lattner4f066492009-07-11 20:29:19 +00006407 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006408 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006409 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006410 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006411 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006412 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006413 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006414
Chris Lattner18c59872009-06-27 04:16:01 +00006415 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00006416
Chris Lattner18c59872009-06-27 04:16:01 +00006417 DebugLoc DL = Op.getDebugLoc();
6418 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006419
6420
Chris Lattner18c59872009-06-27 04:16:01 +00006421 // With PIC, the address is actually $g + Offset.
6422 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00006423 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00006424 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6425 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006426 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006427 Result);
6428 }
Eric Christopherfd179292009-08-27 18:07:15 +00006429
Chris Lattner18c59872009-06-27 04:16:01 +00006430 return Result;
6431}
6432
Dan Gohman475871a2008-07-27 21:46:04 +00006433SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006434X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00006435 // Create the TargetBlockAddressAddress node.
6436 unsigned char OpFlags =
6437 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00006438 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00006439 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00006440 DebugLoc dl = Op.getDebugLoc();
6441 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
6442 /*isTarget=*/true, OpFlags);
6443
Dan Gohmanf705adb2009-10-30 01:28:02 +00006444 if (Subtarget->isPICStyleRIPRel() &&
6445 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00006446 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6447 else
6448 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00006449
Dan Gohman29cbade2009-11-20 23:18:13 +00006450 // With PIC, the address is actually $g + Offset.
6451 if (isGlobalRelativeToPICBase(OpFlags)) {
6452 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6453 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
6454 Result);
6455 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00006456
6457 return Result;
6458}
6459
6460SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00006461X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00006462 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00006463 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00006464 // Create the TargetGlobalAddress node, folding in the constant
6465 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00006466 unsigned char OpFlags =
6467 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006468 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00006469 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006470 if (OpFlags == X86II::MO_NO_FLAG &&
6471 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00006472 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00006473 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00006474 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006475 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00006476 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006477 }
Eric Christopherfd179292009-08-27 18:07:15 +00006478
Chris Lattner4f066492009-07-11 20:29:19 +00006479 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006480 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00006481 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6482 else
6483 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00006484
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006485 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00006486 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006487 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6488 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006489 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006490 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006491
Chris Lattner36c25012009-07-10 07:34:39 +00006492 // For globals that require a load from a stub to get the address, emit the
6493 // load.
6494 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00006495 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006496 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006497
Dan Gohman6520e202008-10-18 02:06:02 +00006498 // If there was a non-zero offset that we didn't fold, create an explicit
6499 // addition for it.
6500 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006501 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006502 DAG.getConstant(Offset, getPointerTy()));
6503
Evan Cheng0db9fe62006-04-25 20:13:52 +00006504 return Result;
6505}
6506
Evan Chengda43bcf2008-09-24 00:05:32 +00006507SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006508X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006509 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006510 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006511 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006512}
6513
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006514static SDValue
6515GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006516 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006517 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006518 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006519 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006520 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006521 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006522 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006523 GA->getOffset(),
6524 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006525 if (InFlag) {
6526 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006527 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006528 } else {
6529 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006530 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006531 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006532
6533 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006534 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006535
Rafael Espindola15f1b662009-04-24 12:59:40 +00006536 SDValue Flag = Chain.getValue(1);
6537 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006538}
6539
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006540// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006541static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006542LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006543 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006544 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006545 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6546 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006547 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006548 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006549 InFlag = Chain.getValue(1);
6550
Chris Lattnerb903bed2009-06-26 21:20:29 +00006551 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006552}
6553
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006554// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006555static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006556LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006557 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006558 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6559 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006560}
6561
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006562// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6563// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006564static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006565 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006566 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006567 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006568
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006569 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6570 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6571 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006572
Michael J. Spencerec38de22010-10-10 22:04:20 +00006573 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006574 DAG.getIntPtrConstant(0),
6575 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006576
Chris Lattnerb903bed2009-06-26 21:20:29 +00006577 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006578 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6579 // initialexec.
6580 unsigned WrapperKind = X86ISD::Wrapper;
6581 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006582 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006583 } else if (is64Bit) {
6584 assert(model == TLSModel::InitialExec);
6585 OperandFlags = X86II::MO_GOTTPOFF;
6586 WrapperKind = X86ISD::WrapperRIP;
6587 } else {
6588 assert(model == TLSModel::InitialExec);
6589 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006590 }
Eric Christopherfd179292009-08-27 18:07:15 +00006591
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006592 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6593 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006594 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006595 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006596 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006597 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006598
Rafael Espindola9a580232009-02-27 13:37:18 +00006599 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006600 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006601 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006602
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006603 // The address of the thread local variable is the add of the thread
6604 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006605 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006606}
6607
Dan Gohman475871a2008-07-27 21:46:04 +00006608SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006609X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006610
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006611 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006612 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006613
Eric Christopher30ef0e52010-06-03 04:07:48 +00006614 if (Subtarget->isTargetELF()) {
6615 // TODO: implement the "local dynamic" model
6616 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006617
Eric Christopher30ef0e52010-06-03 04:07:48 +00006618 // If GV is an alias then use the aliasee for determining
6619 // thread-localness.
6620 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6621 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006622
6623 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006624 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006625
Eric Christopher30ef0e52010-06-03 04:07:48 +00006626 switch (model) {
6627 case TLSModel::GeneralDynamic:
6628 case TLSModel::LocalDynamic: // not implemented
6629 if (Subtarget->is64Bit())
6630 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6631 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006632
Eric Christopher30ef0e52010-06-03 04:07:48 +00006633 case TLSModel::InitialExec:
6634 case TLSModel::LocalExec:
6635 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6636 Subtarget->is64Bit());
6637 }
6638 } else if (Subtarget->isTargetDarwin()) {
6639 // Darwin only has one model of TLS. Lower to that.
6640 unsigned char OpFlag = 0;
6641 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6642 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006643
Eric Christopher30ef0e52010-06-03 04:07:48 +00006644 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6645 // global base reg.
6646 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6647 !Subtarget->is64Bit();
6648 if (PIC32)
6649 OpFlag = X86II::MO_TLVP_PIC_BASE;
6650 else
6651 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006652 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006653 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00006654 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00006655 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00006656 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006657
Eric Christopher30ef0e52010-06-03 04:07:48 +00006658 // With PIC32, the address is actually $g + Offset.
6659 if (PIC32)
6660 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6661 DAG.getNode(X86ISD::GlobalBaseReg,
6662 DebugLoc(), getPointerTy()),
6663 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006664
Eric Christopher30ef0e52010-06-03 04:07:48 +00006665 // Lowering the machine isd will make sure everything is in the right
6666 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00006667 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006668 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00006669 SDValue Args[] = { Chain, Offset };
6670 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006671
Eric Christopher30ef0e52010-06-03 04:07:48 +00006672 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
6673 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6674 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00006675
Eric Christopher30ef0e52010-06-03 04:07:48 +00006676 // And our return value (tls address) is in the standard call return value
6677 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00006678 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
6679 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006680 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006681
Eric Christopher30ef0e52010-06-03 04:07:48 +00006682 assert(false &&
6683 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00006684
Torok Edwinc23197a2009-07-14 16:55:14 +00006685 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00006686 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006687}
6688
Evan Cheng0db9fe62006-04-25 20:13:52 +00006689
Nadav Rotem43012222011-05-11 08:12:09 +00006690/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00006691/// take a 2 x i32 value to shift plus a shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00006692SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00006693 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00006694 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006695 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006696 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006697 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00006698 SDValue ShOpLo = Op.getOperand(0);
6699 SDValue ShOpHi = Op.getOperand(1);
6700 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00006701 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00006702 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00006703 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00006704
Dan Gohman475871a2008-07-27 21:46:04 +00006705 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006706 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006707 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
6708 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006709 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006710 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
6711 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006712 }
Evan Chenge3413162006-01-09 18:33:28 +00006713
Owen Anderson825b72b2009-08-11 20:47:22 +00006714 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
6715 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00006716 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00006717 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00006718
Dan Gohman475871a2008-07-27 21:46:04 +00006719 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00006720 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00006721 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
6722 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00006723
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006724 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006725 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6726 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006727 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006728 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6729 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006730 }
6731
Dan Gohman475871a2008-07-27 21:46:04 +00006732 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00006733 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006734}
Evan Chenga3195e82006-01-12 22:54:21 +00006735
Dan Gohmand858e902010-04-17 15:26:15 +00006736SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
6737 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006738 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00006739
Dale Johannesen0488fb62010-09-30 23:57:10 +00006740 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006741 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006742
Owen Anderson825b72b2009-08-11 20:47:22 +00006743 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00006744 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00006745
Eli Friedman36df4992009-05-27 00:47:34 +00006746 // These are really Legal; return the operand so the caller accepts it as
6747 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006748 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00006749 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00006750 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00006751 Subtarget->is64Bit()) {
6752 return Op;
6753 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006754
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006755 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006756 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006757 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00006758 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006759 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00006760 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00006761 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006762 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006763 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006764 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
6765}
Evan Cheng0db9fe62006-04-25 20:13:52 +00006766
Owen Andersone50ed302009-08-10 22:56:29 +00006767SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00006768 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00006769 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006770 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00006771 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00006772 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00006773 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006774 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006775 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00006776 else
Owen Anderson825b72b2009-08-11 20:47:22 +00006777 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006778
Chris Lattner492a43e2010-09-22 01:28:21 +00006779 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006780
Chris Lattner492a43e2010-09-22 01:28:21 +00006781 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6782 MachineMemOperand *MMO =
6783 DAG.getMachineFunction()
6784 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6785 MachineMemOperand::MOLoad, ByteSize, ByteSize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006786
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006787 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006788 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
6789 X86ISD::FILD, DL,
6790 Tys, Ops, array_lengthof(Ops),
6791 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006792
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006793 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006794 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00006795 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006796
6797 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
6798 // shouldn't be necessary except that RFP cannot be live across
6799 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006800 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006801 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
6802 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006803 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00006804 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006805 SDValue Ops[] = {
6806 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
6807 };
Chris Lattner492a43e2010-09-22 01:28:21 +00006808 MachineMemOperand *MMO =
6809 DAG.getMachineFunction()
6810 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006811 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006812
Chris Lattner492a43e2010-09-22 01:28:21 +00006813 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
6814 Ops, array_lengthof(Ops),
6815 Op.getValueType(), MMO);
6816 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006817 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006818 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006819 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006820
Evan Cheng0db9fe62006-04-25 20:13:52 +00006821 return Result;
6822}
6823
Bill Wendling8b8a6362009-01-17 03:56:04 +00006824// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006825SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
6826 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00006827 // This algorithm is not obvious. Here it is in C code, more or less:
6828 /*
6829 double uint64_to_double( uint32_t hi, uint32_t lo ) {
6830 static const __m128i exp = { 0x4330000045300000ULL, 0 };
6831 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00006832
Bill Wendling8b8a6362009-01-17 03:56:04 +00006833 // Copy ints to xmm registers.
6834 __m128i xh = _mm_cvtsi32_si128( hi );
6835 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00006836
Bill Wendling8b8a6362009-01-17 03:56:04 +00006837 // Combine into low half of a single xmm register.
6838 __m128i x = _mm_unpacklo_epi32( xh, xl );
6839 __m128d d;
6840 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00006841
Bill Wendling8b8a6362009-01-17 03:56:04 +00006842 // Merge in appropriate exponents to give the integer bits the right
6843 // magnitude.
6844 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00006845
Bill Wendling8b8a6362009-01-17 03:56:04 +00006846 // Subtract away the biases to deal with the IEEE-754 double precision
6847 // implicit 1.
6848 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00006849
Bill Wendling8b8a6362009-01-17 03:56:04 +00006850 // All conversions up to here are exact. The correctly rounded result is
6851 // calculated using the current rounding mode using the following
6852 // horizontal add.
6853 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
6854 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
6855 // store doesn't really need to be here (except
6856 // maybe to zero the other double)
6857 return sd;
6858 }
6859 */
Dale Johannesen040225f2008-10-21 23:07:49 +00006860
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006861 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00006862 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00006863
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006864 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00006865 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00006866 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
6867 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
6868 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
6869 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006870 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006871 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006872
Bill Wendling8b8a6362009-01-17 03:56:04 +00006873 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00006874 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006875 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00006876 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006877 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006878 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006879 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006880
Owen Anderson825b72b2009-08-11 20:47:22 +00006881 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6882 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006883 Op.getOperand(0),
6884 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006885 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6886 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006887 Op.getOperand(0),
6888 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006889 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
6890 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00006891 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006892 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006893 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006894 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00006895 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00006896 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006897 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006898 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006899
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006900 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00006901 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00006902 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
6903 DAG.getUNDEF(MVT::v2f64), ShufMask);
6904 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
6905 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006906 DAG.getIntPtrConstant(0));
6907}
6908
Bill Wendling8b8a6362009-01-17 03:56:04 +00006909// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006910SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
6911 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006912 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006913 // FP constant to bias correct the final result.
6914 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00006915 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006916
6917 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00006918 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6919 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00006920 Op.getOperand(0),
6921 DAG.getIntPtrConstant(0)));
6922
Owen Anderson825b72b2009-08-11 20:47:22 +00006923 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006924 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006925 DAG.getIntPtrConstant(0));
6926
6927 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006928 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006929 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006930 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006931 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006932 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006933 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006934 MVT::v2f64, Bias)));
6935 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006936 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006937 DAG.getIntPtrConstant(0));
6938
6939 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006940 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006941
6942 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00006943 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00006944
Owen Anderson825b72b2009-08-11 20:47:22 +00006945 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006946 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00006947 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00006948 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006949 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00006950 }
6951
6952 // Handle final rounding.
6953 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00006954}
6955
Dan Gohmand858e902010-04-17 15:26:15 +00006956SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
6957 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00006958 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006959 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006960
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006961 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00006962 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
6963 // the optimization here.
6964 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00006965 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00006966
Owen Andersone50ed302009-08-10 22:56:29 +00006967 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006968 EVT DstVT = Op.getValueType();
6969 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006970 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006971 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006972 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00006973
6974 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00006975 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006976 if (SrcVT == MVT::i32) {
6977 SDValue WordOff = DAG.getConstant(4, getPointerTy());
6978 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
6979 getPointerTy(), StackSlot, WordOff);
6980 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006981 StackSlot, MachinePointerInfo(),
6982 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006983 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006984 OffsetSlot, MachinePointerInfo(),
6985 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006986 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
6987 return Fild;
6988 }
6989
6990 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
6991 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006992 StackSlot, MachinePointerInfo(),
6993 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006994 // For i64 source, we need to add the appropriate power of 2 if the input
6995 // was negative. This is the same as the optimization in
6996 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
6997 // we must be careful to do the computation in x87 extended precision, not
6998 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00006999 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
7000 MachineMemOperand *MMO =
7001 DAG.getMachineFunction()
7002 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7003 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007004
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007005 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
7006 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007007 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
7008 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007009
7010 APInt FF(32, 0x5F800000ULL);
7011
7012 // Check whether the sign bit is set.
7013 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
7014 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
7015 ISD::SETLT);
7016
7017 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
7018 SDValue FudgePtr = DAG.getConstantPool(
7019 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
7020 getPointerTy());
7021
7022 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
7023 SDValue Zero = DAG.getIntPtrConstant(0);
7024 SDValue Four = DAG.getIntPtrConstant(4);
7025 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
7026 Zero, Four);
7027 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
7028
7029 // Load the value out, extending it from f32 to f80.
7030 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00007031 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00007032 FudgePtr, MachinePointerInfo::getConstantPool(),
7033 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007034 // Extend everything to 80 bits to force it to be done on x87.
7035 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
7036 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007037}
7038
Dan Gohman475871a2008-07-27 21:46:04 +00007039std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00007040FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00007041 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00007042
Owen Andersone50ed302009-08-10 22:56:29 +00007043 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00007044
7045 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007046 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
7047 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00007048 }
7049
Owen Anderson825b72b2009-08-11 20:47:22 +00007050 assert(DstTy.getSimpleVT() <= MVT::i64 &&
7051 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00007052 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00007053
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007054 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007055 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00007056 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007057 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00007058 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007059 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00007060 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007061 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007062
Evan Cheng87c89352007-10-15 20:11:21 +00007063 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
7064 // stack slot.
7065 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00007066 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00007067 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007068 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00007069
Michael J. Spencerec38de22010-10-10 22:04:20 +00007070
7071
Evan Cheng0db9fe62006-04-25 20:13:52 +00007072 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00007073 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007074 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007075 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
7076 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
7077 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007078 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007079
Dan Gohman475871a2008-07-27 21:46:04 +00007080 SDValue Chain = DAG.getEntryNode();
7081 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00007082 EVT TheVT = Op.getOperand(0).getValueType();
7083 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007084 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00007085 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007086 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007087 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007088 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00007089 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00007090 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00007091 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00007092
Chris Lattner492a43e2010-09-22 01:28:21 +00007093 MachineMemOperand *MMO =
7094 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7095 MachineMemOperand::MOLoad, MemSize, MemSize);
7096 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
7097 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007098 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00007099 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007100 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7101 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007102
Chris Lattner07290932010-09-22 01:05:16 +00007103 MachineMemOperand *MMO =
7104 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7105 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007106
Evan Cheng0db9fe62006-04-25 20:13:52 +00007107 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00007108 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00007109 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
7110 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00007111
Chris Lattner27a6c732007-11-24 07:07:01 +00007112 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007113}
7114
Dan Gohmand858e902010-04-17 15:26:15 +00007115SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
7116 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00007117 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007118 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007119
Eli Friedman948e95a2009-05-23 09:59:16 +00007120 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00007121 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00007122 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
7123 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00007124
Chris Lattner27a6c732007-11-24 07:07:01 +00007125 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007126 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007127 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00007128}
7129
Dan Gohmand858e902010-04-17 15:26:15 +00007130SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
7131 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00007132 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
7133 SDValue FIST = Vals.first, StackSlot = Vals.second;
7134 assert(FIST.getNode() && "Unexpected failure");
7135
7136 // Load the result.
7137 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007138 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007139}
7140
Dan Gohmand858e902010-04-17 15:26:15 +00007141SDValue X86TargetLowering::LowerFABS(SDValue Op,
7142 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007143 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007144 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007145 EVT VT = Op.getValueType();
7146 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007147 if (VT.isVector())
7148 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007149 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007150 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007151 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00007152 CV.push_back(C);
7153 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007154 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007155 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00007156 CV.push_back(C);
7157 CV.push_back(C);
7158 CV.push_back(C);
7159 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007160 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007161 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007162 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007163 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007164 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007165 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007166 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007167}
7168
Dan Gohmand858e902010-04-17 15:26:15 +00007169SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007170 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007171 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007172 EVT VT = Op.getValueType();
7173 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00007174 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007175 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007176 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007177 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007178 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00007179 CV.push_back(C);
7180 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007181 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007182 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00007183 CV.push_back(C);
7184 CV.push_back(C);
7185 CV.push_back(C);
7186 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007187 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007188 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007189 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007190 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007191 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007192 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007193 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007194 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007195 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007196 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007197 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007198 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00007199 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007200 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00007201 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007202}
7203
Dan Gohmand858e902010-04-17 15:26:15 +00007204SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007205 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00007206 SDValue Op0 = Op.getOperand(0);
7207 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007208 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007209 EVT VT = Op.getValueType();
7210 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00007211
7212 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007213 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007214 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007215 SrcVT = VT;
7216 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007217 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007218 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007219 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007220 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007221 }
7222
7223 // At this point the operands and the result should have the same
7224 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00007225
Evan Cheng68c47cb2007-01-05 07:55:56 +00007226 // First get the sign bit of second operand.
7227 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007228 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007229 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
7230 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007231 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007232 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
7233 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7234 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7235 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007236 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007237 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007238 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007239 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007240 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007241 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007242 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007243
7244 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007245 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007246 // Op0 is MVT::f32, Op1 is MVT::f64.
7247 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
7248 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
7249 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007250 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00007251 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00007252 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007253 }
7254
Evan Cheng73d6cf12007-01-05 21:37:56 +00007255 // Clear first operand sign bit.
7256 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00007257 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007258 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
7259 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007260 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007261 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
7262 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7263 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7264 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007265 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007266 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007267 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007268 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007269 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007270 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007271 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007272
7273 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00007274 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007275}
7276
Dan Gohman076aee32009-03-04 19:44:21 +00007277/// Emit nodes that will be selected as "test Op0,Op0", or something
7278/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007279SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007280 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007281 DebugLoc dl = Op.getDebugLoc();
7282
Dan Gohman31125812009-03-07 01:58:32 +00007283 // CF and OF aren't always set the way we want. Determine which
7284 // of these we need.
7285 bool NeedCF = false;
7286 bool NeedOF = false;
7287 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007288 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00007289 case X86::COND_A: case X86::COND_AE:
7290 case X86::COND_B: case X86::COND_BE:
7291 NeedCF = true;
7292 break;
7293 case X86::COND_G: case X86::COND_GE:
7294 case X86::COND_L: case X86::COND_LE:
7295 case X86::COND_O: case X86::COND_NO:
7296 NeedOF = true;
7297 break;
Dan Gohman31125812009-03-07 01:58:32 +00007298 }
7299
Dan Gohman076aee32009-03-04 19:44:21 +00007300 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00007301 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
7302 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007303 if (Op.getResNo() != 0 || NeedOF || NeedCF)
7304 // Emit a CMP with 0, which is the TEST pattern.
7305 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7306 DAG.getConstant(0, Op.getValueType()));
7307
7308 unsigned Opcode = 0;
7309 unsigned NumOperands = 0;
7310 switch (Op.getNode()->getOpcode()) {
7311 case ISD::ADD:
7312 // Due to an isel shortcoming, be conservative if this add is likely to be
7313 // selected as part of a load-modify-store instruction. When the root node
7314 // in a match is a store, isel doesn't know how to remap non-chain non-flag
7315 // uses of other nodes in the match, such as the ADD in this case. This
7316 // leads to the ADD being left around and reselected, with the result being
7317 // two adds in the output. Alas, even if none our users are stores, that
7318 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
7319 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
7320 // climbing the DAG back to the root, and it doesn't seem to be worth the
7321 // effort.
7322 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00007323 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007324 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
7325 goto default_case;
7326
7327 if (ConstantSDNode *C =
7328 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
7329 // An add of one will be selected as an INC.
7330 if (C->getAPIntValue() == 1) {
7331 Opcode = X86ISD::INC;
7332 NumOperands = 1;
7333 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00007334 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007335
7336 // An add of negative one (subtract of one) will be selected as a DEC.
7337 if (C->getAPIntValue().isAllOnesValue()) {
7338 Opcode = X86ISD::DEC;
7339 NumOperands = 1;
7340 break;
7341 }
Dan Gohman076aee32009-03-04 19:44:21 +00007342 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007343
7344 // Otherwise use a regular EFLAGS-setting add.
7345 Opcode = X86ISD::ADD;
7346 NumOperands = 2;
7347 break;
7348 case ISD::AND: {
7349 // If the primary and result isn't used, don't bother using X86ISD::AND,
7350 // because a TEST instruction will be better.
7351 bool NonFlagUse = false;
7352 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7353 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
7354 SDNode *User = *UI;
7355 unsigned UOpNo = UI.getOperandNo();
7356 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
7357 // Look pass truncate.
7358 UOpNo = User->use_begin().getOperandNo();
7359 User = *User->use_begin();
7360 }
7361
7362 if (User->getOpcode() != ISD::BRCOND &&
7363 User->getOpcode() != ISD::SETCC &&
7364 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
7365 NonFlagUse = true;
7366 break;
7367 }
Dan Gohman076aee32009-03-04 19:44:21 +00007368 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007369
7370 if (!NonFlagUse)
7371 break;
7372 }
7373 // FALL THROUGH
7374 case ISD::SUB:
7375 case ISD::OR:
7376 case ISD::XOR:
7377 // Due to the ISEL shortcoming noted above, be conservative if this op is
7378 // likely to be selected as part of a load-modify-store instruction.
7379 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7380 UE = Op.getNode()->use_end(); UI != UE; ++UI)
7381 if (UI->getOpcode() == ISD::STORE)
7382 goto default_case;
7383
7384 // Otherwise use a regular EFLAGS-setting instruction.
7385 switch (Op.getNode()->getOpcode()) {
7386 default: llvm_unreachable("unexpected operator!");
7387 case ISD::SUB: Opcode = X86ISD::SUB; break;
7388 case ISD::OR: Opcode = X86ISD::OR; break;
7389 case ISD::XOR: Opcode = X86ISD::XOR; break;
7390 case ISD::AND: Opcode = X86ISD::AND; break;
7391 }
7392
7393 NumOperands = 2;
7394 break;
7395 case X86ISD::ADD:
7396 case X86ISD::SUB:
7397 case X86ISD::INC:
7398 case X86ISD::DEC:
7399 case X86ISD::OR:
7400 case X86ISD::XOR:
7401 case X86ISD::AND:
7402 return SDValue(Op.getNode(), 1);
7403 default:
7404 default_case:
7405 break;
Dan Gohman076aee32009-03-04 19:44:21 +00007406 }
7407
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007408 if (Opcode == 0)
7409 // Emit a CMP with 0, which is the TEST pattern.
7410 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7411 DAG.getConstant(0, Op.getValueType()));
7412
7413 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
7414 SmallVector<SDValue, 4> Ops;
7415 for (unsigned i = 0; i != NumOperands; ++i)
7416 Ops.push_back(Op.getOperand(i));
7417
7418 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
7419 DAG.ReplaceAllUsesWith(Op, New);
7420 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00007421}
7422
7423/// Emit nodes that will be selected as "cmp Op0,Op1", or something
7424/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007425SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007426 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007427 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
7428 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00007429 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00007430
7431 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00007432 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00007433}
7434
Evan Chengd40d03e2010-01-06 19:38:29 +00007435/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
7436/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00007437SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
7438 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007439 SDValue Op0 = And.getOperand(0);
7440 SDValue Op1 = And.getOperand(1);
7441 if (Op0.getOpcode() == ISD::TRUNCATE)
7442 Op0 = Op0.getOperand(0);
7443 if (Op1.getOpcode() == ISD::TRUNCATE)
7444 Op1 = Op1.getOperand(0);
7445
Evan Chengd40d03e2010-01-06 19:38:29 +00007446 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007447 if (Op1.getOpcode() == ISD::SHL)
7448 std::swap(Op0, Op1);
7449 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007450 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
7451 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007452 // If we looked past a truncate, check that it's only truncating away
7453 // known zeros.
7454 unsigned BitWidth = Op0.getValueSizeInBits();
7455 unsigned AndBitWidth = And.getValueSizeInBits();
7456 if (BitWidth > AndBitWidth) {
7457 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
7458 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
7459 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
7460 return SDValue();
7461 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007462 LHS = Op1;
7463 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00007464 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007465 } else if (Op1.getOpcode() == ISD::Constant) {
7466 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
7467 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00007468 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
7469 LHS = AndLHS.getOperand(0);
7470 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007471 }
Evan Chengd40d03e2010-01-06 19:38:29 +00007472 }
Evan Cheng0488db92007-09-25 01:57:46 +00007473
Evan Chengd40d03e2010-01-06 19:38:29 +00007474 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00007475 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00007476 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00007477 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00007478 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00007479 // Also promote i16 to i32 for performance / code size reason.
7480 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00007481 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00007482 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00007483
Evan Chengd40d03e2010-01-06 19:38:29 +00007484 // If the operand types disagree, extend the shift amount to match. Since
7485 // BT ignores high bits (like shifts) we can use anyextend.
7486 if (LHS.getValueType() != RHS.getValueType())
7487 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007488
Evan Chengd40d03e2010-01-06 19:38:29 +00007489 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
7490 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
7491 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7492 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00007493 }
7494
Evan Cheng54de3ea2010-01-05 06:52:31 +00007495 return SDValue();
7496}
7497
Dan Gohmand858e902010-04-17 15:26:15 +00007498SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00007499 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7500 SDValue Op0 = Op.getOperand(0);
7501 SDValue Op1 = Op.getOperand(1);
7502 DebugLoc dl = Op.getDebugLoc();
7503 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7504
7505 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007506 // Lower (X & (1 << N)) == 0 to BT(X, N).
7507 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7508 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Andrew Trickf6c39412011-03-23 23:11:02 +00007509 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007510 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007511 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007512 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7513 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7514 if (NewSetCC.getNode())
7515 return NewSetCC;
7516 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007517
Chris Lattner481eebc2010-12-19 21:23:48 +00007518 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
7519 // these.
7520 if (Op1.getOpcode() == ISD::Constant &&
Andrew Trickf6c39412011-03-23 23:11:02 +00007521 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
Evan Cheng2c755ba2010-02-27 07:36:59 +00007522 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7523 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007524
Chris Lattner481eebc2010-12-19 21:23:48 +00007525 // If the input is a setcc, then reuse the input setcc or use a new one with
7526 // the inverted condition.
7527 if (Op0.getOpcode() == X86ISD::SETCC) {
7528 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7529 bool Invert = (CC == ISD::SETNE) ^
7530 cast<ConstantSDNode>(Op1)->isNullValue();
7531 if (!Invert) return Op0;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007532
Evan Cheng2c755ba2010-02-27 07:36:59 +00007533 CCode = X86::GetOppositeBranchCondition(CCode);
Chris Lattner481eebc2010-12-19 21:23:48 +00007534 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7535 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7536 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007537 }
7538
Evan Chenge5b51ac2010-04-17 06:13:15 +00007539 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007540 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007541 if (X86CC == X86::COND_INVALID)
7542 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007543
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007544 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00007545 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007546 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
Evan Cheng0488db92007-09-25 01:57:46 +00007547}
7548
Dan Gohmand858e902010-04-17 15:26:15 +00007549SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007550 SDValue Cond;
7551 SDValue Op0 = Op.getOperand(0);
7552 SDValue Op1 = Op.getOperand(1);
7553 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007554 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007555 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7556 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007557 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007558
7559 if (isFP) {
7560 unsigned SSECC = 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007561 EVT VT0 = Op0.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00007562 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
7563 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007564 bool Swap = false;
7565
7566 switch (SetCCOpcode) {
7567 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007568 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007569 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007570 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007571 case ISD::SETGT: Swap = true; // Fallthrough
7572 case ISD::SETLT:
7573 case ISD::SETOLT: SSECC = 1; break;
7574 case ISD::SETOGE:
7575 case ISD::SETGE: Swap = true; // Fallthrough
7576 case ISD::SETLE:
7577 case ISD::SETOLE: SSECC = 2; break;
7578 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007579 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007580 case ISD::SETNE: SSECC = 4; break;
7581 case ISD::SETULE: Swap = true;
7582 case ISD::SETUGE: SSECC = 5; break;
7583 case ISD::SETULT: Swap = true;
7584 case ISD::SETUGT: SSECC = 6; break;
7585 case ISD::SETO: SSECC = 7; break;
7586 }
7587 if (Swap)
7588 std::swap(Op0, Op1);
7589
Nate Begemanfb8ead02008-07-25 19:05:58 +00007590 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007591 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007592 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007593 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007594 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7595 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007596 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007597 }
7598 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007599 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007600 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7601 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007602 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007603 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007604 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007605 }
7606 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007607 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007608 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007609
Nate Begeman30a0de92008-07-17 16:51:19 +00007610 // We are handling one of the integer comparisons here. Since SSE only has
7611 // GT and EQ comparisons for integer, swapping operands and multiple
7612 // operations may be required for some comparisons.
7613 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7614 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007615
Owen Anderson825b72b2009-08-11 20:47:22 +00007616 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007617 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007618 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007619 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007620 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7621 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00007622 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007623
Nate Begeman30a0de92008-07-17 16:51:19 +00007624 switch (SetCCOpcode) {
7625 default: break;
7626 case ISD::SETNE: Invert = true;
7627 case ISD::SETEQ: Opc = EQOpc; break;
7628 case ISD::SETLT: Swap = true;
7629 case ISD::SETGT: Opc = GTOpc; break;
7630 case ISD::SETGE: Swap = true;
7631 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
7632 case ISD::SETULT: Swap = true;
7633 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
7634 case ISD::SETUGE: Swap = true;
7635 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
7636 }
7637 if (Swap)
7638 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007639
Nate Begeman30a0de92008-07-17 16:51:19 +00007640 // Since SSE has no unsigned integer comparisons, we need to flip the sign
7641 // bits of the inputs before performing those operations.
7642 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00007643 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00007644 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
7645 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00007646 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00007647 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
7648 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00007649 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
7650 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00007651 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007652
Dale Johannesenace16102009-02-03 19:33:06 +00007653 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00007654
7655 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00007656 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00007657 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00007658
Nate Begeman30a0de92008-07-17 16:51:19 +00007659 return Result;
7660}
Evan Cheng0488db92007-09-25 01:57:46 +00007661
Evan Cheng370e5342008-12-03 08:38:43 +00007662// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00007663static bool isX86LogicalCmp(SDValue Op) {
7664 unsigned Opc = Op.getNode()->getOpcode();
7665 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
7666 return true;
7667 if (Op.getResNo() == 1 &&
7668 (Opc == X86ISD::ADD ||
7669 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00007670 Opc == X86ISD::ADC ||
7671 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00007672 Opc == X86ISD::SMUL ||
7673 Opc == X86ISD::UMUL ||
7674 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00007675 Opc == X86ISD::DEC ||
7676 Opc == X86ISD::OR ||
7677 Opc == X86ISD::XOR ||
7678 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00007679 return true;
7680
Chris Lattner9637d5b2010-12-05 07:49:54 +00007681 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
7682 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007683
Dan Gohman076aee32009-03-04 19:44:21 +00007684 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00007685}
7686
Chris Lattnera2b56002010-12-05 01:23:24 +00007687static bool isZero(SDValue V) {
7688 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
7689 return C && C->isNullValue();
7690}
7691
Chris Lattner96908b12010-12-05 02:00:51 +00007692static bool isAllOnes(SDValue V) {
7693 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
7694 return C && C->isAllOnesValue();
7695}
7696
Dan Gohmand858e902010-04-17 15:26:15 +00007697SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007698 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007699 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00007700 SDValue Op1 = Op.getOperand(1);
7701 SDValue Op2 = Op.getOperand(2);
7702 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007703 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00007704
Dan Gohman1a492952009-10-20 16:22:37 +00007705 if (Cond.getOpcode() == ISD::SETCC) {
7706 SDValue NewCond = LowerSETCC(Cond, DAG);
7707 if (NewCond.getNode())
7708 Cond = NewCond;
7709 }
Evan Cheng734503b2006-09-11 02:19:56 +00007710
Chris Lattnera2b56002010-12-05 01:23:24 +00007711 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00007712 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00007713 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00007714 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007715 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00007716 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
7717 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007718 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007719
Chris Lattnera2b56002010-12-05 01:23:24 +00007720 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007721
7722 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00007723 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
7724 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00007725
7726 SDValue CmpOp0 = Cmp.getOperand(0);
7727 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
7728 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007729
Chris Lattner96908b12010-12-05 02:00:51 +00007730 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00007731 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
7732 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007733
Chris Lattner96908b12010-12-05 02:00:51 +00007734 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
7735 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007736
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007737 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00007738 if (N2C == 0 || !N2C->isNullValue())
7739 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
7740 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007741 }
7742 }
7743
Chris Lattnera2b56002010-12-05 01:23:24 +00007744 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00007745 if (Cond.getOpcode() == ISD::AND &&
7746 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7747 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007748 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007749 Cond = Cond.getOperand(0);
7750 }
7751
Evan Cheng3f41d662007-10-08 22:16:29 +00007752 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7753 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007754 if (Cond.getOpcode() == X86ISD::SETCC ||
7755 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007756 CC = Cond.getOperand(0);
7757
Dan Gohman475871a2008-07-27 21:46:04 +00007758 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007759 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00007760 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00007761
Evan Cheng3f41d662007-10-08 22:16:29 +00007762 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007763 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00007764 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00007765 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00007766
Chris Lattnerd1980a52009-03-12 06:52:53 +00007767 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
7768 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00007769 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007770 addTest = false;
7771 }
7772 }
7773
7774 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007775 // Look pass the truncate.
7776 if (Cond.getOpcode() == ISD::TRUNCATE)
7777 Cond = Cond.getOperand(0);
7778
7779 // We know the result of AND is compared against zero. Try to match
7780 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007781 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00007782 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00007783 if (NewSetCC.getNode()) {
7784 CC = NewSetCC.getOperand(0);
7785 Cond = NewSetCC.getOperand(1);
7786 addTest = false;
7787 }
7788 }
7789 }
7790
7791 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007792 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007793 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007794 }
7795
Benjamin Kramere915ff32010-12-22 23:09:28 +00007796 // a < b ? -1 : 0 -> RES = ~setcc_carry
7797 // a < b ? 0 : -1 -> RES = setcc_carry
7798 // a >= b ? -1 : 0 -> RES = setcc_carry
7799 // a >= b ? 0 : -1 -> RES = ~setcc_carry
7800 if (Cond.getOpcode() == X86ISD::CMP) {
7801 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
7802
7803 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
7804 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
7805 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
7806 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
7807 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
7808 return DAG.getNOT(DL, Res, Res.getValueType());
7809 return Res;
7810 }
7811 }
7812
Evan Cheng0488db92007-09-25 01:57:46 +00007813 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
7814 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007815 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007816 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00007817 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00007818}
7819
Evan Cheng370e5342008-12-03 08:38:43 +00007820// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
7821// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
7822// from the AND / OR.
7823static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
7824 Opc = Op.getOpcode();
7825 if (Opc != ISD::OR && Opc != ISD::AND)
7826 return false;
7827 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7828 Op.getOperand(0).hasOneUse() &&
7829 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
7830 Op.getOperand(1).hasOneUse());
7831}
7832
Evan Cheng961d6d42009-02-02 08:19:07 +00007833// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
7834// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00007835static bool isXor1OfSetCC(SDValue Op) {
7836 if (Op.getOpcode() != ISD::XOR)
7837 return false;
7838 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7839 if (N1C && N1C->getAPIntValue() == 1) {
7840 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7841 Op.getOperand(0).hasOneUse();
7842 }
7843 return false;
7844}
7845
Dan Gohmand858e902010-04-17 15:26:15 +00007846SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007847 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007848 SDValue Chain = Op.getOperand(0);
7849 SDValue Cond = Op.getOperand(1);
7850 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007851 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007852 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00007853
Dan Gohman1a492952009-10-20 16:22:37 +00007854 if (Cond.getOpcode() == ISD::SETCC) {
7855 SDValue NewCond = LowerSETCC(Cond, DAG);
7856 if (NewCond.getNode())
7857 Cond = NewCond;
7858 }
Chris Lattnere55484e2008-12-25 05:34:37 +00007859#if 0
7860 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00007861 else if (Cond.getOpcode() == X86ISD::ADD ||
7862 Cond.getOpcode() == X86ISD::SUB ||
7863 Cond.getOpcode() == X86ISD::SMUL ||
7864 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00007865 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00007866#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00007867
Evan Chengad9c0a32009-12-15 00:53:42 +00007868 // Look pass (and (setcc_carry (cmp ...)), 1).
7869 if (Cond.getOpcode() == ISD::AND &&
7870 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7871 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007872 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007873 Cond = Cond.getOperand(0);
7874 }
7875
Evan Cheng3f41d662007-10-08 22:16:29 +00007876 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7877 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007878 if (Cond.getOpcode() == X86ISD::SETCC ||
7879 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007880 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007881
Dan Gohman475871a2008-07-27 21:46:04 +00007882 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007883 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00007884 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00007885 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00007886 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007887 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00007888 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00007889 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007890 default: break;
7891 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00007892 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00007893 // These can only come from an arithmetic instruction with overflow,
7894 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007895 Cond = Cond.getNode()->getOperand(1);
7896 addTest = false;
7897 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00007898 }
Evan Cheng0488db92007-09-25 01:57:46 +00007899 }
Evan Cheng370e5342008-12-03 08:38:43 +00007900 } else {
7901 unsigned CondOpc;
7902 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
7903 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00007904 if (CondOpc == ISD::OR) {
7905 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
7906 // two branches instead of an explicit OR instruction with a
7907 // separate test.
7908 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007909 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00007910 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007911 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007912 Chain, Dest, CC, Cmp);
7913 CC = Cond.getOperand(1).getOperand(0);
7914 Cond = Cmp;
7915 addTest = false;
7916 }
7917 } else { // ISD::AND
7918 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
7919 // two branches instead of an explicit AND instruction with a
7920 // separate test. However, we only do this if this block doesn't
7921 // have a fall-through edge, because this requires an explicit
7922 // jmp when the condition is false.
7923 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007924 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00007925 Op.getNode()->hasOneUse()) {
7926 X86::CondCode CCode =
7927 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7928 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007929 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00007930 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00007931 // Look for an unconditional branch following this conditional branch.
7932 // We need this because we need to reverse the successors in order
7933 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00007934 if (User->getOpcode() == ISD::BR) {
7935 SDValue FalseBB = User->getOperand(1);
7936 SDNode *NewBR =
7937 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00007938 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00007939 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00007940 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00007941
Dale Johannesene4d209d2009-02-03 20:21:25 +00007942 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007943 Chain, Dest, CC, Cmp);
7944 X86::CondCode CCode =
7945 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
7946 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007947 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00007948 Cond = Cmp;
7949 addTest = false;
7950 }
7951 }
Dan Gohman279c22e2008-10-21 03:29:32 +00007952 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00007953 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
7954 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
7955 // It should be transformed during dag combiner except when the condition
7956 // is set by a arithmetics with overflow node.
7957 X86::CondCode CCode =
7958 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7959 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007960 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00007961 Cond = Cond.getOperand(0).getOperand(1);
7962 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00007963 }
Evan Cheng0488db92007-09-25 01:57:46 +00007964 }
7965
7966 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007967 // Look pass the truncate.
7968 if (Cond.getOpcode() == ISD::TRUNCATE)
7969 Cond = Cond.getOperand(0);
7970
7971 // We know the result of AND is compared against zero. Try to match
7972 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007973 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007974 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7975 if (NewSetCC.getNode()) {
7976 CC = NewSetCC.getOperand(0);
7977 Cond = NewSetCC.getOperand(1);
7978 addTest = false;
7979 }
7980 }
7981 }
7982
7983 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007984 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007985 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007986 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00007987 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00007988 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007989}
7990
Anton Korobeynikove060b532007-04-17 19:34:00 +00007991
7992// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
7993// Calls to _alloca is needed to probe the stack when allocating more than 4k
7994// bytes in one go. Touching the stack at 4K increments is necessary to ensure
7995// that the guard pages used by the OS virtual memory manager are allocated in
7996// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00007997SDValue
7998X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007999 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00008000 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008001 "This should be used only on Windows targets");
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008002 assert(!Subtarget->isTargetEnvMacho());
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008003 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008004
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008005 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008006 SDValue Chain = Op.getOperand(0);
8007 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008008 // FIXME: Ensure alignment here
8009
Dan Gohman475871a2008-07-27 21:46:04 +00008010 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008011
Owen Anderson825b72b2009-08-11 20:47:22 +00008012 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008013 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008014
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008015 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008016 Flag = Chain.getValue(1);
8017
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008018 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008019
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008020 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00008021 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008022
Dale Johannesendd64c412009-02-04 00:33:20 +00008023 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008024
Dan Gohman475871a2008-07-27 21:46:04 +00008025 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008026 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008027}
8028
Dan Gohmand858e902010-04-17 15:26:15 +00008029SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00008030 MachineFunction &MF = DAG.getMachineFunction();
8031 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
8032
Dan Gohman69de1932008-02-06 22:27:42 +00008033 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00008034 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00008035
Anton Korobeynikove7beda12010-10-03 22:52:07 +00008036 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00008037 // vastart just stores the address of the VarArgsFrameIndex slot into the
8038 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00008039 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8040 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008041 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
8042 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008043 }
8044
8045 // __va_list_tag:
8046 // gp_offset (0 - 6 * 8)
8047 // fp_offset (48 - 48 + 8 * 16)
8048 // overflow_arg_area (point to parameters coming in memory).
8049 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00008050 SmallVector<SDValue, 8> MemOps;
8051 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00008052 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008053 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008054 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
8055 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008056 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008057 MemOps.push_back(Store);
8058
8059 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008060 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008061 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008062 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008063 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
8064 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008065 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008066 MemOps.push_back(Store);
8067
8068 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00008069 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008070 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00008071 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8072 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008073 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
8074 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00008075 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008076 MemOps.push_back(Store);
8077
8078 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00008079 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008080 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00008081 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
8082 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008083 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
8084 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008085 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008086 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00008087 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00008088}
8089
Dan Gohmand858e902010-04-17 15:26:15 +00008090SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00008091 assert(Subtarget->is64Bit() &&
8092 "LowerVAARG only handles 64-bit va_arg!");
8093 assert((Subtarget->isTargetLinux() ||
8094 Subtarget->isTargetDarwin()) &&
8095 "Unhandled target in LowerVAARG");
8096 assert(Op.getNode()->getNumOperands() == 4);
8097 SDValue Chain = Op.getOperand(0);
8098 SDValue SrcPtr = Op.getOperand(1);
8099 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
8100 unsigned Align = Op.getConstantOperandVal(3);
8101 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00008102
Dan Gohman320afb82010-10-12 18:00:49 +00008103 EVT ArgVT = Op.getNode()->getValueType(0);
8104 const Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
8105 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
8106 uint8_t ArgMode;
8107
8108 // Decide which area this value should be read from.
8109 // TODO: Implement the AMD64 ABI in its entirety. This simple
8110 // selection mechanism works only for the basic types.
8111 if (ArgVT == MVT::f80) {
8112 llvm_unreachable("va_arg for f80 not yet implemented");
8113 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
8114 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
8115 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
8116 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
8117 } else {
8118 llvm_unreachable("Unhandled argument type in LowerVAARG");
8119 }
8120
8121 if (ArgMode == 2) {
8122 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00008123 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00008124 !(DAG.getMachineFunction()
8125 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00008126 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00008127 }
8128
8129 // Insert VAARG_64 node into the DAG
8130 // VAARG_64 returns two values: Variable Argument Address, Chain
8131 SmallVector<SDValue, 11> InstOps;
8132 InstOps.push_back(Chain);
8133 InstOps.push_back(SrcPtr);
8134 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
8135 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
8136 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
8137 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
8138 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
8139 VTs, &InstOps[0], InstOps.size(),
8140 MVT::i64,
8141 MachinePointerInfo(SV),
8142 /*Align=*/0,
8143 /*Volatile=*/false,
8144 /*ReadMem=*/true,
8145 /*WriteMem=*/true);
8146 Chain = VAARG.getValue(1);
8147
8148 // Load the next argument and return it
8149 return DAG.getLoad(ArgVT, dl,
8150 Chain,
8151 VAARG,
8152 MachinePointerInfo(),
8153 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00008154}
8155
Dan Gohmand858e902010-04-17 15:26:15 +00008156SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00008157 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00008158 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00008159 SDValue Chain = Op.getOperand(0);
8160 SDValue DstPtr = Op.getOperand(1);
8161 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00008162 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
8163 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00008164 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00008165
Chris Lattnere72f2022010-09-21 05:40:29 +00008166 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00008167 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008168 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00008169 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00008170}
8171
Dan Gohman475871a2008-07-27 21:46:04 +00008172SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008173X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008174 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008175 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00008176 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00008177 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00008178 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00008179 case Intrinsic::x86_sse_comieq_ss:
8180 case Intrinsic::x86_sse_comilt_ss:
8181 case Intrinsic::x86_sse_comile_ss:
8182 case Intrinsic::x86_sse_comigt_ss:
8183 case Intrinsic::x86_sse_comige_ss:
8184 case Intrinsic::x86_sse_comineq_ss:
8185 case Intrinsic::x86_sse_ucomieq_ss:
8186 case Intrinsic::x86_sse_ucomilt_ss:
8187 case Intrinsic::x86_sse_ucomile_ss:
8188 case Intrinsic::x86_sse_ucomigt_ss:
8189 case Intrinsic::x86_sse_ucomige_ss:
8190 case Intrinsic::x86_sse_ucomineq_ss:
8191 case Intrinsic::x86_sse2_comieq_sd:
8192 case Intrinsic::x86_sse2_comilt_sd:
8193 case Intrinsic::x86_sse2_comile_sd:
8194 case Intrinsic::x86_sse2_comigt_sd:
8195 case Intrinsic::x86_sse2_comige_sd:
8196 case Intrinsic::x86_sse2_comineq_sd:
8197 case Intrinsic::x86_sse2_ucomieq_sd:
8198 case Intrinsic::x86_sse2_ucomilt_sd:
8199 case Intrinsic::x86_sse2_ucomile_sd:
8200 case Intrinsic::x86_sse2_ucomigt_sd:
8201 case Intrinsic::x86_sse2_ucomige_sd:
8202 case Intrinsic::x86_sse2_ucomineq_sd: {
8203 unsigned Opc = 0;
8204 ISD::CondCode CC = ISD::SETCC_INVALID;
8205 switch (IntNo) {
8206 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008207 case Intrinsic::x86_sse_comieq_ss:
8208 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008209 Opc = X86ISD::COMI;
8210 CC = ISD::SETEQ;
8211 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008212 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008213 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008214 Opc = X86ISD::COMI;
8215 CC = ISD::SETLT;
8216 break;
8217 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008218 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008219 Opc = X86ISD::COMI;
8220 CC = ISD::SETLE;
8221 break;
8222 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008223 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008224 Opc = X86ISD::COMI;
8225 CC = ISD::SETGT;
8226 break;
8227 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008228 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008229 Opc = X86ISD::COMI;
8230 CC = ISD::SETGE;
8231 break;
8232 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008233 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008234 Opc = X86ISD::COMI;
8235 CC = ISD::SETNE;
8236 break;
8237 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008238 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008239 Opc = X86ISD::UCOMI;
8240 CC = ISD::SETEQ;
8241 break;
8242 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008243 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008244 Opc = X86ISD::UCOMI;
8245 CC = ISD::SETLT;
8246 break;
8247 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008248 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008249 Opc = X86ISD::UCOMI;
8250 CC = ISD::SETLE;
8251 break;
8252 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008253 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008254 Opc = X86ISD::UCOMI;
8255 CC = ISD::SETGT;
8256 break;
8257 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008258 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008259 Opc = X86ISD::UCOMI;
8260 CC = ISD::SETGE;
8261 break;
8262 case Intrinsic::x86_sse_ucomineq_ss:
8263 case Intrinsic::x86_sse2_ucomineq_sd:
8264 Opc = X86ISD::UCOMI;
8265 CC = ISD::SETNE;
8266 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008267 }
Evan Cheng734503b2006-09-11 02:19:56 +00008268
Dan Gohman475871a2008-07-27 21:46:04 +00008269 SDValue LHS = Op.getOperand(1);
8270 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00008271 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008272 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008273 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
8274 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8275 DAG.getConstant(X86CC, MVT::i8), Cond);
8276 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00008277 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008278 // ptest and testp intrinsics. The intrinsic these come from are designed to
8279 // return an integer value, not just an instruction so lower it to the ptest
8280 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00008281 case Intrinsic::x86_sse41_ptestz:
8282 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008283 case Intrinsic::x86_sse41_ptestnzc:
8284 case Intrinsic::x86_avx_ptestz_256:
8285 case Intrinsic::x86_avx_ptestc_256:
8286 case Intrinsic::x86_avx_ptestnzc_256:
8287 case Intrinsic::x86_avx_vtestz_ps:
8288 case Intrinsic::x86_avx_vtestc_ps:
8289 case Intrinsic::x86_avx_vtestnzc_ps:
8290 case Intrinsic::x86_avx_vtestz_pd:
8291 case Intrinsic::x86_avx_vtestc_pd:
8292 case Intrinsic::x86_avx_vtestnzc_pd:
8293 case Intrinsic::x86_avx_vtestz_ps_256:
8294 case Intrinsic::x86_avx_vtestc_ps_256:
8295 case Intrinsic::x86_avx_vtestnzc_ps_256:
8296 case Intrinsic::x86_avx_vtestz_pd_256:
8297 case Intrinsic::x86_avx_vtestc_pd_256:
8298 case Intrinsic::x86_avx_vtestnzc_pd_256: {
8299 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00008300 unsigned X86CC = 0;
8301 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00008302 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008303 case Intrinsic::x86_avx_vtestz_ps:
8304 case Intrinsic::x86_avx_vtestz_pd:
8305 case Intrinsic::x86_avx_vtestz_ps_256:
8306 case Intrinsic::x86_avx_vtestz_pd_256:
8307 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008308 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008309 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008310 // ZF = 1
8311 X86CC = X86::COND_E;
8312 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008313 case Intrinsic::x86_avx_vtestc_ps:
8314 case Intrinsic::x86_avx_vtestc_pd:
8315 case Intrinsic::x86_avx_vtestc_ps_256:
8316 case Intrinsic::x86_avx_vtestc_pd_256:
8317 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008318 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008319 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008320 // CF = 1
8321 X86CC = X86::COND_B;
8322 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008323 case Intrinsic::x86_avx_vtestnzc_ps:
8324 case Intrinsic::x86_avx_vtestnzc_pd:
8325 case Intrinsic::x86_avx_vtestnzc_ps_256:
8326 case Intrinsic::x86_avx_vtestnzc_pd_256:
8327 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00008328 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008329 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008330 // ZF and CF = 0
8331 X86CC = X86::COND_A;
8332 break;
8333 }
Eric Christopherfd179292009-08-27 18:07:15 +00008334
Eric Christopher71c67532009-07-29 00:28:05 +00008335 SDValue LHS = Op.getOperand(1);
8336 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008337 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
8338 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00008339 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
8340 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
8341 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00008342 }
Evan Cheng5759f972008-05-04 09:15:50 +00008343
8344 // Fix vector shift instructions where the last operand is a non-immediate
8345 // i32 value.
8346 case Intrinsic::x86_sse2_pslli_w:
8347 case Intrinsic::x86_sse2_pslli_d:
8348 case Intrinsic::x86_sse2_pslli_q:
8349 case Intrinsic::x86_sse2_psrli_w:
8350 case Intrinsic::x86_sse2_psrli_d:
8351 case Intrinsic::x86_sse2_psrli_q:
8352 case Intrinsic::x86_sse2_psrai_w:
8353 case Intrinsic::x86_sse2_psrai_d:
8354 case Intrinsic::x86_mmx_pslli_w:
8355 case Intrinsic::x86_mmx_pslli_d:
8356 case Intrinsic::x86_mmx_pslli_q:
8357 case Intrinsic::x86_mmx_psrli_w:
8358 case Intrinsic::x86_mmx_psrli_d:
8359 case Intrinsic::x86_mmx_psrli_q:
8360 case Intrinsic::x86_mmx_psrai_w:
8361 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00008362 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00008363 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00008364 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00008365
8366 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008367 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008368 switch (IntNo) {
8369 case Intrinsic::x86_sse2_pslli_w:
8370 NewIntNo = Intrinsic::x86_sse2_psll_w;
8371 break;
8372 case Intrinsic::x86_sse2_pslli_d:
8373 NewIntNo = Intrinsic::x86_sse2_psll_d;
8374 break;
8375 case Intrinsic::x86_sse2_pslli_q:
8376 NewIntNo = Intrinsic::x86_sse2_psll_q;
8377 break;
8378 case Intrinsic::x86_sse2_psrli_w:
8379 NewIntNo = Intrinsic::x86_sse2_psrl_w;
8380 break;
8381 case Intrinsic::x86_sse2_psrli_d:
8382 NewIntNo = Intrinsic::x86_sse2_psrl_d;
8383 break;
8384 case Intrinsic::x86_sse2_psrli_q:
8385 NewIntNo = Intrinsic::x86_sse2_psrl_q;
8386 break;
8387 case Intrinsic::x86_sse2_psrai_w:
8388 NewIntNo = Intrinsic::x86_sse2_psra_w;
8389 break;
8390 case Intrinsic::x86_sse2_psrai_d:
8391 NewIntNo = Intrinsic::x86_sse2_psra_d;
8392 break;
8393 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008394 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008395 switch (IntNo) {
8396 case Intrinsic::x86_mmx_pslli_w:
8397 NewIntNo = Intrinsic::x86_mmx_psll_w;
8398 break;
8399 case Intrinsic::x86_mmx_pslli_d:
8400 NewIntNo = Intrinsic::x86_mmx_psll_d;
8401 break;
8402 case Intrinsic::x86_mmx_pslli_q:
8403 NewIntNo = Intrinsic::x86_mmx_psll_q;
8404 break;
8405 case Intrinsic::x86_mmx_psrli_w:
8406 NewIntNo = Intrinsic::x86_mmx_psrl_w;
8407 break;
8408 case Intrinsic::x86_mmx_psrli_d:
8409 NewIntNo = Intrinsic::x86_mmx_psrl_d;
8410 break;
8411 case Intrinsic::x86_mmx_psrli_q:
8412 NewIntNo = Intrinsic::x86_mmx_psrl_q;
8413 break;
8414 case Intrinsic::x86_mmx_psrai_w:
8415 NewIntNo = Intrinsic::x86_mmx_psra_w;
8416 break;
8417 case Intrinsic::x86_mmx_psrai_d:
8418 NewIntNo = Intrinsic::x86_mmx_psra_d;
8419 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00008420 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00008421 }
8422 break;
8423 }
8424 }
Mon P Wangefa42202009-09-03 19:56:25 +00008425
8426 // The vector shift intrinsics with scalars uses 32b shift amounts but
8427 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
8428 // to be zero.
8429 SDValue ShOps[4];
8430 ShOps[0] = ShAmt;
8431 ShOps[1] = DAG.getConstant(0, MVT::i32);
8432 if (ShAmtVT == MVT::v4i32) {
8433 ShOps[2] = DAG.getUNDEF(MVT::i32);
8434 ShOps[3] = DAG.getUNDEF(MVT::i32);
8435 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
8436 } else {
8437 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00008438// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00008439 }
8440
Owen Andersone50ed302009-08-10 22:56:29 +00008441 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008442 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008443 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008444 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00008445 Op.getOperand(1), ShAmt);
8446 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00008447 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008448}
Evan Cheng72261582005-12-20 06:22:03 +00008449
Dan Gohmand858e902010-04-17 15:26:15 +00008450SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
8451 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00008452 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8453 MFI->setReturnAddressIsTaken(true);
8454
Bill Wendling64e87322009-01-16 19:25:27 +00008455 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008456 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00008457
8458 if (Depth > 0) {
8459 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
8460 SDValue Offset =
8461 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00008462 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008463 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008464 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008465 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00008466 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00008467 }
8468
8469 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00008470 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00008471 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008472 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008473}
8474
Dan Gohmand858e902010-04-17 15:26:15 +00008475SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00008476 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8477 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00008478
Owen Andersone50ed302009-08-10 22:56:29 +00008479 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008480 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00008481 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
8482 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00008483 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00008484 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00008485 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
8486 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00008487 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00008488 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00008489}
8490
Dan Gohman475871a2008-07-27 21:46:04 +00008491SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008492 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008493 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008494}
8495
Dan Gohmand858e902010-04-17 15:26:15 +00008496SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008497 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00008498 SDValue Chain = Op.getOperand(0);
8499 SDValue Offset = Op.getOperand(1);
8500 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008501 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008502
Dan Gohmand8816272010-08-11 18:14:00 +00008503 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
8504 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
8505 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008506 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008507
Dan Gohmand8816272010-08-11 18:14:00 +00008508 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
8509 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008510 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008511 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
8512 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00008513 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008514 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008515
Dale Johannesene4d209d2009-02-03 20:21:25 +00008516 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008517 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008518 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008519}
8520
Dan Gohman475871a2008-07-27 21:46:04 +00008521SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008522 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008523 SDValue Root = Op.getOperand(0);
8524 SDValue Trmp = Op.getOperand(1); // trampoline
8525 SDValue FPtr = Op.getOperand(2); // nested function
8526 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008527 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008528
Dan Gohman69de1932008-02-06 22:27:42 +00008529 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008530
8531 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008532 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00008533
8534 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00008535 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
8536 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00008537
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008538 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
8539 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00008540
8541 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
8542
8543 // Load the pointer to the nested function into R11.
8544 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00008545 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008546 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008547 Addr, MachinePointerInfo(TrmpAddr),
8548 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008549
Owen Anderson825b72b2009-08-11 20:47:22 +00008550 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8551 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008552 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8553 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00008554 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008555
8556 // Load the 'nest' parameter value into R10.
8557 // R10 is specified in X86CallingConv.td
8558 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00008559 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8560 DAG.getConstant(10, MVT::i64));
8561 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008562 Addr, MachinePointerInfo(TrmpAddr, 10),
8563 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008564
Owen Anderson825b72b2009-08-11 20:47:22 +00008565 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8566 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008567 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8568 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00008569 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008570
8571 // Jump to the nested function.
8572 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00008573 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8574 DAG.getConstant(20, MVT::i64));
8575 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008576 Addr, MachinePointerInfo(TrmpAddr, 20),
8577 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008578
8579 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008580 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8581 DAG.getConstant(22, MVT::i64));
8582 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008583 MachinePointerInfo(TrmpAddr, 22),
8584 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008585
Dan Gohman475871a2008-07-27 21:46:04 +00008586 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008587 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008588 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008589 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008590 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008591 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008592 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008593 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008594
8595 switch (CC) {
8596 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008597 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008598 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008599 case CallingConv::X86_StdCall: {
8600 // Pass 'nest' parameter in ECX.
8601 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008602 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008603
8604 // Check that ECX wasn't needed by an 'inreg' parameter.
8605 const FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008606 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008607
Chris Lattner58d74912008-03-12 17:45:29 +00008608 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008609 unsigned InRegCount = 0;
8610 unsigned Idx = 1;
8611
8612 for (FunctionType::param_iterator I = FTy->param_begin(),
8613 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008614 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008615 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008616 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008617
8618 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00008619 report_fatal_error("Nest register in use - reduce number of inreg"
8620 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008621 }
8622 }
8623 break;
8624 }
8625 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00008626 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00008627 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008628 // Pass 'nest' parameter in EAX.
8629 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008630 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008631 break;
8632 }
8633
Dan Gohman475871a2008-07-27 21:46:04 +00008634 SDValue OutChains[4];
8635 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008636
Owen Anderson825b72b2009-08-11 20:47:22 +00008637 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8638 DAG.getConstant(10, MVT::i32));
8639 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008640
Chris Lattnera62fe662010-02-05 19:20:30 +00008641 // This is storing the opcode for MOV32ri.
8642 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008643 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00008644 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008645 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008646 Trmp, MachinePointerInfo(TrmpAddr),
8647 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008648
Owen Anderson825b72b2009-08-11 20:47:22 +00008649 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8650 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008651 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
8652 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00008653 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008654
Chris Lattnera62fe662010-02-05 19:20:30 +00008655 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00008656 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8657 DAG.getConstant(5, MVT::i32));
8658 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008659 MachinePointerInfo(TrmpAddr, 5),
8660 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008661
Owen Anderson825b72b2009-08-11 20:47:22 +00008662 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8663 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008664 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
8665 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00008666 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008667
Dan Gohman475871a2008-07-27 21:46:04 +00008668 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008669 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008670 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008671 }
8672}
8673
Dan Gohmand858e902010-04-17 15:26:15 +00008674SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
8675 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008676 /*
8677 The rounding mode is in bits 11:10 of FPSR, and has the following
8678 settings:
8679 00 Round to nearest
8680 01 Round to -inf
8681 10 Round to +inf
8682 11 Round to 0
8683
8684 FLT_ROUNDS, on the other hand, expects the following:
8685 -1 Undefined
8686 0 Round to 0
8687 1 Round to nearest
8688 2 Round to +inf
8689 3 Round to -inf
8690
8691 To perform the conversion, we do:
8692 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
8693 */
8694
8695 MachineFunction &MF = DAG.getMachineFunction();
8696 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00008697 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008698 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008699 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00008700 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008701
8702 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00008703 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008704 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008705
Michael J. Spencerec38de22010-10-10 22:04:20 +00008706
Chris Lattner2156b792010-09-22 01:11:26 +00008707 MachineMemOperand *MMO =
8708 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8709 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008710
Chris Lattner2156b792010-09-22 01:11:26 +00008711 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
8712 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
8713 DAG.getVTList(MVT::Other),
8714 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008715
8716 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00008717 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00008718 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008719
8720 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00008721 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00008722 DAG.getNode(ISD::SRL, DL, MVT::i16,
8723 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008724 CWD, DAG.getConstant(0x800, MVT::i16)),
8725 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00008726 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00008727 DAG.getNode(ISD::SRL, DL, MVT::i16,
8728 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008729 CWD, DAG.getConstant(0x400, MVT::i16)),
8730 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008731
Dan Gohman475871a2008-07-27 21:46:04 +00008732 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00008733 DAG.getNode(ISD::AND, DL, MVT::i16,
8734 DAG.getNode(ISD::ADD, DL, MVT::i16,
8735 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00008736 DAG.getConstant(1, MVT::i16)),
8737 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008738
8739
Duncan Sands83ec4b62008-06-06 12:08:01 +00008740 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00008741 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008742}
8743
Dan Gohmand858e902010-04-17 15:26:15 +00008744SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008745 EVT VT = Op.getValueType();
8746 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008747 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008748 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008749
8750 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008751 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00008752 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00008753 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008754 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008755 }
Evan Cheng18efe262007-12-14 02:13:44 +00008756
Evan Cheng152804e2007-12-14 08:30:15 +00008757 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008758 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008759 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008760
8761 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008762 SDValue Ops[] = {
8763 Op,
8764 DAG.getConstant(NumBits+NumBits-1, OpVT),
8765 DAG.getConstant(X86::COND_E, MVT::i8),
8766 Op.getValue(1)
8767 };
8768 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008769
8770 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00008771 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00008772
Owen Anderson825b72b2009-08-11 20:47:22 +00008773 if (VT == MVT::i8)
8774 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008775 return Op;
8776}
8777
Dan Gohmand858e902010-04-17 15:26:15 +00008778SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008779 EVT VT = Op.getValueType();
8780 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008781 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008782 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008783
8784 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008785 if (VT == MVT::i8) {
8786 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008787 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008788 }
Evan Cheng152804e2007-12-14 08:30:15 +00008789
8790 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008791 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008792 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008793
8794 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008795 SDValue Ops[] = {
8796 Op,
8797 DAG.getConstant(NumBits, OpVT),
8798 DAG.getConstant(X86::COND_E, MVT::i8),
8799 Op.getValue(1)
8800 };
8801 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008802
Owen Anderson825b72b2009-08-11 20:47:22 +00008803 if (VT == MVT::i8)
8804 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008805 return Op;
8806}
8807
Dan Gohmand858e902010-04-17 15:26:15 +00008808SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008809 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00008810 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008811 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008812
Mon P Wangaf9b9522008-12-18 21:42:19 +00008813 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
8814 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
8815 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
8816 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
8817 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
8818 //
8819 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
8820 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
8821 // return AloBlo + AloBhi + AhiBlo;
8822
8823 SDValue A = Op.getOperand(0);
8824 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008825
Dale Johannesene4d209d2009-02-03 20:21:25 +00008826 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008827 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8828 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008829 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008830 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8831 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008832 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008833 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008834 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008835 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008836 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008837 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008838 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008839 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008840 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008841 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008842 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8843 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008844 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008845 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8846 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008847 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
8848 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008849 return Res;
8850}
8851
Nadav Rotem43012222011-05-11 08:12:09 +00008852SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
8853
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008854 EVT VT = Op.getValueType();
8855 DebugLoc dl = Op.getDebugLoc();
8856 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +00008857 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008858
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008859 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008860
Nadav Rotem43012222011-05-11 08:12:09 +00008861 // Must have SSE2.
8862 if (!Subtarget->hasSSE2()) return SDValue();
Nate Begeman51409212010-07-28 00:21:48 +00008863
Nadav Rotem43012222011-05-11 08:12:09 +00008864 // Optimize shl/srl/sra with constant shift amount.
8865 if (isSplatVector(Amt.getNode())) {
8866 SDValue SclrAmt = Amt->getOperand(0);
8867 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
8868 uint64_t ShiftAmt = C->getZExtValue();
8869
8870 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SHL)
8871 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8872 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8873 R, DAG.getConstant(ShiftAmt, MVT::i32));
8874
8875 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SHL)
8876 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8877 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8878 R, DAG.getConstant(ShiftAmt, MVT::i32));
8879
8880 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SHL)
8881 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8882 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8883 R, DAG.getConstant(ShiftAmt, MVT::i32));
8884
8885 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SRL)
8886 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8887 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8888 R, DAG.getConstant(ShiftAmt, MVT::i32));
8889
8890 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRL)
8891 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8892 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
8893 R, DAG.getConstant(ShiftAmt, MVT::i32));
8894
8895 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRL)
8896 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8897 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
8898 R, DAG.getConstant(ShiftAmt, MVT::i32));
8899
8900 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRA)
8901 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8902 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
8903 R, DAG.getConstant(ShiftAmt, MVT::i32));
8904
8905 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRA)
8906 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8907 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
8908 R, DAG.getConstant(ShiftAmt, MVT::i32));
8909 }
8910 }
8911
8912 // Lower SHL with variable shift amount.
8913 // Cannot lower SHL without SSE4.1 or later.
8914 if (!Subtarget->hasSSE41()) return SDValue();
8915
8916 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00008917 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8918 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8919 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
8920
8921 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008922
Nate Begeman51409212010-07-28 00:21:48 +00008923 std::vector<Constant*> CV(4, CI);
8924 Constant *C = ConstantVector::get(CV);
8925 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8926 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008927 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008928 false, false, 16);
8929
8930 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008931 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00008932 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
8933 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
8934 }
Nadav Rotem43012222011-05-11 08:12:09 +00008935 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00008936 // a = a << 5;
8937 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8938 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8939 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
8940
8941 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
8942 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
8943
8944 std::vector<Constant*> CVM1(16, CM1);
8945 std::vector<Constant*> CVM2(16, CM2);
8946 Constant *C = ConstantVector::get(CVM1);
8947 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8948 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008949 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008950 false, false, 16);
8951
8952 // r = pblendv(r, psllw(r & (char16)15, 4), a);
8953 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8954 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8955 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8956 DAG.getConstant(4, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00008957 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00008958 // a += a
8959 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008960
Nate Begeman51409212010-07-28 00:21:48 +00008961 C = ConstantVector::get(CVM2);
8962 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8963 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008964 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008965 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008966
Nate Begeman51409212010-07-28 00:21:48 +00008967 // r = pblendv(r, psllw(r & (char16)63, 2), a);
8968 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8969 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8970 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8971 DAG.getConstant(2, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00008972 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00008973 // a += a
8974 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008975
Nate Begeman51409212010-07-28 00:21:48 +00008976 // return pblendv(r, r+r, a);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008977 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT,
Nate Begeman51409212010-07-28 00:21:48 +00008978 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
8979 return R;
8980 }
8981 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008982}
Mon P Wangaf9b9522008-12-18 21:42:19 +00008983
Dan Gohmand858e902010-04-17 15:26:15 +00008984SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00008985 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
8986 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00008987 // looks for this combo and may remove the "setcc" instruction if the "setcc"
8988 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00008989 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00008990 SDValue LHS = N->getOperand(0);
8991 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00008992 unsigned BaseOp = 0;
8993 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008994 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00008995 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008996 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00008997 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00008998 // A subtract of one will be selected as a INC. Note that INC doesn't
8999 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009000 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9001 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009002 BaseOp = X86ISD::INC;
9003 Cond = X86::COND_O;
9004 break;
9005 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009006 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00009007 Cond = X86::COND_O;
9008 break;
9009 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009010 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00009011 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009012 break;
9013 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00009014 // A subtract of one will be selected as a DEC. Note that DEC doesn't
9015 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009016 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9017 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009018 BaseOp = X86ISD::DEC;
9019 Cond = X86::COND_O;
9020 break;
9021 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009022 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00009023 Cond = X86::COND_O;
9024 break;
9025 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009026 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00009027 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009028 break;
9029 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00009030 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00009031 Cond = X86::COND_O;
9032 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009033 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
9034 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
9035 MVT::i32);
9036 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009037
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009038 SDValue SetCC =
9039 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
9040 DAG.getConstant(X86::COND_O, MVT::i32),
9041 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009042
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009043 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
9044 return Sum;
9045 }
Bill Wendling74c37652008-12-09 22:08:41 +00009046 }
Bill Wendling3fafd932008-11-26 22:37:40 +00009047
Bill Wendling61edeb52008-12-02 01:06:39 +00009048 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009049 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009050 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00009051
Bill Wendling61edeb52008-12-02 01:06:39 +00009052 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009053 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
9054 DAG.getConstant(Cond, MVT::i32),
9055 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00009056
Bill Wendling61edeb52008-12-02 01:06:39 +00009057 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
9058 return Sum;
Bill Wendling41ea7e72008-11-24 19:21:46 +00009059}
9060
Eric Christopher9a9d2752010-07-22 02:48:34 +00009061SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
9062 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009063
Eric Christopherb6729dc2010-08-04 23:03:04 +00009064 if (!Subtarget->hasSSE2()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00009065 SDValue Chain = Op.getOperand(0);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009066 SDValue Zero = DAG.getConstant(0,
Eric Christopherb6729dc2010-08-04 23:03:04 +00009067 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00009068 SDValue Ops[] = {
9069 DAG.getRegister(X86::ESP, MVT::i32), // Base
9070 DAG.getTargetConstant(1, MVT::i8), // Scale
9071 DAG.getRegister(0, MVT::i32), // Index
9072 DAG.getTargetConstant(0, MVT::i32), // Disp
9073 DAG.getRegister(0, MVT::i32), // Segment.
9074 Zero,
9075 Chain
9076 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00009077 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00009078 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9079 array_lengthof(Ops));
9080 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00009081 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009082
Eric Christopher9a9d2752010-07-22 02:48:34 +00009083 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00009084 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00009085 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009086
Chris Lattner132929a2010-08-14 17:26:09 +00009087 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
9088 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
9089 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
9090 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009091
Chris Lattner132929a2010-08-14 17:26:09 +00009092 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
9093 if (!Op1 && !Op2 && !Op3 && Op4)
9094 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009095
Chris Lattner132929a2010-08-14 17:26:09 +00009096 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
9097 if (Op1 && !Op2 && !Op3 && !Op4)
9098 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009099
9100 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00009101 // (MFENCE)>;
9102 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00009103}
9104
Dan Gohmand858e902010-04-17 15:26:15 +00009105SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009106 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009107 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00009108 unsigned Reg = 0;
9109 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00009110 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009111 default:
9112 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00009113 case MVT::i8: Reg = X86::AL; size = 1; break;
9114 case MVT::i16: Reg = X86::AX; size = 2; break;
9115 case MVT::i32: Reg = X86::EAX; size = 4; break;
9116 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00009117 assert(Subtarget->is64Bit() && "Node not type legal!");
9118 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00009119 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00009120 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009121 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00009122 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00009123 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009124 Op.getOperand(1),
9125 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00009126 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009127 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009128 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009129 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
9130 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
9131 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00009132 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009133 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00009134 return cpOut;
9135}
9136
Duncan Sands1607f052008-12-01 11:39:25 +00009137SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009138 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00009139 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009140 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009141 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009142 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009143 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009144 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
9145 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00009146 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00009147 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
9148 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00009149 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00009150 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00009151 rdx.getValue(1)
9152 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009153 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009154}
9155
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009156SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +00009157 SelectionDAG &DAG) const {
9158 EVT SrcVT = Op.getOperand(0).getValueType();
9159 EVT DstVT = Op.getValueType();
Chris Lattner2a786eb2010-12-19 20:19:20 +00009160 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
9161 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009162 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00009163 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009164 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +00009165 // i64 <=> MMX conversions are Legal.
9166 if (SrcVT==MVT::i64 && DstVT.isVector())
9167 return Op;
9168 if (DstVT==MVT::i64 && SrcVT.isVector())
9169 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00009170 // MMX <=> MMX conversions are Legal.
9171 if (SrcVT.isVector() && DstVT.isVector())
9172 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00009173 // All other conversions need to be expanded.
9174 return SDValue();
9175}
Chris Lattner5b856542010-12-20 00:59:46 +00009176
Dan Gohmand858e902010-04-17 15:26:15 +00009177SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009178 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009179 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00009180 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009181 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00009182 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009183 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009184 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009185 Node->getOperand(0),
9186 Node->getOperand(1), negOp,
9187 cast<AtomicSDNode>(Node)->getSrcValue(),
9188 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00009189}
9190
Chris Lattner5b856542010-12-20 00:59:46 +00009191static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
9192 EVT VT = Op.getNode()->getValueType(0);
9193
9194 // Let legalize expand this if it isn't a legal type yet.
9195 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
9196 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009197
Chris Lattner5b856542010-12-20 00:59:46 +00009198 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009199
Chris Lattner5b856542010-12-20 00:59:46 +00009200 unsigned Opc;
9201 bool ExtraOp = false;
9202 switch (Op.getOpcode()) {
9203 default: assert(0 && "Invalid code");
9204 case ISD::ADDC: Opc = X86ISD::ADD; break;
9205 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
9206 case ISD::SUBC: Opc = X86ISD::SUB; break;
9207 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
9208 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009209
Chris Lattner5b856542010-12-20 00:59:46 +00009210 if (!ExtraOp)
9211 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9212 Op.getOperand(1));
9213 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9214 Op.getOperand(1), Op.getOperand(2));
9215}
9216
Evan Cheng0db9fe62006-04-25 20:13:52 +00009217/// LowerOperation - Provide custom lowering hooks for some operations.
9218///
Dan Gohmand858e902010-04-17 15:26:15 +00009219SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00009220 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009221 default: llvm_unreachable("Should not custom lower this!");
Eric Christopher9a9d2752010-07-22 02:48:34 +00009222 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009223 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
9224 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009225 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00009226 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009227 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
9228 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
9229 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
David Greene91585092011-01-26 15:38:49 +00009230 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
David Greenecfe33c42011-01-26 19:13:22 +00009231 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009232 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
9233 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
9234 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009235 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00009236 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00009237 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009238 case ISD::SHL_PARTS:
9239 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +00009240 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009241 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00009242 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009243 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00009244 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009245 case ISD::FABS: return LowerFABS(Op, DAG);
9246 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009247 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009248 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00009249 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009250 case ISD::SELECT: return LowerSELECT(Op, DAG);
9251 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009252 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009253 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00009254 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00009255 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009256 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00009257 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
9258 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009259 case ISD::FRAME_TO_ARGS_OFFSET:
9260 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00009261 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009262 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009263 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00009264 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00009265 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
9266 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009267 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +00009268 case ISD::SRA:
9269 case ISD::SRL:
9270 case ISD::SHL: return LowerShift(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00009271 case ISD::SADDO:
9272 case ISD::UADDO:
9273 case ISD::SSUBO:
9274 case ISD::USUBO:
9275 case ISD::SMULO:
9276 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00009277 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009278 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +00009279 case ISD::ADDC:
9280 case ISD::ADDE:
9281 case ISD::SUBC:
9282 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009283 }
Chris Lattner27a6c732007-11-24 07:07:01 +00009284}
9285
Duncan Sands1607f052008-12-01 11:39:25 +00009286void X86TargetLowering::
9287ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009288 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009289 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009290 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00009291 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00009292
9293 SDValue Chain = Node->getOperand(0);
9294 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009295 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009296 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00009297 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009298 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00009299 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00009300 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00009301 SDValue Result =
9302 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
9303 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00009304 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009305 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009306 Results.push_back(Result.getValue(2));
9307}
9308
Duncan Sands126d9072008-07-04 11:47:58 +00009309/// ReplaceNodeResults - Replace a node with an illegal result type
9310/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00009311void X86TargetLowering::ReplaceNodeResults(SDNode *N,
9312 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009313 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009314 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00009315 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00009316 default:
Duncan Sands1607f052008-12-01 11:39:25 +00009317 assert(false && "Do not know how to custom type legalize this operation!");
9318 return;
Chris Lattner5b856542010-12-20 00:59:46 +00009319 case ISD::ADDC:
9320 case ISD::ADDE:
9321 case ISD::SUBC:
9322 case ISD::SUBE:
9323 // We don't want to expand or promote these.
9324 return;
Duncan Sands1607f052008-12-01 11:39:25 +00009325 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00009326 std::pair<SDValue,SDValue> Vals =
9327 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00009328 SDValue FIST = Vals.first, StackSlot = Vals.second;
9329 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00009330 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00009331 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00009332 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
9333 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00009334 }
9335 return;
9336 }
9337 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009338 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009339 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009340 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009341 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00009342 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00009343 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009344 eax.getValue(2));
9345 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
9346 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00009347 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009348 Results.push_back(edx.getValue(1));
9349 return;
9350 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009351 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00009352 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009353 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00009354 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009355 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9356 DAG.getConstant(0, MVT::i32));
9357 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9358 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009359 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
9360 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009361 cpInL.getValue(1));
9362 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009363 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9364 DAG.getConstant(0, MVT::i32));
9365 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9366 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009367 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00009368 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009369 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009370 swapInL.getValue(1));
9371 SDValue Ops[] = { swapInH.getValue(0),
9372 N->getOperand(1),
9373 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009374 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +00009375 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
9376 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
9377 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +00009378 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009379 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009380 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009381 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00009382 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009383 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009384 Results.push_back(cpOutH.getValue(1));
9385 return;
9386 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009387 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00009388 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
9389 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009390 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00009391 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
9392 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009393 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00009394 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
9395 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009396 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00009397 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
9398 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009399 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00009400 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
9401 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009402 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00009403 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
9404 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009405 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00009406 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
9407 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00009408 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00009409}
9410
Evan Cheng72261582005-12-20 06:22:03 +00009411const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
9412 switch (Opcode) {
9413 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00009414 case X86ISD::BSF: return "X86ISD::BSF";
9415 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00009416 case X86ISD::SHLD: return "X86ISD::SHLD";
9417 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00009418 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009419 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00009420 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009421 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00009422 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00009423 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00009424 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
9425 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
9426 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00009427 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00009428 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00009429 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00009430 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00009431 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00009432 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00009433 case X86ISD::COMI: return "X86ISD::COMI";
9434 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00009435 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00009436 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Evan Cheng72261582005-12-20 06:22:03 +00009437 case X86ISD::CMOV: return "X86ISD::CMOV";
9438 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00009439 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00009440 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
9441 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00009442 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00009443 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00009444 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009445 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00009446 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009447 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
9448 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00009449 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00009450 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Nate Begemanb65c1752010-12-17 22:55:37 +00009451 case X86ISD::PANDN: return "X86ISD::PANDN";
9452 case X86ISD::PSIGNB: return "X86ISD::PSIGNB";
9453 case X86ISD::PSIGNW: return "X86ISD::PSIGNW";
9454 case X86ISD::PSIGND: return "X86ISD::PSIGND";
Nate Begeman672fb622010-12-20 22:04:24 +00009455 case X86ISD::PBLENDVB: return "X86ISD::PBLENDVB";
Evan Cheng8ca29322006-11-10 21:43:37 +00009456 case X86ISD::FMAX: return "X86ISD::FMAX";
9457 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00009458 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
9459 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009460 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00009461 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009462 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00009463 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009464 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00009465 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
9466 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009467 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
9468 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
9469 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
9470 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
9471 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
9472 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00009473 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
9474 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00009475 case X86ISD::VSHL: return "X86ISD::VSHL";
9476 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00009477 case X86ISD::CMPPD: return "X86ISD::CMPPD";
9478 case X86ISD::CMPPS: return "X86ISD::CMPPS";
9479 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
9480 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
9481 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
9482 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
9483 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
9484 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
9485 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
9486 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009487 case X86ISD::ADD: return "X86ISD::ADD";
9488 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +00009489 case X86ISD::ADC: return "X86ISD::ADC";
9490 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +00009491 case X86ISD::SMUL: return "X86ISD::SMUL";
9492 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00009493 case X86ISD::INC: return "X86ISD::INC";
9494 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +00009495 case X86ISD::OR: return "X86ISD::OR";
9496 case X86ISD::XOR: return "X86ISD::XOR";
9497 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +00009498 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +00009499 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009500 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009501 case X86ISD::PALIGN: return "X86ISD::PALIGN";
9502 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
9503 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
9504 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
9505 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
9506 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
9507 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
9508 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
9509 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009510 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00009511 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009512 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00009513 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
9514 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009515 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
9516 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
9517 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
9518 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
9519 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
9520 case X86ISD::MOVSD: return "X86ISD::MOVSD";
9521 case X86ISD::MOVSS: return "X86ISD::MOVSS";
9522 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
9523 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
David Greenefbf05d32011-02-22 23:31:46 +00009524 case X86ISD::VUNPCKLPS: return "X86ISD::VUNPCKLPS";
9525 case X86ISD::VUNPCKLPD: return "X86ISD::VUNPCKLPD";
9526 case X86ISD::VUNPCKLPSY: return "X86ISD::VUNPCKLPSY";
9527 case X86ISD::VUNPCKLPDY: return "X86ISD::VUNPCKLPDY";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009528 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
9529 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
9530 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
9531 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
9532 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
9533 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
9534 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
9535 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
9536 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
9537 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +00009538 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +00009539 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009540 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Evan Cheng72261582005-12-20 06:22:03 +00009541 }
9542}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00009543
Chris Lattnerc9addb72007-03-30 23:15:24 +00009544// isLegalAddressingMode - Return true if the addressing mode represented
9545// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00009546bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerc9addb72007-03-30 23:15:24 +00009547 const Type *Ty) const {
9548 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009549 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +00009550 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +00009551
Chris Lattnerc9addb72007-03-30 23:15:24 +00009552 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009553 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +00009554 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00009555
Chris Lattnerc9addb72007-03-30 23:15:24 +00009556 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +00009557 unsigned GVFlags =
9558 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009559
Chris Lattnerdfed4132009-07-10 07:38:24 +00009560 // If a reference to this global requires an extra load, we can't fold it.
9561 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +00009562 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009563
Chris Lattnerdfed4132009-07-10 07:38:24 +00009564 // If BaseGV requires a register for the PIC base, we cannot also have a
9565 // BaseReg specified.
9566 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +00009567 return false;
Evan Cheng52787842007-08-01 23:46:47 +00009568
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009569 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +00009570 if ((M != CodeModel::Small || R != Reloc::Static) &&
9571 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009572 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00009573 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009574
Chris Lattnerc9addb72007-03-30 23:15:24 +00009575 switch (AM.Scale) {
9576 case 0:
9577 case 1:
9578 case 2:
9579 case 4:
9580 case 8:
9581 // These scales always work.
9582 break;
9583 case 3:
9584 case 5:
9585 case 9:
9586 // These scales are formed with basereg+scalereg. Only accept if there is
9587 // no basereg yet.
9588 if (AM.HasBaseReg)
9589 return false;
9590 break;
9591 default: // Other stuff never works.
9592 return false;
9593 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009594
Chris Lattnerc9addb72007-03-30 23:15:24 +00009595 return true;
9596}
9597
9598
Evan Cheng2bd122c2007-10-26 01:56:11 +00009599bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00009600 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +00009601 return false;
Evan Chenge127a732007-10-29 07:57:50 +00009602 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
9603 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00009604 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00009605 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00009606 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +00009607}
9608
Owen Andersone50ed302009-08-10 22:56:29 +00009609bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009610 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009611 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009612 unsigned NumBits1 = VT1.getSizeInBits();
9613 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00009614 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009615 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00009616 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009617}
Evan Cheng2bd122c2007-10-26 01:56:11 +00009618
Dan Gohman97121ba2009-04-08 00:15:30 +00009619bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00009620 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00009621 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00009622}
9623
Owen Andersone50ed302009-08-10 22:56:29 +00009624bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00009625 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00009626 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00009627}
9628
Owen Andersone50ed302009-08-10 22:56:29 +00009629bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +00009630 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +00009631 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +00009632}
9633
Evan Cheng60c07e12006-07-05 22:17:51 +00009634/// isShuffleMaskLegal - Targets can use this to indicate that they only
9635/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
9636/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
9637/// are assumed to be legal.
9638bool
Eric Christopherfd179292009-08-27 18:07:15 +00009639X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +00009640 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +00009641 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +00009642 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +00009643 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +00009644
Nate Begemana09008b2009-10-19 02:17:23 +00009645 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +00009646 return (VT.getVectorNumElements() == 2 ||
9647 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
9648 isMOVLMask(M, VT) ||
9649 isSHUFPMask(M, VT) ||
9650 isPSHUFDMask(M, VT) ||
9651 isPSHUFHWMask(M, VT) ||
9652 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +00009653 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +00009654 isUNPCKLMask(M, VT) ||
9655 isUNPCKHMask(M, VT) ||
9656 isUNPCKL_v_undef_Mask(M, VT) ||
9657 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009658}
9659
Dan Gohman7d8143f2008-04-09 20:09:42 +00009660bool
Nate Begeman5a5ca152009-04-29 05:20:52 +00009661X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +00009662 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00009663 unsigned NumElts = VT.getVectorNumElements();
9664 // FIXME: This collection of masks seems suspect.
9665 if (NumElts == 2)
9666 return true;
9667 if (NumElts == 4 && VT.getSizeInBits() == 128) {
9668 return (isMOVLMask(Mask, VT) ||
9669 isCommutedMOVLMask(Mask, VT, true) ||
9670 isSHUFPMask(Mask, VT) ||
9671 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009672 }
9673 return false;
9674}
9675
9676//===----------------------------------------------------------------------===//
9677// X86 Scheduler Hooks
9678//===----------------------------------------------------------------------===//
9679
Mon P Wang63307c32008-05-05 19:05:59 +00009680// private utility function
9681MachineBasicBlock *
9682X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
9683 MachineBasicBlock *MBB,
9684 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009685 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009686 unsigned LoadOpc,
9687 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009688 unsigned notOpc,
9689 unsigned EAXreg,
9690 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009691 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009692 // For the atomic bitwise operator, we generate
9693 // thisMBB:
9694 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009695 // ld t1 = [bitinstr.addr]
9696 // op t2 = t1, [bitinstr.val]
9697 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009698 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9699 // bz newMBB
9700 // fallthrough -->nextMBB
9701 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9702 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009703 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009704 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009705
Mon P Wang63307c32008-05-05 19:05:59 +00009706 /// First build the CFG
9707 MachineFunction *F = MBB->getParent();
9708 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009709 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9710 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9711 F->insert(MBBIter, newMBB);
9712 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009713
Dan Gohman14152b42010-07-06 20:24:04 +00009714 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9715 nextMBB->splice(nextMBB->begin(), thisMBB,
9716 llvm::next(MachineBasicBlock::iterator(bInstr)),
9717 thisMBB->end());
9718 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009719
Mon P Wang63307c32008-05-05 19:05:59 +00009720 // Update thisMBB to fall through to newMBB
9721 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009722
Mon P Wang63307c32008-05-05 19:05:59 +00009723 // newMBB jumps to itself and fall through to nextMBB
9724 newMBB->addSuccessor(nextMBB);
9725 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009726
Mon P Wang63307c32008-05-05 19:05:59 +00009727 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009728 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009729 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +00009730 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009731 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009732 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009733 int numArgs = bInstr->getNumOperands() - 1;
9734 for (int i=0; i < numArgs; ++i)
9735 argOpers[i] = &bInstr->getOperand(i+1);
9736
9737 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009738 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009739 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009740
Dale Johannesen140be2d2008-08-19 18:47:28 +00009741 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009742 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009743 for (int i=0; i <= lastAddrIndx; ++i)
9744 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009745
Dale Johannesen140be2d2008-08-19 18:47:28 +00009746 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009747 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009748 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009749 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009750 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009751 tt = t1;
9752
Dale Johannesen140be2d2008-08-19 18:47:28 +00009753 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00009754 assert((argOpers[valArgIndx]->isReg() ||
9755 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009756 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00009757 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009758 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009759 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009760 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009761 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00009762 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009763
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009764 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00009765 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009766
Dale Johannesene4d209d2009-02-03 20:21:25 +00009767 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00009768 for (int i=0; i <= lastAddrIndx; ++i)
9769 (*MIB).addOperand(*argOpers[i]);
9770 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00009771 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009772 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9773 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +00009774
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009775 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +00009776 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009777
Mon P Wang63307c32008-05-05 19:05:59 +00009778 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009779 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009780
Dan Gohman14152b42010-07-06 20:24:04 +00009781 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009782 return nextMBB;
9783}
9784
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00009785// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +00009786MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009787X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
9788 MachineBasicBlock *MBB,
9789 unsigned regOpcL,
9790 unsigned regOpcH,
9791 unsigned immOpcL,
9792 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009793 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009794 // For the atomic bitwise operator, we generate
9795 // thisMBB (instructions are in pairs, except cmpxchg8b)
9796 // ld t1,t2 = [bitinstr.addr]
9797 // newMBB:
9798 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
9799 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +00009800 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009801 // mov ECX, EBX <- t5, t6
9802 // mov EAX, EDX <- t1, t2
9803 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
9804 // mov t3, t4 <- EAX, EDX
9805 // bz newMBB
9806 // result in out1, out2
9807 // fallthrough -->nextMBB
9808
9809 const TargetRegisterClass *RC = X86::GR32RegisterClass;
9810 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009811 const unsigned NotOpc = X86::NOT32r;
9812 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9813 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9814 MachineFunction::iterator MBBIter = MBB;
9815 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009816
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009817 /// First build the CFG
9818 MachineFunction *F = MBB->getParent();
9819 MachineBasicBlock *thisMBB = MBB;
9820 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9821 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9822 F->insert(MBBIter, newMBB);
9823 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009824
Dan Gohman14152b42010-07-06 20:24:04 +00009825 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9826 nextMBB->splice(nextMBB->begin(), thisMBB,
9827 llvm::next(MachineBasicBlock::iterator(bInstr)),
9828 thisMBB->end());
9829 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009830
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009831 // Update thisMBB to fall through to newMBB
9832 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009833
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009834 // newMBB jumps to itself and fall through to nextMBB
9835 newMBB->addSuccessor(nextMBB);
9836 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009837
Dale Johannesene4d209d2009-02-03 20:21:25 +00009838 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009839 // Insert instructions into newMBB based on incoming instruction
9840 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009841 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009842 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009843 MachineOperand& dest1Oper = bInstr->getOperand(0);
9844 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009845 MachineOperand* argOpers[2 + X86::AddrNumOperands];
9846 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009847 argOpers[i] = &bInstr->getOperand(i+2);
9848
Dan Gohman71ea4e52010-05-14 21:01:44 +00009849 // We use some of the operands multiple times, so conservatively just
9850 // clear any kill flags that might be present.
9851 if (argOpers[i]->isReg() && argOpers[i]->isUse())
9852 argOpers[i]->setIsKill(false);
9853 }
9854
Evan Chengad5b52f2010-01-08 19:14:57 +00009855 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009856 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +00009857
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009858 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009859 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009860 for (int i=0; i <= lastAddrIndx; ++i)
9861 (*MIB).addOperand(*argOpers[i]);
9862 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009863 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +00009864 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +00009865 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009866 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +00009867 MachineOperand newOp3 = *(argOpers[3]);
9868 if (newOp3.isImm())
9869 newOp3.setImm(newOp3.getImm()+4);
9870 else
9871 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009872 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +00009873 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009874
9875 // t3/4 are defined later, at the bottom of the loop
9876 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
9877 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009878 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009879 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009880 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009881 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
9882
Evan Cheng306b4ca2010-01-08 23:41:50 +00009883 // The subsequent operations should be using the destination registers of
9884 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +00009885 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009886 t1 = F->getRegInfo().createVirtualRegister(RC);
9887 t2 = F->getRegInfo().createVirtualRegister(RC);
9888 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
9889 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009890 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009891 t1 = dest1Oper.getReg();
9892 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009893 }
9894
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009895 int valArgIndx = lastAddrIndx + 1;
9896 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +00009897 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009898 "invalid operand");
9899 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
9900 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009901 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009902 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009903 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009904 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +00009905 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009906 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009907 (*MIB).addOperand(*argOpers[valArgIndx]);
9908 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009909 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009910 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009911 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009912 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009913 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009914 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009915 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +00009916 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009917 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009918 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009919
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009920 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009921 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009922 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009923 MIB.addReg(t2);
9924
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009925 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009926 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009927 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009928 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +00009929
Dale Johannesene4d209d2009-02-03 20:21:25 +00009930 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009931 for (int i=0; i <= lastAddrIndx; ++i)
9932 (*MIB).addOperand(*argOpers[i]);
9933
9934 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009935 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9936 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009937
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009938 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009939 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009940 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009941 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009942
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009943 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009944 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009945
Dan Gohman14152b42010-07-06 20:24:04 +00009946 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009947 return nextMBB;
9948}
9949
9950// private utility function
9951MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +00009952X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
9953 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009954 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009955 // For the atomic min/max operator, we generate
9956 // thisMBB:
9957 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009958 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +00009959 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +00009960 // cmp t1, t2
9961 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +00009962 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009963 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9964 // bz newMBB
9965 // fallthrough -->nextMBB
9966 //
9967 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9968 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009969 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009970 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009971
Mon P Wang63307c32008-05-05 19:05:59 +00009972 /// First build the CFG
9973 MachineFunction *F = MBB->getParent();
9974 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009975 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9976 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9977 F->insert(MBBIter, newMBB);
9978 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009979
Dan Gohman14152b42010-07-06 20:24:04 +00009980 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9981 nextMBB->splice(nextMBB->begin(), thisMBB,
9982 llvm::next(MachineBasicBlock::iterator(mInstr)),
9983 thisMBB->end());
9984 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009985
Mon P Wang63307c32008-05-05 19:05:59 +00009986 // Update thisMBB to fall through to newMBB
9987 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009988
Mon P Wang63307c32008-05-05 19:05:59 +00009989 // newMBB jumps to newMBB and fall through to nextMBB
9990 newMBB->addSuccessor(nextMBB);
9991 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009992
Dale Johannesene4d209d2009-02-03 20:21:25 +00009993 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009994 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009995 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009996 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +00009997 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009998 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009999 int numArgs = mInstr->getNumOperands() - 1;
10000 for (int i=0; i < numArgs; ++i)
10001 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010002
Mon P Wang63307c32008-05-05 19:05:59 +000010003 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010004 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010005 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010006
Mon P Wangab3e7472008-05-05 22:56:23 +000010007 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010008 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010009 for (int i=0; i <= lastAddrIndx; ++i)
10010 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +000010011
Mon P Wang63307c32008-05-05 19:05:59 +000010012 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +000010013 assert((argOpers[valArgIndx]->isReg() ||
10014 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010015 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +000010016
10017 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +000010018 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010019 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +000010020 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010021 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010022 (*MIB).addOperand(*argOpers[valArgIndx]);
10023
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010024 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +000010025 MIB.addReg(t1);
10026
Dale Johannesene4d209d2009-02-03 20:21:25 +000010027 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +000010028 MIB.addReg(t1);
10029 MIB.addReg(t2);
10030
10031 // Generate movc
10032 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010033 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +000010034 MIB.addReg(t2);
10035 MIB.addReg(t1);
10036
10037 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +000010038 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +000010039 for (int i=0; i <= lastAddrIndx; ++i)
10040 (*MIB).addOperand(*argOpers[i]);
10041 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +000010042 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010043 (*MIB).setMemRefs(mInstr->memoperands_begin(),
10044 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000010045
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010046 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +000010047 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010048
Mon P Wang63307c32008-05-05 19:05:59 +000010049 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010050 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010051
Dan Gohman14152b42010-07-06 20:24:04 +000010052 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010053 return nextMBB;
10054}
10055
Eric Christopherf83a5de2009-08-27 18:08:16 +000010056// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010057// or XMM0_V32I8 in AVX all of this code can be replaced with that
10058// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010059MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +000010060X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +000010061 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010062 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
10063 "Target must have SSE4.2 or AVX features enabled");
10064
Eric Christopherb120ab42009-08-18 22:50:32 +000010065 DebugLoc dl = MI->getDebugLoc();
10066 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +000010067 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010068 if (!Subtarget->hasAVX()) {
10069 if (memArg)
10070 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
10071 else
10072 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
10073 } else {
10074 if (memArg)
10075 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
10076 else
10077 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
10078 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010079
Eric Christopher41c902f2010-11-30 08:20:21 +000010080 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +000010081 for (unsigned i = 0; i < numArgs; ++i) {
10082 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +000010083 if (!(Op.isReg() && Op.isImplicit()))
10084 MIB.addOperand(Op);
10085 }
Eric Christopher41c902f2010-11-30 08:20:21 +000010086 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000010087 .addReg(X86::XMM0);
10088
Dan Gohman14152b42010-07-06 20:24:04 +000010089 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000010090 return BB;
10091}
10092
10093MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +000010094X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010095 DebugLoc dl = MI->getDebugLoc();
10096 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010097
Eric Christopher228232b2010-11-30 07:20:12 +000010098 // Address into RAX/EAX, other two args into ECX, EDX.
10099 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
10100 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
10101 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
10102 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000010103 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010104
Eric Christopher228232b2010-11-30 07:20:12 +000010105 unsigned ValOps = X86::AddrNumOperands;
10106 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10107 .addReg(MI->getOperand(ValOps).getReg());
10108 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
10109 .addReg(MI->getOperand(ValOps+1).getReg());
10110
10111 // The instruction doesn't actually take any operands though.
10112 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010113
Eric Christopher228232b2010-11-30 07:20:12 +000010114 MI->eraseFromParent(); // The pseudo is gone now.
10115 return BB;
10116}
10117
10118MachineBasicBlock *
10119X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010120 DebugLoc dl = MI->getDebugLoc();
10121 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010122
Eric Christopher228232b2010-11-30 07:20:12 +000010123 // First arg in ECX, the second in EAX.
10124 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10125 .addReg(MI->getOperand(0).getReg());
10126 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
10127 .addReg(MI->getOperand(1).getReg());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010128
Eric Christopher228232b2010-11-30 07:20:12 +000010129 // The instruction doesn't actually take any operands though.
10130 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010131
Eric Christopher228232b2010-11-30 07:20:12 +000010132 MI->eraseFromParent(); // The pseudo is gone now.
10133 return BB;
10134}
10135
10136MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000010137X86TargetLowering::EmitVAARG64WithCustomInserter(
10138 MachineInstr *MI,
10139 MachineBasicBlock *MBB) const {
10140 // Emit va_arg instruction on X86-64.
10141
10142 // Operands to this pseudo-instruction:
10143 // 0 ) Output : destination address (reg)
10144 // 1-5) Input : va_list address (addr, i64mem)
10145 // 6 ) ArgSize : Size (in bytes) of vararg type
10146 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
10147 // 8 ) Align : Alignment of type
10148 // 9 ) EFLAGS (implicit-def)
10149
10150 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
10151 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
10152
10153 unsigned DestReg = MI->getOperand(0).getReg();
10154 MachineOperand &Base = MI->getOperand(1);
10155 MachineOperand &Scale = MI->getOperand(2);
10156 MachineOperand &Index = MI->getOperand(3);
10157 MachineOperand &Disp = MI->getOperand(4);
10158 MachineOperand &Segment = MI->getOperand(5);
10159 unsigned ArgSize = MI->getOperand(6).getImm();
10160 unsigned ArgMode = MI->getOperand(7).getImm();
10161 unsigned Align = MI->getOperand(8).getImm();
10162
10163 // Memory Reference
10164 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
10165 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
10166 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
10167
10168 // Machine Information
10169 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10170 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
10171 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
10172 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
10173 DebugLoc DL = MI->getDebugLoc();
10174
10175 // struct va_list {
10176 // i32 gp_offset
10177 // i32 fp_offset
10178 // i64 overflow_area (address)
10179 // i64 reg_save_area (address)
10180 // }
10181 // sizeof(va_list) = 24
10182 // alignment(va_list) = 8
10183
10184 unsigned TotalNumIntRegs = 6;
10185 unsigned TotalNumXMMRegs = 8;
10186 bool UseGPOffset = (ArgMode == 1);
10187 bool UseFPOffset = (ArgMode == 2);
10188 unsigned MaxOffset = TotalNumIntRegs * 8 +
10189 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
10190
10191 /* Align ArgSize to a multiple of 8 */
10192 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
10193 bool NeedsAlign = (Align > 8);
10194
10195 MachineBasicBlock *thisMBB = MBB;
10196 MachineBasicBlock *overflowMBB;
10197 MachineBasicBlock *offsetMBB;
10198 MachineBasicBlock *endMBB;
10199
10200 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
10201 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
10202 unsigned OffsetReg = 0;
10203
10204 if (!UseGPOffset && !UseFPOffset) {
10205 // If we only pull from the overflow region, we don't create a branch.
10206 // We don't need to alter control flow.
10207 OffsetDestReg = 0; // unused
10208 OverflowDestReg = DestReg;
10209
10210 offsetMBB = NULL;
10211 overflowMBB = thisMBB;
10212 endMBB = thisMBB;
10213 } else {
10214 // First emit code to check if gp_offset (or fp_offset) is below the bound.
10215 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
10216 // If not, pull from overflow_area. (branch to overflowMBB)
10217 //
10218 // thisMBB
10219 // | .
10220 // | .
10221 // offsetMBB overflowMBB
10222 // | .
10223 // | .
10224 // endMBB
10225
10226 // Registers for the PHI in endMBB
10227 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
10228 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
10229
10230 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10231 MachineFunction *MF = MBB->getParent();
10232 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10233 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10234 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10235
10236 MachineFunction::iterator MBBIter = MBB;
10237 ++MBBIter;
10238
10239 // Insert the new basic blocks
10240 MF->insert(MBBIter, offsetMBB);
10241 MF->insert(MBBIter, overflowMBB);
10242 MF->insert(MBBIter, endMBB);
10243
10244 // Transfer the remainder of MBB and its successor edges to endMBB.
10245 endMBB->splice(endMBB->begin(), thisMBB,
10246 llvm::next(MachineBasicBlock::iterator(MI)),
10247 thisMBB->end());
10248 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
10249
10250 // Make offsetMBB and overflowMBB successors of thisMBB
10251 thisMBB->addSuccessor(offsetMBB);
10252 thisMBB->addSuccessor(overflowMBB);
10253
10254 // endMBB is a successor of both offsetMBB and overflowMBB
10255 offsetMBB->addSuccessor(endMBB);
10256 overflowMBB->addSuccessor(endMBB);
10257
10258 // Load the offset value into a register
10259 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10260 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
10261 .addOperand(Base)
10262 .addOperand(Scale)
10263 .addOperand(Index)
10264 .addDisp(Disp, UseFPOffset ? 4 : 0)
10265 .addOperand(Segment)
10266 .setMemRefs(MMOBegin, MMOEnd);
10267
10268 // Check if there is enough room left to pull this argument.
10269 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
10270 .addReg(OffsetReg)
10271 .addImm(MaxOffset + 8 - ArgSizeA8);
10272
10273 // Branch to "overflowMBB" if offset >= max
10274 // Fall through to "offsetMBB" otherwise
10275 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
10276 .addMBB(overflowMBB);
10277 }
10278
10279 // In offsetMBB, emit code to use the reg_save_area.
10280 if (offsetMBB) {
10281 assert(OffsetReg != 0);
10282
10283 // Read the reg_save_area address.
10284 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
10285 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
10286 .addOperand(Base)
10287 .addOperand(Scale)
10288 .addOperand(Index)
10289 .addDisp(Disp, 16)
10290 .addOperand(Segment)
10291 .setMemRefs(MMOBegin, MMOEnd);
10292
10293 // Zero-extend the offset
10294 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
10295 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
10296 .addImm(0)
10297 .addReg(OffsetReg)
10298 .addImm(X86::sub_32bit);
10299
10300 // Add the offset to the reg_save_area to get the final address.
10301 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
10302 .addReg(OffsetReg64)
10303 .addReg(RegSaveReg);
10304
10305 // Compute the offset for the next argument
10306 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10307 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
10308 .addReg(OffsetReg)
10309 .addImm(UseFPOffset ? 16 : 8);
10310
10311 // Store it back into the va_list.
10312 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
10313 .addOperand(Base)
10314 .addOperand(Scale)
10315 .addOperand(Index)
10316 .addDisp(Disp, UseFPOffset ? 4 : 0)
10317 .addOperand(Segment)
10318 .addReg(NextOffsetReg)
10319 .setMemRefs(MMOBegin, MMOEnd);
10320
10321 // Jump to endMBB
10322 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
10323 .addMBB(endMBB);
10324 }
10325
10326 //
10327 // Emit code to use overflow area
10328 //
10329
10330 // Load the overflow_area address into a register.
10331 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
10332 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
10333 .addOperand(Base)
10334 .addOperand(Scale)
10335 .addOperand(Index)
10336 .addDisp(Disp, 8)
10337 .addOperand(Segment)
10338 .setMemRefs(MMOBegin, MMOEnd);
10339
10340 // If we need to align it, do so. Otherwise, just copy the address
10341 // to OverflowDestReg.
10342 if (NeedsAlign) {
10343 // Align the overflow address
10344 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
10345 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
10346
10347 // aligned_addr = (addr + (align-1)) & ~(align-1)
10348 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
10349 .addReg(OverflowAddrReg)
10350 .addImm(Align-1);
10351
10352 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
10353 .addReg(TmpReg)
10354 .addImm(~(uint64_t)(Align-1));
10355 } else {
10356 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
10357 .addReg(OverflowAddrReg);
10358 }
10359
10360 // Compute the next overflow address after this argument.
10361 // (the overflow address should be kept 8-byte aligned)
10362 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
10363 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
10364 .addReg(OverflowDestReg)
10365 .addImm(ArgSizeA8);
10366
10367 // Store the new overflow address.
10368 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
10369 .addOperand(Base)
10370 .addOperand(Scale)
10371 .addOperand(Index)
10372 .addDisp(Disp, 8)
10373 .addOperand(Segment)
10374 .addReg(NextAddrReg)
10375 .setMemRefs(MMOBegin, MMOEnd);
10376
10377 // If we branched, emit the PHI to the front of endMBB.
10378 if (offsetMBB) {
10379 BuildMI(*endMBB, endMBB->begin(), DL,
10380 TII->get(X86::PHI), DestReg)
10381 .addReg(OffsetDestReg).addMBB(offsetMBB)
10382 .addReg(OverflowDestReg).addMBB(overflowMBB);
10383 }
10384
10385 // Erase the pseudo instruction
10386 MI->eraseFromParent();
10387
10388 return endMBB;
10389}
10390
10391MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000010392X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
10393 MachineInstr *MI,
10394 MachineBasicBlock *MBB) const {
10395 // Emit code to save XMM registers to the stack. The ABI says that the
10396 // number of registers to save is given in %al, so it's theoretically
10397 // possible to do an indirect jump trick to avoid saving all of them,
10398 // however this code takes a simpler approach and just executes all
10399 // of the stores if %al is non-zero. It's less code, and it's probably
10400 // easier on the hardware branch predictor, and stores aren't all that
10401 // expensive anyway.
10402
10403 // Create the new basic blocks. One block contains all the XMM stores,
10404 // and one block is the final destination regardless of whether any
10405 // stores were performed.
10406 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10407 MachineFunction *F = MBB->getParent();
10408 MachineFunction::iterator MBBIter = MBB;
10409 ++MBBIter;
10410 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
10411 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
10412 F->insert(MBBIter, XMMSaveMBB);
10413 F->insert(MBBIter, EndMBB);
10414
Dan Gohman14152b42010-07-06 20:24:04 +000010415 // Transfer the remainder of MBB and its successor edges to EndMBB.
10416 EndMBB->splice(EndMBB->begin(), MBB,
10417 llvm::next(MachineBasicBlock::iterator(MI)),
10418 MBB->end());
10419 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
10420
Dan Gohmand6708ea2009-08-15 01:38:56 +000010421 // The original block will now fall through to the XMM save block.
10422 MBB->addSuccessor(XMMSaveMBB);
10423 // The XMMSaveMBB will fall through to the end block.
10424 XMMSaveMBB->addSuccessor(EndMBB);
10425
10426 // Now add the instructions.
10427 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10428 DebugLoc DL = MI->getDebugLoc();
10429
10430 unsigned CountReg = MI->getOperand(0).getReg();
10431 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
10432 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
10433
10434 if (!Subtarget->isTargetWin64()) {
10435 // If %al is 0, branch around the XMM save block.
10436 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010437 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010438 MBB->addSuccessor(EndMBB);
10439 }
10440
10441 // In the XMM save block, save all the XMM argument registers.
10442 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
10443 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000010444 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000010445 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000010446 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000010447 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000010448 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010449 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
10450 .addFrameIndex(RegSaveFrameIndex)
10451 .addImm(/*Scale=*/1)
10452 .addReg(/*IndexReg=*/0)
10453 .addImm(/*Disp=*/Offset)
10454 .addReg(/*Segment=*/0)
10455 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000010456 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010457 }
10458
Dan Gohman14152b42010-07-06 20:24:04 +000010459 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010460
10461 return EndMBB;
10462}
Mon P Wang63307c32008-05-05 19:05:59 +000010463
Evan Cheng60c07e12006-07-05 22:17:51 +000010464MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000010465X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010466 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000010467 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10468 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000010469
Chris Lattner52600972009-09-02 05:57:00 +000010470 // To "insert" a SELECT_CC instruction, we actually have to insert the
10471 // diamond control-flow pattern. The incoming instruction knows the
10472 // destination vreg to set, the condition code register to branch on, the
10473 // true/false values to select between, and a branch opcode to use.
10474 const BasicBlock *LLVM_BB = BB->getBasicBlock();
10475 MachineFunction::iterator It = BB;
10476 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000010477
Chris Lattner52600972009-09-02 05:57:00 +000010478 // thisMBB:
10479 // ...
10480 // TrueVal = ...
10481 // cmpTY ccX, r1, r2
10482 // bCC copy1MBB
10483 // fallthrough --> copy0MBB
10484 MachineBasicBlock *thisMBB = BB;
10485 MachineFunction *F = BB->getParent();
10486 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
10487 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000010488 F->insert(It, copy0MBB);
10489 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000010490
Bill Wendling730c07e2010-06-25 20:48:10 +000010491 // If the EFLAGS register isn't dead in the terminator, then claim that it's
10492 // live into the sink and copy blocks.
10493 const MachineFunction *MF = BB->getParent();
10494 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
10495 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +000010496
Dan Gohman14152b42010-07-06 20:24:04 +000010497 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
10498 const MachineOperand &MO = MI->getOperand(I);
10499 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +000010500 unsigned Reg = MO.getReg();
10501 if (Reg != X86::EFLAGS) continue;
10502 copy0MBB->addLiveIn(Reg);
10503 sinkMBB->addLiveIn(Reg);
10504 }
10505
Dan Gohman14152b42010-07-06 20:24:04 +000010506 // Transfer the remainder of BB and its successor edges to sinkMBB.
10507 sinkMBB->splice(sinkMBB->begin(), BB,
10508 llvm::next(MachineBasicBlock::iterator(MI)),
10509 BB->end());
10510 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
10511
10512 // Add the true and fallthrough blocks as its successors.
10513 BB->addSuccessor(copy0MBB);
10514 BB->addSuccessor(sinkMBB);
10515
10516 // Create the conditional branch instruction.
10517 unsigned Opc =
10518 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
10519 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
10520
Chris Lattner52600972009-09-02 05:57:00 +000010521 // copy0MBB:
10522 // %FalseValue = ...
10523 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000010524 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000010525
Chris Lattner52600972009-09-02 05:57:00 +000010526 // sinkMBB:
10527 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
10528 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000010529 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
10530 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000010531 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
10532 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
10533
Dan Gohman14152b42010-07-06 20:24:04 +000010534 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000010535 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000010536}
10537
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010538MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010539X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010540 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010541 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10542 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010543
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000010544 assert(!Subtarget->isTargetEnvMacho());
10545
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010546 // The lowering is pretty easy: we're just emitting the call to _alloca. The
10547 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010548
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000010549 if (Subtarget->isTargetWin64()) {
10550 if (Subtarget->isTargetCygMing()) {
10551 // ___chkstk(Mingw64):
10552 // Clobbers R10, R11, RAX and EFLAGS.
10553 // Updates RSP.
10554 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
10555 .addExternalSymbol("___chkstk")
10556 .addReg(X86::RAX, RegState::Implicit)
10557 .addReg(X86::RSP, RegState::Implicit)
10558 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
10559 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
10560 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
10561 } else {
10562 // __chkstk(MSVCRT): does not update stack pointer.
10563 // Clobbers R10, R11 and EFLAGS.
10564 // FIXME: RAX(allocated size) might be reused and not killed.
10565 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
10566 .addExternalSymbol("__chkstk")
10567 .addReg(X86::RAX, RegState::Implicit)
10568 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
10569 // RAX has the offset to subtracted from RSP.
10570 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
10571 .addReg(X86::RSP)
10572 .addReg(X86::RAX);
10573 }
10574 } else {
10575 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010576 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
10577
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000010578 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
10579 .addExternalSymbol(StackProbeSymbol)
10580 .addReg(X86::EAX, RegState::Implicit)
10581 .addReg(X86::ESP, RegState::Implicit)
10582 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
10583 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
10584 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
10585 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010586
Dan Gohman14152b42010-07-06 20:24:04 +000010587 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010588 return BB;
10589}
Chris Lattner52600972009-09-02 05:57:00 +000010590
10591MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000010592X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
10593 MachineBasicBlock *BB) const {
10594 // This is pretty easy. We're taking the value that we received from
10595 // our load from the relocation, sticking it in either RDI (x86-64)
10596 // or EAX and doing an indirect call. The return value will then
10597 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010598 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000010599 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000010600 DebugLoc DL = MI->getDebugLoc();
10601 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000010602
10603 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000010604 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000010605
Eric Christopher30ef0e52010-06-03 04:07:48 +000010606 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000010607 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10608 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000010609 .addReg(X86::RIP)
10610 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010611 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000010612 MI->getOperand(3).getTargetFlags())
10613 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000010614 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000010615 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000010616 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000010617 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10618 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000010619 .addReg(0)
10620 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010621 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000010622 MI->getOperand(3).getTargetFlags())
10623 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000010624 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000010625 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010626 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000010627 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10628 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000010629 .addReg(TII->getGlobalBaseReg(F))
10630 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010631 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000010632 MI->getOperand(3).getTargetFlags())
10633 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000010634 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000010635 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010636 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000010637
Dan Gohman14152b42010-07-06 20:24:04 +000010638 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000010639 return BB;
10640}
10641
10642MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000010643X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010644 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000010645 switch (MI->getOpcode()) {
10646 default: assert(false && "Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000010647 case X86::TAILJMPd64:
10648 case X86::TAILJMPr64:
10649 case X86::TAILJMPm64:
10650 assert(!"TAILJMP64 would not be touched here.");
10651 case X86::TCRETURNdi64:
10652 case X86::TCRETURNri64:
10653 case X86::TCRETURNmi64:
10654 // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
10655 // On AMD64, additional defs should be added before register allocation.
10656 if (!Subtarget->isTargetWin64()) {
10657 MI->addRegisterDefined(X86::RSI);
10658 MI->addRegisterDefined(X86::RDI);
10659 MI->addRegisterDefined(X86::XMM6);
10660 MI->addRegisterDefined(X86::XMM7);
10661 MI->addRegisterDefined(X86::XMM8);
10662 MI->addRegisterDefined(X86::XMM9);
10663 MI->addRegisterDefined(X86::XMM10);
10664 MI->addRegisterDefined(X86::XMM11);
10665 MI->addRegisterDefined(X86::XMM12);
10666 MI->addRegisterDefined(X86::XMM13);
10667 MI->addRegisterDefined(X86::XMM14);
10668 MI->addRegisterDefined(X86::XMM15);
10669 }
10670 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010671 case X86::WIN_ALLOCA:
10672 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010673 case X86::TLSCall_32:
10674 case X86::TLSCall_64:
10675 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000010676 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000010677 case X86::CMOV_FR32:
10678 case X86::CMOV_FR64:
10679 case X86::CMOV_V4F32:
10680 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000010681 case X86::CMOV_V2I64:
Chris Lattner314a1132010-03-14 18:31:44 +000010682 case X86::CMOV_GR16:
10683 case X86::CMOV_GR32:
10684 case X86::CMOV_RFP32:
10685 case X86::CMOV_RFP64:
10686 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010687 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010688
Dale Johannesen849f2142007-07-03 00:53:03 +000010689 case X86::FP32_TO_INT16_IN_MEM:
10690 case X86::FP32_TO_INT32_IN_MEM:
10691 case X86::FP32_TO_INT64_IN_MEM:
10692 case X86::FP64_TO_INT16_IN_MEM:
10693 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000010694 case X86::FP64_TO_INT64_IN_MEM:
10695 case X86::FP80_TO_INT16_IN_MEM:
10696 case X86::FP80_TO_INT32_IN_MEM:
10697 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000010698 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10699 DebugLoc DL = MI->getDebugLoc();
10700
Evan Cheng60c07e12006-07-05 22:17:51 +000010701 // Change the floating point control register to use "round towards zero"
10702 // mode when truncating to an integer value.
10703 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000010704 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000010705 addFrameReference(BuildMI(*BB, MI, DL,
10706 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010707
10708 // Load the old value of the high byte of the control word...
10709 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000010710 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000010711 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010712 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010713
10714 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000010715 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010716 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000010717
10718 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000010719 addFrameReference(BuildMI(*BB, MI, DL,
10720 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010721
10722 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000010723 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010724 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000010725
10726 // Get the X86 opcode to use.
10727 unsigned Opc;
10728 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010729 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000010730 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
10731 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
10732 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
10733 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
10734 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
10735 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000010736 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
10737 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
10738 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000010739 }
10740
10741 X86AddressMode AM;
10742 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000010743 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010744 AM.BaseType = X86AddressMode::RegBase;
10745 AM.Base.Reg = Op.getReg();
10746 } else {
10747 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000010748 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000010749 }
10750 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000010751 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010752 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010753 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000010754 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010755 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010756 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000010757 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010758 AM.GV = Op.getGlobal();
10759 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000010760 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010761 }
Dan Gohman14152b42010-07-06 20:24:04 +000010762 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010763 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000010764
10765 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000010766 addFrameReference(BuildMI(*BB, MI, DL,
10767 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010768
Dan Gohman14152b42010-07-06 20:24:04 +000010769 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000010770 return BB;
10771 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010772 // String/text processing lowering.
10773 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010774 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010775 return EmitPCMP(MI, BB, 3, false /* in-mem */);
10776 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010777 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010778 return EmitPCMP(MI, BB, 3, true /* in-mem */);
10779 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010780 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010781 return EmitPCMP(MI, BB, 5, false /* in mem */);
10782 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010783 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010784 return EmitPCMP(MI, BB, 5, true /* in mem */);
10785
Eric Christopher228232b2010-11-30 07:20:12 +000010786 // Thread synchronization.
10787 case X86::MONITOR:
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010788 return EmitMonitor(MI, BB);
Eric Christopher228232b2010-11-30 07:20:12 +000010789 case X86::MWAIT:
10790 return EmitMwait(MI, BB);
10791
Eric Christopherb120ab42009-08-18 22:50:32 +000010792 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000010793 case X86::ATOMAND32:
10794 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010795 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010796 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010797 X86::NOT32r, X86::EAX,
10798 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010799 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000010800 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
10801 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010802 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010803 X86::NOT32r, X86::EAX,
10804 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010805 case X86::ATOMXOR32:
10806 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010807 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010808 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010809 X86::NOT32r, X86::EAX,
10810 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010811 case X86::ATOMNAND32:
10812 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010813 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010814 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010815 X86::NOT32r, X86::EAX,
10816 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000010817 case X86::ATOMMIN32:
10818 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
10819 case X86::ATOMMAX32:
10820 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
10821 case X86::ATOMUMIN32:
10822 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
10823 case X86::ATOMUMAX32:
10824 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000010825
10826 case X86::ATOMAND16:
10827 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10828 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010829 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010830 X86::NOT16r, X86::AX,
10831 X86::GR16RegisterClass);
10832 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000010833 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010834 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010835 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010836 X86::NOT16r, X86::AX,
10837 X86::GR16RegisterClass);
10838 case X86::ATOMXOR16:
10839 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
10840 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010841 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010842 X86::NOT16r, X86::AX,
10843 X86::GR16RegisterClass);
10844 case X86::ATOMNAND16:
10845 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10846 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010847 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010848 X86::NOT16r, X86::AX,
10849 X86::GR16RegisterClass, true);
10850 case X86::ATOMMIN16:
10851 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
10852 case X86::ATOMMAX16:
10853 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
10854 case X86::ATOMUMIN16:
10855 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
10856 case X86::ATOMUMAX16:
10857 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
10858
10859 case X86::ATOMAND8:
10860 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10861 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010862 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010863 X86::NOT8r, X86::AL,
10864 X86::GR8RegisterClass);
10865 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000010866 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010867 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010868 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010869 X86::NOT8r, X86::AL,
10870 X86::GR8RegisterClass);
10871 case X86::ATOMXOR8:
10872 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
10873 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010874 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010875 X86::NOT8r, X86::AL,
10876 X86::GR8RegisterClass);
10877 case X86::ATOMNAND8:
10878 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10879 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010880 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010881 X86::NOT8r, X86::AL,
10882 X86::GR8RegisterClass, true);
10883 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010884 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000010885 case X86::ATOMAND64:
10886 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010887 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010888 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010889 X86::NOT64r, X86::RAX,
10890 X86::GR64RegisterClass);
10891 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000010892 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
10893 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010894 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010895 X86::NOT64r, X86::RAX,
10896 X86::GR64RegisterClass);
10897 case X86::ATOMXOR64:
10898 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010899 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010900 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010901 X86::NOT64r, X86::RAX,
10902 X86::GR64RegisterClass);
10903 case X86::ATOMNAND64:
10904 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
10905 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010906 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010907 X86::NOT64r, X86::RAX,
10908 X86::GR64RegisterClass, true);
10909 case X86::ATOMMIN64:
10910 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
10911 case X86::ATOMMAX64:
10912 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
10913 case X86::ATOMUMIN64:
10914 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
10915 case X86::ATOMUMAX64:
10916 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010917
10918 // This group does 64-bit operations on a 32-bit host.
10919 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010920 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010921 X86::AND32rr, X86::AND32rr,
10922 X86::AND32ri, X86::AND32ri,
10923 false);
10924 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010925 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010926 X86::OR32rr, X86::OR32rr,
10927 X86::OR32ri, X86::OR32ri,
10928 false);
10929 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010930 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010931 X86::XOR32rr, X86::XOR32rr,
10932 X86::XOR32ri, X86::XOR32ri,
10933 false);
10934 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010935 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010936 X86::AND32rr, X86::AND32rr,
10937 X86::AND32ri, X86::AND32ri,
10938 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010939 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010940 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010941 X86::ADD32rr, X86::ADC32rr,
10942 X86::ADD32ri, X86::ADC32ri,
10943 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010944 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010945 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010946 X86::SUB32rr, X86::SBB32rr,
10947 X86::SUB32ri, X86::SBB32ri,
10948 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000010949 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010950 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000010951 X86::MOV32rr, X86::MOV32rr,
10952 X86::MOV32ri, X86::MOV32ri,
10953 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010954 case X86::VASTART_SAVE_XMM_REGS:
10955 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000010956
10957 case X86::VAARG_64:
10958 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010959 }
10960}
10961
10962//===----------------------------------------------------------------------===//
10963// X86 Optimization Hooks
10964//===----------------------------------------------------------------------===//
10965
Dan Gohman475871a2008-07-27 21:46:04 +000010966void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000010967 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010968 APInt &KnownZero,
10969 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000010970 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000010971 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010972 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000010973 assert((Opc >= ISD::BUILTIN_OP_END ||
10974 Opc == ISD::INTRINSIC_WO_CHAIN ||
10975 Opc == ISD::INTRINSIC_W_CHAIN ||
10976 Opc == ISD::INTRINSIC_VOID) &&
10977 "Should use MaskedValueIsZero if you don't know whether Op"
10978 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010979
Dan Gohmanf4f92f52008-02-13 23:07:24 +000010980 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010981 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000010982 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010983 case X86ISD::ADD:
10984 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000010985 case X86ISD::ADC:
10986 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010987 case X86ISD::SMUL:
10988 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000010989 case X86ISD::INC:
10990 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000010991 case X86ISD::OR:
10992 case X86ISD::XOR:
10993 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010994 // These nodes' second result is a boolean.
10995 if (Op.getResNo() == 0)
10996 break;
10997 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010998 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010999 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
11000 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000011001 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011002 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011003}
Chris Lattner259e97c2006-01-31 19:43:35 +000011004
Owen Andersonbc146b02010-09-21 20:42:50 +000011005unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
11006 unsigned Depth) const {
11007 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
11008 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
11009 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000011010
Owen Andersonbc146b02010-09-21 20:42:50 +000011011 // Fallback case.
11012 return 1;
11013}
11014
Evan Cheng206ee9d2006-07-07 08:33:52 +000011015/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000011016/// node is a GlobalAddress + offset.
11017bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000011018 const GlobalValue* &GA,
11019 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000011020 if (N->getOpcode() == X86ISD::Wrapper) {
11021 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011022 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000011023 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011024 return true;
11025 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000011026 }
Evan Chengad4196b2008-05-12 19:56:52 +000011027 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011028}
11029
Evan Cheng206ee9d2006-07-07 08:33:52 +000011030/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
11031/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
11032/// if the load addresses are consecutive, non-overlapping, and in the right
Nate Begemanfdea31a2010-03-24 20:49:50 +000011033/// order.
Dan Gohman475871a2008-07-27 21:46:04 +000011034static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011035 TargetLowering::DAGCombinerInfo &DCI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000011036 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000011037 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000011038
Eli Friedman7a5e5552009-06-07 06:52:44 +000011039 if (VT.getSizeInBits() != 128)
11040 return SDValue();
11041
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011042 // Don't create instructions with illegal types after legalize types has run.
11043 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11044 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
11045 return SDValue();
11046
Nate Begemanfdea31a2010-03-24 20:49:50 +000011047 SmallVector<SDValue, 16> Elts;
11048 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011049 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000011050
Nate Begemanfdea31a2010-03-24 20:49:50 +000011051 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000011052}
Evan Chengd880b972008-05-09 21:53:03 +000011053
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000011054/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
11055/// generation and convert it from being a bunch of shuffles and extracts
11056/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011057static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
11058 const TargetLowering &TLI) {
11059 SDValue InputVector = N->getOperand(0);
11060
11061 // Only operate on vectors of 4 elements, where the alternative shuffling
11062 // gets to be more expensive.
11063 if (InputVector.getValueType() != MVT::v4i32)
11064 return SDValue();
11065
11066 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
11067 // single use which is a sign-extend or zero-extend, and all elements are
11068 // used.
11069 SmallVector<SDNode *, 4> Uses;
11070 unsigned ExtractedElements = 0;
11071 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
11072 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
11073 if (UI.getUse().getResNo() != InputVector.getResNo())
11074 return SDValue();
11075
11076 SDNode *Extract = *UI;
11077 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
11078 return SDValue();
11079
11080 if (Extract->getValueType(0) != MVT::i32)
11081 return SDValue();
11082 if (!Extract->hasOneUse())
11083 return SDValue();
11084 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
11085 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
11086 return SDValue();
11087 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
11088 return SDValue();
11089
11090 // Record which element was extracted.
11091 ExtractedElements |=
11092 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
11093
11094 Uses.push_back(Extract);
11095 }
11096
11097 // If not all the elements were used, this may not be worthwhile.
11098 if (ExtractedElements != 15)
11099 return SDValue();
11100
11101 // Ok, we've now decided to do the transformation.
11102 DebugLoc dl = InputVector.getDebugLoc();
11103
11104 // Store the value to a temporary stack slot.
11105 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000011106 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
11107 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011108
11109 // Replace each use (extract) with a load of the appropriate element.
11110 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
11111 UE = Uses.end(); UI != UE; ++UI) {
11112 SDNode *Extract = *UI;
11113
Nadav Rotem86694292011-05-17 08:31:57 +000011114 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011115 SDValue Idx = Extract->getOperand(1);
11116 unsigned EltSize =
11117 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
11118 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
11119 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
11120
Nadav Rotem86694292011-05-17 08:31:57 +000011121 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011122 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011123
11124 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000011125 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000011126 ScalarAddr, MachinePointerInfo(),
11127 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011128
11129 // Replace the exact with the load.
11130 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
11131 }
11132
11133 // The replacement was made in place; don't return anything.
11134 return SDValue();
11135}
11136
Chris Lattner83e6c992006-10-04 06:57:07 +000011137/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011138static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000011139 const X86Subtarget *Subtarget) {
11140 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000011141 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000011142 // Get the LHS/RHS of the select.
11143 SDValue LHS = N->getOperand(1);
11144 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000011145
Dan Gohman670e5392009-09-21 18:03:22 +000011146 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000011147 // instructions match the semantics of the common C idiom x<y?x:y but not
11148 // x<=y?x:y, because of how they handle negative zero (which can be
11149 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000011150 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000011151 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000011152 Cond.getOpcode() == ISD::SETCC) {
11153 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011154
Chris Lattner47b4ce82009-03-11 05:48:52 +000011155 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000011156 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000011157 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
11158 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000011159 switch (CC) {
11160 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000011161 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011162 // Converting this to a min would handle NaNs incorrectly, and swapping
11163 // the operands would cause it to handle comparisons between positive
11164 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011165 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000011166 if (!UnsafeFPMath &&
11167 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11168 break;
11169 std::swap(LHS, RHS);
11170 }
Dan Gohman670e5392009-09-21 18:03:22 +000011171 Opcode = X86ISD::FMIN;
11172 break;
11173 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000011174 // Converting this to a min would handle comparisons between positive
11175 // and negative zero incorrectly.
11176 if (!UnsafeFPMath &&
11177 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
11178 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011179 Opcode = X86ISD::FMIN;
11180 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000011181 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000011182 // Converting this to a min would handle both negative zeros and NaNs
11183 // incorrectly, but we can swap the operands to fix both.
11184 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011185 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011186 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000011187 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011188 Opcode = X86ISD::FMIN;
11189 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011190
Dan Gohman670e5392009-09-21 18:03:22 +000011191 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011192 // Converting this to a max would handle comparisons between positive
11193 // and negative zero incorrectly.
11194 if (!UnsafeFPMath &&
11195 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS))
11196 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011197 Opcode = X86ISD::FMAX;
11198 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000011199 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000011200 // Converting this to a max would handle NaNs incorrectly, and swapping
11201 // the operands would cause it to handle comparisons between positive
11202 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011203 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000011204 if (!UnsafeFPMath &&
11205 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11206 break;
11207 std::swap(LHS, RHS);
11208 }
Dan Gohman670e5392009-09-21 18:03:22 +000011209 Opcode = X86ISD::FMAX;
11210 break;
11211 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011212 // Converting this to a max would handle both negative zeros and NaNs
11213 // incorrectly, but we can swap the operands to fix both.
11214 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011215 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011216 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011217 case ISD::SETGE:
11218 Opcode = X86ISD::FMAX;
11219 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000011220 }
Dan Gohman670e5392009-09-21 18:03:22 +000011221 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000011222 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
11223 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000011224 switch (CC) {
11225 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000011226 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011227 // Converting this to a min would handle comparisons between positive
11228 // and negative zero incorrectly, and swapping the operands would
11229 // cause it to handle NaNs incorrectly.
11230 if (!UnsafeFPMath &&
11231 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000011232 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011233 break;
11234 std::swap(LHS, RHS);
11235 }
Dan Gohman670e5392009-09-21 18:03:22 +000011236 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000011237 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011238 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000011239 // Converting this to a min would handle NaNs incorrectly.
11240 if (!UnsafeFPMath &&
11241 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
11242 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011243 Opcode = X86ISD::FMIN;
11244 break;
11245 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011246 // Converting this to a min would handle both negative zeros and NaNs
11247 // incorrectly, but we can swap the operands to fix both.
11248 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011249 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011250 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011251 case ISD::SETGE:
11252 Opcode = X86ISD::FMIN;
11253 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011254
Dan Gohman670e5392009-09-21 18:03:22 +000011255 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011256 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011257 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011258 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011259 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000011260 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011261 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000011262 // Converting this to a max would handle comparisons between positive
11263 // and negative zero incorrectly, and swapping the operands would
11264 // cause it to handle NaNs incorrectly.
11265 if (!UnsafeFPMath &&
11266 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000011267 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011268 break;
11269 std::swap(LHS, RHS);
11270 }
Dan Gohman670e5392009-09-21 18:03:22 +000011271 Opcode = X86ISD::FMAX;
11272 break;
11273 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000011274 // Converting this to a max would handle both negative zeros and NaNs
11275 // incorrectly, but we can swap the operands to fix both.
11276 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011277 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011278 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000011279 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011280 Opcode = X86ISD::FMAX;
11281 break;
11282 }
Chris Lattner83e6c992006-10-04 06:57:07 +000011283 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011284
Chris Lattner47b4ce82009-03-11 05:48:52 +000011285 if (Opcode)
11286 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000011287 }
Eric Christopherfd179292009-08-27 18:07:15 +000011288
Chris Lattnerd1980a52009-03-12 06:52:53 +000011289 // If this is a select between two integer constants, try to do some
11290 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000011291 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
11292 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000011293 // Don't do this for crazy integer types.
11294 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
11295 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000011296 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011297 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000011298
Chris Lattnercee56e72009-03-13 05:53:31 +000011299 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000011300 // Efficiently invertible.
11301 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
11302 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
11303 isa<ConstantSDNode>(Cond.getOperand(1))))) {
11304 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000011305 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011306 }
Eric Christopherfd179292009-08-27 18:07:15 +000011307
Chris Lattnerd1980a52009-03-12 06:52:53 +000011308 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011309 if (FalseC->getAPIntValue() == 0 &&
11310 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000011311 if (NeedsCondInvert) // Invert the condition if needed.
11312 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11313 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011314
Chris Lattnerd1980a52009-03-12 06:52:53 +000011315 // Zero extend the condition if needed.
11316 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011317
Chris Lattnercee56e72009-03-13 05:53:31 +000011318 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000011319 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011320 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011321 }
Eric Christopherfd179292009-08-27 18:07:15 +000011322
Chris Lattner97a29a52009-03-13 05:22:11 +000011323 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000011324 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000011325 if (NeedsCondInvert) // Invert the condition if needed.
11326 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11327 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011328
Chris Lattner97a29a52009-03-13 05:22:11 +000011329 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000011330 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11331 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000011332 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000011333 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000011334 }
Eric Christopherfd179292009-08-27 18:07:15 +000011335
Chris Lattnercee56e72009-03-13 05:53:31 +000011336 // Optimize cases that will turn into an LEA instruction. This requires
11337 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000011338 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000011339 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011340 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000011341
Chris Lattnercee56e72009-03-13 05:53:31 +000011342 bool isFastMultiplier = false;
11343 if (Diff < 10) {
11344 switch ((unsigned char)Diff) {
11345 default: break;
11346 case 1: // result = add base, cond
11347 case 2: // result = lea base( , cond*2)
11348 case 3: // result = lea base(cond, cond*2)
11349 case 4: // result = lea base( , cond*4)
11350 case 5: // result = lea base(cond, cond*4)
11351 case 8: // result = lea base( , cond*8)
11352 case 9: // result = lea base(cond, cond*8)
11353 isFastMultiplier = true;
11354 break;
11355 }
11356 }
Eric Christopherfd179292009-08-27 18:07:15 +000011357
Chris Lattnercee56e72009-03-13 05:53:31 +000011358 if (isFastMultiplier) {
11359 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
11360 if (NeedsCondInvert) // Invert the condition if needed.
11361 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11362 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011363
Chris Lattnercee56e72009-03-13 05:53:31 +000011364 // Zero extend the condition if needed.
11365 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
11366 Cond);
11367 // Scale the condition by the difference.
11368 if (Diff != 1)
11369 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
11370 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011371
Chris Lattnercee56e72009-03-13 05:53:31 +000011372 // Add the base if non-zero.
11373 if (FalseC->getAPIntValue() != 0)
11374 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11375 SDValue(FalseC, 0));
11376 return Cond;
11377 }
Eric Christopherfd179292009-08-27 18:07:15 +000011378 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000011379 }
11380 }
Eric Christopherfd179292009-08-27 18:07:15 +000011381
Dan Gohman475871a2008-07-27 21:46:04 +000011382 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000011383}
11384
Chris Lattnerd1980a52009-03-12 06:52:53 +000011385/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
11386static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
11387 TargetLowering::DAGCombinerInfo &DCI) {
11388 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000011389
Chris Lattnerd1980a52009-03-12 06:52:53 +000011390 // If the flag operand isn't dead, don't touch this CMOV.
11391 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
11392 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000011393
Evan Chengb5a55d92011-05-24 01:48:22 +000011394 SDValue FalseOp = N->getOperand(0);
11395 SDValue TrueOp = N->getOperand(1);
11396 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
11397 SDValue Cond = N->getOperand(3);
11398 if (CC == X86::COND_E || CC == X86::COND_NE) {
11399 switch (Cond.getOpcode()) {
11400 default: break;
11401 case X86ISD::BSR:
11402 case X86ISD::BSF:
11403 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
11404 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
11405 return (CC == X86::COND_E) ? FalseOp : TrueOp;
11406 }
11407 }
11408
Chris Lattnerd1980a52009-03-12 06:52:53 +000011409 // If this is a select between two integer constants, try to do some
11410 // optimizations. Note that the operands are ordered the opposite of SELECT
11411 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000011412 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
11413 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000011414 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
11415 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000011416 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
11417 CC = X86::GetOppositeBranchCondition(CC);
11418 std::swap(TrueC, FalseC);
11419 }
Eric Christopherfd179292009-08-27 18:07:15 +000011420
Chris Lattnerd1980a52009-03-12 06:52:53 +000011421 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011422 // This is efficient for any integer data type (including i8/i16) and
11423 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011424 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011425 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11426 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011427
Chris Lattnerd1980a52009-03-12 06:52:53 +000011428 // Zero extend the condition if needed.
11429 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011430
Chris Lattnerd1980a52009-03-12 06:52:53 +000011431 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
11432 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011433 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011434 if (N->getNumValues() == 2) // Dead flag value?
11435 return DCI.CombineTo(N, Cond, SDValue());
11436 return Cond;
11437 }
Eric Christopherfd179292009-08-27 18:07:15 +000011438
Chris Lattnercee56e72009-03-13 05:53:31 +000011439 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
11440 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000011441 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011442 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11443 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011444
Chris Lattner97a29a52009-03-13 05:22:11 +000011445 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000011446 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11447 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000011448 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11449 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000011450
Chris Lattner97a29a52009-03-13 05:22:11 +000011451 if (N->getNumValues() == 2) // Dead flag value?
11452 return DCI.CombineTo(N, Cond, SDValue());
11453 return Cond;
11454 }
Eric Christopherfd179292009-08-27 18:07:15 +000011455
Chris Lattnercee56e72009-03-13 05:53:31 +000011456 // Optimize cases that will turn into an LEA instruction. This requires
11457 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000011458 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000011459 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011460 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000011461
Chris Lattnercee56e72009-03-13 05:53:31 +000011462 bool isFastMultiplier = false;
11463 if (Diff < 10) {
11464 switch ((unsigned char)Diff) {
11465 default: break;
11466 case 1: // result = add base, cond
11467 case 2: // result = lea base( , cond*2)
11468 case 3: // result = lea base(cond, cond*2)
11469 case 4: // result = lea base( , cond*4)
11470 case 5: // result = lea base(cond, cond*4)
11471 case 8: // result = lea base( , cond*8)
11472 case 9: // result = lea base(cond, cond*8)
11473 isFastMultiplier = true;
11474 break;
11475 }
11476 }
Eric Christopherfd179292009-08-27 18:07:15 +000011477
Chris Lattnercee56e72009-03-13 05:53:31 +000011478 if (isFastMultiplier) {
11479 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011480 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11481 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000011482 // Zero extend the condition if needed.
11483 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
11484 Cond);
11485 // Scale the condition by the difference.
11486 if (Diff != 1)
11487 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
11488 DAG.getConstant(Diff, Cond.getValueType()));
11489
11490 // Add the base if non-zero.
11491 if (FalseC->getAPIntValue() != 0)
11492 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11493 SDValue(FalseC, 0));
11494 if (N->getNumValues() == 2) // Dead flag value?
11495 return DCI.CombineTo(N, Cond, SDValue());
11496 return Cond;
11497 }
Eric Christopherfd179292009-08-27 18:07:15 +000011498 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000011499 }
11500 }
11501 return SDValue();
11502}
11503
11504
Evan Cheng0b0cd912009-03-28 05:57:29 +000011505/// PerformMulCombine - Optimize a single multiply with constant into two
11506/// in order to implement it with two cheaper instructions, e.g.
11507/// LEA + SHL, LEA + LEA.
11508static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
11509 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000011510 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
11511 return SDValue();
11512
Owen Andersone50ed302009-08-10 22:56:29 +000011513 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011514 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000011515 return SDValue();
11516
11517 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
11518 if (!C)
11519 return SDValue();
11520 uint64_t MulAmt = C->getZExtValue();
11521 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
11522 return SDValue();
11523
11524 uint64_t MulAmt1 = 0;
11525 uint64_t MulAmt2 = 0;
11526 if ((MulAmt % 9) == 0) {
11527 MulAmt1 = 9;
11528 MulAmt2 = MulAmt / 9;
11529 } else if ((MulAmt % 5) == 0) {
11530 MulAmt1 = 5;
11531 MulAmt2 = MulAmt / 5;
11532 } else if ((MulAmt % 3) == 0) {
11533 MulAmt1 = 3;
11534 MulAmt2 = MulAmt / 3;
11535 }
11536 if (MulAmt2 &&
11537 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
11538 DebugLoc DL = N->getDebugLoc();
11539
11540 if (isPowerOf2_64(MulAmt2) &&
11541 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
11542 // If second multiplifer is pow2, issue it first. We want the multiply by
11543 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
11544 // is an add.
11545 std::swap(MulAmt1, MulAmt2);
11546
11547 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000011548 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000011549 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000011550 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000011551 else
Evan Cheng73f24c92009-03-30 21:36:47 +000011552 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000011553 DAG.getConstant(MulAmt1, VT));
11554
Eric Christopherfd179292009-08-27 18:07:15 +000011555 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000011556 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000011557 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000011558 else
Evan Cheng73f24c92009-03-30 21:36:47 +000011559 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000011560 DAG.getConstant(MulAmt2, VT));
11561
11562 // Do not add new nodes to DAG combiner worklist.
11563 DCI.CombineTo(N, NewMul, false);
11564 }
11565 return SDValue();
11566}
11567
Evan Chengad9c0a32009-12-15 00:53:42 +000011568static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
11569 SDValue N0 = N->getOperand(0);
11570 SDValue N1 = N->getOperand(1);
11571 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
11572 EVT VT = N0.getValueType();
11573
11574 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
11575 // since the result of setcc_c is all zero's or all ones.
11576 if (N1C && N0.getOpcode() == ISD::AND &&
11577 N0.getOperand(1).getOpcode() == ISD::Constant) {
11578 SDValue N00 = N0.getOperand(0);
11579 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
11580 ((N00.getOpcode() == ISD::ANY_EXTEND ||
11581 N00.getOpcode() == ISD::ZERO_EXTEND) &&
11582 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
11583 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
11584 APInt ShAmt = N1C->getAPIntValue();
11585 Mask = Mask.shl(ShAmt);
11586 if (Mask != 0)
11587 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
11588 N00, DAG.getConstant(Mask, VT));
11589 }
11590 }
11591
11592 return SDValue();
11593}
Evan Cheng0b0cd912009-03-28 05:57:29 +000011594
Nate Begeman740ab032009-01-26 00:52:55 +000011595/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
11596/// when possible.
11597static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
11598 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000011599 EVT VT = N->getValueType(0);
11600 if (!VT.isVector() && VT.isInteger() &&
11601 N->getOpcode() == ISD::SHL)
11602 return PerformSHLCombine(N, DAG);
11603
Nate Begeman740ab032009-01-26 00:52:55 +000011604 // On X86 with SSE2 support, we can transform this to a vector shift if
11605 // all elements are shifted by the same amount. We can't do this in legalize
11606 // because the a constant vector is typically transformed to a constant pool
11607 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011608 if (!Subtarget->hasSSE2())
11609 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000011610
Owen Anderson825b72b2009-08-11 20:47:22 +000011611 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011612 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000011613
Mon P Wang3becd092009-01-28 08:12:05 +000011614 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000011615 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000011616 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000011617 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000011618 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
11619 unsigned NumElts = VT.getVectorNumElements();
11620 unsigned i = 0;
11621 for (; i != NumElts; ++i) {
11622 SDValue Arg = ShAmtOp.getOperand(i);
11623 if (Arg.getOpcode() == ISD::UNDEF) continue;
11624 BaseShAmt = Arg;
11625 break;
11626 }
11627 for (; i != NumElts; ++i) {
11628 SDValue Arg = ShAmtOp.getOperand(i);
11629 if (Arg.getOpcode() == ISD::UNDEF) continue;
11630 if (Arg != BaseShAmt) {
11631 return SDValue();
11632 }
11633 }
11634 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000011635 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000011636 SDValue InVec = ShAmtOp.getOperand(0);
11637 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
11638 unsigned NumElts = InVec.getValueType().getVectorNumElements();
11639 unsigned i = 0;
11640 for (; i != NumElts; ++i) {
11641 SDValue Arg = InVec.getOperand(i);
11642 if (Arg.getOpcode() == ISD::UNDEF) continue;
11643 BaseShAmt = Arg;
11644 break;
11645 }
11646 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
11647 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000011648 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000011649 if (C->getZExtValue() == SplatIdx)
11650 BaseShAmt = InVec.getOperand(1);
11651 }
11652 }
11653 if (BaseShAmt.getNode() == 0)
11654 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
11655 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000011656 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011657 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000011658
Mon P Wangefa42202009-09-03 19:56:25 +000011659 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000011660 if (EltVT.bitsGT(MVT::i32))
11661 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
11662 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000011663 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000011664
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011665 // The shift amount is identical so we can do a vector shift.
11666 SDValue ValOp = N->getOperand(0);
11667 switch (N->getOpcode()) {
11668 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000011669 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011670 break;
11671 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000011672 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011673 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011674 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011675 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011676 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011677 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011678 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011679 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011680 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011681 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011682 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011683 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011684 break;
11685 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000011686 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011687 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011688 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011689 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011690 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011691 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011692 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011693 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011694 break;
11695 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000011696 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011697 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011698 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011699 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011700 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011701 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011702 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011703 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011704 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011705 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011706 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011707 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011708 break;
Nate Begeman740ab032009-01-26 00:52:55 +000011709 }
11710 return SDValue();
11711}
11712
Nate Begemanb65c1752010-12-17 22:55:37 +000011713
11714static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
11715 TargetLowering::DAGCombinerInfo &DCI,
11716 const X86Subtarget *Subtarget) {
11717 if (DCI.isBeforeLegalizeOps())
11718 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011719
Nate Begemanb65c1752010-12-17 22:55:37 +000011720 // Want to form PANDN nodes, in the hopes of then easily combining them with
11721 // OR and AND nodes to form PBLEND/PSIGN.
11722 EVT VT = N->getValueType(0);
11723 if (VT != MVT::v2i64)
11724 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011725
Nate Begemanb65c1752010-12-17 22:55:37 +000011726 SDValue N0 = N->getOperand(0);
11727 SDValue N1 = N->getOperand(1);
11728 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011729
Nate Begemanb65c1752010-12-17 22:55:37 +000011730 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011731 if (N0.getOpcode() == ISD::XOR &&
Nate Begemanb65c1752010-12-17 22:55:37 +000011732 ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
11733 return DAG.getNode(X86ISD::PANDN, DL, VT, N0.getOperand(0), N1);
11734
11735 // Check RHS for vnot
11736 if (N1.getOpcode() == ISD::XOR &&
11737 ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
11738 return DAG.getNode(X86ISD::PANDN, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011739
Nate Begemanb65c1752010-12-17 22:55:37 +000011740 return SDValue();
11741}
11742
Evan Cheng760d1942010-01-04 21:22:48 +000011743static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000011744 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000011745 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000011746 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000011747 return SDValue();
11748
Evan Cheng760d1942010-01-04 21:22:48 +000011749 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000011750 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64 && VT != MVT::v2i64)
Evan Cheng760d1942010-01-04 21:22:48 +000011751 return SDValue();
11752
Evan Cheng760d1942010-01-04 21:22:48 +000011753 SDValue N0 = N->getOperand(0);
11754 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011755
Nate Begemanb65c1752010-12-17 22:55:37 +000011756 // look for psign/blend
11757 if (Subtarget->hasSSSE3()) {
11758 if (VT == MVT::v2i64) {
11759 // Canonicalize pandn to RHS
11760 if (N0.getOpcode() == X86ISD::PANDN)
11761 std::swap(N0, N1);
11762 // or (and (m, x), (pandn m, y))
11763 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::PANDN) {
11764 SDValue Mask = N1.getOperand(0);
11765 SDValue X = N1.getOperand(1);
11766 SDValue Y;
11767 if (N0.getOperand(0) == Mask)
11768 Y = N0.getOperand(1);
11769 if (N0.getOperand(1) == Mask)
11770 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011771
Nate Begemanb65c1752010-12-17 22:55:37 +000011772 // Check to see if the mask appeared in both the AND and PANDN and
11773 if (!Y.getNode())
11774 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011775
Nate Begemanb65c1752010-12-17 22:55:37 +000011776 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
11777 if (Mask.getOpcode() != ISD::BITCAST ||
11778 X.getOpcode() != ISD::BITCAST ||
11779 Y.getOpcode() != ISD::BITCAST)
11780 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011781
Nate Begemanb65c1752010-12-17 22:55:37 +000011782 // Look through mask bitcast.
11783 Mask = Mask.getOperand(0);
11784 EVT MaskVT = Mask.getValueType();
11785
11786 // Validate that the Mask operand is a vector sra node. The sra node
11787 // will be an intrinsic.
11788 if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
11789 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011790
Nate Begemanb65c1752010-12-17 22:55:37 +000011791 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
11792 // there is no psrai.b
11793 switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
11794 case Intrinsic::x86_sse2_psrai_w:
11795 case Intrinsic::x86_sse2_psrai_d:
11796 break;
11797 default: return SDValue();
11798 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011799
Nate Begemanb65c1752010-12-17 22:55:37 +000011800 // Check that the SRA is all signbits.
11801 SDValue SraC = Mask.getOperand(2);
11802 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
11803 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
11804 if ((SraAmt + 1) != EltBits)
11805 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011806
Nate Begemanb65c1752010-12-17 22:55:37 +000011807 DebugLoc DL = N->getDebugLoc();
11808
11809 // Now we know we at least have a plendvb with the mask val. See if
11810 // we can form a psignb/w/d.
11811 // psign = x.type == y.type == mask.type && y = sub(0, x);
11812 X = X.getOperand(0);
11813 Y = Y.getOperand(0);
11814 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
11815 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
11816 X.getValueType() == MaskVT && X.getValueType() == Y.getValueType()){
11817 unsigned Opc = 0;
11818 switch (EltBits) {
11819 case 8: Opc = X86ISD::PSIGNB; break;
11820 case 16: Opc = X86ISD::PSIGNW; break;
11821 case 32: Opc = X86ISD::PSIGND; break;
11822 default: break;
11823 }
11824 if (Opc) {
11825 SDValue Sign = DAG.getNode(Opc, DL, MaskVT, X, Mask.getOperand(1));
11826 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Sign);
11827 }
11828 }
11829 // PBLENDVB only available on SSE 4.1
11830 if (!Subtarget->hasSSE41())
11831 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011832
Nate Begemanb65c1752010-12-17 22:55:37 +000011833 X = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, X);
11834 Y = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Y);
11835 Mask = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Mask);
Nate Begeman672fb622010-12-20 22:04:24 +000011836 Mask = DAG.getNode(X86ISD::PBLENDVB, DL, MVT::v16i8, X, Y, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000011837 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Mask);
11838 }
11839 }
11840 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011841
Nate Begemanb65c1752010-12-17 22:55:37 +000011842 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000011843 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
11844 std::swap(N0, N1);
11845 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
11846 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000011847 if (!N0.hasOneUse() || !N1.hasOneUse())
11848 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000011849
11850 SDValue ShAmt0 = N0.getOperand(1);
11851 if (ShAmt0.getValueType() != MVT::i8)
11852 return SDValue();
11853 SDValue ShAmt1 = N1.getOperand(1);
11854 if (ShAmt1.getValueType() != MVT::i8)
11855 return SDValue();
11856 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
11857 ShAmt0 = ShAmt0.getOperand(0);
11858 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
11859 ShAmt1 = ShAmt1.getOperand(0);
11860
11861 DebugLoc DL = N->getDebugLoc();
11862 unsigned Opc = X86ISD::SHLD;
11863 SDValue Op0 = N0.getOperand(0);
11864 SDValue Op1 = N1.getOperand(0);
11865 if (ShAmt0.getOpcode() == ISD::SUB) {
11866 Opc = X86ISD::SHRD;
11867 std::swap(Op0, Op1);
11868 std::swap(ShAmt0, ShAmt1);
11869 }
11870
Evan Cheng8b1190a2010-04-28 01:18:01 +000011871 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000011872 if (ShAmt1.getOpcode() == ISD::SUB) {
11873 SDValue Sum = ShAmt1.getOperand(0);
11874 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000011875 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
11876 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
11877 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
11878 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000011879 return DAG.getNode(Opc, DL, VT,
11880 Op0, Op1,
11881 DAG.getNode(ISD::TRUNCATE, DL,
11882 MVT::i8, ShAmt0));
11883 }
11884 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
11885 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
11886 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000011887 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000011888 return DAG.getNode(Opc, DL, VT,
11889 N0.getOperand(0), N1.getOperand(0),
11890 DAG.getNode(ISD::TRUNCATE, DL,
11891 MVT::i8, ShAmt0));
11892 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011893
Evan Cheng760d1942010-01-04 21:22:48 +000011894 return SDValue();
11895}
11896
Chris Lattner149a4e52008-02-22 02:09:43 +000011897/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011898static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000011899 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +000011900 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
11901 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000011902 // A preferable solution to the general problem is to figure out the right
11903 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000011904
11905 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +000011906 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +000011907 EVT VT = St->getValue().getValueType();
Evan Cheng536e6672009-03-12 05:59:15 +000011908 if (VT.getSizeInBits() != 64)
11909 return SDValue();
11910
Devang Patel578efa92009-06-05 21:57:13 +000011911 const Function *F = DAG.getMachineFunction().getFunction();
11912 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000011913 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000011914 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000011915 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000011916 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000011917 isa<LoadSDNode>(St->getValue()) &&
11918 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
11919 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011920 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011921 LoadSDNode *Ld = 0;
11922 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000011923 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000011924 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011925 // Must be a store of a load. We currently handle two cases: the load
11926 // is a direct child, and it's under an intervening TokenFactor. It is
11927 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000011928 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000011929 Ld = cast<LoadSDNode>(St->getChain());
11930 else if (St->getValue().hasOneUse() &&
11931 ChainVal->getOpcode() == ISD::TokenFactor) {
11932 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011933 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000011934 TokenFactorIndex = i;
11935 Ld = cast<LoadSDNode>(St->getValue());
11936 } else
11937 Ops.push_back(ChainVal->getOperand(i));
11938 }
11939 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000011940
Evan Cheng536e6672009-03-12 05:59:15 +000011941 if (!Ld || !ISD::isNormalLoad(Ld))
11942 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011943
Evan Cheng536e6672009-03-12 05:59:15 +000011944 // If this is not the MMX case, i.e. we are just turning i64 load/store
11945 // into f64 load/store, avoid the transformation if there are multiple
11946 // uses of the loaded value.
11947 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
11948 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011949
Evan Cheng536e6672009-03-12 05:59:15 +000011950 DebugLoc LdDL = Ld->getDebugLoc();
11951 DebugLoc StDL = N->getDebugLoc();
11952 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
11953 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
11954 // pair instead.
11955 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011956 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000011957 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
11958 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011959 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011960 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000011961 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000011962 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000011963 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000011964 Ops.size());
11965 }
Evan Cheng536e6672009-03-12 05:59:15 +000011966 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011967 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011968 St->isVolatile(), St->isNonTemporal(),
11969 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000011970 }
Evan Cheng536e6672009-03-12 05:59:15 +000011971
11972 // Otherwise, lower to two pairs of 32-bit loads / stores.
11973 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011974 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
11975 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011976
Owen Anderson825b72b2009-08-11 20:47:22 +000011977 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011978 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011979 Ld->isVolatile(), Ld->isNonTemporal(),
11980 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000011981 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011982 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000011983 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011984 MinAlign(Ld->getAlignment(), 4));
11985
11986 SDValue NewChain = LoLd.getValue(1);
11987 if (TokenFactorIndex != -1) {
11988 Ops.push_back(LoLd);
11989 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000011990 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000011991 Ops.size());
11992 }
11993
11994 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011995 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
11996 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011997
11998 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011999 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012000 St->isVolatile(), St->isNonTemporal(),
12001 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000012002 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012003 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000012004 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000012005 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000012006 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000012007 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000012008 }
Dan Gohman475871a2008-07-27 21:46:04 +000012009 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000012010}
12011
Chris Lattner6cf73262008-01-25 06:14:17 +000012012/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
12013/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012014static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000012015 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
12016 // F[X]OR(0.0, x) -> x
12017 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000012018 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
12019 if (C->getValueAPF().isPosZero())
12020 return N->getOperand(1);
12021 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
12022 if (C->getValueAPF().isPosZero())
12023 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000012024 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000012025}
12026
12027/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012028static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000012029 // FAND(0.0, x) -> 0.0
12030 // FAND(x, 0.0) -> 0.0
12031 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
12032 if (C->getValueAPF().isPosZero())
12033 return N->getOperand(0);
12034 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
12035 if (C->getValueAPF().isPosZero())
12036 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000012037 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000012038}
12039
Dan Gohmane5af2d32009-01-29 01:59:02 +000012040static SDValue PerformBTCombine(SDNode *N,
12041 SelectionDAG &DAG,
12042 TargetLowering::DAGCombinerInfo &DCI) {
12043 // BT ignores high bits in the bit index operand.
12044 SDValue Op1 = N->getOperand(1);
12045 if (Op1.hasOneUse()) {
12046 unsigned BitWidth = Op1.getValueSizeInBits();
12047 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
12048 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012049 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
12050 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000012051 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000012052 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
12053 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
12054 DCI.CommitTargetLoweringOpt(TLO);
12055 }
12056 return SDValue();
12057}
Chris Lattner83e6c992006-10-04 06:57:07 +000012058
Eli Friedman7a5e5552009-06-07 06:52:44 +000012059static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
12060 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012061 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000012062 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000012063 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000012064 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000012065 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000012066 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012067 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000012068 }
12069 return SDValue();
12070}
12071
Evan Cheng2e489c42009-12-16 00:53:11 +000012072static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
12073 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
12074 // (and (i32 x86isd::setcc_carry), 1)
12075 // This eliminates the zext. This transformation is necessary because
12076 // ISD::SETCC is always legalized to i8.
12077 DebugLoc dl = N->getDebugLoc();
12078 SDValue N0 = N->getOperand(0);
12079 EVT VT = N->getValueType(0);
12080 if (N0.getOpcode() == ISD::AND &&
12081 N0.hasOneUse() &&
12082 N0.getOperand(0).hasOneUse()) {
12083 SDValue N00 = N0.getOperand(0);
12084 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
12085 return SDValue();
12086 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
12087 if (!C || C->getZExtValue() != 1)
12088 return SDValue();
12089 return DAG.getNode(ISD::AND, dl, VT,
12090 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
12091 N00.getOperand(0), N00.getOperand(1)),
12092 DAG.getConstant(1, VT));
12093 }
12094
12095 return SDValue();
12096}
12097
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012098// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
12099static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
12100 unsigned X86CC = N->getConstantOperandVal(0);
12101 SDValue EFLAG = N->getOperand(1);
12102 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012103
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012104 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
12105 // a zext and produces an all-ones bit which is more useful than 0/1 in some
12106 // cases.
12107 if (X86CC == X86::COND_B)
12108 return DAG.getNode(ISD::AND, DL, MVT::i8,
12109 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
12110 DAG.getConstant(X86CC, MVT::i8), EFLAG),
12111 DAG.getConstant(1, MVT::i8));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012112
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012113 return SDValue();
12114}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012115
Chris Lattner23a01992010-12-20 01:37:09 +000012116// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
12117static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
12118 X86TargetLowering::DAGCombinerInfo &DCI) {
12119 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
12120 // the result is either zero or one (depending on the input carry bit).
12121 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
12122 if (X86::isZeroNode(N->getOperand(0)) &&
12123 X86::isZeroNode(N->getOperand(1)) &&
12124 // We don't have a good way to replace an EFLAGS use, so only do this when
12125 // dead right now.
12126 SDValue(N, 1).use_empty()) {
12127 DebugLoc DL = N->getDebugLoc();
12128 EVT VT = N->getValueType(0);
12129 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
12130 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
12131 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
12132 DAG.getConstant(X86::COND_B,MVT::i8),
12133 N->getOperand(2)),
12134 DAG.getConstant(1, VT));
12135 return DCI.CombineTo(N, Res1, CarryOut);
12136 }
12137
12138 return SDValue();
12139}
12140
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012141// fold (add Y, (sete X, 0)) -> adc 0, Y
12142// (add Y, (setne X, 0)) -> sbb -1, Y
12143// (sub (sete X, 0), Y) -> sbb 0, Y
12144// (sub (setne X, 0), Y) -> adc -1, Y
12145static SDValue OptimizeConditonalInDecrement(SDNode *N, SelectionDAG &DAG) {
12146 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012147
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012148 // Look through ZExts.
12149 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
12150 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
12151 return SDValue();
12152
12153 SDValue SetCC = Ext.getOperand(0);
12154 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
12155 return SDValue();
12156
12157 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
12158 if (CC != X86::COND_E && CC != X86::COND_NE)
12159 return SDValue();
12160
12161 SDValue Cmp = SetCC.getOperand(1);
12162 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000012163 !X86::isZeroNode(Cmp.getOperand(1)) ||
12164 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012165 return SDValue();
12166
12167 SDValue CmpOp0 = Cmp.getOperand(0);
12168 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
12169 DAG.getConstant(1, CmpOp0.getValueType()));
12170
12171 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
12172 if (CC == X86::COND_NE)
12173 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
12174 DL, OtherVal.getValueType(), OtherVal,
12175 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
12176 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
12177 DL, OtherVal.getValueType(), OtherVal,
12178 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
12179}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012180
Dan Gohman475871a2008-07-27 21:46:04 +000012181SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000012182 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000012183 SelectionDAG &DAG = DCI.DAG;
12184 switch (N->getOpcode()) {
12185 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012186 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012187 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000012188 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000012189 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012190 case ISD::ADD:
12191 case ISD::SUB: return OptimizeConditonalInDecrement(N, DAG);
Chris Lattner23a01992010-12-20 01:37:09 +000012192 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000012193 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000012194 case ISD::SHL:
12195 case ISD::SRA:
12196 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000012197 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000012198 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000012199 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000012200 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000012201 case X86ISD::FOR: return PerformFORCombine(N, DAG);
12202 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000012203 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000012204 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000012205 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012206 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012207 case X86ISD::SHUFPS: // Handle all target specific shuffles
12208 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000012209 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012210 case X86ISD::PUNPCKHBW:
12211 case X86ISD::PUNPCKHWD:
12212 case X86ISD::PUNPCKHDQ:
12213 case X86ISD::PUNPCKHQDQ:
12214 case X86ISD::UNPCKHPS:
12215 case X86ISD::UNPCKHPD:
12216 case X86ISD::PUNPCKLBW:
12217 case X86ISD::PUNPCKLWD:
12218 case X86ISD::PUNPCKLDQ:
12219 case X86ISD::PUNPCKLQDQ:
12220 case X86ISD::UNPCKLPS:
12221 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +000012222 case X86ISD::VUNPCKLPS:
12223 case X86ISD::VUNPCKLPD:
12224 case X86ISD::VUNPCKLPSY:
12225 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012226 case X86ISD::MOVHLPS:
12227 case X86ISD::MOVLHPS:
12228 case X86ISD::PSHUFD:
12229 case X86ISD::PSHUFHW:
12230 case X86ISD::PSHUFLW:
12231 case X86ISD::MOVSS:
12232 case X86ISD::MOVSD:
Mon P Wanga0fd0d52010-12-19 23:55:53 +000012233 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI);
Evan Cheng206ee9d2006-07-07 08:33:52 +000012234 }
12235
Dan Gohman475871a2008-07-27 21:46:04 +000012236 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000012237}
12238
Evan Chenge5b51ac2010-04-17 06:13:15 +000012239/// isTypeDesirableForOp - Return true if the target has native support for
12240/// the specified value type and it is 'desirable' to use the type for the
12241/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
12242/// instruction encodings are longer and some i16 instructions are slow.
12243bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
12244 if (!isTypeLegal(VT))
12245 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012246 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000012247 return true;
12248
12249 switch (Opc) {
12250 default:
12251 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000012252 case ISD::LOAD:
12253 case ISD::SIGN_EXTEND:
12254 case ISD::ZERO_EXTEND:
12255 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000012256 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000012257 case ISD::SRL:
12258 case ISD::SUB:
12259 case ISD::ADD:
12260 case ISD::MUL:
12261 case ISD::AND:
12262 case ISD::OR:
12263 case ISD::XOR:
12264 return false;
12265 }
12266}
12267
12268/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000012269/// beneficial for dag combiner to promote the specified node. If true, it
12270/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000012271bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000012272 EVT VT = Op.getValueType();
12273 if (VT != MVT::i16)
12274 return false;
12275
Evan Cheng4c26e932010-04-19 19:29:22 +000012276 bool Promote = false;
12277 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012278 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000012279 default: break;
12280 case ISD::LOAD: {
12281 LoadSDNode *LD = cast<LoadSDNode>(Op);
12282 // If the non-extending load has a single use and it's not live out, then it
12283 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012284 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
12285 Op.hasOneUse()*/) {
12286 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
12287 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
12288 // The only case where we'd want to promote LOAD (rather then it being
12289 // promoted as an operand is when it's only use is liveout.
12290 if (UI->getOpcode() != ISD::CopyToReg)
12291 return false;
12292 }
12293 }
Evan Cheng4c26e932010-04-19 19:29:22 +000012294 Promote = true;
12295 break;
12296 }
12297 case ISD::SIGN_EXTEND:
12298 case ISD::ZERO_EXTEND:
12299 case ISD::ANY_EXTEND:
12300 Promote = true;
12301 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012302 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012303 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000012304 SDValue N0 = Op.getOperand(0);
12305 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000012306 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000012307 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000012308 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012309 break;
12310 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000012311 case ISD::ADD:
12312 case ISD::MUL:
12313 case ISD::AND:
12314 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000012315 case ISD::XOR:
12316 Commute = true;
12317 // fallthrough
12318 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000012319 SDValue N0 = Op.getOperand(0);
12320 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000012321 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012322 return false;
12323 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000012324 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012325 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000012326 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012327 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000012328 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012329 }
12330 }
12331
12332 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000012333 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012334}
12335
Evan Cheng60c07e12006-07-05 22:17:51 +000012336//===----------------------------------------------------------------------===//
12337// X86 Inline Assembly Support
12338//===----------------------------------------------------------------------===//
12339
Chris Lattnerb8105652009-07-20 17:51:36 +000012340bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
12341 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000012342
12343 std::string AsmStr = IA->getAsmString();
12344
12345 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000012346 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000012347 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000012348
12349 switch (AsmPieces.size()) {
12350 default: return false;
12351 case 1:
12352 AsmStr = AsmPieces[0];
12353 AsmPieces.clear();
12354 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
12355
Chris Lattner7a2bdde2011-04-15 05:18:47 +000012356 // FIXME: this should verify that we are targeting a 486 or better. If not,
Evan Cheng55d42002011-01-08 01:24:27 +000012357 // we will turn this bswap into something that will be lowered to logical ops
12358 // instead of emitting the bswap asm. For now, we don't support 486 or lower
12359 // so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000012360 // bswap $0
12361 if (AsmPieces.size() == 2 &&
12362 (AsmPieces[0] == "bswap" ||
12363 AsmPieces[0] == "bswapq" ||
12364 AsmPieces[0] == "bswapl") &&
12365 (AsmPieces[1] == "$0" ||
12366 AsmPieces[1] == "${0:q}")) {
12367 // No need to check constraints, nothing other than the equivalent of
12368 // "=r,0" would be valid here.
Evan Cheng55d42002011-01-08 01:24:27 +000012369 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
12370 if (!Ty || Ty->getBitWidth() % 16 != 0)
12371 return false;
12372 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000012373 }
12374 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000012375 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000012376 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000012377 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000012378 AsmPieces[1] == "$$8," &&
12379 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000012380 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
12381 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000012382 const std::string &ConstraintsStr = IA->getConstraintString();
12383 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000012384 std::sort(AsmPieces.begin(), AsmPieces.end());
12385 if (AsmPieces.size() == 4 &&
12386 AsmPieces[0] == "~{cc}" &&
12387 AsmPieces[1] == "~{dirflag}" &&
12388 AsmPieces[2] == "~{flags}" &&
12389 AsmPieces[3] == "~{fpsr}") {
Evan Cheng55d42002011-01-08 01:24:27 +000012390 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
12391 if (!Ty || Ty->getBitWidth() % 16 != 0)
12392 return false;
12393 return IntrinsicLowering::LowerToByteSwap(CI);
Dan Gohman0ef701e2010-03-04 19:58:08 +000012394 }
Chris Lattnerb8105652009-07-20 17:51:36 +000012395 }
12396 break;
12397 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000012398 if (CI->getType()->isIntegerTy(32) &&
12399 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
12400 SmallVector<StringRef, 4> Words;
12401 SplitString(AsmPieces[0], Words, " \t,");
12402 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
12403 Words[2] == "${0:w}") {
12404 Words.clear();
12405 SplitString(AsmPieces[1], Words, " \t,");
12406 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
12407 Words[2] == "$0") {
12408 Words.clear();
12409 SplitString(AsmPieces[2], Words, " \t,");
12410 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
12411 Words[2] == "${0:w}") {
12412 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000012413 const std::string &ConstraintsStr = IA->getConstraintString();
12414 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Peter Collingbourne948cf022010-11-13 19:54:30 +000012415 std::sort(AsmPieces.begin(), AsmPieces.end());
12416 if (AsmPieces.size() == 4 &&
12417 AsmPieces[0] == "~{cc}" &&
12418 AsmPieces[1] == "~{dirflag}" &&
12419 AsmPieces[2] == "~{flags}" &&
12420 AsmPieces[3] == "~{fpsr}") {
Evan Cheng55d42002011-01-08 01:24:27 +000012421 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
12422 if (!Ty || Ty->getBitWidth() % 16 != 0)
12423 return false;
12424 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000012425 }
12426 }
12427 }
12428 }
12429 }
Evan Cheng55d42002011-01-08 01:24:27 +000012430
12431 if (CI->getType()->isIntegerTy(64)) {
12432 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
12433 if (Constraints.size() >= 2 &&
12434 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
12435 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
12436 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
12437 SmallVector<StringRef, 4> Words;
12438 SplitString(AsmPieces[0], Words, " \t");
12439 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
Chris Lattnerb8105652009-07-20 17:51:36 +000012440 Words.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000012441 SplitString(AsmPieces[1], Words, " \t");
12442 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
12443 Words.clear();
12444 SplitString(AsmPieces[2], Words, " \t,");
12445 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
12446 Words[2] == "%edx") {
12447 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
12448 if (!Ty || Ty->getBitWidth() % 16 != 0)
12449 return false;
12450 return IntrinsicLowering::LowerToByteSwap(CI);
12451 }
Chris Lattnerb8105652009-07-20 17:51:36 +000012452 }
12453 }
12454 }
12455 }
12456 break;
12457 }
12458 return false;
12459}
12460
12461
12462
Chris Lattnerf4dff842006-07-11 02:54:03 +000012463/// getConstraintType - Given a constraint letter, return the type of
12464/// constraint it is for this target.
12465X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000012466X86TargetLowering::getConstraintType(const std::string &Constraint) const {
12467 if (Constraint.size() == 1) {
12468 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000012469 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000012470 case 'q':
12471 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000012472 case 'f':
12473 case 't':
12474 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000012475 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000012476 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000012477 case 'Y':
12478 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000012479 case 'a':
12480 case 'b':
12481 case 'c':
12482 case 'd':
12483 case 'S':
12484 case 'D':
12485 case 'A':
12486 return C_Register;
12487 case 'I':
12488 case 'J':
12489 case 'K':
12490 case 'L':
12491 case 'M':
12492 case 'N':
12493 case 'G':
12494 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000012495 case 'e':
12496 case 'Z':
12497 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000012498 default:
12499 break;
12500 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000012501 }
Chris Lattner4234f572007-03-25 02:14:49 +000012502 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000012503}
12504
John Thompson44ab89e2010-10-29 17:29:13 +000012505/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000012506/// This object must already have been set up with the operand type
12507/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000012508TargetLowering::ConstraintWeight
12509 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000012510 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000012511 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012512 Value *CallOperandVal = info.CallOperandVal;
12513 // If we don't have a value, we can't do a match,
12514 // but allow it at the lowest weight.
12515 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000012516 return CW_Default;
12517 const Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000012518 // Look at the constraint type.
12519 switch (*constraint) {
12520 default:
John Thompson44ab89e2010-10-29 17:29:13 +000012521 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
12522 case 'R':
12523 case 'q':
12524 case 'Q':
12525 case 'a':
12526 case 'b':
12527 case 'c':
12528 case 'd':
12529 case 'S':
12530 case 'D':
12531 case 'A':
12532 if (CallOperandVal->getType()->isIntegerTy())
12533 weight = CW_SpecificReg;
12534 break;
12535 case 'f':
12536 case 't':
12537 case 'u':
12538 if (type->isFloatingPointTy())
12539 weight = CW_SpecificReg;
12540 break;
12541 case 'y':
Chris Lattner2a786eb2010-12-19 20:19:20 +000012542 if (type->isX86_MMXTy() && Subtarget->hasMMX())
John Thompson44ab89e2010-10-29 17:29:13 +000012543 weight = CW_SpecificReg;
12544 break;
12545 case 'x':
12546 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012547 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000012548 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012549 break;
12550 case 'I':
12551 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
12552 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000012553 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012554 }
12555 break;
John Thompson44ab89e2010-10-29 17:29:13 +000012556 case 'J':
12557 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12558 if (C->getZExtValue() <= 63)
12559 weight = CW_Constant;
12560 }
12561 break;
12562 case 'K':
12563 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12564 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
12565 weight = CW_Constant;
12566 }
12567 break;
12568 case 'L':
12569 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12570 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
12571 weight = CW_Constant;
12572 }
12573 break;
12574 case 'M':
12575 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12576 if (C->getZExtValue() <= 3)
12577 weight = CW_Constant;
12578 }
12579 break;
12580 case 'N':
12581 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12582 if (C->getZExtValue() <= 0xff)
12583 weight = CW_Constant;
12584 }
12585 break;
12586 case 'G':
12587 case 'C':
12588 if (dyn_cast<ConstantFP>(CallOperandVal)) {
12589 weight = CW_Constant;
12590 }
12591 break;
12592 case 'e':
12593 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12594 if ((C->getSExtValue() >= -0x80000000LL) &&
12595 (C->getSExtValue() <= 0x7fffffffLL))
12596 weight = CW_Constant;
12597 }
12598 break;
12599 case 'Z':
12600 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12601 if (C->getZExtValue() <= 0xffffffff)
12602 weight = CW_Constant;
12603 }
12604 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012605 }
12606 return weight;
12607}
12608
Dale Johannesenba2a0b92008-01-29 02:21:21 +000012609/// LowerXConstraint - try to replace an X constraint, which matches anything,
12610/// with another that has more specific requirements based on the type of the
12611/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000012612const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000012613LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000012614 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
12615 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000012616 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012617 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000012618 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012619 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000012620 return "x";
12621 }
Scott Michelfdc40a02009-02-17 22:15:04 +000012622
Chris Lattner5e764232008-04-26 23:02:14 +000012623 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000012624}
12625
Chris Lattner48884cd2007-08-25 00:47:38 +000012626/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
12627/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000012628void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattner48884cd2007-08-25 00:47:38 +000012629 char Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000012630 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000012631 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000012632 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000012633
Chris Lattner22aaf1d2006-10-31 20:13:11 +000012634 switch (Constraint) {
12635 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000012636 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000012637 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000012638 if (C->getZExtValue() <= 31) {
12639 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000012640 break;
12641 }
Devang Patel84f7fd22007-03-17 00:13:28 +000012642 }
Chris Lattner48884cd2007-08-25 00:47:38 +000012643 return;
Evan Cheng364091e2008-09-22 23:57:37 +000012644 case 'J':
12645 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000012646 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000012647 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
12648 break;
12649 }
12650 }
12651 return;
12652 case 'K':
12653 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000012654 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000012655 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
12656 break;
12657 }
12658 }
12659 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000012660 case 'N':
12661 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000012662 if (C->getZExtValue() <= 255) {
12663 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000012664 break;
12665 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000012666 }
Chris Lattner48884cd2007-08-25 00:47:38 +000012667 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000012668 case 'e': {
12669 // 32-bit signed value
12670 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000012671 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
12672 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000012673 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000012674 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000012675 break;
12676 }
12677 // FIXME gcc accepts some relocatable values here too, but only in certain
12678 // memory models; it's complicated.
12679 }
12680 return;
12681 }
12682 case 'Z': {
12683 // 32-bit unsigned value
12684 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000012685 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
12686 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000012687 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
12688 break;
12689 }
12690 }
12691 // FIXME gcc accepts some relocatable values here too, but only in certain
12692 // memory models; it's complicated.
12693 return;
12694 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000012695 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000012696 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000012697 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000012698 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000012699 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000012700 break;
12701 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012702
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000012703 // In any sort of PIC mode addresses need to be computed at runtime by
12704 // adding in a register or some sort of table lookup. These can't
12705 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000012706 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000012707 return;
12708
Chris Lattnerdc43a882007-05-03 16:52:29 +000012709 // If we are in non-pic codegen mode, we allow the address of a global (with
12710 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000012711 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000012712 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000012713
Chris Lattner49921962009-05-08 18:23:14 +000012714 // Match either (GA), (GA+C), (GA+C1+C2), etc.
12715 while (1) {
12716 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
12717 Offset += GA->getOffset();
12718 break;
12719 } else if (Op.getOpcode() == ISD::ADD) {
12720 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
12721 Offset += C->getZExtValue();
12722 Op = Op.getOperand(0);
12723 continue;
12724 }
12725 } else if (Op.getOpcode() == ISD::SUB) {
12726 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
12727 Offset += -C->getZExtValue();
12728 Op = Op.getOperand(0);
12729 continue;
12730 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000012731 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000012732
Chris Lattner49921962009-05-08 18:23:14 +000012733 // Otherwise, this isn't something we can handle, reject it.
12734 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000012735 }
Eric Christopherfd179292009-08-27 18:07:15 +000012736
Dan Gohman46510a72010-04-15 01:51:59 +000012737 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000012738 // If we require an extra load to get this address, as in PIC mode, we
12739 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000012740 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
12741 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000012742 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000012743
Devang Patel0d881da2010-07-06 22:08:15 +000012744 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
12745 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000012746 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000012747 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000012748 }
Scott Michelfdc40a02009-02-17 22:15:04 +000012749
Gabor Greifba36cb52008-08-28 21:40:38 +000012750 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000012751 Ops.push_back(Result);
12752 return;
12753 }
Dale Johannesen1784d162010-06-25 21:55:36 +000012754 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000012755}
12756
Chris Lattner259e97c2006-01-31 19:43:35 +000012757std::vector<unsigned> X86TargetLowering::
Chris Lattner1efa40f2006-02-22 00:56:39 +000012758getRegClassForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000012759 EVT VT) const {
Chris Lattner259e97c2006-01-31 19:43:35 +000012760 if (Constraint.size() == 1) {
12761 // FIXME: not handling fp-stack yet!
Chris Lattner259e97c2006-01-31 19:43:35 +000012762 switch (Constraint[0]) { // GCC X86 Constraint Letters
Chris Lattnerf4dff842006-07-11 02:54:03 +000012763 default: break; // Unknown constraint letter
Evan Cheng47e9fab2009-07-17 22:13:25 +000012764 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
12765 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012766 if (VT == MVT::i32)
Evan Cheng47e9fab2009-07-17 22:13:25 +000012767 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX,
12768 X86::ESI, X86::EDI, X86::R8D, X86::R9D,
12769 X86::R10D,X86::R11D,X86::R12D,
12770 X86::R13D,X86::R14D,X86::R15D,
12771 X86::EBP, X86::ESP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012772 else if (VT == MVT::i16)
Evan Cheng47e9fab2009-07-17 22:13:25 +000012773 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX,
12774 X86::SI, X86::DI, X86::R8W,X86::R9W,
12775 X86::R10W,X86::R11W,X86::R12W,
12776 X86::R13W,X86::R14W,X86::R15W,
12777 X86::BP, X86::SP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012778 else if (VT == MVT::i8)
Evan Cheng47e9fab2009-07-17 22:13:25 +000012779 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL,
12780 X86::SIL, X86::DIL, X86::R8B,X86::R9B,
12781 X86::R10B,X86::R11B,X86::R12B,
12782 X86::R13B,X86::R14B,X86::R15B,
12783 X86::BPL, X86::SPL, 0);
12784
Owen Anderson825b72b2009-08-11 20:47:22 +000012785 else if (VT == MVT::i64)
Evan Cheng47e9fab2009-07-17 22:13:25 +000012786 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX,
12787 X86::RSI, X86::RDI, X86::R8, X86::R9,
12788 X86::R10, X86::R11, X86::R12,
12789 X86::R13, X86::R14, X86::R15,
12790 X86::RBP, X86::RSP, 0);
12791
12792 break;
12793 }
Eric Christopherfd179292009-08-27 18:07:15 +000012794 // 32-bit fallthrough
Chris Lattner259e97c2006-01-31 19:43:35 +000012795 case 'Q': // Q_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000012796 if (VT == MVT::i32)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000012797 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012798 else if (VT == MVT::i16)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000012799 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012800 else if (VT == MVT::i8)
Evan Cheng12914382007-08-13 23:27:11 +000012801 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012802 else if (VT == MVT::i64)
Chris Lattner03e6c702007-11-04 06:51:12 +000012803 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
12804 break;
Chris Lattner259e97c2006-01-31 19:43:35 +000012805 }
12806 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012807
Chris Lattner1efa40f2006-02-22 00:56:39 +000012808 return std::vector<unsigned>();
Chris Lattner259e97c2006-01-31 19:43:35 +000012809}
Chris Lattnerf76d1802006-07-31 23:26:50 +000012810
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012811std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000012812X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000012813 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000012814 // First, see if this is a constraint that directly corresponds to an LLVM
12815 // register class.
12816 if (Constraint.size() == 1) {
12817 // GCC Constraint Letters
12818 switch (Constraint[0]) {
12819 default: break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000012820 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000012821 case 'l': // INDEX_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000012822 if (VT == MVT::i8)
Chris Lattner0f65cad2007-04-09 05:49:22 +000012823 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000012824 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000012825 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000012826 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000012827 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000012828 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000012829 case 'R': // LEGACY_REGS
12830 if (VT == MVT::i8)
12831 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
12832 if (VT == MVT::i16)
12833 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
12834 if (VT == MVT::i32 || !Subtarget->is64Bit())
12835 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
12836 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000012837 case 'f': // FP Stack registers.
12838 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
12839 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000012840 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000012841 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000012842 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000012843 return std::make_pair(0U, X86::RFP64RegisterClass);
12844 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000012845 case 'y': // MMX_REGS if MMX allowed.
12846 if (!Subtarget->hasMMX()) break;
12847 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000012848 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012849 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000012850 // FALL THROUGH.
12851 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012852 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000012853
Owen Anderson825b72b2009-08-11 20:47:22 +000012854 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000012855 default: break;
12856 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000012857 case MVT::f32:
12858 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000012859 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000012860 case MVT::f64:
12861 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000012862 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000012863 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000012864 case MVT::v16i8:
12865 case MVT::v8i16:
12866 case MVT::v4i32:
12867 case MVT::v2i64:
12868 case MVT::v4f32:
12869 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000012870 return std::make_pair(0U, X86::VR128RegisterClass);
12871 }
Chris Lattnerad043e82007-04-09 05:11:28 +000012872 break;
12873 }
12874 }
Scott Michelfdc40a02009-02-17 22:15:04 +000012875
Chris Lattnerf76d1802006-07-31 23:26:50 +000012876 // Use the default implementation in TargetLowering to convert the register
12877 // constraint into a member of a register class.
12878 std::pair<unsigned, const TargetRegisterClass*> Res;
12879 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000012880
12881 // Not found as a standard register?
12882 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000012883 // Map st(0) -> st(7) -> ST0
12884 if (Constraint.size() == 7 && Constraint[0] == '{' &&
12885 tolower(Constraint[1]) == 's' &&
12886 tolower(Constraint[2]) == 't' &&
12887 Constraint[3] == '(' &&
12888 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
12889 Constraint[5] == ')' &&
12890 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000012891
Chris Lattner56d77c72009-09-13 22:41:48 +000012892 Res.first = X86::ST0+Constraint[4]-'0';
12893 Res.second = X86::RFP80RegisterClass;
12894 return Res;
12895 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000012896
Chris Lattner56d77c72009-09-13 22:41:48 +000012897 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000012898 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000012899 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000012900 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000012901 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000012902 }
Chris Lattner56d77c72009-09-13 22:41:48 +000012903
12904 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000012905 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000012906 Res.first = X86::EFLAGS;
12907 Res.second = X86::CCRRegisterClass;
12908 return Res;
12909 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000012910
Dale Johannesen330169f2008-11-13 21:52:36 +000012911 // 'A' means EAX + EDX.
12912 if (Constraint == "A") {
12913 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000012914 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000012915 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000012916 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000012917 return Res;
12918 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012919
Chris Lattnerf76d1802006-07-31 23:26:50 +000012920 // Otherwise, check to see if this is a register class of the wrong value
12921 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
12922 // turn into {ax},{dx}.
12923 if (Res.second->hasType(VT))
12924 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012925
Chris Lattnerf76d1802006-07-31 23:26:50 +000012926 // All of the single-register GCC register classes map their values onto
12927 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
12928 // really want an 8-bit or 32-bit register, map to the appropriate register
12929 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000012930 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012931 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012932 unsigned DestReg = 0;
12933 switch (Res.first) {
12934 default: break;
12935 case X86::AX: DestReg = X86::AL; break;
12936 case X86::DX: DestReg = X86::DL; break;
12937 case X86::CX: DestReg = X86::CL; break;
12938 case X86::BX: DestReg = X86::BL; break;
12939 }
12940 if (DestReg) {
12941 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012942 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012943 }
Owen Anderson825b72b2009-08-11 20:47:22 +000012944 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012945 unsigned DestReg = 0;
12946 switch (Res.first) {
12947 default: break;
12948 case X86::AX: DestReg = X86::EAX; break;
12949 case X86::DX: DestReg = X86::EDX; break;
12950 case X86::CX: DestReg = X86::ECX; break;
12951 case X86::BX: DestReg = X86::EBX; break;
12952 case X86::SI: DestReg = X86::ESI; break;
12953 case X86::DI: DestReg = X86::EDI; break;
12954 case X86::BP: DestReg = X86::EBP; break;
12955 case X86::SP: DestReg = X86::ESP; break;
12956 }
12957 if (DestReg) {
12958 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012959 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012960 }
Owen Anderson825b72b2009-08-11 20:47:22 +000012961 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012962 unsigned DestReg = 0;
12963 switch (Res.first) {
12964 default: break;
12965 case X86::AX: DestReg = X86::RAX; break;
12966 case X86::DX: DestReg = X86::RDX; break;
12967 case X86::CX: DestReg = X86::RCX; break;
12968 case X86::BX: DestReg = X86::RBX; break;
12969 case X86::SI: DestReg = X86::RSI; break;
12970 case X86::DI: DestReg = X86::RDI; break;
12971 case X86::BP: DestReg = X86::RBP; break;
12972 case X86::SP: DestReg = X86::RSP; break;
12973 }
12974 if (DestReg) {
12975 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012976 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012977 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000012978 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000012979 } else if (Res.second == X86::FR32RegisterClass ||
12980 Res.second == X86::FR64RegisterClass ||
12981 Res.second == X86::VR128RegisterClass) {
12982 // Handle references to XMM physical registers that got mapped into the
12983 // wrong class. This can happen with constraints like {xmm0} where the
12984 // target independent register mapper will just pick the first match it can
12985 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000012986 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012987 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000012988 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012989 Res.second = X86::FR64RegisterClass;
12990 else if (X86::VR128RegisterClass->hasType(VT))
12991 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000012992 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012993
Chris Lattnerf76d1802006-07-31 23:26:50 +000012994 return Res;
12995}