blob: ffcfa0836a866b2e83498c42a4756f435c96acfd [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
Stuart Hastings4fd0dee2011-06-01 04:39:42 +0000577 // Lower this to FGETSIGNx86 plus an AND.
578 setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
579 setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
580
Evan Chengd25e9e82006-02-02 00:28:23 +0000581 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000582 setOperationAction(ISD::FSIN , MVT::f64, Expand);
583 setOperationAction(ISD::FCOS , MVT::f64, Expand);
584 setOperationAction(ISD::FSIN , MVT::f32, Expand);
585 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000586
Chris Lattnera54aa942006-01-29 06:26:08 +0000587 // Expand FP immediates into loads from the stack, except for the special
588 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000589 addLegalFPImmediate(APFloat(+0.0)); // xorpd
590 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000591 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000592 // Use SSE for f32, x87 for f64.
593 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000594 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
595 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000596
597 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000598 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000599
600 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000601 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000602
Owen Anderson825b72b2009-08-11 20:47:22 +0000603 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000604
605 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000606 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
607 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000608
609 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000610 setOperationAction(ISD::FSIN , MVT::f32, Expand);
611 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000612
Nate Begemane1795842008-02-14 08:57:00 +0000613 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000614 addLegalFPImmediate(APFloat(+0.0f)); // xorps
615 addLegalFPImmediate(APFloat(+0.0)); // FLD0
616 addLegalFPImmediate(APFloat(+1.0)); // FLD1
617 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
618 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
619
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000620 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000621 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
622 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000623 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000624 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000625 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000626 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000627 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
628 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000629
Owen Anderson825b72b2009-08-11 20:47:22 +0000630 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
631 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
632 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
633 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000634
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000635 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000636 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
637 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000638 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000639 addLegalFPImmediate(APFloat(+0.0)); // FLD0
640 addLegalFPImmediate(APFloat(+1.0)); // FLD1
641 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
642 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000643 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
644 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
645 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
646 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000647 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000648
Dale Johannesen59a58732007-08-05 18:49:15 +0000649 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000650 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000651 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
652 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
653 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000654 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000655 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000656 addLegalFPImmediate(TmpFlt); // FLD0
657 TmpFlt.changeSign();
658 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000659
660 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000661 APFloat TmpFlt2(+1.0);
662 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
663 &ignored);
664 addLegalFPImmediate(TmpFlt2); // FLD1
665 TmpFlt2.changeSign();
666 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
667 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000668
Evan Chengc7ce29b2009-02-13 22:36:38 +0000669 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000670 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
671 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000672 }
Dale Johannesen2f429012007-09-26 21:10:55 +0000673 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000674
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000675 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000676 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
677 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
678 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000679
Owen Anderson825b72b2009-08-11 20:47:22 +0000680 setOperationAction(ISD::FLOG, MVT::f80, Expand);
681 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
682 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
683 setOperationAction(ISD::FEXP, MVT::f80, Expand);
684 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000685
Mon P Wangf007a8b2008-11-06 05:31:54 +0000686 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000687 // (for widening) or expand (for scalarization). Then we will selectively
688 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000689 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
690 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
691 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
692 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
693 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
694 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
695 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
696 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
697 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
698 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
699 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
700 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
701 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
702 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
703 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
704 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
705 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000706 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
David Greenecfe33c42011-01-26 19:13:22 +0000707 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
708 setOperationAction(ISD::INSERT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000709 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
710 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
711 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
712 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
713 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
714 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
715 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
716 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
717 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
718 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
719 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
720 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
721 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
722 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
723 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
724 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
725 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
726 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
727 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
728 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
729 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
730 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
731 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
732 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
733 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
734 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
735 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
736 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
737 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
738 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
739 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000740 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000741 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
742 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
743 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
744 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
745 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
746 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
747 setTruncStoreAction((MVT::SimpleValueType)VT,
748 (MVT::SimpleValueType)InnerVT, Expand);
749 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
750 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
751 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000752 }
753
Evan Chengc7ce29b2009-02-13 22:36:38 +0000754 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
755 // with -msoft-float, disable use of MMX as well.
Chris Lattner2a786eb2010-12-19 20:19:20 +0000756 if (!UseSoftFloat && Subtarget->hasMMX()) {
Dale Johannesene93d99c2010-10-20 21:32:10 +0000757 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000758 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000759 }
760
Dale Johannesen0488fb62010-09-30 23:57:10 +0000761 // MMX-sized vectors (other than x86mmx) are expected to be expanded
762 // into smaller operations.
763 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
764 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
765 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
766 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
767 setOperationAction(ISD::AND, MVT::v8i8, Expand);
768 setOperationAction(ISD::AND, MVT::v4i16, Expand);
769 setOperationAction(ISD::AND, MVT::v2i32, Expand);
770 setOperationAction(ISD::AND, MVT::v1i64, Expand);
771 setOperationAction(ISD::OR, MVT::v8i8, Expand);
772 setOperationAction(ISD::OR, MVT::v4i16, Expand);
773 setOperationAction(ISD::OR, MVT::v2i32, Expand);
774 setOperationAction(ISD::OR, MVT::v1i64, Expand);
775 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
776 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
777 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
778 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
779 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
780 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
781 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
782 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
783 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
784 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
785 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
786 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
787 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000788 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
789 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
790 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
791 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000792
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000793 if (!UseSoftFloat && Subtarget->hasXMM()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000794 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000795
Owen Anderson825b72b2009-08-11 20:47:22 +0000796 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
797 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
798 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
799 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
800 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
801 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
802 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
803 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
804 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
805 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
806 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
807 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000808 }
809
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000810 if (!UseSoftFloat && Subtarget->hasXMMInt()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000811 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000812
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000813 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
814 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000815 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
816 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
817 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
818 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000819
Owen Anderson825b72b2009-08-11 20:47:22 +0000820 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
821 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
822 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
823 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
824 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
825 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
826 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
827 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
828 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
829 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
830 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
831 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
832 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
833 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
834 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
835 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000836
Owen Anderson825b72b2009-08-11 20:47:22 +0000837 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
838 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
839 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
840 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000841
Owen Anderson825b72b2009-08-11 20:47:22 +0000842 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
843 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
844 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
845 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
846 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000847
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000848 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
849 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
850 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
851 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
852 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
853
Evan Cheng2c3ae372006-04-12 21:21:57 +0000854 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000855 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
856 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000857 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000858 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000859 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000860 // Do not attempt to custom lower non-128-bit vectors
861 if (!VT.is128BitVector())
862 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000863 setOperationAction(ISD::BUILD_VECTOR,
864 VT.getSimpleVT().SimpleTy, Custom);
865 setOperationAction(ISD::VECTOR_SHUFFLE,
866 VT.getSimpleVT().SimpleTy, Custom);
867 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
868 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000869 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000870
Owen Anderson825b72b2009-08-11 20:47:22 +0000871 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
872 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
873 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
874 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
875 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
876 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000877
Nate Begemancdd1eec2008-02-12 22:51:28 +0000878 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000879 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
880 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000881 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000882
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000883 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000884 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
885 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000886 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000887
888 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000889 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000890 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000891
Owen Andersond6662ad2009-08-10 20:46:15 +0000892 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000893 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000894 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000895 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000896 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000897 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000898 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000899 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000900 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000901 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000902 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000903
Owen Anderson825b72b2009-08-11 20:47:22 +0000904 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000905
Evan Cheng2c3ae372006-04-12 21:21:57 +0000906 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000907 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
908 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
909 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
910 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000911
Owen Anderson825b72b2009-08-11 20:47:22 +0000912 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
913 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000914 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000915
Nate Begeman14d12ca2008-02-11 04:19:36 +0000916 if (Subtarget->hasSSE41()) {
Dale Johannesen54feef22010-05-27 20:12:41 +0000917 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
918 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
919 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
920 setOperationAction(ISD::FRINT, MVT::f32, Legal);
921 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
922 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
923 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
924 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
925 setOperationAction(ISD::FRINT, MVT::f64, Legal);
926 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
927
Nate Begeman14d12ca2008-02-11 04:19:36 +0000928 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000929 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000930
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000931 // Can turn SHL into an integer multiply.
932 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Nate Begeman51409212010-07-28 00:21:48 +0000933 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000934
Nate Begeman14d12ca2008-02-11 04:19:36 +0000935 // i8 and i16 vectors are custom , because the source register and source
936 // source memory operand types are not the same width. f32 vectors are
937 // custom since the immediate controlling the insert encodes additional
938 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000939 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
940 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
941 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
942 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000943
Owen Anderson825b72b2009-08-11 20:47:22 +0000944 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
945 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
946 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
947 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000948
949 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000950 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
951 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000952 }
953 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000954
Nadav Rotem43012222011-05-11 08:12:09 +0000955 if (Subtarget->hasSSE2()) {
956 setOperationAction(ISD::SRL, MVT::v2i64, Custom);
957 setOperationAction(ISD::SRL, MVT::v4i32, Custom);
958 setOperationAction(ISD::SRL, MVT::v16i8, Custom);
959
960 setOperationAction(ISD::SHL, MVT::v2i64, Custom);
961 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
962 setOperationAction(ISD::SHL, MVT::v8i16, Custom);
963
964 setOperationAction(ISD::SRA, MVT::v4i32, Custom);
965 setOperationAction(ISD::SRA, MVT::v8i16, Custom);
966 }
967
Chris Lattnera34b3cf2010-12-19 20:03:11 +0000968 if (Subtarget->hasSSE42())
Owen Anderson825b72b2009-08-11 20:47:22 +0000969 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000970
David Greene9b9838d2009-06-29 16:47:10 +0000971 if (!UseSoftFloat && Subtarget->hasAVX()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000972 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
973 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
974 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
975 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
Bruno Cardoso Lopes405f11b2010-08-10 01:43:16 +0000976 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000977
Owen Anderson825b72b2009-08-11 20:47:22 +0000978 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
979 setOperationAction(ISD::LOAD, MVT::v8i32, Legal);
980 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
981 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +0000982
Owen Anderson825b72b2009-08-11 20:47:22 +0000983 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
984 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
985 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
986 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
987 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
988 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000989
Owen Anderson825b72b2009-08-11 20:47:22 +0000990 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
991 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
992 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
993 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
994 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
995 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000996
David Greene54d8eba2011-01-27 22:38:56 +0000997 // Custom lower build_vector, vector_shuffle, scalar_to_vector,
998 // insert_vector_elt extract_subvector and extract_vector_elt for
999 // 256-bit types.
1000 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1001 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE;
1002 ++i) {
1003 MVT::SimpleValueType VT = (MVT::SimpleValueType)i;
1004 // Do not attempt to custom lower non-256-bit vectors
1005 if (!isPowerOf2_32(MVT(VT).getVectorNumElements())
1006 || (MVT(VT).getSizeInBits() < 256))
David Greene9b9838d2009-06-29 16:47:10 +00001007 continue;
David Greene9b9838d2009-06-29 16:47:10 +00001008 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
1009 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
David Greene54d8eba2011-01-27 22:38:56 +00001010 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001011 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
David Greene54d8eba2011-01-27 22:38:56 +00001012 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001013 }
David Greene54d8eba2011-01-27 22:38:56 +00001014 // Custom-lower insert_subvector and extract_subvector based on
1015 // the result type.
1016 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1017 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE;
1018 ++i) {
1019 MVT::SimpleValueType VT = (MVT::SimpleValueType)i;
1020 // Do not attempt to custom lower non-256-bit vectors
1021 if (!isPowerOf2_32(MVT(VT).getVectorNumElements()))
David Greene9b9838d2009-06-29 16:47:10 +00001022 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001023
1024 if (MVT(VT).getSizeInBits() == 128) {
1025 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001026 }
David Greene54d8eba2011-01-27 22:38:56 +00001027 else if (MVT(VT).getSizeInBits() == 256) {
1028 setOperationAction(ISD::INSERT_SUBVECTOR, VT, Custom);
1029 }
David Greene9b9838d2009-06-29 16:47:10 +00001030 }
1031
David Greene54d8eba2011-01-27 22:38:56 +00001032 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1033 // Don't promote loads because we need them for VPERM vector index versions.
1034
1035 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1036 VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE;
1037 VT++) {
1038 if (!isPowerOf2_32(MVT((MVT::SimpleValueType)VT).getVectorNumElements())
1039 || (MVT((MVT::SimpleValueType)VT).getSizeInBits() < 256))
1040 continue;
1041 setOperationAction(ISD::AND, (MVT::SimpleValueType)VT, Promote);
1042 AddPromotedToType (ISD::AND, (MVT::SimpleValueType)VT, MVT::v4i64);
1043 setOperationAction(ISD::OR, (MVT::SimpleValueType)VT, Promote);
1044 AddPromotedToType (ISD::OR, (MVT::SimpleValueType)VT, MVT::v4i64);
1045 setOperationAction(ISD::XOR, (MVT::SimpleValueType)VT, Promote);
1046 AddPromotedToType (ISD::XOR, (MVT::SimpleValueType)VT, MVT::v4i64);
1047 //setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Promote);
1048 //AddPromotedToType (ISD::LOAD, (MVT::SimpleValueType)VT, MVT::v4i64);
1049 setOperationAction(ISD::SELECT, (MVT::SimpleValueType)VT, Promote);
1050 AddPromotedToType (ISD::SELECT, (MVT::SimpleValueType)VT, MVT::v4i64);
1051 }
David Greene9b9838d2009-06-29 16:47:10 +00001052 }
1053
Evan Cheng6be2c582006-04-05 23:38:46 +00001054 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001055 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001056
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001057
Eli Friedman962f5492010-06-02 19:35:46 +00001058 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1059 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001060 //
Eli Friedman962f5492010-06-02 19:35:46 +00001061 // FIXME: We really should do custom legalization for addition and
1062 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1063 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001064 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1065 // Add/Sub/Mul with overflow operations are custom lowered.
1066 MVT VT = IntVTs[i];
1067 setOperationAction(ISD::SADDO, VT, Custom);
1068 setOperationAction(ISD::UADDO, VT, Custom);
1069 setOperationAction(ISD::SSUBO, VT, Custom);
1070 setOperationAction(ISD::USUBO, VT, Custom);
1071 setOperationAction(ISD::SMULO, VT, Custom);
1072 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001073 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001074
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001075 // There are no 8-bit 3-address imul/mul instructions
1076 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1077 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001078
Evan Chengd54f2d52009-03-31 19:38:51 +00001079 if (!Subtarget->is64Bit()) {
1080 // These libcalls are not available in 32-bit.
1081 setLibcallName(RTLIB::SHL_I128, 0);
1082 setLibcallName(RTLIB::SRL_I128, 0);
1083 setLibcallName(RTLIB::SRA_I128, 0);
1084 }
1085
Evan Cheng206ee9d2006-07-07 08:33:52 +00001086 // We have target-specific dag combine patterns for the following nodes:
1087 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001088 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +00001089 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +00001090 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001091 setTargetDAGCombine(ISD::SHL);
1092 setTargetDAGCombine(ISD::SRA);
1093 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001094 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001095 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001096 setTargetDAGCombine(ISD::ADD);
1097 setTargetDAGCombine(ISD::SUB);
Chris Lattner149a4e52008-02-22 02:09:43 +00001098 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001099 setTargetDAGCombine(ISD::ZERO_EXTEND);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001100 if (Subtarget->is64Bit())
1101 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001102
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001103 computeRegisterProperties();
1104
Evan Cheng05219282011-01-06 06:52:41 +00001105 // On Darwin, -Os means optimize for size without hurting performance,
1106 // do not reduce the limit.
Dan Gohman87060f52008-06-30 21:00:56 +00001107 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001108 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
Evan Cheng255f20f2010-04-01 06:04:33 +00001109 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001110 maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1111 maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1112 maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Evan Chengfb8075d2008-02-28 00:43:03 +00001113 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +00001114 benefitFromCodePlacementOpt = true;
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001115
1116 setPrefFunctionAlignment(4);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001117}
1118
Scott Michel5b8f82e2008-03-10 15:42:14 +00001119
Owen Anderson825b72b2009-08-11 20:47:22 +00001120MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1121 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +00001122}
1123
1124
Evan Cheng29286502008-01-23 23:17:41 +00001125/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1126/// the desired ByVal argument alignment.
1127static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
1128 if (MaxAlign == 16)
1129 return;
1130 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1131 if (VTy->getBitWidth() == 128)
1132 MaxAlign = 16;
Evan Cheng29286502008-01-23 23:17:41 +00001133 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1134 unsigned EltAlign = 0;
1135 getMaxByValAlign(ATy->getElementType(), EltAlign);
1136 if (EltAlign > MaxAlign)
1137 MaxAlign = EltAlign;
1138 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
1139 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1140 unsigned EltAlign = 0;
1141 getMaxByValAlign(STy->getElementType(i), EltAlign);
1142 if (EltAlign > MaxAlign)
1143 MaxAlign = EltAlign;
1144 if (MaxAlign == 16)
1145 break;
1146 }
1147 }
1148 return;
1149}
1150
1151/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1152/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001153/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1154/// are at 4-byte boundaries.
Evan Cheng29286502008-01-23 23:17:41 +00001155unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001156 if (Subtarget->is64Bit()) {
1157 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001158 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001159 if (TyAlign > 8)
1160 return TyAlign;
1161 return 8;
1162 }
1163
Evan Cheng29286502008-01-23 23:17:41 +00001164 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001165 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001166 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001167 return Align;
1168}
Chris Lattner2b02a442007-02-25 08:29:00 +00001169
Evan Chengf0df0312008-05-15 08:39:06 +00001170/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001171/// and store operations as a result of memset, memcpy, and memmove
1172/// lowering. If DstAlign is zero that means it's safe to destination
1173/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1174/// means there isn't a need to check it against alignment requirement,
1175/// probably because the source does not need to be loaded. If
1176/// 'NonScalarIntSafe' is true, that means it's safe to return a
1177/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1178/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1179/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001180/// It returns EVT::Other if the type should be determined using generic
1181/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001182EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001183X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1184 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001185 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001186 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001187 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001188 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1189 // linux. This is because the stack realignment code can't handle certain
1190 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001191 const Function *F = MF.getFunction();
Evan Chenga5e13622011-01-07 19:35:30 +00001192 if (NonScalarIntSafe &&
1193 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001194 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001195 (Subtarget->isUnalignedMemAccessFast() ||
1196 ((DstAlign == 0 || DstAlign >= 16) &&
1197 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001198 Subtarget->getStackAlignment() >= 16) {
1199 if (Subtarget->hasSSE2())
1200 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001201 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001202 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001203 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001204 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001205 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001206 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001207 // Do not use f64 to lower memcpy if source is string constant. It's
1208 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001209 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001210 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001211 }
Evan Chengf0df0312008-05-15 08:39:06 +00001212 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001213 return MVT::i64;
1214 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001215}
1216
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001217/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1218/// current function. The returned value is a member of the
1219/// MachineJumpTableInfo::JTEntryKind enum.
1220unsigned X86TargetLowering::getJumpTableEncoding() const {
1221 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1222 // symbol.
1223 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1224 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001225 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001226
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001227 // Otherwise, use the normal jump table encoding heuristics.
1228 return TargetLowering::getJumpTableEncoding();
1229}
1230
Chris Lattnerc64daab2010-01-26 05:02:42 +00001231const MCExpr *
1232X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1233 const MachineBasicBlock *MBB,
1234 unsigned uid,MCContext &Ctx) const{
1235 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1236 Subtarget->isPICStyleGOT());
1237 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1238 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001239 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1240 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001241}
1242
Evan Chengcc415862007-11-09 01:32:10 +00001243/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1244/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001245SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001246 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001247 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001248 // This doesn't have DebugLoc associated with it, but is not really the
1249 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001250 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001251 return Table;
1252}
1253
Chris Lattner589c6f62010-01-26 06:28:43 +00001254/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1255/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1256/// MCExpr.
1257const MCExpr *X86TargetLowering::
1258getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1259 MCContext &Ctx) const {
1260 // X86-64 uses RIP relative addressing based on the jump table label.
1261 if (Subtarget->isPICStyleRIPRel())
1262 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1263
1264 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001265 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001266}
1267
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001268// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001269std::pair<const TargetRegisterClass*, uint8_t>
1270X86TargetLowering::findRepresentativeClass(EVT VT) const{
1271 const TargetRegisterClass *RRC = 0;
1272 uint8_t Cost = 1;
1273 switch (VT.getSimpleVT().SimpleTy) {
1274 default:
1275 return TargetLowering::findRepresentativeClass(VT);
1276 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1277 RRC = (Subtarget->is64Bit()
1278 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1279 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001280 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001281 RRC = X86::VR64RegisterClass;
1282 break;
1283 case MVT::f32: case MVT::f64:
1284 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1285 case MVT::v4f32: case MVT::v2f64:
1286 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1287 case MVT::v4f64:
1288 RRC = X86::VR128RegisterClass;
1289 break;
1290 }
1291 return std::make_pair(RRC, Cost);
1292}
1293
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001294bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1295 unsigned &Offset) const {
1296 if (!Subtarget->isTargetLinux())
1297 return false;
1298
1299 if (Subtarget->is64Bit()) {
1300 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1301 Offset = 0x28;
1302 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1303 AddressSpace = 256;
1304 else
1305 AddressSpace = 257;
1306 } else {
1307 // %gs:0x14 on i386
1308 Offset = 0x14;
1309 AddressSpace = 256;
1310 }
1311 return true;
1312}
1313
1314
Chris Lattner2b02a442007-02-25 08:29:00 +00001315//===----------------------------------------------------------------------===//
1316// Return Value Calling Convention Implementation
1317//===----------------------------------------------------------------------===//
1318
Chris Lattner59ed56b2007-02-28 04:55:35 +00001319#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001320
Michael J. Spencerec38de22010-10-10 22:04:20 +00001321bool
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001322X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001323 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001324 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001325 SmallVector<CCValAssign, 16> RVLocs;
1326 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001327 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001328 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001329}
1330
Dan Gohman98ca4f22009-08-05 01:29:28 +00001331SDValue
1332X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001333 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001334 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001335 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001336 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001337 MachineFunction &MF = DAG.getMachineFunction();
1338 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001339
Chris Lattner9774c912007-02-27 05:28:59 +00001340 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001341 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1342 RVLocs, *DAG.getContext());
1343 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001344
Evan Chengdcea1632010-02-04 02:40:39 +00001345 // Add the regs to the liveout set for the function.
1346 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1347 for (unsigned i = 0; i != RVLocs.size(); ++i)
1348 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1349 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001350
Dan Gohman475871a2008-07-27 21:46:04 +00001351 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001352
Dan Gohman475871a2008-07-27 21:46:04 +00001353 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001354 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1355 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001356 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1357 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001358
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001359 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001360 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1361 CCValAssign &VA = RVLocs[i];
1362 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001363 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001364 EVT ValVT = ValToCopy.getValueType();
1365
Dale Johannesenc4510512010-09-24 19:05:48 +00001366 // If this is x86-64, and we disabled SSE, we can't return FP values,
1367 // or SSE or MMX vectors.
1368 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1369 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001370 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001371 report_fatal_error("SSE register return with SSE disabled");
1372 }
1373 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1374 // llvm-gcc has never done it right and no one has noticed, so this
1375 // should be OK for now.
1376 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001377 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001378 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001379
Chris Lattner447ff682008-03-11 03:23:40 +00001380 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1381 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001382 if (VA.getLocReg() == X86::ST0 ||
1383 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001384 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1385 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001386 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001387 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001388 RetOps.push_back(ValToCopy);
1389 // Don't emit a copytoreg.
1390 continue;
1391 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001392
Evan Cheng242b38b2009-02-23 09:03:22 +00001393 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1394 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001395 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001396 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001397 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001398 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001399 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1400 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001401 // If we don't have SSE2 available, convert to v4f32 so the generated
1402 // register is legal.
1403 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001404 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001405 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001406 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001407 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001408
Dale Johannesendd64c412009-02-04 00:33:20 +00001409 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001410 Flag = Chain.getValue(1);
1411 }
Dan Gohman61a92132008-04-21 23:59:07 +00001412
1413 // The x86-64 ABI for returning structs by value requires that we copy
1414 // the sret argument into %rax for the return. We saved the argument into
1415 // a virtual register in the entry block, so now we copy the value out
1416 // and into %rax.
1417 if (Subtarget->is64Bit() &&
1418 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1419 MachineFunction &MF = DAG.getMachineFunction();
1420 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1421 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001422 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001423 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001424 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001425
Dale Johannesendd64c412009-02-04 00:33:20 +00001426 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001427 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001428
1429 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001430 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001431 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001432
Chris Lattner447ff682008-03-11 03:23:40 +00001433 RetOps[0] = Chain; // Update chain.
1434
1435 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001436 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001437 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001438
1439 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001440 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001441}
1442
Evan Cheng3d2125c2010-11-30 23:55:39 +00001443bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1444 if (N->getNumValues() != 1)
1445 return false;
1446 if (!N->hasNUsesOfValue(1, 0))
1447 return false;
1448
1449 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001450 if (Copy->getOpcode() != ISD::CopyToReg &&
1451 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001452 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001453
1454 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001455 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001456 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001457 if (UI->getOpcode() != X86ISD::RET_FLAG)
1458 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001459 HasRet = true;
1460 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001461
Evan Cheng1bf891a2010-12-01 22:59:46 +00001462 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001463}
1464
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001465EVT
1466X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001467 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001468 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001469 // TODO: Is this also valid on 32-bit?
1470 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001471 ReturnMVT = MVT::i8;
1472 else
1473 ReturnMVT = MVT::i32;
1474
1475 EVT MinVT = getRegisterType(Context, ReturnMVT);
1476 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001477}
1478
Dan Gohman98ca4f22009-08-05 01:29:28 +00001479/// LowerCallResult - Lower the result values of a call into the
1480/// appropriate copies out of appropriate physical registers.
1481///
1482SDValue
1483X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001484 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001485 const SmallVectorImpl<ISD::InputArg> &Ins,
1486 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001487 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001488
Chris Lattnere32bbf62007-02-28 07:09:55 +00001489 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001490 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001491 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001492 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +00001493 RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001494 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001495
Chris Lattner3085e152007-02-25 08:59:22 +00001496 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001497 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001498 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001499 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001500
Torok Edwin3f142c32009-02-01 18:15:56 +00001501 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001502 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001503 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001504 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001505 }
1506
Evan Cheng79fb3b42009-02-20 20:43:02 +00001507 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001508
1509 // If this is a call to a function that returns an fp value on the floating
1510 // point stack, we must guarantee the the value is popped from the stack, so
1511 // a CopyFromReg is not good enough - the copy instruction may be eliminated
1512 // if the return value is not used. We use the FpGET_ST0 instructions
1513 // instead.
1514 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1515 // If we prefer to use the value in xmm registers, copy it out as f80 and
1516 // use a truncate to move it from fp stack reg to xmm reg.
1517 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1518 bool isST0 = VA.getLocReg() == X86::ST0;
1519 unsigned Opc = 0;
1520 if (CopyVT == MVT::f32) Opc = isST0 ? X86::FpGET_ST0_32:X86::FpGET_ST1_32;
1521 if (CopyVT == MVT::f64) Opc = isST0 ? X86::FpGET_ST0_64:X86::FpGET_ST1_64;
1522 if (CopyVT == MVT::f80) Opc = isST0 ? X86::FpGET_ST0_80:X86::FpGET_ST1_80;
1523 SDValue Ops[] = { Chain, InFlag };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001524 Chain = SDValue(DAG.getMachineNode(Opc, dl, CopyVT, MVT::Other, MVT::Glue,
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001525 Ops, 2), 1);
1526 Val = Chain.getValue(0);
1527
1528 // Round the f80 to the right size, which also moves it to the appropriate
1529 // xmm register.
1530 if (CopyVT != VA.getValVT())
1531 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1532 // This truncation won't change the value.
1533 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001534 } else {
1535 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1536 CopyVT, InFlag).getValue(1);
1537 Val = Chain.getValue(0);
1538 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001539 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001540 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001541 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001542
Dan Gohman98ca4f22009-08-05 01:29:28 +00001543 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001544}
1545
1546
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001547//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001548// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001549//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001550// StdCall calling convention seems to be standard for many Windows' API
1551// routines and around. It differs from C calling convention just a little:
1552// callee should clean up the stack, not caller. Symbols should be also
1553// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001554// For info on fast calling convention see Fast Calling Convention (tail call)
1555// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001556
Dan Gohman98ca4f22009-08-05 01:29:28 +00001557/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001558/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001559static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1560 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001561 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001562
Dan Gohman98ca4f22009-08-05 01:29:28 +00001563 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001564}
1565
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001566/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001567/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001568static bool
1569ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1570 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001571 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001572
Dan Gohman98ca4f22009-08-05 01:29:28 +00001573 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001574}
1575
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001576/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1577/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001578/// the specific parameter attribute. The copy will be passed as a byval
1579/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001580static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001581CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001582 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1583 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001584 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001585
Dale Johannesendd64c412009-02-04 00:33:20 +00001586 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00001587 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001588 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001589}
1590
Chris Lattner29689432010-03-11 00:22:57 +00001591/// IsTailCallConvention - Return true if the calling convention is one that
1592/// supports tail call optimization.
1593static bool IsTailCallConvention(CallingConv::ID CC) {
1594 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1595}
1596
Evan Cheng485fafc2011-03-21 01:19:09 +00001597bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1598 if (!CI->isTailCall())
1599 return false;
1600
1601 CallSite CS(CI);
1602 CallingConv::ID CalleeCC = CS.getCallingConv();
1603 if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1604 return false;
1605
1606 return true;
1607}
1608
Evan Cheng0c439eb2010-01-27 00:07:07 +00001609/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1610/// a tailcall target by changing its ABI.
1611static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001612 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001613}
1614
Dan Gohman98ca4f22009-08-05 01:29:28 +00001615SDValue
1616X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001617 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001618 const SmallVectorImpl<ISD::InputArg> &Ins,
1619 DebugLoc dl, SelectionDAG &DAG,
1620 const CCValAssign &VA,
1621 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001622 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001623 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001624 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001625 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001626 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001627 EVT ValVT;
1628
1629 // If value is passed by pointer we have address passed instead of the value
1630 // itself.
1631 if (VA.getLocInfo() == CCValAssign::Indirect)
1632 ValVT = VA.getLocVT();
1633 else
1634 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001635
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001636 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001637 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001638 // In case of tail call optimization mark all arguments mutable. Since they
1639 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001640 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00001641 unsigned Bytes = Flags.getByValSize();
1642 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1643 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001644 return DAG.getFrameIndex(FI, getPointerTy());
1645 } else {
1646 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001647 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001648 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1649 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001650 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001651 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001652 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001653}
1654
Dan Gohman475871a2008-07-27 21:46:04 +00001655SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001656X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001657 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001658 bool isVarArg,
1659 const SmallVectorImpl<ISD::InputArg> &Ins,
1660 DebugLoc dl,
1661 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001662 SmallVectorImpl<SDValue> &InVals)
1663 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001664 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001665 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001666
Gordon Henriksen86737662008-01-05 16:56:59 +00001667 const Function* Fn = MF.getFunction();
1668 if (Fn->hasExternalLinkage() &&
1669 Subtarget->isTargetCygMing() &&
1670 Fn->getName() == "main")
1671 FuncInfo->setForceFramePointer(true);
1672
Evan Cheng1bc78042006-04-26 01:20:17 +00001673 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001674 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001675 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001676
Chris Lattner29689432010-03-11 00:22:57 +00001677 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1678 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001679
Chris Lattner638402b2007-02-28 07:00:42 +00001680 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001681 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001682 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1683 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001684
1685 // Allocate shadow area for Win64
1686 if (IsWin64) {
1687 CCInfo.AllocateStack(32, 8);
1688 }
1689
Duncan Sands45907662010-10-31 13:21:44 +00001690 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001691
Chris Lattnerf39f7712007-02-28 05:46:49 +00001692 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001693 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001694 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1695 CCValAssign &VA = ArgLocs[i];
1696 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1697 // places.
1698 assert(VA.getValNo() != LastVal &&
1699 "Don't support value assigned to multiple locs yet");
1700 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001701
Chris Lattnerf39f7712007-02-28 05:46:49 +00001702 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001703 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001704 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001705 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001706 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001707 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001708 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001709 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001710 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001711 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001712 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001713 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1714 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001715 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001716 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001717 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001718 RC = X86::VR64RegisterClass;
1719 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001720 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001721
Devang Patel68e6bee2011-02-21 23:21:26 +00001722 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001723 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001724
Chris Lattnerf39f7712007-02-28 05:46:49 +00001725 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1726 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1727 // right size.
1728 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001729 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001730 DAG.getValueType(VA.getValVT()));
1731 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001732 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001733 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001734 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001735 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001736
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001737 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001738 // Handle MMX values passed in XMM regs.
1739 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001740 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1741 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001742 } else
1743 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001744 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001745 } else {
1746 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001747 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001748 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001749
1750 // If value is passed via pointer - do a load.
1751 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001752 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1753 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001754
Dan Gohman98ca4f22009-08-05 01:29:28 +00001755 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001756 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001757
Dan Gohman61a92132008-04-21 23:59:07 +00001758 // The x86-64 ABI for returning structs by value requires that we copy
1759 // the sret argument into %rax for the return. Save the argument into
1760 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001761 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001762 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1763 unsigned Reg = FuncInfo->getSRetReturnReg();
1764 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001765 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001766 FuncInfo->setSRetReturnReg(Reg);
1767 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001768 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001769 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001770 }
1771
Chris Lattnerf39f7712007-02-28 05:46:49 +00001772 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001773 // Align stack specially for tail calls.
1774 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001775 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001776
Evan Cheng1bc78042006-04-26 01:20:17 +00001777 // If the function takes variable number of arguments, make a frame index for
1778 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001779 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001780 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1781 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001782 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001783 }
1784 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001785 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1786
1787 // FIXME: We should really autogenerate these arrays
1788 static const unsigned GPR64ArgRegsWin64[] = {
1789 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001790 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001791 static const unsigned GPR64ArgRegs64Bit[] = {
1792 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1793 };
1794 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001795 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1796 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1797 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001798 const unsigned *GPR64ArgRegs;
1799 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001800
1801 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001802 // The XMM registers which might contain var arg parameters are shadowed
1803 // in their paired GPR. So we only need to save the GPR to their home
1804 // slots.
1805 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001806 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001807 } else {
1808 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1809 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001810
1811 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001812 }
1813 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1814 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001815
Devang Patel578efa92009-06-05 21:57:13 +00001816 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001817 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001818 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001819 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001820 "SSE register cannot be used when SSE is disabled!");
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001821 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001822 // Kernel mode asks for SSE to be disabled, so don't push them
1823 // on the stack.
1824 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001825
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001826 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001827 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001828 // Get to the caller-allocated home save location. Add 8 to account
1829 // for the return address.
1830 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001831 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001832 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001833 // Fixup to set vararg frame on shadow area (4 x i64).
1834 if (NumIntRegs < 4)
1835 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001836 } else {
1837 // For X86-64, if there are vararg parameters that are passed via
1838 // registers, then we must store them to their spots on the stack so they
1839 // may be loaded by deferencing the result of va_next.
1840 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1841 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1842 FuncInfo->setRegSaveFrameIndex(
1843 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001844 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001845 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001846
Gordon Henriksen86737662008-01-05 16:56:59 +00001847 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001848 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001849 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1850 getPointerTy());
1851 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001852 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001853 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1854 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001855 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001856 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001857 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001858 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001859 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001860 MachinePointerInfo::getFixedStack(
1861 FuncInfo->getRegSaveFrameIndex(), Offset),
1862 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001863 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001864 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001865 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001866
Dan Gohmanface41a2009-08-16 21:24:25 +00001867 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1868 // Now store the XMM (fp + vector) parameter registers.
1869 SmallVector<SDValue, 11> SaveXMMOps;
1870 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001871
Devang Patel68e6bee2011-02-21 23:21:26 +00001872 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001873 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1874 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001875
Dan Gohman1e93df62010-04-17 14:41:14 +00001876 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1877 FuncInfo->getRegSaveFrameIndex()));
1878 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1879 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001880
Dan Gohmanface41a2009-08-16 21:24:25 +00001881 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001882 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001883 X86::VR128RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001884 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1885 SaveXMMOps.push_back(Val);
1886 }
1887 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1888 MVT::Other,
1889 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001890 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001891
1892 if (!MemOps.empty())
1893 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1894 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001895 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001896 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001897
Gordon Henriksen86737662008-01-05 16:56:59 +00001898 // Some CCs need callee pop.
Dan Gohman4d3d6e12010-05-27 18:43:40 +00001899 if (Subtarget->IsCalleePop(isVarArg, CallConv)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001900 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001901 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001902 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001903 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001904 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001905 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001906 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001907
Gordon Henriksen86737662008-01-05 16:56:59 +00001908 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001909 // RegSaveFrameIndex is X86-64 only.
1910 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001911 if (CallConv == CallingConv::X86_FastCall ||
1912 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001913 // fastcc functions can't have varargs.
1914 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001915 }
Evan Cheng25caf632006-05-23 21:06:34 +00001916
Dan Gohman98ca4f22009-08-05 01:29:28 +00001917 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001918}
1919
Dan Gohman475871a2008-07-27 21:46:04 +00001920SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001921X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1922 SDValue StackPtr, SDValue Arg,
1923 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001924 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001925 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001926 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001927 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001928 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001929 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001930 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001931
1932 return DAG.getStore(Chain, dl, Arg, PtrOff,
1933 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001934 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001935}
1936
Bill Wendling64e87322009-01-16 19:25:27 +00001937/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001938/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001939SDValue
1940X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001941 SDValue &OutRetAddr, SDValue Chain,
1942 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001943 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001944 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001945 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001946 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001947
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001948 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001949 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1950 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001951 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001952}
1953
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001954/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001955/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001956static SDValue
1957EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001958 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001959 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001960 // Store the return address to the appropriate stack slot.
1961 if (!FPDiff) return Chain;
1962 // Calculate the new stack slot for the return address.
1963 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001964 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001965 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001966 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001967 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001968 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001969 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001970 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001971 return Chain;
1972}
1973
Dan Gohman98ca4f22009-08-05 01:29:28 +00001974SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001975X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001976 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001977 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001978 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001979 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001980 const SmallVectorImpl<ISD::InputArg> &Ins,
1981 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001982 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001983 MachineFunction &MF = DAG.getMachineFunction();
1984 bool Is64Bit = Subtarget->is64Bit();
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00001985 bool IsWin64 = Subtarget->isTargetWin64();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001986 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001987 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001988
Evan Cheng5f941932010-02-05 02:21:12 +00001989 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001990 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001991 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1992 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001993 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001994
1995 // Sibcalls are automatically detected tailcalls which do not require
1996 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001997 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001998 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001999
2000 if (isTailCall)
2001 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00002002 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00002003
Chris Lattner29689432010-03-11 00:22:57 +00002004 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2005 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002006
Chris Lattner638402b2007-02-28 07:00:42 +00002007 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002008 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002009 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
2010 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002011
2012 // Allocate shadow area for Win64
2013 if (IsWin64) {
2014 CCInfo.AllocateStack(32, 8);
2015 }
2016
Duncan Sands45907662010-10-31 13:21:44 +00002017 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002018
Chris Lattner423c5f42007-02-28 05:31:48 +00002019 // Get a count of how many bytes are to be pushed on the stack.
2020 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002021 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002022 // This is a sibcall. The memory operands are available in caller's
2023 // own caller's stack.
2024 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00002025 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002026 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002027
Gordon Henriksen86737662008-01-05 16:56:59 +00002028 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002029 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002030 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00002031 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00002032 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
2033 FPDiff = NumBytesCallerPushed - NumBytes;
2034
2035 // Set the delta of movement of the returnaddr stackslot.
2036 // But only set if delta is greater than previous delta.
2037 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2038 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2039 }
2040
Evan Chengf22f9b32010-02-06 03:28:46 +00002041 if (!IsSibcall)
2042 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002043
Dan Gohman475871a2008-07-27 21:46:04 +00002044 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002045 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002046 if (isTailCall && FPDiff)
2047 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2048 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002049
Dan Gohman475871a2008-07-27 21:46:04 +00002050 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2051 SmallVector<SDValue, 8> MemOpChains;
2052 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002053
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002054 // Walk the register/memloc assignments, inserting copies/loads. In the case
2055 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00002056 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2057 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002058 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002059 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002060 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002061 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002062
Chris Lattner423c5f42007-02-28 05:31:48 +00002063 // Promote the value if needed.
2064 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002065 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002066 case CCValAssign::Full: break;
2067 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002068 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002069 break;
2070 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002071 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002072 break;
2073 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002074 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2075 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002076 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002077 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2078 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002079 } else
2080 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2081 break;
2082 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002083 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002084 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002085 case CCValAssign::Indirect: {
2086 // Store the argument.
2087 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002088 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002089 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002090 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002091 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002092 Arg = SpillSlot;
2093 break;
2094 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002095 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002096
Chris Lattner423c5f42007-02-28 05:31:48 +00002097 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002098 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2099 if (isVarArg && IsWin64) {
2100 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2101 // shadow reg if callee is a varargs function.
2102 unsigned ShadowReg = 0;
2103 switch (VA.getLocReg()) {
2104 case X86::XMM0: ShadowReg = X86::RCX; break;
2105 case X86::XMM1: ShadowReg = X86::RDX; break;
2106 case X86::XMM2: ShadowReg = X86::R8; break;
2107 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002108 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002109 if (ShadowReg)
2110 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002111 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002112 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002113 assert(VA.isMemLoc());
2114 if (StackPtr.getNode() == 0)
2115 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2116 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2117 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002118 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002119 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002120
Evan Cheng32fe1032006-05-25 00:59:30 +00002121 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002122 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002123 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002124
Evan Cheng347d5f72006-04-28 21:29:37 +00002125 // Build a sequence of copy-to-reg nodes chained together with token chain
2126 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002127 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002128 // Tail call byval lowering might overwrite argument registers so in case of
2129 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002130 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002131 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002132 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002133 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002134 InFlag = Chain.getValue(1);
2135 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002136
Chris Lattner88e1fd52009-07-09 04:24:46 +00002137 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002138 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2139 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002140 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002141 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2142 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002143 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002144 InFlag);
2145 InFlag = Chain.getValue(1);
2146 } else {
2147 // If we are tail calling and generating PIC/GOT style code load the
2148 // address of the callee into ECX. The value in ecx is used as target of
2149 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2150 // for tail calls on PIC/GOT architectures. Normally we would just put the
2151 // address of GOT into ebx and then call target@PLT. But for tail calls
2152 // ebx would be restored (since ebx is callee saved) before jumping to the
2153 // target@PLT.
2154
2155 // Note: The actual moving to ECX is done further down.
2156 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2157 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2158 !G->getGlobal()->hasProtectedVisibility())
2159 Callee = LowerGlobalAddress(Callee, DAG);
2160 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002161 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002162 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002163 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002164
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002165 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002166 // From AMD64 ABI document:
2167 // For calls that may call functions that use varargs or stdargs
2168 // (prototype-less calls or calls to functions containing ellipsis (...) in
2169 // the declaration) %al is used as hidden argument to specify the number
2170 // of SSE registers used. The contents of %al do not need to match exactly
2171 // the number of registers, but must be an ubound on the number of SSE
2172 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002173
Gordon Henriksen86737662008-01-05 16:56:59 +00002174 // Count the number of XMM registers allocated.
2175 static const unsigned XMMArgRegs[] = {
2176 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2177 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2178 };
2179 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002180 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002181 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002182
Dale Johannesendd64c412009-02-04 00:33:20 +00002183 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002184 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002185 InFlag = Chain.getValue(1);
2186 }
2187
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002188
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002189 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002190 if (isTailCall) {
2191 // Force all the incoming stack arguments to be loaded from the stack
2192 // before any new outgoing arguments are stored to the stack, because the
2193 // outgoing stack slots may alias the incoming argument stack slots, and
2194 // the alias isn't otherwise explicit. This is slightly more conservative
2195 // than necessary, because it means that each store effectively depends
2196 // on every argument instead of just those arguments it would clobber.
2197 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2198
Dan Gohman475871a2008-07-27 21:46:04 +00002199 SmallVector<SDValue, 8> MemOpChains2;
2200 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002201 int FI = 0;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002202 // Do not flag preceding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002203 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002204 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002205 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2206 CCValAssign &VA = ArgLocs[i];
2207 if (VA.isRegLoc())
2208 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002209 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002210 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002211 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002212 // Create frame index.
2213 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002214 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002215 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002216 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002217
Duncan Sands276dcbd2008-03-21 09:14:45 +00002218 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002219 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002220 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002221 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002222 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002223 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002224 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002225
Dan Gohman98ca4f22009-08-05 01:29:28 +00002226 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2227 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002228 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002229 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002230 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002231 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002232 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002233 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002234 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002235 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002236 }
2237 }
2238
2239 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002240 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002241 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002242
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002243 // Copy arguments to their registers.
2244 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002245 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002246 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002247 InFlag = Chain.getValue(1);
2248 }
Dan Gohman475871a2008-07-27 21:46:04 +00002249 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002250
Gordon Henriksen86737662008-01-05 16:56:59 +00002251 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002252 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002253 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002254 }
2255
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002256 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2257 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2258 // In the 64-bit large code model, we have to make all calls
2259 // through a register, since the call instruction's 32-bit
2260 // pc-relative offset may not be large enough to hold the whole
2261 // address.
2262 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002263 // If the callee is a GlobalAddress node (quite common, every direct call
2264 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2265 // it.
2266
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002267 // We should use extra load for direct calls to dllimported functions in
2268 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002269 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002270 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002271 unsigned char OpFlags = 0;
Eric Christopherfd179292009-08-27 18:07:15 +00002272
Chris Lattner48a7d022009-07-09 05:02:21 +00002273 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2274 // external symbols most go through the PLT in PIC mode. If the symbol
2275 // has hidden or protected visibility, or if it is static or local, then
2276 // we don't need to use the PLT - we can directly call it.
2277 if (Subtarget->isTargetELF() &&
2278 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002279 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002280 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002281 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002282 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002283 (!Subtarget->getTargetTriple().isMacOSX() ||
2284 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002285 // PC-relative references to external symbols should go through $stub,
2286 // unless we're building with the leopard linker or later, which
2287 // automatically synthesizes these stubs.
2288 OpFlags = X86II::MO_DARWIN_STUB;
2289 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002290
Devang Patel0d881da2010-07-06 22:08:15 +00002291 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002292 G->getOffset(), OpFlags);
2293 }
Bill Wendling056292f2008-09-16 21:48:12 +00002294 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002295 unsigned char OpFlags = 0;
2296
Evan Cheng1bf891a2010-12-01 22:59:46 +00002297 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2298 // external symbols should go through the PLT.
2299 if (Subtarget->isTargetELF() &&
2300 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2301 OpFlags = X86II::MO_PLT;
2302 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002303 (!Subtarget->getTargetTriple().isMacOSX() ||
2304 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002305 // PC-relative references to external symbols should go through $stub,
2306 // unless we're building with the leopard linker or later, which
2307 // automatically synthesizes these stubs.
2308 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002309 }
Eric Christopherfd179292009-08-27 18:07:15 +00002310
Chris Lattner48a7d022009-07-09 05:02:21 +00002311 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2312 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002313 }
2314
Chris Lattnerd96d0722007-02-25 06:40:16 +00002315 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002316 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002317 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002318
Evan Chengf22f9b32010-02-06 03:28:46 +00002319 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002320 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2321 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002322 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002323 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002324
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002325 Ops.push_back(Chain);
2326 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002327
Dan Gohman98ca4f22009-08-05 01:29:28 +00002328 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002329 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002330
Gordon Henriksen86737662008-01-05 16:56:59 +00002331 // Add argument registers to the end of the list so that they are known live
2332 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002333 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2334 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2335 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002336
Evan Cheng586ccac2008-03-18 23:36:35 +00002337 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002338 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002339 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2340
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002341 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002342 if (Is64Bit && isVarArg && !IsWin64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002343 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002344
Gabor Greifba36cb52008-08-28 21:40:38 +00002345 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002346 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002347
Dan Gohman98ca4f22009-08-05 01:29:28 +00002348 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002349 // We used to do:
2350 //// If this is the first return lowered for this function, add the regs
2351 //// to the liveout set for the function.
2352 // This isn't right, although it's probably harmless on x86; liveouts
2353 // should be computed from returns not tail calls. Consider a void
2354 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002355 return DAG.getNode(X86ISD::TC_RETURN, dl,
2356 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002357 }
2358
Dale Johannesenace16102009-02-03 19:33:06 +00002359 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002360 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002361
Chris Lattner2d297092006-05-23 18:50:38 +00002362 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002363 unsigned NumBytesForCalleeToPush;
Dan Gohman4d3d6e12010-05-27 18:43:40 +00002364 if (Subtarget->IsCalleePop(isVarArg, CallConv))
Gordon Henriksen86737662008-01-05 16:56:59 +00002365 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002366 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002367 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002368 // pops the hidden struct pointer, so we have to push it back.
2369 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002370 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002371 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002372 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002373
Gordon Henriksenae636f82008-01-03 16:47:34 +00002374 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002375 if (!IsSibcall) {
2376 Chain = DAG.getCALLSEQ_END(Chain,
2377 DAG.getIntPtrConstant(NumBytes, true),
2378 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2379 true),
2380 InFlag);
2381 InFlag = Chain.getValue(1);
2382 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002383
Chris Lattner3085e152007-02-25 08:59:22 +00002384 // Handle result values, copying them out of physregs into vregs that we
2385 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002386 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2387 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002388}
2389
Evan Cheng25ab6902006-09-08 06:48:29 +00002390
2391//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002392// Fast Calling Convention (tail call) implementation
2393//===----------------------------------------------------------------------===//
2394
2395// Like std call, callee cleans arguments, convention except that ECX is
2396// reserved for storing the tail called function address. Only 2 registers are
2397// free for argument passing (inreg). Tail call optimization is performed
2398// provided:
2399// * tailcallopt is enabled
2400// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002401// On X86_64 architecture with GOT-style position independent code only local
2402// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002403// To keep the stack aligned according to platform abi the function
2404// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2405// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002406// If a tail called function callee has more arguments than the caller the
2407// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002408// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002409// original REtADDR, but before the saved framepointer or the spilled registers
2410// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2411// stack layout:
2412// arg1
2413// arg2
2414// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002415// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002416// move area ]
2417// (possible EBP)
2418// ESI
2419// EDI
2420// local1 ..
2421
2422/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2423/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002424unsigned
2425X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2426 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002427 MachineFunction &MF = DAG.getMachineFunction();
2428 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002429 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002430 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002431 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002432 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002433 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002434 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2435 // Number smaller than 12 so just add the difference.
2436 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2437 } else {
2438 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002439 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002440 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002441 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002442 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002443}
2444
Evan Cheng5f941932010-02-05 02:21:12 +00002445/// MatchingStackOffset - Return true if the given stack call argument is
2446/// already available in the same position (relatively) of the caller's
2447/// incoming argument stack.
2448static
2449bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2450 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2451 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002452 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2453 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002454 if (Arg.getOpcode() == ISD::CopyFromReg) {
2455 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002456 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002457 return false;
2458 MachineInstr *Def = MRI->getVRegDef(VR);
2459 if (!Def)
2460 return false;
2461 if (!Flags.isByVal()) {
2462 if (!TII->isLoadFromStackSlot(Def, FI))
2463 return false;
2464 } else {
2465 unsigned Opcode = Def->getOpcode();
2466 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2467 Def->getOperand(1).isFI()) {
2468 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002469 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002470 } else
2471 return false;
2472 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002473 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2474 if (Flags.isByVal())
2475 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002476 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002477 // define @foo(%struct.X* %A) {
2478 // tail call @bar(%struct.X* byval %A)
2479 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002480 return false;
2481 SDValue Ptr = Ld->getBasePtr();
2482 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2483 if (!FINode)
2484 return false;
2485 FI = FINode->getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002486 } else
2487 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002488
Evan Cheng4cae1332010-03-05 08:38:04 +00002489 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002490 if (!MFI->isFixedObjectIndex(FI))
2491 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002492 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002493}
2494
Dan Gohman98ca4f22009-08-05 01:29:28 +00002495/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2496/// for tail call optimization. Targets which want to do tail call
2497/// optimization should implement this function.
2498bool
2499X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002500 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002501 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002502 bool isCalleeStructRet,
2503 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002504 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002505 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002506 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002507 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002508 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002509 CalleeCC != CallingConv::C)
2510 return false;
2511
Evan Cheng7096ae42010-01-29 06:45:59 +00002512 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002513 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002514 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002515 CallingConv::ID CallerCC = CallerF->getCallingConv();
2516 bool CCMatch = CallerCC == CalleeCC;
2517
Dan Gohman1797ed52010-02-08 20:27:50 +00002518 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002519 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002520 return true;
2521 return false;
2522 }
2523
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002524 // Look for obvious safe cases to perform tail call optimization that do not
2525 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002526
Evan Cheng2c12cb42010-03-26 16:26:03 +00002527 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2528 // emit a special epilogue.
2529 if (RegInfo->needsStackRealignment(MF))
2530 return false;
2531
Evan Chenga375d472010-03-15 18:54:48 +00002532 // Also avoid sibcall optimization if either caller or callee uses struct
2533 // return semantics.
2534 if (isCalleeStructRet || isCallerStructRet)
2535 return false;
2536
Chad Rosier871f6642011-05-18 19:59:50 +00002537 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00002538 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00002539 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00002540
2541 // Optimizing for varargs on Win64 is unlikely to be safe without
2542 // additional testing.
2543 if (Subtarget->isTargetWin64())
2544 return false;
2545
Chad Rosier871f6642011-05-18 19:59:50 +00002546 SmallVector<CCValAssign, 16> ArgLocs;
2547 CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(),
2548 ArgLocs, *DAG.getContext());
2549
Chad Rosier871f6642011-05-18 19:59:50 +00002550 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2551 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2552 if (!ArgLocs[i].isRegLoc())
2553 return false;
2554 }
2555
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002556 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2557 // Therefore if it's not used by the call it is not safe to optimize this into
2558 // a sibcall.
2559 bool Unused = false;
2560 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2561 if (!Ins[i].Used) {
2562 Unused = true;
2563 break;
2564 }
2565 }
2566 if (Unused) {
2567 SmallVector<CCValAssign, 16> RVLocs;
2568 CCState CCInfo(CalleeCC, false, getTargetMachine(),
2569 RVLocs, *DAG.getContext());
2570 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002571 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002572 CCValAssign &VA = RVLocs[i];
2573 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2574 return false;
2575 }
2576 }
2577
Evan Cheng13617962010-04-30 01:12:32 +00002578 // If the calling conventions do not match, then we'd better make sure the
2579 // results are returned in the same way as what the caller expects.
2580 if (!CCMatch) {
2581 SmallVector<CCValAssign, 16> RVLocs1;
2582 CCState CCInfo1(CalleeCC, false, getTargetMachine(),
2583 RVLocs1, *DAG.getContext());
2584 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2585
2586 SmallVector<CCValAssign, 16> RVLocs2;
2587 CCState CCInfo2(CallerCC, false, getTargetMachine(),
2588 RVLocs2, *DAG.getContext());
2589 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2590
2591 if (RVLocs1.size() != RVLocs2.size())
2592 return false;
2593 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2594 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2595 return false;
2596 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2597 return false;
2598 if (RVLocs1[i].isRegLoc()) {
2599 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2600 return false;
2601 } else {
2602 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2603 return false;
2604 }
2605 }
2606 }
2607
Evan Chenga6bff982010-01-30 01:22:00 +00002608 // If the callee takes no arguments then go on to check the results of the
2609 // call.
2610 if (!Outs.empty()) {
2611 // Check if stack adjustment is needed. For now, do not do this if any
2612 // argument is passed on the stack.
2613 SmallVector<CCValAssign, 16> ArgLocs;
2614 CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(),
2615 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002616
2617 // Allocate shadow area for Win64
2618 if (Subtarget->isTargetWin64()) {
2619 CCInfo.AllocateStack(32, 8);
2620 }
2621
Duncan Sands45907662010-10-31 13:21:44 +00002622 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00002623 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00002624 MachineFunction &MF = DAG.getMachineFunction();
2625 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2626 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00002627
2628 // Check if the arguments are already laid out in the right way as
2629 // the caller's fixed stack objects.
2630 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002631 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2632 const X86InstrInfo *TII =
2633 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002634 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2635 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002636 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002637 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002638 if (VA.getLocInfo() == CCValAssign::Indirect)
2639 return false;
2640 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002641 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2642 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002643 return false;
2644 }
2645 }
2646 }
Evan Cheng9c044672010-05-29 01:35:22 +00002647
2648 // If the tailcall address may be in a register, then make sure it's
2649 // possible to register allocate for it. In 32-bit, the call address can
2650 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002651 // callee-saved registers are restored. These happen to be the same
2652 // registers used to pass 'inreg' arguments so watch out for those.
2653 if (!Subtarget->is64Bit() &&
2654 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002655 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002656 unsigned NumInRegs = 0;
2657 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2658 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002659 if (!VA.isRegLoc())
2660 continue;
2661 unsigned Reg = VA.getLocReg();
2662 switch (Reg) {
2663 default: break;
2664 case X86::EAX: case X86::EDX: case X86::ECX:
2665 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002666 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002667 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002668 }
2669 }
2670 }
Evan Chenga6bff982010-01-30 01:22:00 +00002671 }
Evan Chengb1712452010-01-27 06:25:16 +00002672
Dale Johannesend155d7e2010-10-25 22:17:05 +00002673 // An stdcall caller is expected to clean up its arguments; the callee
Dale Johannesen0e034562010-11-12 00:43:18 +00002674 // isn't going to do that.
Dale Johannesend155d7e2010-10-25 22:17:05 +00002675 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2676 return false;
2677
Evan Cheng86809cc2010-02-03 03:28:02 +00002678 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002679}
2680
Dan Gohman3df24e62008-09-03 23:12:08 +00002681FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002682X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2683 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002684}
2685
2686
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002687//===----------------------------------------------------------------------===//
2688// Other Lowering Hooks
2689//===----------------------------------------------------------------------===//
2690
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002691static bool MayFoldLoad(SDValue Op) {
2692 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2693}
2694
2695static bool MayFoldIntoStore(SDValue Op) {
2696 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2697}
2698
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002699static bool isTargetShuffle(unsigned Opcode) {
2700 switch(Opcode) {
2701 default: return false;
2702 case X86ISD::PSHUFD:
2703 case X86ISD::PSHUFHW:
2704 case X86ISD::PSHUFLW:
2705 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002706 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002707 case X86ISD::SHUFPS:
2708 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002709 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002710 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002711 case X86ISD::MOVLPS:
2712 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002713 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002714 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002715 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002716 case X86ISD::MOVSS:
2717 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002718 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002719 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002720 case X86ISD::VUNPCKLPS:
2721 case X86ISD::VUNPCKLPD:
2722 case X86ISD::VUNPCKLPSY:
2723 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002724 case X86ISD::PUNPCKLWD:
2725 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002726 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002727 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002728 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002729 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002730 case X86ISD::PUNPCKHWD:
2731 case X86ISD::PUNPCKHBW:
2732 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002733 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002734 return true;
2735 }
2736 return false;
2737}
2738
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002739static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002740 SDValue V1, SelectionDAG &DAG) {
2741 switch(Opc) {
2742 default: llvm_unreachable("Unknown x86 shuffle node");
2743 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002744 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002745 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002746 return DAG.getNode(Opc, dl, VT, V1);
2747 }
2748
2749 return SDValue();
2750}
2751
2752static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002753 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002754 switch(Opc) {
2755 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002756 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002757 case X86ISD::PSHUFHW:
2758 case X86ISD::PSHUFLW:
2759 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2760 }
2761
2762 return SDValue();
2763}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002764
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002765static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2766 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2767 switch(Opc) {
2768 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002769 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002770 case X86ISD::SHUFPD:
2771 case X86ISD::SHUFPS:
2772 return DAG.getNode(Opc, dl, VT, V1, V2,
2773 DAG.getConstant(TargetMask, MVT::i8));
2774 }
2775 return SDValue();
2776}
2777
2778static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2779 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2780 switch(Opc) {
2781 default: llvm_unreachable("Unknown x86 shuffle node");
2782 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002783 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002784 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002785 case X86ISD::MOVLPS:
2786 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002787 case X86ISD::MOVSS:
2788 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002789 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002790 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002791 case X86ISD::VUNPCKLPS:
2792 case X86ISD::VUNPCKLPD:
2793 case X86ISD::VUNPCKLPSY:
2794 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002795 case X86ISD::PUNPCKLWD:
2796 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002797 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002798 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002799 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002800 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002801 case X86ISD::PUNPCKHWD:
2802 case X86ISD::PUNPCKHBW:
2803 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002804 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002805 return DAG.getNode(Opc, dl, VT, V1, V2);
2806 }
2807 return SDValue();
2808}
2809
Dan Gohmand858e902010-04-17 15:26:15 +00002810SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002811 MachineFunction &MF = DAG.getMachineFunction();
2812 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2813 int ReturnAddrIndex = FuncInfo->getRAIndex();
2814
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002815 if (ReturnAddrIndex == 0) {
2816 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002817 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002818 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002819 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002820 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002821 }
2822
Evan Cheng25ab6902006-09-08 06:48:29 +00002823 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002824}
2825
2826
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002827bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2828 bool hasSymbolicDisplacement) {
2829 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002830 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002831 return false;
2832
2833 // If we don't have a symbolic displacement - we don't have any extra
2834 // restrictions.
2835 if (!hasSymbolicDisplacement)
2836 return true;
2837
2838 // FIXME: Some tweaks might be needed for medium code model.
2839 if (M != CodeModel::Small && M != CodeModel::Kernel)
2840 return false;
2841
2842 // For small code model we assume that latest object is 16MB before end of 31
2843 // bits boundary. We may also accept pretty large negative constants knowing
2844 // that all objects are in the positive half of address space.
2845 if (M == CodeModel::Small && Offset < 16*1024*1024)
2846 return true;
2847
2848 // For kernel code model we know that all object resist in the negative half
2849 // of 32bits address space. We may not accept negative offsets, since they may
2850 // be just off and we may accept pretty large positive ones.
2851 if (M == CodeModel::Kernel && Offset > 0)
2852 return true;
2853
2854 return false;
2855}
2856
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002857/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2858/// specific condition code, returning the condition code and the LHS/RHS of the
2859/// comparison to make.
2860static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2861 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002862 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002863 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2864 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2865 // X > -1 -> X == 0, jump !sign.
2866 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002867 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002868 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2869 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002870 return X86::COND_S;
Andrew Trickf6c39412011-03-23 23:11:02 +00002871 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002872 // X < 1 -> X <= 0
2873 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002874 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002875 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002876 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002877
Evan Chengd9558e02006-01-06 00:43:03 +00002878 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002879 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002880 case ISD::SETEQ: return X86::COND_E;
2881 case ISD::SETGT: return X86::COND_G;
2882 case ISD::SETGE: return X86::COND_GE;
2883 case ISD::SETLT: return X86::COND_L;
2884 case ISD::SETLE: return X86::COND_LE;
2885 case ISD::SETNE: return X86::COND_NE;
2886 case ISD::SETULT: return X86::COND_B;
2887 case ISD::SETUGT: return X86::COND_A;
2888 case ISD::SETULE: return X86::COND_BE;
2889 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002890 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002891 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002892
Chris Lattner4c78e022008-12-23 23:42:27 +00002893 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002894
Chris Lattner4c78e022008-12-23 23:42:27 +00002895 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00002896 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
2897 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00002898 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2899 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002900 }
2901
Chris Lattner4c78e022008-12-23 23:42:27 +00002902 switch (SetCCOpcode) {
2903 default: break;
2904 case ISD::SETOLT:
2905 case ISD::SETOLE:
2906 case ISD::SETUGT:
2907 case ISD::SETUGE:
2908 std::swap(LHS, RHS);
2909 break;
2910 }
2911
2912 // On a floating point condition, the flags are set as follows:
2913 // ZF PF CF op
2914 // 0 | 0 | 0 | X > Y
2915 // 0 | 0 | 1 | X < Y
2916 // 1 | 0 | 0 | X == Y
2917 // 1 | 1 | 1 | unordered
2918 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002919 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002920 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002921 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002922 case ISD::SETOLT: // flipped
2923 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002924 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002925 case ISD::SETOLE: // flipped
2926 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002927 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002928 case ISD::SETUGT: // flipped
2929 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002930 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002931 case ISD::SETUGE: // flipped
2932 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002933 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002934 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002935 case ISD::SETNE: return X86::COND_NE;
2936 case ISD::SETUO: return X86::COND_P;
2937 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002938 case ISD::SETOEQ:
2939 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002940 }
Evan Chengd9558e02006-01-06 00:43:03 +00002941}
2942
Evan Cheng4a460802006-01-11 00:33:36 +00002943/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2944/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002945/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002946static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002947 switch (X86CC) {
2948 default:
2949 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002950 case X86::COND_B:
2951 case X86::COND_BE:
2952 case X86::COND_E:
2953 case X86::COND_P:
2954 case X86::COND_A:
2955 case X86::COND_AE:
2956 case X86::COND_NE:
2957 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002958 return true;
2959 }
2960}
2961
Evan Chengeb2f9692009-10-27 19:56:55 +00002962/// isFPImmLegal - Returns true if the target can instruction select the
2963/// specified FP immediate natively. If false, the legalizer will
2964/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00002965bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00002966 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
2967 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
2968 return true;
2969 }
2970 return false;
2971}
2972
Nate Begeman9008ca62009-04-27 18:41:29 +00002973/// isUndefOrInRange - Return true if Val is undef or if its value falls within
2974/// the specified range (L, H].
2975static bool isUndefOrInRange(int Val, int Low, int Hi) {
2976 return (Val < 0) || (Val >= Low && Val < Hi);
2977}
2978
2979/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
2980/// specified value.
2981static bool isUndefOrEqual(int Val, int CmpVal) {
2982 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002983 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00002984 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00002985}
2986
Nate Begeman9008ca62009-04-27 18:41:29 +00002987/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
2988/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
2989/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00002990static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00002991 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00002992 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002993 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00002994 return (Mask[0] < 2 && Mask[1] < 2);
2995 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002996}
2997
Nate Begeman9008ca62009-04-27 18:41:29 +00002998bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002999 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003000 N->getMask(M);
3001 return ::isPSHUFDMask(M, N->getValueType(0));
3002}
Evan Cheng0188ecb2006-03-22 18:59:22 +00003003
Nate Begeman9008ca62009-04-27 18:41:29 +00003004/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3005/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00003006static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003007 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00003008 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003009
Nate Begeman9008ca62009-04-27 18:41:29 +00003010 // Lower quadword copied in order or undef.
3011 for (int i = 0; i != 4; ++i)
3012 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00003013 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003014
Evan Cheng506d3df2006-03-29 23:07:14 +00003015 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003016 for (int i = 4; i != 8; ++i)
3017 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00003018 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003019
Evan Cheng506d3df2006-03-29 23:07:14 +00003020 return true;
3021}
3022
Nate Begeman9008ca62009-04-27 18:41:29 +00003023bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003024 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003025 N->getMask(M);
3026 return ::isPSHUFHWMask(M, N->getValueType(0));
3027}
Evan Cheng506d3df2006-03-29 23:07:14 +00003028
Nate Begeman9008ca62009-04-27 18:41:29 +00003029/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3030/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00003031static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003032 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00003033 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003034
Rafael Espindola15684b22009-04-24 12:40:33 +00003035 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00003036 for (int i = 4; i != 8; ++i)
3037 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00003038 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003039
Rafael Espindola15684b22009-04-24 12:40:33 +00003040 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003041 for (int i = 0; i != 4; ++i)
3042 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00003043 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003044
Rafael Espindola15684b22009-04-24 12:40:33 +00003045 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003046}
3047
Nate Begeman9008ca62009-04-27 18:41:29 +00003048bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003049 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003050 N->getMask(M);
3051 return ::isPSHUFLWMask(M, N->getValueType(0));
3052}
3053
Nate Begemana09008b2009-10-19 02:17:23 +00003054/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3055/// is suitable for input to PALIGNR.
3056static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
3057 bool hasSSSE3) {
3058 int i, e = VT.getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003059
Nate Begemana09008b2009-10-19 02:17:23 +00003060 // Do not handle v2i64 / v2f64 shuffles with palignr.
3061 if (e < 4 || !hasSSSE3)
3062 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003063
Nate Begemana09008b2009-10-19 02:17:23 +00003064 for (i = 0; i != e; ++i)
3065 if (Mask[i] >= 0)
3066 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003067
Nate Begemana09008b2009-10-19 02:17:23 +00003068 // All undef, not a palignr.
3069 if (i == e)
3070 return false;
3071
3072 // Determine if it's ok to perform a palignr with only the LHS, since we
3073 // don't have access to the actual shuffle elements to see if RHS is undef.
3074 bool Unary = Mask[i] < (int)e;
3075 bool NeedsUnary = false;
3076
3077 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003078
Nate Begemana09008b2009-10-19 02:17:23 +00003079 // Check the rest of the elements to see if they are consecutive.
3080 for (++i; i != e; ++i) {
3081 int m = Mask[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00003082 if (m < 0)
Nate Begemana09008b2009-10-19 02:17:23 +00003083 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003084
Nate Begemana09008b2009-10-19 02:17:23 +00003085 Unary = Unary && (m < (int)e);
3086 NeedsUnary = NeedsUnary || (m < s);
3087
3088 if (NeedsUnary && !Unary)
3089 return false;
3090 if (Unary && m != ((s+i) & (e-1)))
3091 return false;
3092 if (!Unary && m != (s+i))
3093 return false;
3094 }
3095 return true;
3096}
3097
3098bool X86::isPALIGNRMask(ShuffleVectorSDNode *N) {
3099 SmallVector<int, 8> M;
3100 N->getMask(M);
3101 return ::isPALIGNRMask(M, N->getValueType(0), true);
3102}
3103
Evan Cheng14aed5e2006-03-24 01:18:28 +00003104/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3105/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00003106static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003107 int NumElems = VT.getVectorNumElements();
3108 if (NumElems != 2 && NumElems != 4)
3109 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003110
Nate Begeman9008ca62009-04-27 18:41:29 +00003111 int Half = NumElems / 2;
3112 for (int i = 0; i < Half; ++i)
3113 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003114 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003115 for (int i = Half; i < NumElems; ++i)
3116 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003117 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003118
Evan Cheng14aed5e2006-03-24 01:18:28 +00003119 return true;
3120}
3121
Nate Begeman9008ca62009-04-27 18:41:29 +00003122bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3123 SmallVector<int, 8> M;
3124 N->getMask(M);
3125 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003126}
3127
Evan Cheng213d2cf2007-05-17 18:45:50 +00003128/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00003129/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
3130/// half elements to come from vector 1 (which would equal the dest.) and
3131/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00003132static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003133 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003134
3135 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00003136 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003137
Nate Begeman9008ca62009-04-27 18:41:29 +00003138 int Half = NumElems / 2;
3139 for (int i = 0; i < Half; ++i)
3140 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003141 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003142 for (int i = Half; i < NumElems; ++i)
3143 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003144 return false;
3145 return true;
3146}
3147
Nate Begeman9008ca62009-04-27 18:41:29 +00003148static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3149 SmallVector<int, 8> M;
3150 N->getMask(M);
3151 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003152}
3153
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003154/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3155/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003156bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
3157 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003158 return false;
3159
Evan Cheng2064a2b2006-03-28 06:50:32 +00003160 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003161 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3162 isUndefOrEqual(N->getMaskElt(1), 7) &&
3163 isUndefOrEqual(N->getMaskElt(2), 2) &&
3164 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003165}
3166
Nate Begeman0b10b912009-11-07 23:17:15 +00003167/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3168/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3169/// <2, 3, 2, 3>
3170bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
3171 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003172
Nate Begeman0b10b912009-11-07 23:17:15 +00003173 if (NumElems != 4)
3174 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003175
Nate Begeman0b10b912009-11-07 23:17:15 +00003176 return isUndefOrEqual(N->getMaskElt(0), 2) &&
3177 isUndefOrEqual(N->getMaskElt(1), 3) &&
3178 isUndefOrEqual(N->getMaskElt(2), 2) &&
3179 isUndefOrEqual(N->getMaskElt(3), 3);
3180}
3181
Evan Cheng5ced1d82006-04-06 23:23:56 +00003182/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3183/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003184bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3185 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003186
Evan Cheng5ced1d82006-04-06 23:23:56 +00003187 if (NumElems != 2 && NumElems != 4)
3188 return false;
3189
Evan Chengc5cdff22006-04-07 21:53:05 +00003190 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003191 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003192 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003193
Evan Chengc5cdff22006-04-07 21:53:05 +00003194 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003195 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003196 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003197
3198 return true;
3199}
3200
Nate Begeman0b10b912009-11-07 23:17:15 +00003201/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3202/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3203bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003204 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003205
David Greenea20244d2011-03-02 17:23:43 +00003206 if ((NumElems != 2 && NumElems != 4)
3207 || N->getValueType(0).getSizeInBits() > 128)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003208 return false;
3209
Evan Chengc5cdff22006-04-07 21:53:05 +00003210 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003211 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003212 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003213
Nate Begeman9008ca62009-04-27 18:41:29 +00003214 for (unsigned i = 0; i < NumElems/2; ++i)
3215 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003216 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003217
3218 return true;
3219}
3220
Evan Cheng0038e592006-03-28 00:39:58 +00003221/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3222/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003223static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003224 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003225 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003226 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00003227 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003228
David Greenea20244d2011-03-02 17:23:43 +00003229 // Handle vector lengths > 128 bits. Define a "section" as a set of
3230 // 128 bits. AVX defines UNPCK* to operate independently on 128-bit
3231 // sections.
3232 unsigned NumSections = VT.getSizeInBits() / 128;
3233 if (NumSections == 0 ) NumSections = 1; // Handle MMX
3234 unsigned NumSectionElts = NumElts / NumSections;
3235
3236 unsigned Start = 0;
3237 unsigned End = NumSectionElts;
3238 for (unsigned s = 0; s < NumSections; ++s) {
3239 for (unsigned i = Start, j = s * NumSectionElts;
3240 i != End;
3241 i += 2, ++j) {
3242 int BitI = Mask[i];
3243 int BitI1 = Mask[i+1];
3244 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003245 return false;
David Greenea20244d2011-03-02 17:23:43 +00003246 if (V2IsSplat) {
3247 if (!isUndefOrEqual(BitI1, NumElts))
3248 return false;
3249 } else {
3250 if (!isUndefOrEqual(BitI1, j + NumElts))
3251 return false;
3252 }
Evan Cheng39623da2006-04-20 08:58:49 +00003253 }
David Greenea20244d2011-03-02 17:23:43 +00003254 // Process the next 128 bits.
3255 Start += NumSectionElts;
3256 End += NumSectionElts;
Evan Cheng0038e592006-03-28 00:39:58 +00003257 }
David Greenea20244d2011-03-02 17:23:43 +00003258
Evan Cheng0038e592006-03-28 00:39:58 +00003259 return true;
3260}
3261
Nate Begeman9008ca62009-04-27 18:41:29 +00003262bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3263 SmallVector<int, 8> M;
3264 N->getMask(M);
3265 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003266}
3267
Evan Cheng4fcb9222006-03-28 02:43:26 +00003268/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3269/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003270static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003271 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003272 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003273 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003274 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003275
Nate Begeman9008ca62009-04-27 18:41:29 +00003276 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3277 int BitI = Mask[i];
3278 int BitI1 = Mask[i+1];
Chris Lattner5a88b832007-02-25 07:10:00 +00003279 if (!isUndefOrEqual(BitI, j + NumElts/2))
Evan Chengc5cdff22006-04-07 21:53:05 +00003280 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003281 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00003282 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003283 return false;
3284 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003285 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003286 return false;
3287 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003288 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003289 return true;
3290}
3291
Nate Begeman9008ca62009-04-27 18:41:29 +00003292bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3293 SmallVector<int, 8> M;
3294 N->getMask(M);
3295 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003296}
3297
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003298/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3299/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3300/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003301static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003302 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003303 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003304 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003305
David Greenea20244d2011-03-02 17:23:43 +00003306 // Handle vector lengths > 128 bits. Define a "section" as a set of
3307 // 128 bits. AVX defines UNPCK* to operate independently on 128-bit
3308 // sections.
3309 unsigned NumSections = VT.getSizeInBits() / 128;
3310 if (NumSections == 0 ) NumSections = 1; // Handle MMX
3311 unsigned NumSectionElts = NumElems / NumSections;
3312
3313 for (unsigned s = 0; s < NumSections; ++s) {
3314 for (unsigned i = s * NumSectionElts, j = s * NumSectionElts;
3315 i != NumSectionElts * (s + 1);
3316 i += 2, ++j) {
3317 int BitI = Mask[i];
3318 int BitI1 = Mask[i+1];
3319
3320 if (!isUndefOrEqual(BitI, j))
3321 return false;
3322 if (!isUndefOrEqual(BitI1, j))
3323 return false;
3324 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003325 }
David Greenea20244d2011-03-02 17:23:43 +00003326
Rafael Espindola15684b22009-04-24 12:40:33 +00003327 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003328}
3329
Nate Begeman9008ca62009-04-27 18:41:29 +00003330bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3331 SmallVector<int, 8> M;
3332 N->getMask(M);
3333 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3334}
3335
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003336/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3337/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3338/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003339static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003340 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003341 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3342 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003343
Nate Begeman9008ca62009-04-27 18:41:29 +00003344 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3345 int BitI = Mask[i];
3346 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003347 if (!isUndefOrEqual(BitI, j))
3348 return false;
3349 if (!isUndefOrEqual(BitI1, j))
3350 return false;
3351 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003352 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003353}
3354
Nate Begeman9008ca62009-04-27 18:41:29 +00003355bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3356 SmallVector<int, 8> M;
3357 N->getMask(M);
3358 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3359}
3360
Evan Cheng017dcc62006-04-21 01:05:10 +00003361/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3362/// specifies a shuffle of elements that is suitable for input to MOVSS,
3363/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003364static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003365 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003366 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003367
3368 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003369
Nate Begeman9008ca62009-04-27 18:41:29 +00003370 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003371 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003372
Nate Begeman9008ca62009-04-27 18:41:29 +00003373 for (int i = 1; i < NumElts; ++i)
3374 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003375 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003376
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003377 return true;
3378}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003379
Nate Begeman9008ca62009-04-27 18:41:29 +00003380bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3381 SmallVector<int, 8> M;
3382 N->getMask(M);
3383 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003384}
3385
Evan Cheng017dcc62006-04-21 01:05:10 +00003386/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3387/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003388/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003389static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003390 bool V2IsSplat = false, bool V2IsUndef = false) {
3391 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003392 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003393 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003394
Nate Begeman9008ca62009-04-27 18:41:29 +00003395 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003396 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003397
Nate Begeman9008ca62009-04-27 18:41:29 +00003398 for (int i = 1; i < NumOps; ++i)
3399 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3400 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3401 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003402 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003403
Evan Cheng39623da2006-04-20 08:58:49 +00003404 return true;
3405}
3406
Nate Begeman9008ca62009-04-27 18:41:29 +00003407static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003408 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003409 SmallVector<int, 8> M;
3410 N->getMask(M);
3411 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003412}
3413
Evan Chengd9539472006-04-14 21:59:03 +00003414/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3415/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003416bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) {
3417 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003418 return false;
3419
3420 // Expect 1, 1, 3, 3
Rafael Espindola15684b22009-04-24 12:40:33 +00003421 for (unsigned i = 0; i < 2; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003422 int Elt = N->getMaskElt(i);
3423 if (Elt >= 0 && Elt != 1)
3424 return false;
Rafael Espindola15684b22009-04-24 12:40:33 +00003425 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003426
3427 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003428 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003429 int Elt = N->getMaskElt(i);
3430 if (Elt >= 0 && Elt != 3)
3431 return false;
3432 if (Elt == 3)
3433 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003434 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003435 // Don't use movshdup if it can be done with a shufps.
Nate Begeman9008ca62009-04-27 18:41:29 +00003436 // FIXME: verify that matching u, u, 3, 3 is what we want.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003437 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003438}
3439
3440/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3441/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003442bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) {
3443 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003444 return false;
3445
3446 // Expect 0, 0, 2, 2
Nate Begeman9008ca62009-04-27 18:41:29 +00003447 for (unsigned i = 0; i < 2; ++i)
3448 if (N->getMaskElt(i) > 0)
3449 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003450
3451 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003452 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003453 int Elt = N->getMaskElt(i);
3454 if (Elt >= 0 && Elt != 2)
3455 return false;
3456 if (Elt == 2)
3457 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003458 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003459 // Don't use movsldup if it can be done with a shufps.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003460 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003461}
3462
Evan Cheng0b457f02008-09-25 20:50:48 +00003463/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3464/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003465bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3466 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003467
Nate Begeman9008ca62009-04-27 18:41:29 +00003468 for (int i = 0; i < e; ++i)
3469 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003470 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003471 for (int i = 0; i < e; ++i)
3472 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003473 return false;
3474 return true;
3475}
3476
David Greenec38a03e2011-02-03 15:50:00 +00003477/// isVEXTRACTF128Index - Return true if the specified
3478/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3479/// suitable for input to VEXTRACTF128.
3480bool X86::isVEXTRACTF128Index(SDNode *N) {
3481 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3482 return false;
3483
3484 // The index should be aligned on a 128-bit boundary.
3485 uint64_t Index =
3486 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3487
3488 unsigned VL = N->getValueType(0).getVectorNumElements();
3489 unsigned VBits = N->getValueType(0).getSizeInBits();
3490 unsigned ElSize = VBits / VL;
3491 bool Result = (Index * ElSize) % 128 == 0;
3492
3493 return Result;
3494}
3495
David Greeneccacdc12011-02-04 16:08:29 +00003496/// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
3497/// operand specifies a subvector insert that is suitable for input to
3498/// VINSERTF128.
3499bool X86::isVINSERTF128Index(SDNode *N) {
3500 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3501 return false;
3502
3503 // The index should be aligned on a 128-bit boundary.
3504 uint64_t Index =
3505 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3506
3507 unsigned VL = N->getValueType(0).getVectorNumElements();
3508 unsigned VBits = N->getValueType(0).getSizeInBits();
3509 unsigned ElSize = VBits / VL;
3510 bool Result = (Index * ElSize) % 128 == 0;
3511
3512 return Result;
3513}
3514
Evan Cheng63d33002006-03-22 08:01:21 +00003515/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003516/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003517unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003518 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3519 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3520
Evan Chengb9df0ca2006-03-22 02:53:00 +00003521 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3522 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003523 for (int i = 0; i < NumOperands; ++i) {
3524 int Val = SVOp->getMaskElt(NumOperands-i-1);
3525 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003526 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003527 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003528 if (i != NumOperands - 1)
3529 Mask <<= Shift;
3530 }
Evan Cheng63d33002006-03-22 08:01:21 +00003531 return Mask;
3532}
3533
Evan Cheng506d3df2006-03-29 23:07:14 +00003534/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003535/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003536unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003537 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003538 unsigned Mask = 0;
3539 // 8 nodes, but we only care about the last 4.
3540 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003541 int Val = SVOp->getMaskElt(i);
3542 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003543 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003544 if (i != 4)
3545 Mask <<= 2;
3546 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003547 return Mask;
3548}
3549
3550/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003551/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003552unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003553 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003554 unsigned Mask = 0;
3555 // 8 nodes, but we only care about the first 4.
3556 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003557 int Val = SVOp->getMaskElt(i);
3558 if (Val >= 0)
3559 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003560 if (i != 0)
3561 Mask <<= 2;
3562 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003563 return Mask;
3564}
3565
Nate Begemana09008b2009-10-19 02:17:23 +00003566/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3567/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3568unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3569 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3570 EVT VVT = N->getValueType(0);
3571 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3572 int Val = 0;
3573
3574 unsigned i, e;
3575 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3576 Val = SVOp->getMaskElt(i);
3577 if (Val >= 0)
3578 break;
3579 }
3580 return (Val - i) * EltSize;
3581}
3582
David Greenec38a03e2011-02-03 15:50:00 +00003583/// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
3584/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
3585/// instructions.
3586unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
3587 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3588 llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
3589
3590 uint64_t Index =
3591 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3592
3593 EVT VecVT = N->getOperand(0).getValueType();
3594 EVT ElVT = VecVT.getVectorElementType();
3595
3596 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
3597
3598 return Index / NumElemsPerChunk;
3599}
3600
David Greeneccacdc12011-02-04 16:08:29 +00003601/// getInsertVINSERTF128Immediate - Return the appropriate immediate
3602/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
3603/// instructions.
3604unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
3605 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3606 llvm_unreachable("Illegal insert subvector for VINSERTF128");
3607
3608 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00003609 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00003610
3611 EVT VecVT = N->getValueType(0);
3612 EVT ElVT = VecVT.getVectorElementType();
3613
3614 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
3615
3616 return Index / NumElemsPerChunk;
3617}
3618
Evan Cheng37b73872009-07-30 08:33:02 +00003619/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3620/// constant +0.0.
3621bool X86::isZeroNode(SDValue Elt) {
3622 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003623 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003624 (isa<ConstantFPSDNode>(Elt) &&
3625 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3626}
3627
Nate Begeman9008ca62009-04-27 18:41:29 +00003628/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3629/// their permute mask.
3630static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3631 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003632 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003633 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003634 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003635
Nate Begeman5a5ca152009-04-29 05:20:52 +00003636 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003637 int idx = SVOp->getMaskElt(i);
3638 if (idx < 0)
3639 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003640 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003641 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003642 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003643 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003644 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003645 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3646 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003647}
3648
Evan Cheng779ccea2007-12-07 21:30:01 +00003649/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3650/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003651static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003652 unsigned NumElems = VT.getVectorNumElements();
3653 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003654 int idx = Mask[i];
3655 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003656 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003657 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003658 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003659 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003660 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003661 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003662}
3663
Evan Cheng533a0aa2006-04-19 20:35:22 +00003664/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3665/// match movhlps. The lower half elements should come from upper half of
3666/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003667/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003668static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3669 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003670 return false;
3671 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003672 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003673 return false;
3674 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003675 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003676 return false;
3677 return true;
3678}
3679
Evan Cheng5ced1d82006-04-06 23:23:56 +00003680/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003681/// is promoted to a vector. It also returns the LoadSDNode by reference if
3682/// required.
3683static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003684 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3685 return false;
3686 N = N->getOperand(0).getNode();
3687 if (!ISD::isNON_EXTLoad(N))
3688 return false;
3689 if (LD)
3690 *LD = cast<LoadSDNode>(N);
3691 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003692}
3693
Evan Cheng533a0aa2006-04-19 20:35:22 +00003694/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3695/// match movlp{s|d}. The lower half elements should come from lower half of
3696/// V1 (and in order), and the upper half elements should come from the upper
3697/// half of V2 (and in order). And since V1 will become the source of the
3698/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003699static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3700 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003701 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003702 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003703 // Is V2 is a vector load, don't do this transformation. We will try to use
3704 // load folding shufps op.
3705 if (ISD::isNON_EXTLoad(V2))
3706 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003707
Nate Begeman5a5ca152009-04-29 05:20:52 +00003708 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003709
Evan Cheng533a0aa2006-04-19 20:35:22 +00003710 if (NumElems != 2 && NumElems != 4)
3711 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003712 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003713 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003714 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003715 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003716 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003717 return false;
3718 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003719}
3720
Evan Cheng39623da2006-04-20 08:58:49 +00003721/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3722/// all the same.
3723static bool isSplatVector(SDNode *N) {
3724 if (N->getOpcode() != ISD::BUILD_VECTOR)
3725 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003726
Dan Gohman475871a2008-07-27 21:46:04 +00003727 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003728 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3729 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003730 return false;
3731 return true;
3732}
3733
Evan Cheng213d2cf2007-05-17 18:45:50 +00003734/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003735/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003736/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003737static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003738 SDValue V1 = N->getOperand(0);
3739 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003740 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3741 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003742 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003743 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003744 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003745 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3746 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003747 if (Opc != ISD::BUILD_VECTOR ||
3748 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003749 return false;
3750 } else if (Idx >= 0) {
3751 unsigned Opc = V1.getOpcode();
3752 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3753 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003754 if (Opc != ISD::BUILD_VECTOR ||
3755 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003756 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003757 }
3758 }
3759 return true;
3760}
3761
3762/// getZeroVector - Returns a vector of specified type with all zero elements.
3763///
Owen Andersone50ed302009-08-10 22:56:29 +00003764static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003765 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003766 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003767
Dale Johannesen0488fb62010-09-30 23:57:10 +00003768 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003769 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003770 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003771 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003772 if (HasSSE2) { // SSE2
3773 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3774 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3775 } else { // SSE1
3776 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3777 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3778 }
3779 } else if (VT.getSizeInBits() == 256) { // AVX
3780 // 256-bit logic and arithmetic instructions in AVX are
3781 // all floating-point, no support for integer ops. Default
3782 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003783 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003784 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3785 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003786 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003787 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003788}
3789
Chris Lattner8a594482007-11-25 00:24:49 +00003790/// getOnesVector - Returns a vector of specified type with all bits set.
3791///
Owen Andersone50ed302009-08-10 22:56:29 +00003792static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003793 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003794
Chris Lattner8a594482007-11-25 00:24:49 +00003795 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
3796 // type. This ensures they get CSE'd.
Owen Anderson825b72b2009-08-11 20:47:22 +00003797 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +00003798 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003799 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003800 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00003801}
3802
3803
Evan Cheng39623da2006-04-20 08:58:49 +00003804/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
3805/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00003806static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003807 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003808 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003809
Evan Cheng39623da2006-04-20 08:58:49 +00003810 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003811 SmallVector<int, 8> MaskVec;
3812 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00003813
Nate Begeman5a5ca152009-04-29 05:20:52 +00003814 for (unsigned i = 0; i != NumElems; ++i) {
3815 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003816 MaskVec[i] = NumElems;
3817 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00003818 }
Evan Cheng39623da2006-04-20 08:58:49 +00003819 }
Evan Cheng39623da2006-04-20 08:58:49 +00003820 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00003821 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
3822 SVOp->getOperand(1), &MaskVec[0]);
3823 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00003824}
3825
Evan Cheng017dcc62006-04-21 01:05:10 +00003826/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
3827/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00003828static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003829 SDValue V2) {
3830 unsigned NumElems = VT.getVectorNumElements();
3831 SmallVector<int, 8> Mask;
3832 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00003833 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003834 Mask.push_back(i);
3835 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00003836}
3837
Nate Begeman9008ca62009-04-27 18:41:29 +00003838/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003839static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003840 SDValue V2) {
3841 unsigned NumElems = VT.getVectorNumElements();
3842 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00003843 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003844 Mask.push_back(i);
3845 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00003846 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003847 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00003848}
3849
Nate Begeman9008ca62009-04-27 18:41:29 +00003850/// getUnpackhMask - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003851static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003852 SDValue V2) {
3853 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00003854 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003855 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00003856 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003857 Mask.push_back(i + Half);
3858 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00003859 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003860 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00003861}
3862
Bruno Cardoso Lopesbb0a9482010-08-13 17:50:47 +00003863/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32.
3864static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003865 EVT PVT = MVT::v4f32;
Owen Andersone50ed302009-08-10 22:56:29 +00003866 EVT VT = SV->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00003867 DebugLoc dl = SV->getDebugLoc();
3868 SDValue V1 = SV->getOperand(0);
3869 int NumElems = VT.getVectorNumElements();
3870 int EltNo = SV->getSplatIndex();
Rafael Espindola15684b22009-04-24 12:40:33 +00003871
Nate Begeman9008ca62009-04-27 18:41:29 +00003872 // unpack elements to the correct location
3873 while (NumElems > 4) {
3874 if (EltNo < NumElems/2) {
3875 V1 = getUnpackl(DAG, dl, VT, V1, V1);
3876 } else {
3877 V1 = getUnpackh(DAG, dl, VT, V1, V1);
3878 EltNo -= NumElems/2;
3879 }
3880 NumElems >>= 1;
3881 }
Eric Christopherfd179292009-08-27 18:07:15 +00003882
Nate Begeman9008ca62009-04-27 18:41:29 +00003883 // Perform the splat.
3884 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003885 V1 = DAG.getNode(ISD::BITCAST, dl, PVT, V1);
Nate Begeman9008ca62009-04-27 18:41:29 +00003886 V1 = DAG.getVectorShuffle(PVT, dl, V1, DAG.getUNDEF(PVT), &SplatMask[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003887 return DAG.getNode(ISD::BITCAST, dl, VT, V1);
Evan Chengc575ca22006-04-17 20:43:08 +00003888}
3889
Evan Chengba05f722006-04-21 23:03:30 +00003890/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00003891/// vector of zero or undef vector. This produces a shuffle where the low
3892/// element of V2 is swizzled into the zero/undef vector, landing at element
3893/// 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 +00003894static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00003895 bool isZero, bool HasSSE2,
3896 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003897 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003898 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00003899 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
3900 unsigned NumElems = VT.getVectorNumElements();
3901 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00003902 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003903 // If this is the insertion idx, put the low elt of V2 here.
3904 MaskVec.push_back(i == Idx ? NumElems : i);
3905 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00003906}
3907
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003908/// getShuffleScalarElt - Returns the scalar element that will make up the ith
3909/// element of the result of the vector shuffle.
Benjamin Kramer050db522011-03-26 12:38:19 +00003910static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
3911 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003912 if (Depth == 6)
3913 return SDValue(); // Limit search depth.
3914
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003915 SDValue V = SDValue(N, 0);
3916 EVT VT = V.getValueType();
3917 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003918
3919 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
3920 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
3921 Index = SV->getMaskElt(Index);
3922
3923 if (Index < 0)
3924 return DAG.getUNDEF(VT.getVectorElementType());
3925
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003926 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003927 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003928 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00003929 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003930
3931 // Recurse into target specific vector shuffles to find scalars.
3932 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003933 int NumElems = VT.getVectorNumElements();
3934 SmallVector<unsigned, 16> ShuffleMask;
3935 SDValue ImmN;
3936
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003937 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003938 case X86ISD::SHUFPS:
3939 case X86ISD::SHUFPD:
3940 ImmN = N->getOperand(N->getNumOperands()-1);
3941 DecodeSHUFPSMask(NumElems,
3942 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3943 ShuffleMask);
3944 break;
3945 case X86ISD::PUNPCKHBW:
3946 case X86ISD::PUNPCKHWD:
3947 case X86ISD::PUNPCKHDQ:
3948 case X86ISD::PUNPCKHQDQ:
3949 DecodePUNPCKHMask(NumElems, ShuffleMask);
3950 break;
3951 case X86ISD::UNPCKHPS:
3952 case X86ISD::UNPCKHPD:
3953 DecodeUNPCKHPMask(NumElems, ShuffleMask);
3954 break;
3955 case X86ISD::PUNPCKLBW:
3956 case X86ISD::PUNPCKLWD:
3957 case X86ISD::PUNPCKLDQ:
3958 case X86ISD::PUNPCKLQDQ:
David Greenec4db4e52011-02-28 19:06:56 +00003959 DecodePUNPCKLMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003960 break;
3961 case X86ISD::UNPCKLPS:
3962 case X86ISD::UNPCKLPD:
David Greenec4db4e52011-02-28 19:06:56 +00003963 case X86ISD::VUNPCKLPS:
3964 case X86ISD::VUNPCKLPD:
3965 case X86ISD::VUNPCKLPSY:
3966 case X86ISD::VUNPCKLPDY:
3967 DecodeUNPCKLPMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003968 break;
3969 case X86ISD::MOVHLPS:
3970 DecodeMOVHLPSMask(NumElems, ShuffleMask);
3971 break;
3972 case X86ISD::MOVLHPS:
3973 DecodeMOVLHPSMask(NumElems, ShuffleMask);
3974 break;
3975 case X86ISD::PSHUFD:
3976 ImmN = N->getOperand(N->getNumOperands()-1);
3977 DecodePSHUFMask(NumElems,
3978 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3979 ShuffleMask);
3980 break;
3981 case X86ISD::PSHUFHW:
3982 ImmN = N->getOperand(N->getNumOperands()-1);
3983 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3984 ShuffleMask);
3985 break;
3986 case X86ISD::PSHUFLW:
3987 ImmN = N->getOperand(N->getNumOperands()-1);
3988 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3989 ShuffleMask);
3990 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003991 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003992 case X86ISD::MOVSD: {
3993 // The index 0 always comes from the first element of the second source,
3994 // this is why MOVSS and MOVSD are used in the first place. The other
3995 // elements come from the other positions of the first source vector.
3996 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003997 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
3998 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003999 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004000 default:
4001 assert("not implemented for target shuffle node");
4002 return SDValue();
4003 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004004
4005 Index = ShuffleMask[Index];
4006 if (Index < 0)
4007 return DAG.getUNDEF(VT.getVectorElementType());
4008
4009 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
4010 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
4011 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004012 }
4013
4014 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004015 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004016 V = V.getOperand(0);
4017 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004018 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004019
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004020 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004021 return SDValue();
4022 }
4023
4024 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4025 return (Index == 0) ? V.getOperand(0)
4026 : DAG.getUNDEF(VT.getVectorElementType());
4027
4028 if (V.getOpcode() == ISD::BUILD_VECTOR)
4029 return V.getOperand(Index);
4030
4031 return SDValue();
4032}
4033
4034/// getNumOfConsecutiveZeros - Return the number of elements of a vector
4035/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00004036/// search can start in two different directions, from left or right.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004037static
4038unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
4039 bool ZerosFromLeft, SelectionDAG &DAG) {
4040 int i = 0;
4041
4042 while (i < NumElems) {
4043 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004044 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004045 if (!(Elt.getNode() &&
4046 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4047 break;
4048 ++i;
4049 }
4050
4051 return i;
4052}
4053
4054/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
4055/// MaskE correspond consecutively to elements from one of the vector operands,
4056/// starting from its index OpIdx. Also tell OpNum which source vector operand.
4057static
4058bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
4059 int OpIdx, int NumElems, unsigned &OpNum) {
4060 bool SeenV1 = false;
4061 bool SeenV2 = false;
4062
4063 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
4064 int Idx = SVOp->getMaskElt(i);
4065 // Ignore undef indicies
4066 if (Idx < 0)
4067 continue;
4068
4069 if (Idx < NumElems)
4070 SeenV1 = true;
4071 else
4072 SeenV2 = true;
4073
4074 // Only accept consecutive elements from the same vector
4075 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4076 return false;
4077 }
4078
4079 OpNum = SeenV1 ? 0 : 1;
4080 return true;
4081}
4082
4083/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4084/// logical left shift of a vector.
4085static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4086 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4087 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4088 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4089 false /* check zeros from right */, DAG);
4090 unsigned OpSrc;
4091
4092 if (!NumZeros)
4093 return false;
4094
4095 // Considering the elements in the mask that are not consecutive zeros,
4096 // check if they consecutively come from only one of the source vectors.
4097 //
4098 // V1 = {X, A, B, C} 0
4099 // \ \ \ /
4100 // vector_shuffle V1, V2 <1, 2, 3, X>
4101 //
4102 if (!isShuffleMaskConsecutive(SVOp,
4103 0, // Mask Start Index
4104 NumElems-NumZeros-1, // Mask End Index
4105 NumZeros, // Where to start looking in the src vector
4106 NumElems, // Number of elements in vector
4107 OpSrc)) // Which source operand ?
4108 return false;
4109
4110 isLeft = false;
4111 ShAmt = NumZeros;
4112 ShVal = SVOp->getOperand(OpSrc);
4113 return true;
4114}
4115
4116/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4117/// logical left shift of a vector.
4118static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4119 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4120 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4121 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4122 true /* check zeros from left */, DAG);
4123 unsigned OpSrc;
4124
4125 if (!NumZeros)
4126 return false;
4127
4128 // Considering the elements in the mask that are not consecutive zeros,
4129 // check if they consecutively come from only one of the source vectors.
4130 //
4131 // 0 { A, B, X, X } = V2
4132 // / \ / /
4133 // vector_shuffle V1, V2 <X, X, 4, 5>
4134 //
4135 if (!isShuffleMaskConsecutive(SVOp,
4136 NumZeros, // Mask Start Index
4137 NumElems-1, // Mask End Index
4138 0, // Where to start looking in the src vector
4139 NumElems, // Number of elements in vector
4140 OpSrc)) // Which source operand ?
4141 return false;
4142
4143 isLeft = true;
4144 ShAmt = NumZeros;
4145 ShVal = SVOp->getOperand(OpSrc);
4146 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004147}
4148
4149/// isVectorShift - Returns true if the shuffle can be implemented as a
4150/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004151static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004152 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004153 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4154 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4155 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004156
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004157 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00004158}
4159
Evan Chengc78d3b42006-04-24 18:01:45 +00004160/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4161///
Dan Gohman475871a2008-07-27 21:46:04 +00004162static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00004163 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00004164 SelectionDAG &DAG,
4165 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004166 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00004167 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004168
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004169 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004170 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004171 bool First = true;
4172 for (unsigned i = 0; i < 16; ++i) {
4173 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4174 if (ThisIsNonZero && First) {
4175 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004176 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004177 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004178 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004179 First = false;
4180 }
4181
4182 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00004183 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004184 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4185 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004186 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004187 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00004188 }
4189 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004190 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4191 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4192 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00004193 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004194 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00004195 } else
4196 ThisElt = LastElt;
4197
Gabor Greifba36cb52008-08-28 21:40:38 +00004198 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00004199 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00004200 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00004201 }
4202 }
4203
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004204 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00004205}
4206
Bill Wendlinga348c562007-03-22 18:42:45 +00004207/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00004208///
Dan Gohman475871a2008-07-27 21:46:04 +00004209static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00004210 unsigned NumNonZero, unsigned NumZero,
4211 SelectionDAG &DAG,
4212 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004213 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00004214 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004215
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004216 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004217 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004218 bool First = true;
4219 for (unsigned i = 0; i < 8; ++i) {
4220 bool isNonZero = (NonZeros & (1 << i)) != 0;
4221 if (isNonZero) {
4222 if (First) {
4223 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004224 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004225 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004226 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004227 First = false;
4228 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004229 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004230 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00004231 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00004232 }
4233 }
4234
4235 return V;
4236}
4237
Evan Chengf26ffe92008-05-29 08:22:04 +00004238/// getVShift - Return a vector logical shift node.
4239///
Owen Andersone50ed302009-08-10 22:56:29 +00004240static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00004241 unsigned NumBits, SelectionDAG &DAG,
4242 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004243 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00004244 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004245 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4246 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004247 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00004248 DAG.getConstant(NumBits,
4249 TLI.getShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00004250}
4251
Dan Gohman475871a2008-07-27 21:46:04 +00004252SDValue
Evan Chengc3630942009-12-09 21:00:30 +00004253X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00004254 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00004255
Evan Chengc3630942009-12-09 21:00:30 +00004256 // Check if the scalar load can be widened into a vector load. And if
4257 // the address is "base + cst" see if the cst can be "absorbed" into
4258 // the shuffle mask.
4259 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4260 SDValue Ptr = LD->getBasePtr();
4261 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4262 return SDValue();
4263 EVT PVT = LD->getValueType(0);
4264 if (PVT != MVT::i32 && PVT != MVT::f32)
4265 return SDValue();
4266
4267 int FI = -1;
4268 int64_t Offset = 0;
4269 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4270 FI = FINode->getIndex();
4271 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00004272 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00004273 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4274 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4275 Offset = Ptr.getConstantOperandVal(1);
4276 Ptr = Ptr.getOperand(0);
4277 } else {
4278 return SDValue();
4279 }
4280
4281 SDValue Chain = LD->getChain();
4282 // Make sure the stack object alignment is at least 16.
4283 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4284 if (DAG.InferPtrAlignment(Ptr) < 16) {
4285 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004286 // Can't change the alignment. FIXME: It's possible to compute
4287 // the exact stack offset and reference FI + adjust offset instead.
4288 // If someone *really* cares about this. That's the way to implement it.
4289 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004290 } else {
4291 MFI->setObjectAlignment(FI, 16);
4292 }
4293 }
4294
4295 // (Offset % 16) must be multiple of 4. Then address is then
4296 // Ptr + (Offset & ~15).
4297 if (Offset < 0)
4298 return SDValue();
4299 if ((Offset % 16) & 3)
4300 return SDValue();
4301 int64_t StartOffset = Offset & ~15;
4302 if (StartOffset)
4303 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4304 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4305
4306 int EltNo = (Offset - StartOffset) >> 2;
4307 int Mask[4] = { EltNo, EltNo, EltNo, EltNo };
4308 EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32;
Chris Lattner51abfe42010-09-21 06:02:19 +00004309 SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr,
4310 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004311 false, false, 0);
Evan Chengc3630942009-12-09 21:00:30 +00004312 // Canonicalize it to a v4i32 shuffle.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004313 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V1);
4314 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Chengc3630942009-12-09 21:00:30 +00004315 DAG.getVectorShuffle(MVT::v4i32, dl, V1,
Chris Lattner51abfe42010-09-21 06:02:19 +00004316 DAG.getUNDEF(MVT::v4i32),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004317 }
4318
4319 return SDValue();
4320}
4321
Michael J. Spencerec38de22010-10-10 22:04:20 +00004322/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4323/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004324/// load which has the same value as a build_vector whose operands are 'elts'.
4325///
4326/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004327///
Nate Begeman1449f292010-03-24 22:19:06 +00004328/// FIXME: we'd also like to handle the case where the last elements are zero
4329/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4330/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004331static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004332 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004333 EVT EltVT = VT.getVectorElementType();
4334 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004335
Nate Begemanfdea31a2010-03-24 20:49:50 +00004336 LoadSDNode *LDBase = NULL;
4337 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004338
Nate Begeman1449f292010-03-24 22:19:06 +00004339 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004340 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004341 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004342 for (unsigned i = 0; i < NumElems; ++i) {
4343 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004344
Nate Begemanfdea31a2010-03-24 20:49:50 +00004345 if (!Elt.getNode() ||
4346 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4347 return SDValue();
4348 if (!LDBase) {
4349 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4350 return SDValue();
4351 LDBase = cast<LoadSDNode>(Elt.getNode());
4352 LastLoadedElt = i;
4353 continue;
4354 }
4355 if (Elt.getOpcode() == ISD::UNDEF)
4356 continue;
4357
4358 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4359 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4360 return SDValue();
4361 LastLoadedElt = i;
4362 }
Nate Begeman1449f292010-03-24 22:19:06 +00004363
4364 // If we have found an entire vector of loads and undefs, then return a large
4365 // load of the entire vector width starting at the base pointer. If we found
4366 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004367 if (LastLoadedElt == NumElems - 1) {
4368 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004369 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004370 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004371 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004372 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004373 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004374 LDBase->isVolatile(), LDBase->isNonTemporal(),
4375 LDBase->getAlignment());
4376 } else if (NumElems == 4 && LastLoadedElt == 1) {
4377 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4378 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004379 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4380 Ops, 2, MVT::i32,
4381 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004382 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004383 }
4384 return SDValue();
4385}
4386
Evan Chengc3630942009-12-09 21:00:30 +00004387SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004388X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004389 DebugLoc dl = Op.getDebugLoc();
David Greenea5f26012011-02-07 19:36:54 +00004390
David Greenef125a292011-02-08 19:04:41 +00004391 EVT VT = Op.getValueType();
4392 EVT ExtVT = VT.getVectorElementType();
4393
4394 unsigned NumElems = Op.getNumOperands();
4395
4396 // For AVX-length vectors, build the individual 128-bit pieces and
4397 // use shuffles to put them in place.
Owen Anderson95771af2011-02-25 21:41:48 +00004398 if (VT.getSizeInBits() > 256 &&
4399 Subtarget->hasAVX() &&
David Greenef125a292011-02-08 19:04:41 +00004400 !ISD::isBuildVectorAllZeros(Op.getNode())) {
4401 SmallVector<SDValue, 8> V;
4402 V.resize(NumElems);
4403 for (unsigned i = 0; i < NumElems; ++i) {
4404 V[i] = Op.getOperand(i);
4405 }
Owen Anderson95771af2011-02-25 21:41:48 +00004406
David Greenef125a292011-02-08 19:04:41 +00004407 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
4408
4409 // Build the lower subvector.
4410 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
4411 // Build the upper subvector.
4412 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
4413 NumElems/2);
4414
4415 return ConcatVectors(Lower, Upper, DAG);
4416 }
4417
Chris Lattner6e80e442010-08-28 17:15:43 +00004418 // All zero's are handled with pxor in SSE2 and above, xorps in SSE1.
4419 // All one's are handled with pcmpeqd. In AVX, zero's are handled with
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004420 // vpxor in 128-bit and xor{pd,ps} in 256-bit, but no 256 version of pcmpeqd
4421 // is present, so AllOnes is ignored.
4422 if (ISD::isBuildVectorAllZeros(Op.getNode()) ||
4423 (Op.getValueType().getSizeInBits() != 256 &&
4424 ISD::isBuildVectorAllOnes(Op.getNode()))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004425 // Canonicalize this to <4 x i32> (SSE) to
Chris Lattner8a594482007-11-25 00:24:49 +00004426 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
4427 // eliminated on x86-32 hosts.
Dale Johannesen0488fb62010-09-30 23:57:10 +00004428 if (Op.getValueType() == MVT::v4i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004429 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004430
Gabor Greifba36cb52008-08-28 21:40:38 +00004431 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004432 return getOnesVector(Op.getValueType(), DAG, dl);
4433 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004434 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004435
Owen Andersone50ed302009-08-10 22:56:29 +00004436 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004437
Evan Cheng0db9fe62006-04-25 20:13:52 +00004438 unsigned NumZero = 0;
4439 unsigned NumNonZero = 0;
4440 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004441 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004442 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004443 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004444 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004445 if (Elt.getOpcode() == ISD::UNDEF)
4446 continue;
4447 Values.insert(Elt);
4448 if (Elt.getOpcode() != ISD::Constant &&
4449 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004450 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004451 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004452 NumZero++;
4453 else {
4454 NonZeros |= (1 << i);
4455 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004456 }
4457 }
4458
Chris Lattner97a2a562010-08-26 05:24:29 +00004459 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4460 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004461 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004462
Chris Lattner67f453a2008-03-09 05:42:06 +00004463 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004464 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004465 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004466 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004467
Chris Lattner62098042008-03-09 01:05:04 +00004468 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4469 // the value are obviously zero, truncate the value to i32 and do the
4470 // insertion that way. Only do this if the value is non-constant or if the
4471 // value is a constant being inserted into element 0. It is cheaper to do
4472 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004473 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004474 (!IsAllConstants || Idx == 0)) {
4475 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004476 // Handle SSE only.
4477 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4478 EVT VecVT = MVT::v4i32;
4479 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004480
Chris Lattner62098042008-03-09 01:05:04 +00004481 // Truncate the value (which may itself be a constant) to i32, and
4482 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004483 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004484 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004485 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4486 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004487
Chris Lattner62098042008-03-09 01:05:04 +00004488 // Now we have our 32-bit value zero extended in the low element of
4489 // a vector. If Idx != 0, swizzle it into place.
4490 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004491 SmallVector<int, 4> Mask;
4492 Mask.push_back(Idx);
4493 for (unsigned i = 1; i != VecElts; ++i)
4494 Mask.push_back(i);
4495 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004496 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004497 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004498 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004499 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004500 }
4501 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004502
Chris Lattner19f79692008-03-08 22:59:52 +00004503 // If we have a constant or non-constant insertion into the low element of
4504 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4505 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004506 // depending on what the source datatype is.
4507 if (Idx == 0) {
4508 if (NumZero == 0) {
4509 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004510 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4511 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004512 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4513 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4514 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4515 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004516 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4517 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004518 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4519 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004520 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4521 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4522 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004523 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00004524 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004525 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004526
4527 // Is it a vector logical left shift?
4528 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004529 X86::isZeroNode(Op.getOperand(0)) &&
4530 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004531 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004532 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004533 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004534 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004535 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004536 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004537
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004538 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004539 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004540
Chris Lattner19f79692008-03-08 22:59:52 +00004541 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4542 // is a non-constant being inserted into an element other than the low one,
4543 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4544 // movd/movss) to move this into the low element, then shuffle it into
4545 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004546 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004547 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004548
Evan Cheng0db9fe62006-04-25 20:13:52 +00004549 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004550 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4551 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004552 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004553 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004554 MaskVec.push_back(i == Idx ? 0 : 1);
4555 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004556 }
4557 }
4558
Chris Lattner67f453a2008-03-09 05:42:06 +00004559 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004560 if (Values.size() == 1) {
4561 if (EVTBits == 32) {
4562 // Instead of a shuffle like this:
4563 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4564 // Check if it's possible to issue this instead.
4565 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4566 unsigned Idx = CountTrailingZeros_32(NonZeros);
4567 SDValue Item = Op.getOperand(Idx);
4568 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4569 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4570 }
Dan Gohman475871a2008-07-27 21:46:04 +00004571 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004572 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004573
Dan Gohmana3941172007-07-24 22:55:08 +00004574 // A vector full of immediates; various special cases are already
4575 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004576 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004577 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004578
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004579 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004580 if (EVTBits == 64) {
4581 if (NumNonZero == 1) {
4582 // One half is zero or undef.
4583 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004584 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004585 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004586 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4587 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004588 }
Dan Gohman475871a2008-07-27 21:46:04 +00004589 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004590 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004591
4592 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004593 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004594 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004595 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004596 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004597 }
4598
Bill Wendling826f36f2007-03-28 00:57:11 +00004599 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004600 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004601 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004602 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004603 }
4604
4605 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004606 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004607 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004608 if (NumElems == 4 && NumZero > 0) {
4609 for (unsigned i = 0; i < 4; ++i) {
4610 bool isZero = !(NonZeros & (1 << i));
4611 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004612 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004613 else
Dale Johannesenace16102009-02-03 19:33:06 +00004614 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004615 }
4616
4617 for (unsigned i = 0; i < 2; ++i) {
4618 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4619 default: break;
4620 case 0:
4621 V[i] = V[i*2]; // Must be a zero vector.
4622 break;
4623 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004624 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004625 break;
4626 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004627 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004628 break;
4629 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004630 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004631 break;
4632 }
4633 }
4634
Nate Begeman9008ca62009-04-27 18:41:29 +00004635 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004636 bool Reverse = (NonZeros & 0x3) == 2;
4637 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004638 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004639 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4640 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004641 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4642 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004643 }
4644
Nate Begemanfdea31a2010-03-24 20:49:50 +00004645 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4646 // Check for a build vector of consecutive loads.
4647 for (unsigned i = 0; i < NumElems; ++i)
4648 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004649
Nate Begemanfdea31a2010-03-24 20:49:50 +00004650 // Check for elements which are consecutive loads.
4651 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4652 if (LD.getNode())
4653 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004654
4655 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004656 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004657 SDValue Result;
4658 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4659 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4660 else
4661 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004662
Chris Lattner24faf612010-08-28 17:59:08 +00004663 for (unsigned i = 1; i < NumElems; ++i) {
4664 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4665 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004666 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004667 }
4668 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004669 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004670
Chris Lattner6e80e442010-08-28 17:15:43 +00004671 // Otherwise, expand into a number of unpckl*, start by extending each of
4672 // our (non-undef) elements to the full vector width with the element in the
4673 // bottom slot of the vector (which generates no code for SSE).
4674 for (unsigned i = 0; i < NumElems; ++i) {
4675 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4676 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4677 else
4678 V[i] = DAG.getUNDEF(VT);
4679 }
4680
4681 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004682 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4683 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4684 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00004685 unsigned EltStride = NumElems >> 1;
4686 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00004687 for (unsigned i = 0; i < EltStride; ++i) {
4688 // If V[i+EltStride] is undef and this is the first round of mixing,
4689 // then it is safe to just drop this shuffle: V[i] is already in the
4690 // right place, the one element (since it's the first round) being
4691 // inserted as undef can be dropped. This isn't safe for successive
4692 // rounds because they will permute elements within both vectors.
4693 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
4694 EltStride == NumElems/2)
4695 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004696
Chris Lattner6e80e442010-08-28 17:15:43 +00004697 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00004698 }
Chris Lattner6e80e442010-08-28 17:15:43 +00004699 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004700 }
4701 return V[0];
4702 }
Dan Gohman475871a2008-07-27 21:46:04 +00004703 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004704}
4705
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004706SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004707X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004708 // We support concatenate two MMX registers and place them in a MMX
4709 // register. This is better than doing a stack convert.
4710 DebugLoc dl = Op.getDebugLoc();
4711 EVT ResVT = Op.getValueType();
4712 assert(Op.getNumOperands() == 2);
4713 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
4714 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
4715 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004716 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004717 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4718 InVec = Op.getOperand(1);
4719 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4720 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004721 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004722 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
4723 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
4724 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004725 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004726 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4727 Mask[0] = 0; Mask[1] = 2;
4728 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
4729 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004730 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004731}
4732
Nate Begemanb9a47b82009-02-23 08:49:38 +00004733// v8i16 shuffles - Prefer shuffles in the following order:
4734// 1. [all] pshuflw, pshufhw, optional move
4735// 2. [ssse3] 1 x pshufb
4736// 3. [ssse3] 2 x pshufb + 1 x por
4737// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004738SDValue
4739X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
4740 SelectionDAG &DAG) const {
4741 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00004742 SDValue V1 = SVOp->getOperand(0);
4743 SDValue V2 = SVOp->getOperand(1);
4744 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004745 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00004746
Nate Begemanb9a47b82009-02-23 08:49:38 +00004747 // Determine if more than 1 of the words in each of the low and high quadwords
4748 // of the result come from the same quadword of one of the two inputs. Undef
4749 // mask values count as coming from any quadword, for better codegen.
4750 SmallVector<unsigned, 4> LoQuad(4);
4751 SmallVector<unsigned, 4> HiQuad(4);
4752 BitVector InputQuads(4);
4753 for (unsigned i = 0; i < 8; ++i) {
4754 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00004755 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004756 MaskVals.push_back(EltIdx);
4757 if (EltIdx < 0) {
4758 ++Quad[0];
4759 ++Quad[1];
4760 ++Quad[2];
4761 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00004762 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004763 }
4764 ++Quad[EltIdx / 4];
4765 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00004766 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004767
Nate Begemanb9a47b82009-02-23 08:49:38 +00004768 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004769 unsigned MaxQuad = 1;
4770 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004771 if (LoQuad[i] > MaxQuad) {
4772 BestLoQuad = i;
4773 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004774 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004775 }
4776
Nate Begemanb9a47b82009-02-23 08:49:38 +00004777 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004778 MaxQuad = 1;
4779 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004780 if (HiQuad[i] > MaxQuad) {
4781 BestHiQuad = i;
4782 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004783 }
4784 }
4785
Nate Begemanb9a47b82009-02-23 08:49:38 +00004786 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00004787 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00004788 // single pshufb instruction is necessary. If There are more than 2 input
4789 // quads, disable the next transformation since it does not help SSSE3.
4790 bool V1Used = InputQuads[0] || InputQuads[1];
4791 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004792 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004793 if (InputQuads.count() == 2 && V1Used && V2Used) {
4794 BestLoQuad = InputQuads.find_first();
4795 BestHiQuad = InputQuads.find_next(BestLoQuad);
4796 }
4797 if (InputQuads.count() > 2) {
4798 BestLoQuad = -1;
4799 BestHiQuad = -1;
4800 }
4801 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004802
Nate Begemanb9a47b82009-02-23 08:49:38 +00004803 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
4804 // the shuffle mask. If a quad is scored as -1, that means that it contains
4805 // words from all 4 input quadwords.
4806 SDValue NewV;
4807 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004808 SmallVector<int, 8> MaskV;
4809 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
4810 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00004811 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004812 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
4813 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
4814 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004815
Nate Begemanb9a47b82009-02-23 08:49:38 +00004816 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
4817 // source words for the shuffle, to aid later transformations.
4818 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00004819 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00004820 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004821 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00004822 if (idx != (int)i)
4823 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004824 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00004825 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004826 AllWordsInNewV = false;
4827 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00004828 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004829
Nate Begemanb9a47b82009-02-23 08:49:38 +00004830 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
4831 if (AllWordsInNewV) {
4832 for (int i = 0; i != 8; ++i) {
4833 int idx = MaskVals[i];
4834 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004835 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004836 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004837 if ((idx != i) && idx < 4)
4838 pshufhw = false;
4839 if ((idx != i) && idx > 3)
4840 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00004841 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00004842 V1 = NewV;
4843 V2Used = false;
4844 BestLoQuad = 0;
4845 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004846 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004847
Nate Begemanb9a47b82009-02-23 08:49:38 +00004848 // If we've eliminated the use of V2, and the new mask is a pshuflw or
4849 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00004850 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004851 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
4852 unsigned TargetMask = 0;
4853 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00004854 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004855 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
4856 X86::getShufflePSHUFLWImmediate(NewV.getNode());
4857 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004858 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00004859 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004860 }
Eric Christopherfd179292009-08-27 18:07:15 +00004861
Nate Begemanb9a47b82009-02-23 08:49:38 +00004862 // If we have SSSE3, and all words of the result are from 1 input vector,
4863 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
4864 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004865 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004866 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004867
Nate Begemanb9a47b82009-02-23 08:49:38 +00004868 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00004869 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00004870 // mask, and elements that come from V1 in the V2 mask, so that the two
4871 // results can be OR'd together.
4872 bool TwoInputs = V1Used && V2Used;
4873 for (unsigned i = 0; i != 8; ++i) {
4874 int EltIdx = MaskVals[i] * 2;
4875 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004876 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4877 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004878 continue;
4879 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004880 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
4881 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004882 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004883 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004884 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004885 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004886 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004887 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004888 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004889
Nate Begemanb9a47b82009-02-23 08:49:38 +00004890 // Calculate the shuffle mask for the second input, shuffle it, and
4891 // OR it with the first shuffled input.
4892 pshufbMask.clear();
4893 for (unsigned i = 0; i != 8; ++i) {
4894 int EltIdx = MaskVals[i] * 2;
4895 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004896 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4897 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004898 continue;
4899 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004900 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
4901 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004902 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004903 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00004904 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004905 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004906 MVT::v16i8, &pshufbMask[0], 16));
4907 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004908 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004909 }
4910
4911 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
4912 // and update MaskVals with new element order.
4913 BitVector InOrder(8);
4914 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004915 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004916 for (int i = 0; i != 4; ++i) {
4917 int idx = MaskVals[i];
4918 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004919 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004920 InOrder.set(i);
4921 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004922 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004923 InOrder.set(i);
4924 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004925 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004926 }
4927 }
4928 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004929 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00004930 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004931 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004932
4933 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4934 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
4935 NewV.getOperand(0),
4936 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
4937 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004938 }
Eric Christopherfd179292009-08-27 18:07:15 +00004939
Nate Begemanb9a47b82009-02-23 08:49:38 +00004940 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
4941 // and update MaskVals with the new element order.
4942 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004943 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004944 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004945 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004946 for (unsigned i = 4; i != 8; ++i) {
4947 int idx = MaskVals[i];
4948 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004949 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004950 InOrder.set(i);
4951 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004952 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004953 InOrder.set(i);
4954 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004955 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004956 }
4957 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004958 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004959 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004960
4961 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4962 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
4963 NewV.getOperand(0),
4964 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
4965 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004966 }
Eric Christopherfd179292009-08-27 18:07:15 +00004967
Nate Begemanb9a47b82009-02-23 08:49:38 +00004968 // In case BestHi & BestLo were both -1, which means each quadword has a word
4969 // from each of the four input quadwords, calculate the InOrder bitvector now
4970 // before falling through to the insert/extract cleanup.
4971 if (BestLoQuad == -1 && BestHiQuad == -1) {
4972 NewV = V1;
4973 for (int i = 0; i != 8; ++i)
4974 if (MaskVals[i] < 0 || MaskVals[i] == i)
4975 InOrder.set(i);
4976 }
Eric Christopherfd179292009-08-27 18:07:15 +00004977
Nate Begemanb9a47b82009-02-23 08:49:38 +00004978 // The other elements are put in the right place using pextrw and pinsrw.
4979 for (unsigned i = 0; i != 8; ++i) {
4980 if (InOrder[i])
4981 continue;
4982 int EltIdx = MaskVals[i];
4983 if (EltIdx < 0)
4984 continue;
4985 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004986 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004987 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00004988 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004989 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00004990 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004991 DAG.getIntPtrConstant(i));
4992 }
4993 return NewV;
4994}
4995
4996// v16i8 shuffles - Prefer shuffles in the following order:
4997// 1. [ssse3] 1 x pshufb
4998// 2. [ssse3] 2 x pshufb + 1 x por
4999// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
5000static
Nate Begeman9008ca62009-04-27 18:41:29 +00005001SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00005002 SelectionDAG &DAG,
5003 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005004 SDValue V1 = SVOp->getOperand(0);
5005 SDValue V2 = SVOp->getOperand(1);
5006 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005007 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00005008 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00005009
Nate Begemanb9a47b82009-02-23 08:49:38 +00005010 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00005011 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00005012 // present, fall back to case 3.
5013 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
5014 bool V1Only = true;
5015 bool V2Only = true;
5016 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005017 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00005018 if (EltIdx < 0)
5019 continue;
5020 if (EltIdx < 16)
5021 V2Only = false;
5022 else
5023 V1Only = false;
5024 }
Eric Christopherfd179292009-08-27 18:07:15 +00005025
Nate Begemanb9a47b82009-02-23 08:49:38 +00005026 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
5027 if (TLI.getSubtarget()->hasSSSE3()) {
5028 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005029
Nate Begemanb9a47b82009-02-23 08:49:38 +00005030 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00005031 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005032 //
5033 // Otherwise, we have elements from both input vectors, and must zero out
5034 // elements that come from V2 in the first mask, and V1 in the second mask
5035 // so that we can OR them together.
5036 bool TwoInputs = !(V1Only || V2Only);
5037 for (unsigned i = 0; i != 16; ++i) {
5038 int EltIdx = MaskVals[i];
5039 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005040 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005041 continue;
5042 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005043 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005044 }
5045 // If all the elements are from V2, assign it to V1 and return after
5046 // building the first pshufb.
5047 if (V2Only)
5048 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00005049 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005050 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005051 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005052 if (!TwoInputs)
5053 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00005054
Nate Begemanb9a47b82009-02-23 08:49:38 +00005055 // Calculate the shuffle mask for the second input, shuffle it, and
5056 // OR it with the first shuffled input.
5057 pshufbMask.clear();
5058 for (unsigned i = 0; i != 16; ++i) {
5059 int EltIdx = MaskVals[i];
5060 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005061 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005062 continue;
5063 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005064 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005065 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005066 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005067 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005068 MVT::v16i8, &pshufbMask[0], 16));
5069 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005070 }
Eric Christopherfd179292009-08-27 18:07:15 +00005071
Nate Begemanb9a47b82009-02-23 08:49:38 +00005072 // No SSSE3 - Calculate in place words and then fix all out of place words
5073 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
5074 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005075 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5076 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005077 SDValue NewV = V2Only ? V2 : V1;
5078 for (int i = 0; i != 8; ++i) {
5079 int Elt0 = MaskVals[i*2];
5080 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00005081
Nate Begemanb9a47b82009-02-23 08:49:38 +00005082 // This word of the result is all undef, skip it.
5083 if (Elt0 < 0 && Elt1 < 0)
5084 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005085
Nate Begemanb9a47b82009-02-23 08:49:38 +00005086 // This word of the result is already in the correct place, skip it.
5087 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5088 continue;
5089 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
5090 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005091
Nate Begemanb9a47b82009-02-23 08:49:38 +00005092 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5093 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5094 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00005095
5096 // If Elt0 and Elt1 are defined, are consecutive, and can be load
5097 // using a single extract together, load it and store it.
5098 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005099 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005100 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00005101 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005102 DAG.getIntPtrConstant(i));
5103 continue;
5104 }
5105
Nate Begemanb9a47b82009-02-23 08:49:38 +00005106 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00005107 // source byte is not also odd, shift the extracted word left 8 bits
5108 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005109 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005110 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005111 DAG.getIntPtrConstant(Elt1 / 2));
5112 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005113 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00005114 DAG.getConstant(8,
5115 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005116 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005117 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5118 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005119 }
5120 // If Elt0 is defined, extract it from the appropriate source. If the
5121 // source byte is not also even, shift the extracted word right 8 bits. If
5122 // Elt1 was also defined, OR the extracted values together before
5123 // inserting them in the result.
5124 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005125 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005126 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5127 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005128 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00005129 DAG.getConstant(8,
5130 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005131 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005132 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5133 DAG.getConstant(0x00FF, MVT::i16));
5134 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00005135 : InsElt0;
5136 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005137 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005138 DAG.getIntPtrConstant(i));
5139 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005140 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005141}
5142
Evan Cheng7a831ce2007-12-15 03:00:47 +00005143/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005144/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00005145/// done when every pair / quad of shuffle mask elements point to elements in
5146/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005147/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00005148static
Nate Begeman9008ca62009-04-27 18:41:29 +00005149SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005150 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00005151 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00005152 SDValue V1 = SVOp->getOperand(0);
5153 SDValue V2 = SVOp->getOperand(1);
5154 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00005155 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005156 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00005157 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005158 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00005159 case MVT::v4f32: NewVT = MVT::v2f64; break;
5160 case MVT::v4i32: NewVT = MVT::v2i64; break;
5161 case MVT::v8i16: NewVT = MVT::v4i32; break;
5162 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00005163 }
5164
Nate Begeman9008ca62009-04-27 18:41:29 +00005165 int Scale = NumElems / NewWidth;
5166 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00005167 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005168 int StartIdx = -1;
5169 for (int j = 0; j < Scale; ++j) {
5170 int EltIdx = SVOp->getMaskElt(i+j);
5171 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005172 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00005173 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00005174 StartIdx = EltIdx - (EltIdx % Scale);
5175 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00005176 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005177 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005178 if (StartIdx == -1)
5179 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00005180 else
Nate Begeman9008ca62009-04-27 18:41:29 +00005181 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005182 }
5183
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005184 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
5185 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005186 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005187}
5188
Evan Chengd880b972008-05-09 21:53:03 +00005189/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005190///
Owen Andersone50ed302009-08-10 22:56:29 +00005191static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00005192 SDValue SrcOp, SelectionDAG &DAG,
5193 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005194 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005195 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00005196 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00005197 LD = dyn_cast<LoadSDNode>(SrcOp);
5198 if (!LD) {
5199 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
5200 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00005201 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00005202 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00005203 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005204 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00005205 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005206 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00005207 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005208 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005209 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5210 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5211 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00005212 SrcOp.getOperand(0)
5213 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005214 }
5215 }
5216 }
5217
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005218 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005219 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005220 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00005221 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005222}
5223
Evan Chengace3c172008-07-22 21:13:36 +00005224/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
5225/// shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00005226static SDValue
Nate Begeman9008ca62009-04-27 18:41:29 +00005227LowerVECTOR_SHUFFLE_4wide(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
5228 SDValue V1 = SVOp->getOperand(0);
5229 SDValue V2 = SVOp->getOperand(1);
5230 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00005231 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00005232
Evan Chengace3c172008-07-22 21:13:36 +00005233 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00005234 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005235 SmallVector<int, 8> Mask1(4U, -1);
5236 SmallVector<int, 8> PermMask;
5237 SVOp->getMask(PermMask);
5238
Evan Chengace3c172008-07-22 21:13:36 +00005239 unsigned NumHi = 0;
5240 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00005241 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005242 int Idx = PermMask[i];
5243 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005244 Locs[i] = std::make_pair(-1, -1);
5245 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005246 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
5247 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005248 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00005249 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005250 NumLo++;
5251 } else {
5252 Locs[i] = std::make_pair(1, NumHi);
5253 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005254 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005255 NumHi++;
5256 }
5257 }
5258 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005259
Evan Chengace3c172008-07-22 21:13:36 +00005260 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005261 // If no more than two elements come from either vector. This can be
5262 // implemented with two shuffles. First shuffle gather the elements.
5263 // The second shuffle, which takes the first shuffle as both of its
5264 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00005265 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005266
Nate Begeman9008ca62009-04-27 18:41:29 +00005267 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00005268
Evan Chengace3c172008-07-22 21:13:36 +00005269 for (unsigned i = 0; i != 4; ++i) {
5270 if (Locs[i].first == -1)
5271 continue;
5272 else {
5273 unsigned Idx = (i < 2) ? 0 : 4;
5274 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005275 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005276 }
5277 }
5278
Nate Begeman9008ca62009-04-27 18:41:29 +00005279 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005280 } else if (NumLo == 3 || NumHi == 3) {
5281 // Otherwise, we must have three elements from one vector, call it X, and
5282 // one element from the other, call it Y. First, use a shufps to build an
5283 // intermediate vector with the one element from Y and the element from X
5284 // that will be in the same half in the final destination (the indexes don't
5285 // matter). Then, use a shufps to build the final vector, taking the half
5286 // containing the element from Y from the intermediate, and the other half
5287 // from X.
5288 if (NumHi == 3) {
5289 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00005290 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005291 std::swap(V1, V2);
5292 }
5293
5294 // Find the element from V2.
5295 unsigned HiIndex;
5296 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005297 int Val = PermMask[HiIndex];
5298 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005299 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005300 if (Val >= 4)
5301 break;
5302 }
5303
Nate Begeman9008ca62009-04-27 18:41:29 +00005304 Mask1[0] = PermMask[HiIndex];
5305 Mask1[1] = -1;
5306 Mask1[2] = PermMask[HiIndex^1];
5307 Mask1[3] = -1;
5308 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005309
5310 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005311 Mask1[0] = PermMask[0];
5312 Mask1[1] = PermMask[1];
5313 Mask1[2] = HiIndex & 1 ? 6 : 4;
5314 Mask1[3] = HiIndex & 1 ? 4 : 6;
5315 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005316 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005317 Mask1[0] = HiIndex & 1 ? 2 : 0;
5318 Mask1[1] = HiIndex & 1 ? 0 : 2;
5319 Mask1[2] = PermMask[2];
5320 Mask1[3] = PermMask[3];
5321 if (Mask1[2] >= 0)
5322 Mask1[2] += 4;
5323 if (Mask1[3] >= 0)
5324 Mask1[3] += 4;
5325 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005326 }
Evan Chengace3c172008-07-22 21:13:36 +00005327 }
5328
5329 // Break it into (shuffle shuffle_hi, shuffle_lo).
5330 Locs.clear();
David Greenec4db4e52011-02-28 19:06:56 +00005331 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005332 SmallVector<int,8> LoMask(4U, -1);
5333 SmallVector<int,8> HiMask(4U, -1);
5334
5335 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005336 unsigned MaskIdx = 0;
5337 unsigned LoIdx = 0;
5338 unsigned HiIdx = 2;
5339 for (unsigned i = 0; i != 4; ++i) {
5340 if (i == 2) {
5341 MaskPtr = &HiMask;
5342 MaskIdx = 1;
5343 LoIdx = 0;
5344 HiIdx = 2;
5345 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005346 int Idx = PermMask[i];
5347 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005348 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005349 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005350 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005351 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005352 LoIdx++;
5353 } else {
5354 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005355 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005356 HiIdx++;
5357 }
5358 }
5359
Nate Begeman9008ca62009-04-27 18:41:29 +00005360 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5361 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5362 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005363 for (unsigned i = 0; i != 4; ++i) {
5364 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005365 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005366 } else {
5367 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005368 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005369 }
5370 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005371 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005372}
5373
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005374static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005375 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005376 V = V.getOperand(0);
5377 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5378 V = V.getOperand(0);
5379 if (MayFoldLoad(V))
5380 return true;
5381 return false;
5382}
5383
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005384// FIXME: the version above should always be used. Since there's
5385// a bug where several vector shuffles can't be folded because the
5386// DAG is not updated during lowering and a node claims to have two
5387// uses while it only has one, use this version, and let isel match
5388// another instruction if the load really happens to have more than
5389// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005390// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005391static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005392 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005393 V = V.getOperand(0);
5394 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5395 V = V.getOperand(0);
5396 if (ISD::isNormalLoad(V.getNode()))
5397 return true;
5398 return false;
5399}
5400
5401/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5402/// a vector extract, and if both can be later optimized into a single load.
5403/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5404/// here because otherwise a target specific shuffle node is going to be
5405/// emitted for this shuffle, and the optimization not done.
5406/// FIXME: This is probably not the best approach, but fix the problem
5407/// until the right path is decided.
5408static
5409bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5410 const TargetLowering &TLI) {
5411 EVT VT = V.getValueType();
5412 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5413
5414 // Be sure that the vector shuffle is present in a pattern like this:
5415 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5416 if (!V.hasOneUse())
5417 return false;
5418
5419 SDNode *N = *V.getNode()->use_begin();
5420 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5421 return false;
5422
5423 SDValue EltNo = N->getOperand(1);
5424 if (!isa<ConstantSDNode>(EltNo))
5425 return false;
5426
5427 // If the bit convert changed the number of elements, it is unsafe
5428 // to examine the mask.
5429 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005430 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005431 EVT SrcVT = V.getOperand(0).getValueType();
5432 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5433 return false;
5434 V = V.getOperand(0);
5435 HasShuffleIntoBitcast = true;
5436 }
5437
5438 // Select the input vector, guarding against out of range extract vector.
5439 unsigned NumElems = VT.getVectorNumElements();
5440 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5441 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5442 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5443
5444 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005445 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005446 V = V.getOperand(0);
5447
5448 if (ISD::isNormalLoad(V.getNode())) {
5449 // Is the original load suitable?
5450 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5451
5452 // FIXME: avoid the multi-use bug that is preventing lots of
5453 // of foldings to be detected, this is still wrong of course, but
5454 // give the temporary desired behavior, and if it happens that
5455 // the load has real more uses, during isel it will not fold, and
5456 // will generate poor code.
5457 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5458 return false;
5459
5460 if (!HasShuffleIntoBitcast)
5461 return true;
5462
5463 // If there's a bitcast before the shuffle, check if the load type and
5464 // alignment is valid.
5465 unsigned Align = LN0->getAlignment();
5466 unsigned NewAlign =
5467 TLI.getTargetData()->getABITypeAlignment(
5468 VT.getTypeForEVT(*DAG.getContext()));
5469
5470 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5471 return false;
5472 }
5473
5474 return true;
5475}
5476
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005477static
Evan Cheng835580f2010-10-07 20:50:20 +00005478SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5479 EVT VT = Op.getValueType();
5480
5481 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005482 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
5483 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00005484 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5485 V1, DAG));
5486}
5487
5488static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005489SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5490 bool HasSSE2) {
5491 SDValue V1 = Op.getOperand(0);
5492 SDValue V2 = Op.getOperand(1);
5493 EVT VT = Op.getValueType();
5494
5495 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5496
5497 if (HasSSE2 && VT == MVT::v2f64)
5498 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5499
5500 // v4f32 or v4i32
5501 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5502}
5503
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005504static
5505SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5506 SDValue V1 = Op.getOperand(0);
5507 SDValue V2 = Op.getOperand(1);
5508 EVT VT = Op.getValueType();
5509
5510 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5511 "unsupported shuffle type");
5512
5513 if (V2.getOpcode() == ISD::UNDEF)
5514 V2 = V1;
5515
5516 // v4i32 or v4f32
5517 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5518}
5519
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005520static
5521SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5522 SDValue V1 = Op.getOperand(0);
5523 SDValue V2 = Op.getOperand(1);
5524 EVT VT = Op.getValueType();
5525 unsigned NumElems = VT.getVectorNumElements();
5526
5527 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5528 // operand of these instructions is only memory, so check if there's a
5529 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5530 // same masks.
5531 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005532
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005533 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005534 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005535 CanFoldLoad = true;
5536
5537 // When V1 is a load, it can be folded later into a store in isel, example:
5538 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5539 // turns into:
5540 // (MOVLPSmr addr:$src1, VR128:$src2)
5541 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005542 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005543 CanFoldLoad = true;
5544
Eric Christopher893a8822011-02-20 05:04:42 +00005545 // Both of them can't be memory operations though.
5546 if (MayFoldVectorLoad(V1) && MayFoldVectorLoad(V2))
5547 CanFoldLoad = false;
Owen Anderson95771af2011-02-25 21:41:48 +00005548
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005549 if (CanFoldLoad) {
5550 if (HasSSE2 && NumElems == 2)
5551 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5552
5553 if (NumElems == 4)
5554 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5555 }
5556
5557 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5558 // movl and movlp will both match v2i64, but v2i64 is never matched by
5559 // movl earlier because we make it strict to avoid messing with the movlp load
5560 // folding logic (see the code above getMOVLP call). Match it here then,
5561 // this is horrible, but will stay like this until we move all shuffle
5562 // matching to x86 specific nodes. Note that for the 1st condition all
5563 // types are matched with movsd.
5564 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5565 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5566 else if (HasSSE2)
5567 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5568
5569
5570 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5571
5572 // Invert the operand order and use SHUFPS to match it.
5573 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5574 X86::getShuffleSHUFImmediate(SVOp), DAG);
5575}
5576
David Greenec4db4e52011-02-28 19:06:56 +00005577static inline unsigned getUNPCKLOpcode(EVT VT, const X86Subtarget *Subtarget) {
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005578 switch(VT.getSimpleVT().SimpleTy) {
5579 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5580 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
David Greenec4db4e52011-02-28 19:06:56 +00005581 case MVT::v4f32:
5582 return Subtarget->hasAVX() ? X86ISD::VUNPCKLPS : X86ISD::UNPCKLPS;
5583 case MVT::v2f64:
5584 return Subtarget->hasAVX() ? X86ISD::VUNPCKLPD : X86ISD::UNPCKLPD;
5585 case MVT::v8f32: return X86ISD::VUNPCKLPSY;
5586 case MVT::v4f64: return X86ISD::VUNPCKLPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005587 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5588 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5589 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00005590 llvm_unreachable("Unknown type for unpckl");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005591 }
5592 return 0;
5593}
5594
5595static inline unsigned getUNPCKHOpcode(EVT VT) {
5596 switch(VT.getSimpleVT().SimpleTy) {
5597 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5598 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5599 case MVT::v4f32: return X86ISD::UNPCKHPS;
5600 case MVT::v2f64: return X86ISD::UNPCKHPD;
5601 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5602 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5603 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00005604 llvm_unreachable("Unknown type for unpckh");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005605 }
5606 return 0;
5607}
5608
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005609static
5610SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005611 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005612 const X86Subtarget *Subtarget) {
5613 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5614 EVT VT = Op.getValueType();
5615 DebugLoc dl = Op.getDebugLoc();
5616 SDValue V1 = Op.getOperand(0);
5617 SDValue V2 = Op.getOperand(1);
5618
5619 if (isZeroShuffle(SVOp))
5620 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
5621
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005622 // Handle splat operations
5623 if (SVOp->isSplat()) {
5624 // Special case, this is the only place now where it's
5625 // allowed to return a vector_shuffle operation without
5626 // using a target specific node, because *hopefully* it
5627 // will be optimized away by the dag combiner.
5628 if (VT.getVectorNumElements() <= 4 &&
5629 CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
5630 return Op;
5631
5632 // Handle splats by matching through known masks
5633 if (VT.getVectorNumElements() <= 4)
5634 return SDValue();
5635
Evan Cheng835580f2010-10-07 20:50:20 +00005636 // Canonicalize all of the remaining to v4f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005637 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005638 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005639
5640 // If the shuffle can be profitably rewritten as a narrower shuffle, then
5641 // do it!
5642 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
5643 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5644 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005645 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005646 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
5647 // FIXME: Figure out a cleaner way to do this.
5648 // Try to make use of movq to zero out the top part.
5649 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
5650 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5651 if (NewOp.getNode()) {
5652 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
5653 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
5654 DAG, Subtarget, dl);
5655 }
5656 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
5657 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5658 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
5659 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
5660 DAG, Subtarget, dl);
5661 }
5662 }
5663 return SDValue();
5664}
5665
Dan Gohman475871a2008-07-27 21:46:04 +00005666SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005667X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00005668 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005669 SDValue V1 = Op.getOperand(0);
5670 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005671 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005672 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00005673 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005674 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005675 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
5676 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00005677 bool V1IsSplat = false;
5678 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005679 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005680 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005681 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005682 MachineFunction &MF = DAG.getMachineFunction();
5683 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005684
Dale Johannesen0488fb62010-09-30 23:57:10 +00005685 // Shuffle operations on MMX not supported.
5686 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00005687 return Op;
5688
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005689 // Vector shuffle lowering takes 3 steps:
5690 //
5691 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
5692 // narrowing and commutation of operands should be handled.
5693 // 2) Matching of shuffles with known shuffle masks to x86 target specific
5694 // shuffle nodes.
5695 // 3) Rewriting of unmatched masks into new generic shuffle operations,
5696 // so the shuffle can be broken into other shuffles and the legalizer can
5697 // try the lowering again.
5698 //
5699 // The general ideia is that no vector_shuffle operation should be left to
5700 // be matched during isel, all of them must be converted to a target specific
5701 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00005702
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005703 // Normalize the input vectors. Here splats, zeroed vectors, profitable
5704 // narrowing and commutation of operands should be handled. The actual code
5705 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005706 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005707 if (NewOp.getNode())
5708 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00005709
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005710 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
5711 // unpckh_undef). Only use pshufd if speed is more important than size.
5712 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
5713 if (VT != MVT::v2i64 && VT != MVT::v2f64)
David Greenec4db4e52011-02-28 19:06:56 +00005714 return getTargetShuffleNode(getUNPCKLOpcode(VT, getSubtarget()), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005715 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
5716 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5717 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00005718
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005719 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00005720 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00005721 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005722
Dale Johannesen0488fb62010-09-30 23:57:10 +00005723 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005724 return getMOVHighToLow(Op, dl, DAG);
5725
5726 // Use to match splats
5727 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
5728 (VT == MVT::v2f64 || VT == MVT::v2i64))
5729 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5730
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005731 if (X86::isPSHUFDMask(SVOp)) {
5732 // The actual implementation will match the mask in the if above and then
5733 // during isel it can match several different instructions, not only pshufd
5734 // as its name says, sad but true, emulate the behavior for now...
5735 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
5736 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
5737
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005738 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5739
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005740 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005741 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
5742
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005743 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005744 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
5745 TargetMask, DAG);
5746
5747 if (VT == MVT::v4f32)
5748 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
5749 TargetMask, DAG);
5750 }
Eric Christopherfd179292009-08-27 18:07:15 +00005751
Evan Chengf26ffe92008-05-29 08:22:04 +00005752 // Check if this can be converted into a logical shift.
5753 bool isLeft = false;
5754 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00005755 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00005756 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00005757 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00005758 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005759 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00005760 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005761 EVT EltVT = VT.getVectorElementType();
5762 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005763 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005764 }
Eric Christopherfd179292009-08-27 18:07:15 +00005765
Nate Begeman9008ca62009-04-27 18:41:29 +00005766 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005767 if (V1IsUndef)
5768 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00005769 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00005770 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00005771 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005772 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005773 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5774
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005775 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005776 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5777 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00005778 }
Eric Christopherfd179292009-08-27 18:07:15 +00005779
Nate Begeman9008ca62009-04-27 18:41:29 +00005780 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00005781 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
5782 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005783
Dale Johannesen0488fb62010-09-30 23:57:10 +00005784 if (X86::isMOVHLPSMask(SVOp))
5785 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005786
Dale Johannesen0488fb62010-09-30 23:57:10 +00005787 if (X86::isMOVSHDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5788 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005789
Dale Johannesen0488fb62010-09-30 23:57:10 +00005790 if (X86::isMOVSLDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5791 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00005792
Dale Johannesen0488fb62010-09-30 23:57:10 +00005793 if (X86::isMOVLPMask(SVOp))
5794 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005795
Nate Begeman9008ca62009-04-27 18:41:29 +00005796 if (ShouldXformToMOVHLPS(SVOp) ||
5797 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
5798 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005799
Evan Chengf26ffe92008-05-29 08:22:04 +00005800 if (isShift) {
5801 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005802 EVT EltVT = VT.getVectorElementType();
5803 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005804 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005805 }
Eric Christopherfd179292009-08-27 18:07:15 +00005806
Evan Cheng9eca5e82006-10-25 21:49:50 +00005807 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00005808 // FIXME: This should also accept a bitcast of a splat? Be careful, not
5809 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00005810 V1IsSplat = isSplatVector(V1.getNode());
5811 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005812
Chris Lattner8a594482007-11-25 00:24:49 +00005813 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00005814 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005815 Op = CommuteVectorShuffle(SVOp, DAG);
5816 SVOp = cast<ShuffleVectorSDNode>(Op);
5817 V1 = SVOp->getOperand(0);
5818 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00005819 std::swap(V1IsSplat, V2IsSplat);
5820 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005821 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00005822 }
5823
Nate Begeman9008ca62009-04-27 18:41:29 +00005824 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
5825 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00005826 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00005827 return V1;
5828 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
5829 // the instruction selector will not match, so get a canonical MOVL with
5830 // swapped operands to undo the commute.
5831 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00005832 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005833
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005834 if (X86::isUNPCKLMask(SVOp))
David Greenec4db4e52011-02-28 19:06:56 +00005835 return getTargetShuffleNode(getUNPCKLOpcode(VT, getSubtarget()),
5836 dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005837
5838 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005839 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00005840
Evan Cheng9bbbb982006-10-25 20:48:19 +00005841 if (V2IsSplat) {
5842 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00005843 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00005844 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00005845 SDValue NewMask = NormalizeMask(SVOp, DAG);
5846 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
5847 if (NSVOp != SVOp) {
5848 if (X86::isUNPCKLMask(NSVOp, true)) {
5849 return NewMask;
5850 } else if (X86::isUNPCKHMask(NSVOp, true)) {
5851 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005852 }
5853 }
5854 }
5855
Evan Cheng9eca5e82006-10-25 21:49:50 +00005856 if (Commuted) {
5857 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00005858 // FIXME: this seems wrong.
5859 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
5860 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005861
5862 if (X86::isUNPCKLMask(NewSVOp))
David Greenec4db4e52011-02-28 19:06:56 +00005863 return getTargetShuffleNode(getUNPCKLOpcode(VT, getSubtarget()),
5864 dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005865
5866 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005867 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005868 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005869
Nate Begeman9008ca62009-04-27 18:41:29 +00005870 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00005871 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00005872 return CommuteVectorShuffle(SVOp, DAG);
5873
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00005874 // The checks below are all present in isShuffleMaskLegal, but they are
5875 // inlined here right now to enable us to directly emit target specific
5876 // nodes, and remove one by one until they don't return Op anymore.
5877 SmallVector<int, 16> M;
5878 SVOp->getMask(M);
5879
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005880 if (isPALIGNRMask(M, VT, HasSSSE3))
5881 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
5882 X86::getShufflePALIGNRImmediate(SVOp),
5883 DAG);
5884
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00005885 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
5886 SVOp->getSplatIndex() == 0 && V2IsUndef) {
David Greenec4db4e52011-02-28 19:06:56 +00005887 if (VT == MVT::v2f64) {
5888 X86ISD::NodeType Opcode =
5889 getSubtarget()->hasAVX() ? X86ISD::VUNPCKLPD : X86ISD::UNPCKLPD;
5890 return getTargetShuffleNode(Opcode, dl, VT, V1, V1, DAG);
5891 }
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00005892 if (VT == MVT::v2i64)
5893 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
5894 }
5895
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00005896 if (isPSHUFHWMask(M, VT))
5897 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
5898 X86::getShufflePSHUFHWImmediate(SVOp),
5899 DAG);
5900
5901 if (isPSHUFLWMask(M, VT))
5902 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
5903 X86::getShufflePSHUFLWImmediate(SVOp),
5904 DAG);
5905
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00005906 if (isSHUFPMask(M, VT)) {
5907 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5908 if (VT == MVT::v4f32 || VT == MVT::v4i32)
5909 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
5910 TargetMask, DAG);
5911 if (VT == MVT::v2f64 || VT == MVT::v2i64)
5912 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
5913 TargetMask, DAG);
5914 }
5915
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005916 if (X86::isUNPCKL_v_undef_Mask(SVOp))
5917 if (VT != MVT::v2i64 && VT != MVT::v2f64)
David Greenec4db4e52011-02-28 19:06:56 +00005918 return getTargetShuffleNode(getUNPCKLOpcode(VT, getSubtarget()),
5919 dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005920 if (X86::isUNPCKH_v_undef_Mask(SVOp))
5921 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5922 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5923
Evan Cheng14b32e12007-12-11 01:46:18 +00005924 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
Owen Anderson825b72b2009-08-11 20:47:22 +00005925 if (VT == MVT::v8i16) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005926 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005927 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00005928 return NewOp;
5929 }
5930
Owen Anderson825b72b2009-08-11 20:47:22 +00005931 if (VT == MVT::v16i8) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005932 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005933 if (NewOp.getNode())
5934 return NewOp;
5935 }
Eric Christopherfd179292009-08-27 18:07:15 +00005936
Dale Johannesen0488fb62010-09-30 23:57:10 +00005937 // Handle all 4 wide cases with a number of shuffles.
5938 if (NumElems == 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005939 return LowerVECTOR_SHUFFLE_4wide(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005940
Dan Gohman475871a2008-07-27 21:46:04 +00005941 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005942}
5943
Dan Gohman475871a2008-07-27 21:46:04 +00005944SDValue
5945X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00005946 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005947 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005948 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005949 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005950 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005951 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005952 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005953 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005954 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005955 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00005956 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
5957 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
5958 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005959 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5960 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005961 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005962 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00005963 Op.getOperand(0)),
5964 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00005965 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005966 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005967 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005968 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005969 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00005970 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00005971 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
5972 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005973 // result has a single use which is a store or a bitcast to i32. And in
5974 // the case of a store, it's not worth it if the index is a constant 0,
5975 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00005976 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00005977 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00005978 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005979 if ((User->getOpcode() != ISD::STORE ||
5980 (isa<ConstantSDNode>(Op.getOperand(1)) &&
5981 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005982 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005983 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00005984 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00005985 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005986 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00005987 Op.getOperand(0)),
5988 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005989 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00005990 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00005991 // ExtractPS works with constant index.
5992 if (isa<ConstantSDNode>(Op.getOperand(1)))
5993 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005994 }
Dan Gohman475871a2008-07-27 21:46:04 +00005995 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005996}
5997
5998
Dan Gohman475871a2008-07-27 21:46:04 +00005999SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006000X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6001 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006002 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00006003 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006004
David Greene74a579d2011-02-10 16:57:36 +00006005 SDValue Vec = Op.getOperand(0);
6006 EVT VecVT = Vec.getValueType();
6007
6008 // If this is a 256-bit vector result, first extract the 128-bit
6009 // vector and then extract from the 128-bit vector.
6010 if (VecVT.getSizeInBits() > 128) {
6011 DebugLoc dl = Op.getNode()->getDebugLoc();
6012 unsigned NumElems = VecVT.getVectorNumElements();
6013 SDValue Idx = Op.getOperand(1);
6014
6015 if (!isa<ConstantSDNode>(Idx))
6016 return SDValue();
6017
6018 unsigned ExtractNumElems = NumElems / (VecVT.getSizeInBits() / 128);
6019 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
6020
6021 // Get the 128-bit vector.
6022 bool Upper = IdxVal >= ExtractNumElems;
6023 Vec = Extract128BitVector(Vec, Idx, DAG, dl);
6024
6025 // Extract from it.
6026 SDValue ScaledIdx = Idx;
6027 if (Upper)
6028 ScaledIdx = DAG.getNode(ISD::SUB, dl, Idx.getValueType(), Idx,
6029 DAG.getConstant(ExtractNumElems,
6030 Idx.getValueType()));
6031 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
6032 ScaledIdx);
6033 }
6034
6035 assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
6036
Evan Cheng62a3f152008-03-24 21:52:23 +00006037 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006038 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006039 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00006040 return Res;
6041 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00006042
Owen Andersone50ed302009-08-10 22:56:29 +00006043 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006044 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006045 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006046 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006047 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006048 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006049 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006050 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6051 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006052 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006053 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00006054 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006055 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00006056 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00006057 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006058 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00006059 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006060 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006061 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006062 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006063 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006064 if (Idx == 0)
6065 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00006066
Evan Cheng0db9fe62006-04-25 20:13:52 +00006067 // SHUFPS the element to the lowest double word, then movss.
Nate Begeman9008ca62009-04-27 18:41:29 +00006068 int Mask[4] = { Idx, -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006069 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006070 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006071 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006072 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006073 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00006074 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006075 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
6076 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
6077 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006078 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006079 if (Idx == 0)
6080 return Op;
6081
6082 // UNPCKHPD the element to the lowest double word, then movsd.
6083 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6084 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00006085 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006086 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006087 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006088 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006089 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006090 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006091 }
6092
Dan Gohman475871a2008-07-27 21:46:04 +00006093 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006094}
6095
Dan Gohman475871a2008-07-27 21:46:04 +00006096SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006097X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6098 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006099 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006100 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006101 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006102
Dan Gohman475871a2008-07-27 21:46:04 +00006103 SDValue N0 = Op.getOperand(0);
6104 SDValue N1 = Op.getOperand(1);
6105 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00006106
Dan Gohman8a55ce42009-09-23 21:02:20 +00006107 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00006108 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006109 unsigned Opc;
6110 if (VT == MVT::v8i16)
6111 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006112 else if (VT == MVT::v16i8)
6113 Opc = X86ISD::PINSRB;
6114 else
6115 Opc = X86ISD::PINSRB;
6116
Nate Begeman14d12ca2008-02-11 04:19:36 +00006117 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
6118 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006119 if (N1.getValueType() != MVT::i32)
6120 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6121 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006122 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00006123 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006124 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006125 // Bits [7:6] of the constant are the source select. This will always be
6126 // zero here. The DAG Combiner may combine an extract_elt index into these
6127 // bits. For example (insert (extract, 3), 2) could be matched by putting
6128 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00006129 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00006130 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00006131 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00006132 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006133 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00006134 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00006135 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00006136 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006137 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00006138 // PINSR* works with constant index.
6139 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006140 }
Dan Gohman475871a2008-07-27 21:46:04 +00006141 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006142}
6143
Dan Gohman475871a2008-07-27 21:46:04 +00006144SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006145X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006146 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006147 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006148
David Greene6b381262011-02-09 15:32:06 +00006149 DebugLoc dl = Op.getDebugLoc();
6150 SDValue N0 = Op.getOperand(0);
6151 SDValue N1 = Op.getOperand(1);
6152 SDValue N2 = Op.getOperand(2);
6153
6154 // If this is a 256-bit vector result, first insert into a 128-bit
6155 // vector and then insert into the 256-bit vector.
6156 if (VT.getSizeInBits() > 128) {
6157 if (!isa<ConstantSDNode>(N2))
6158 return SDValue();
6159
6160 // Get the 128-bit vector.
6161 unsigned NumElems = VT.getVectorNumElements();
6162 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
6163 bool Upper = IdxVal >= NumElems / 2;
6164
6165 SDValue SubN0 = Extract128BitVector(N0, N2, DAG, dl);
6166
6167 // Insert into it.
6168 SDValue ScaledN2 = N2;
6169 if (Upper)
6170 ScaledN2 = DAG.getNode(ISD::SUB, dl, N2.getValueType(), N2,
Owen Anderson95771af2011-02-25 21:41:48 +00006171 DAG.getConstant(NumElems /
David Greene6b381262011-02-09 15:32:06 +00006172 (VT.getSizeInBits() / 128),
6173 N2.getValueType()));
6174 Op = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, SubN0.getValueType(), SubN0,
6175 N1, ScaledN2);
6176
6177 // Insert the 128-bit vector
6178 // FIXME: Why UNDEF?
6179 return Insert128BitVector(N0, Op, N2, DAG, dl);
6180 }
6181
Nate Begeman14d12ca2008-02-11 04:19:36 +00006182 if (Subtarget->hasSSE41())
6183 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
6184
Dan Gohman8a55ce42009-09-23 21:02:20 +00006185 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00006186 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00006187
Dan Gohman8a55ce42009-09-23 21:02:20 +00006188 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00006189 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
6190 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006191 if (N1.getValueType() != MVT::i32)
6192 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6193 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006194 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00006195 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006196 }
Dan Gohman475871a2008-07-27 21:46:04 +00006197 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006198}
6199
Dan Gohman475871a2008-07-27 21:46:04 +00006200SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006201X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
David Greene2fcdfb42011-02-10 23:11:29 +00006202 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006203 DebugLoc dl = Op.getDebugLoc();
David Greene2fcdfb42011-02-10 23:11:29 +00006204 EVT OpVT = Op.getValueType();
6205
6206 // If this is a 256-bit vector result, first insert into a 128-bit
6207 // vector and then insert into the 256-bit vector.
6208 if (OpVT.getSizeInBits() > 128) {
6209 // Insert into a 128-bit vector.
6210 EVT VT128 = EVT::getVectorVT(*Context,
6211 OpVT.getVectorElementType(),
6212 OpVT.getVectorNumElements() / 2);
6213
6214 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
6215
6216 // Insert the 128-bit vector.
6217 return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op,
6218 DAG.getConstant(0, MVT::i32),
6219 DAG, dl);
6220 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006221
Chris Lattnerf172ecd2010-07-04 23:07:25 +00006222 if (Op.getValueType() == MVT::v1i64 &&
6223 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00006224 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00006225
Owen Anderson825b72b2009-08-11 20:47:22 +00006226 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00006227 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
6228 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006229 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00006230 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006231}
6232
David Greene91585092011-01-26 15:38:49 +00006233// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
6234// a simple subregister reference or explicit instructions to grab
6235// upper bits of a vector.
6236SDValue
6237X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6238 if (Subtarget->hasAVX()) {
David Greenea5f26012011-02-07 19:36:54 +00006239 DebugLoc dl = Op.getNode()->getDebugLoc();
6240 SDValue Vec = Op.getNode()->getOperand(0);
6241 SDValue Idx = Op.getNode()->getOperand(1);
6242
6243 if (Op.getNode()->getValueType(0).getSizeInBits() == 128
6244 && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
6245 return Extract128BitVector(Vec, Idx, DAG, dl);
6246 }
David Greene91585092011-01-26 15:38:49 +00006247 }
6248 return SDValue();
6249}
6250
David Greenecfe33c42011-01-26 19:13:22 +00006251// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
6252// simple superregister reference or explicit instructions to insert
6253// the upper bits of a vector.
6254SDValue
6255X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6256 if (Subtarget->hasAVX()) {
6257 DebugLoc dl = Op.getNode()->getDebugLoc();
6258 SDValue Vec = Op.getNode()->getOperand(0);
6259 SDValue SubVec = Op.getNode()->getOperand(1);
6260 SDValue Idx = Op.getNode()->getOperand(2);
6261
6262 if (Op.getNode()->getValueType(0).getSizeInBits() == 256
6263 && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
David Greenea5f26012011-02-07 19:36:54 +00006264 return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00006265 }
6266 }
6267 return SDValue();
6268}
6269
Bill Wendling056292f2008-09-16 21:48:12 +00006270// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
6271// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
6272// one of the above mentioned nodes. It has to be wrapped because otherwise
6273// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
6274// be used to form addressing mode. These wrapped nodes will be selected
6275// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00006276SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006277X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006278 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006279
Chris Lattner41621a22009-06-26 19:22:52 +00006280 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6281 // global base reg.
6282 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006283 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006284 CodeModel::Model M = getTargetMachine().getCodeModel();
6285
Chris Lattner4f066492009-07-11 20:29:19 +00006286 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006287 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006288 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006289 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006290 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006291 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006292 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006293
Evan Cheng1606e8e2009-03-13 07:51:59 +00006294 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00006295 CP->getAlignment(),
6296 CP->getOffset(), OpFlag);
6297 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00006298 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006299 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00006300 if (OpFlag) {
6301 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00006302 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006303 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006304 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006305 }
6306
6307 return Result;
6308}
6309
Dan Gohmand858e902010-04-17 15:26:15 +00006310SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006311 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006312
Chris Lattner18c59872009-06-27 04:16:01 +00006313 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6314 // global base reg.
6315 unsigned char OpFlag = 0;
6316 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006317 CodeModel::Model M = getTargetMachine().getCodeModel();
6318
Chris Lattner4f066492009-07-11 20:29:19 +00006319 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006320 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006321 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006322 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006323 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006324 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006325 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006326
Chris Lattner18c59872009-06-27 04:16:01 +00006327 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
6328 OpFlag);
6329 DebugLoc DL = JT->getDebugLoc();
6330 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006331
Chris Lattner18c59872009-06-27 04:16:01 +00006332 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00006333 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00006334 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6335 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006336 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006337 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006338
Chris Lattner18c59872009-06-27 04:16:01 +00006339 return Result;
6340}
6341
6342SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006343X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006344 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00006345
Chris Lattner18c59872009-06-27 04:16:01 +00006346 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6347 // global base reg.
6348 unsigned char OpFlag = 0;
6349 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006350 CodeModel::Model M = getTargetMachine().getCodeModel();
6351
Chris Lattner4f066492009-07-11 20:29:19 +00006352 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006353 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006354 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006355 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006356 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006357 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006358 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006359
Chris Lattner18c59872009-06-27 04:16:01 +00006360 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00006361
Chris Lattner18c59872009-06-27 04:16:01 +00006362 DebugLoc DL = Op.getDebugLoc();
6363 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006364
6365
Chris Lattner18c59872009-06-27 04:16:01 +00006366 // With PIC, the address is actually $g + Offset.
6367 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00006368 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00006369 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6370 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006371 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006372 Result);
6373 }
Eric Christopherfd179292009-08-27 18:07:15 +00006374
Chris Lattner18c59872009-06-27 04:16:01 +00006375 return Result;
6376}
6377
Dan Gohman475871a2008-07-27 21:46:04 +00006378SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006379X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00006380 // Create the TargetBlockAddressAddress node.
6381 unsigned char OpFlags =
6382 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00006383 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00006384 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00006385 DebugLoc dl = Op.getDebugLoc();
6386 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
6387 /*isTarget=*/true, OpFlags);
6388
Dan Gohmanf705adb2009-10-30 01:28:02 +00006389 if (Subtarget->isPICStyleRIPRel() &&
6390 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00006391 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6392 else
6393 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00006394
Dan Gohman29cbade2009-11-20 23:18:13 +00006395 // With PIC, the address is actually $g + Offset.
6396 if (isGlobalRelativeToPICBase(OpFlags)) {
6397 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6398 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
6399 Result);
6400 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00006401
6402 return Result;
6403}
6404
6405SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00006406X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00006407 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00006408 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00006409 // Create the TargetGlobalAddress node, folding in the constant
6410 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00006411 unsigned char OpFlags =
6412 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006413 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00006414 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006415 if (OpFlags == X86II::MO_NO_FLAG &&
6416 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00006417 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00006418 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00006419 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006420 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00006421 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006422 }
Eric Christopherfd179292009-08-27 18:07:15 +00006423
Chris Lattner4f066492009-07-11 20:29:19 +00006424 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006425 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00006426 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6427 else
6428 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00006429
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006430 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00006431 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006432 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6433 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006434 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006435 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006436
Chris Lattner36c25012009-07-10 07:34:39 +00006437 // For globals that require a load from a stub to get the address, emit the
6438 // load.
6439 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00006440 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006441 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006442
Dan Gohman6520e202008-10-18 02:06:02 +00006443 // If there was a non-zero offset that we didn't fold, create an explicit
6444 // addition for it.
6445 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006446 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006447 DAG.getConstant(Offset, getPointerTy()));
6448
Evan Cheng0db9fe62006-04-25 20:13:52 +00006449 return Result;
6450}
6451
Evan Chengda43bcf2008-09-24 00:05:32 +00006452SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006453X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006454 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006455 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006456 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006457}
6458
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006459static SDValue
6460GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006461 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006462 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006463 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006464 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006465 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006466 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006467 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006468 GA->getOffset(),
6469 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006470 if (InFlag) {
6471 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006472 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006473 } else {
6474 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006475 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006476 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006477
6478 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006479 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006480
Rafael Espindola15f1b662009-04-24 12:59:40 +00006481 SDValue Flag = Chain.getValue(1);
6482 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006483}
6484
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006485// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006486static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006487LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006488 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006489 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006490 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6491 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006492 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006493 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006494 InFlag = Chain.getValue(1);
6495
Chris Lattnerb903bed2009-06-26 21:20:29 +00006496 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006497}
6498
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006499// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006500static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006501LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006502 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006503 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6504 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006505}
6506
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006507// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6508// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006509static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006510 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006511 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006512 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006513
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006514 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6515 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6516 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006517
Michael J. Spencerec38de22010-10-10 22:04:20 +00006518 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006519 DAG.getIntPtrConstant(0),
6520 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006521
Chris Lattnerb903bed2009-06-26 21:20:29 +00006522 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006523 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6524 // initialexec.
6525 unsigned WrapperKind = X86ISD::Wrapper;
6526 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006527 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006528 } else if (is64Bit) {
6529 assert(model == TLSModel::InitialExec);
6530 OperandFlags = X86II::MO_GOTTPOFF;
6531 WrapperKind = X86ISD::WrapperRIP;
6532 } else {
6533 assert(model == TLSModel::InitialExec);
6534 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006535 }
Eric Christopherfd179292009-08-27 18:07:15 +00006536
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006537 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6538 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006539 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006540 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006541 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006542 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006543
Rafael Espindola9a580232009-02-27 13:37:18 +00006544 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006545 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006546 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006547
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006548 // The address of the thread local variable is the add of the thread
6549 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006550 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006551}
6552
Dan Gohman475871a2008-07-27 21:46:04 +00006553SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006554X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006555
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006556 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006557 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006558
Eric Christopher30ef0e52010-06-03 04:07:48 +00006559 if (Subtarget->isTargetELF()) {
6560 // TODO: implement the "local dynamic" model
6561 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006562
Eric Christopher30ef0e52010-06-03 04:07:48 +00006563 // If GV is an alias then use the aliasee for determining
6564 // thread-localness.
6565 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6566 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006567
6568 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006569 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006570
Eric Christopher30ef0e52010-06-03 04:07:48 +00006571 switch (model) {
6572 case TLSModel::GeneralDynamic:
6573 case TLSModel::LocalDynamic: // not implemented
6574 if (Subtarget->is64Bit())
6575 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6576 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006577
Eric Christopher30ef0e52010-06-03 04:07:48 +00006578 case TLSModel::InitialExec:
6579 case TLSModel::LocalExec:
6580 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6581 Subtarget->is64Bit());
6582 }
6583 } else if (Subtarget->isTargetDarwin()) {
6584 // Darwin only has one model of TLS. Lower to that.
6585 unsigned char OpFlag = 0;
6586 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6587 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006588
Eric Christopher30ef0e52010-06-03 04:07:48 +00006589 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6590 // global base reg.
6591 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6592 !Subtarget->is64Bit();
6593 if (PIC32)
6594 OpFlag = X86II::MO_TLVP_PIC_BASE;
6595 else
6596 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006597 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006598 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00006599 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00006600 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00006601 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006602
Eric Christopher30ef0e52010-06-03 04:07:48 +00006603 // With PIC32, the address is actually $g + Offset.
6604 if (PIC32)
6605 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6606 DAG.getNode(X86ISD::GlobalBaseReg,
6607 DebugLoc(), getPointerTy()),
6608 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006609
Eric Christopher30ef0e52010-06-03 04:07:48 +00006610 // Lowering the machine isd will make sure everything is in the right
6611 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00006612 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006613 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00006614 SDValue Args[] = { Chain, Offset };
6615 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006616
Eric Christopher30ef0e52010-06-03 04:07:48 +00006617 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
6618 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6619 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00006620
Eric Christopher30ef0e52010-06-03 04:07:48 +00006621 // And our return value (tls address) is in the standard call return value
6622 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00006623 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
6624 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006625 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006626
Eric Christopher30ef0e52010-06-03 04:07:48 +00006627 assert(false &&
6628 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00006629
Torok Edwinc23197a2009-07-14 16:55:14 +00006630 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00006631 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006632}
6633
Evan Cheng0db9fe62006-04-25 20:13:52 +00006634
Nadav Rotem43012222011-05-11 08:12:09 +00006635/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00006636/// take a 2 x i32 value to shift plus a shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00006637SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00006638 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00006639 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006640 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006641 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006642 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00006643 SDValue ShOpLo = Op.getOperand(0);
6644 SDValue ShOpHi = Op.getOperand(1);
6645 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00006646 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00006647 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00006648 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00006649
Dan Gohman475871a2008-07-27 21:46:04 +00006650 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006651 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006652 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
6653 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006654 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006655 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
6656 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006657 }
Evan Chenge3413162006-01-09 18:33:28 +00006658
Owen Anderson825b72b2009-08-11 20:47:22 +00006659 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
6660 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00006661 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00006662 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00006663
Dan Gohman475871a2008-07-27 21:46:04 +00006664 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00006665 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00006666 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
6667 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00006668
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006669 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006670 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6671 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006672 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006673 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6674 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006675 }
6676
Dan Gohman475871a2008-07-27 21:46:04 +00006677 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00006678 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006679}
Evan Chenga3195e82006-01-12 22:54:21 +00006680
Dan Gohmand858e902010-04-17 15:26:15 +00006681SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
6682 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006683 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00006684
Dale Johannesen0488fb62010-09-30 23:57:10 +00006685 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006686 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006687
Owen Anderson825b72b2009-08-11 20:47:22 +00006688 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00006689 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00006690
Eli Friedman36df4992009-05-27 00:47:34 +00006691 // These are really Legal; return the operand so the caller accepts it as
6692 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006693 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00006694 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00006695 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00006696 Subtarget->is64Bit()) {
6697 return Op;
6698 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006699
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006700 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006701 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006702 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00006703 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006704 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00006705 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00006706 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006707 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006708 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006709 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
6710}
Evan Cheng0db9fe62006-04-25 20:13:52 +00006711
Owen Andersone50ed302009-08-10 22:56:29 +00006712SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00006713 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00006714 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006715 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00006716 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00006717 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00006718 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006719 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006720 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00006721 else
Owen Anderson825b72b2009-08-11 20:47:22 +00006722 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006723
Chris Lattner492a43e2010-09-22 01:28:21 +00006724 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006725
Chris Lattner492a43e2010-09-22 01:28:21 +00006726 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6727 MachineMemOperand *MMO =
6728 DAG.getMachineFunction()
6729 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6730 MachineMemOperand::MOLoad, ByteSize, ByteSize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006731
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006732 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006733 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
6734 X86ISD::FILD, DL,
6735 Tys, Ops, array_lengthof(Ops),
6736 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006737
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006738 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006739 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00006740 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006741
6742 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
6743 // shouldn't be necessary except that RFP cannot be live across
6744 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006745 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006746 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
6747 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006748 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00006749 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006750 SDValue Ops[] = {
6751 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
6752 };
Chris Lattner492a43e2010-09-22 01:28:21 +00006753 MachineMemOperand *MMO =
6754 DAG.getMachineFunction()
6755 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006756 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006757
Chris Lattner492a43e2010-09-22 01:28:21 +00006758 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
6759 Ops, array_lengthof(Ops),
6760 Op.getValueType(), MMO);
6761 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006762 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006763 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006764 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006765
Evan Cheng0db9fe62006-04-25 20:13:52 +00006766 return Result;
6767}
6768
Bill Wendling8b8a6362009-01-17 03:56:04 +00006769// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006770SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
6771 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00006772 // This algorithm is not obvious. Here it is in C code, more or less:
6773 /*
6774 double uint64_to_double( uint32_t hi, uint32_t lo ) {
6775 static const __m128i exp = { 0x4330000045300000ULL, 0 };
6776 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00006777
Bill Wendling8b8a6362009-01-17 03:56:04 +00006778 // Copy ints to xmm registers.
6779 __m128i xh = _mm_cvtsi32_si128( hi );
6780 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00006781
Bill Wendling8b8a6362009-01-17 03:56:04 +00006782 // Combine into low half of a single xmm register.
6783 __m128i x = _mm_unpacklo_epi32( xh, xl );
6784 __m128d d;
6785 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00006786
Bill Wendling8b8a6362009-01-17 03:56:04 +00006787 // Merge in appropriate exponents to give the integer bits the right
6788 // magnitude.
6789 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00006790
Bill Wendling8b8a6362009-01-17 03:56:04 +00006791 // Subtract away the biases to deal with the IEEE-754 double precision
6792 // implicit 1.
6793 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00006794
Bill Wendling8b8a6362009-01-17 03:56:04 +00006795 // All conversions up to here are exact. The correctly rounded result is
6796 // calculated using the current rounding mode using the following
6797 // horizontal add.
6798 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
6799 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
6800 // store doesn't really need to be here (except
6801 // maybe to zero the other double)
6802 return sd;
6803 }
6804 */
Dale Johannesen040225f2008-10-21 23:07:49 +00006805
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006806 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00006807 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00006808
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006809 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00006810 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00006811 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
6812 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
6813 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
6814 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006815 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006816 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006817
Bill Wendling8b8a6362009-01-17 03:56:04 +00006818 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00006819 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006820 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00006821 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006822 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006823 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006824 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006825
Owen Anderson825b72b2009-08-11 20:47:22 +00006826 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6827 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006828 Op.getOperand(0),
6829 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006830 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6831 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006832 Op.getOperand(0),
6833 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006834 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
6835 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00006836 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006837 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006838 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006839 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00006840 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00006841 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006842 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006843 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006844
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006845 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00006846 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00006847 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
6848 DAG.getUNDEF(MVT::v2f64), ShufMask);
6849 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
6850 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006851 DAG.getIntPtrConstant(0));
6852}
6853
Bill Wendling8b8a6362009-01-17 03:56:04 +00006854// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006855SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
6856 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006857 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006858 // FP constant to bias correct the final result.
6859 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00006860 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006861
6862 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00006863 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6864 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00006865 Op.getOperand(0),
6866 DAG.getIntPtrConstant(0)));
6867
Owen Anderson825b72b2009-08-11 20:47:22 +00006868 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006869 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006870 DAG.getIntPtrConstant(0));
6871
6872 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006873 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006874 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006875 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006876 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006877 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006878 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006879 MVT::v2f64, Bias)));
6880 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006881 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006882 DAG.getIntPtrConstant(0));
6883
6884 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006885 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006886
6887 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00006888 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00006889
Owen Anderson825b72b2009-08-11 20:47:22 +00006890 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006891 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00006892 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00006893 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006894 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00006895 }
6896
6897 // Handle final rounding.
6898 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00006899}
6900
Dan Gohmand858e902010-04-17 15:26:15 +00006901SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
6902 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00006903 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006904 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006905
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006906 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00006907 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
6908 // the optimization here.
6909 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00006910 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00006911
Owen Andersone50ed302009-08-10 22:56:29 +00006912 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006913 EVT DstVT = Op.getValueType();
6914 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006915 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006916 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006917 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00006918
6919 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00006920 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006921 if (SrcVT == MVT::i32) {
6922 SDValue WordOff = DAG.getConstant(4, getPointerTy());
6923 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
6924 getPointerTy(), StackSlot, WordOff);
6925 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006926 StackSlot, MachinePointerInfo(),
6927 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006928 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006929 OffsetSlot, MachinePointerInfo(),
6930 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006931 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
6932 return Fild;
6933 }
6934
6935 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
6936 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006937 StackSlot, MachinePointerInfo(),
6938 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006939 // For i64 source, we need to add the appropriate power of 2 if the input
6940 // was negative. This is the same as the optimization in
6941 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
6942 // we must be careful to do the computation in x87 extended precision, not
6943 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00006944 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6945 MachineMemOperand *MMO =
6946 DAG.getMachineFunction()
6947 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6948 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006949
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006950 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
6951 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006952 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
6953 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006954
6955 APInt FF(32, 0x5F800000ULL);
6956
6957 // Check whether the sign bit is set.
6958 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
6959 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
6960 ISD::SETLT);
6961
6962 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
6963 SDValue FudgePtr = DAG.getConstantPool(
6964 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
6965 getPointerTy());
6966
6967 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
6968 SDValue Zero = DAG.getIntPtrConstant(0);
6969 SDValue Four = DAG.getIntPtrConstant(4);
6970 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
6971 Zero, Four);
6972 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
6973
6974 // Load the value out, extending it from f32 to f80.
6975 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00006976 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00006977 FudgePtr, MachinePointerInfo::getConstantPool(),
6978 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006979 // Extend everything to 80 bits to force it to be done on x87.
6980 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
6981 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00006982}
6983
Dan Gohman475871a2008-07-27 21:46:04 +00006984std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00006985FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00006986 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00006987
Owen Andersone50ed302009-08-10 22:56:29 +00006988 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00006989
6990 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006991 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
6992 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00006993 }
6994
Owen Anderson825b72b2009-08-11 20:47:22 +00006995 assert(DstTy.getSimpleVT() <= MVT::i64 &&
6996 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00006997 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00006998
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006999 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007000 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00007001 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007002 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00007003 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007004 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00007005 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007006 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007007
Evan Cheng87c89352007-10-15 20:11:21 +00007008 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
7009 // stack slot.
7010 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00007011 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00007012 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007013 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00007014
Michael J. Spencerec38de22010-10-10 22:04:20 +00007015
7016
Evan Cheng0db9fe62006-04-25 20:13:52 +00007017 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00007018 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007019 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007020 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
7021 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
7022 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007023 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007024
Dan Gohman475871a2008-07-27 21:46:04 +00007025 SDValue Chain = DAG.getEntryNode();
7026 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00007027 EVT TheVT = Op.getOperand(0).getValueType();
7028 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007029 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00007030 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007031 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007032 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007033 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00007034 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00007035 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00007036 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00007037
Chris Lattner492a43e2010-09-22 01:28:21 +00007038 MachineMemOperand *MMO =
7039 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7040 MachineMemOperand::MOLoad, MemSize, MemSize);
7041 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
7042 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007043 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00007044 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007045 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7046 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007047
Chris Lattner07290932010-09-22 01:05:16 +00007048 MachineMemOperand *MMO =
7049 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7050 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007051
Evan Cheng0db9fe62006-04-25 20:13:52 +00007052 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00007053 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00007054 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
7055 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00007056
Chris Lattner27a6c732007-11-24 07:07:01 +00007057 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007058}
7059
Dan Gohmand858e902010-04-17 15:26:15 +00007060SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
7061 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00007062 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007063 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007064
Eli Friedman948e95a2009-05-23 09:59:16 +00007065 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00007066 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00007067 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
7068 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00007069
Chris Lattner27a6c732007-11-24 07:07:01 +00007070 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007071 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007072 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00007073}
7074
Dan Gohmand858e902010-04-17 15:26:15 +00007075SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
7076 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00007077 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
7078 SDValue FIST = Vals.first, StackSlot = Vals.second;
7079 assert(FIST.getNode() && "Unexpected failure");
7080
7081 // Load the result.
7082 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007083 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007084}
7085
Dan Gohmand858e902010-04-17 15:26:15 +00007086SDValue X86TargetLowering::LowerFABS(SDValue Op,
7087 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007088 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007089 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007090 EVT VT = Op.getValueType();
7091 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007092 if (VT.isVector())
7093 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007094 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007095 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007096 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00007097 CV.push_back(C);
7098 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007099 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007100 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00007101 CV.push_back(C);
7102 CV.push_back(C);
7103 CV.push_back(C);
7104 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007105 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007106 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007107 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007108 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007109 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007110 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007111 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007112}
7113
Dan Gohmand858e902010-04-17 15:26:15 +00007114SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007115 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007116 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007117 EVT VT = Op.getValueType();
7118 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00007119 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007120 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007121 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007122 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007123 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00007124 CV.push_back(C);
7125 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007126 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007127 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00007128 CV.push_back(C);
7129 CV.push_back(C);
7130 CV.push_back(C);
7131 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007132 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007133 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007134 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007135 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007136 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007137 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007138 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007139 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007140 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007141 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007142 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007143 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00007144 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007145 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00007146 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007147}
7148
Dan Gohmand858e902010-04-17 15:26:15 +00007149SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007150 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00007151 SDValue Op0 = Op.getOperand(0);
7152 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007153 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007154 EVT VT = Op.getValueType();
7155 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00007156
7157 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007158 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007159 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007160 SrcVT = VT;
7161 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007162 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007163 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007164 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007165 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007166 }
7167
7168 // At this point the operands and the result should have the same
7169 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00007170
Evan Cheng68c47cb2007-01-05 07:55:56 +00007171 // First get the sign bit of second operand.
7172 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007173 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007174 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
7175 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007176 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007177 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
7178 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7179 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7180 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007181 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007182 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007183 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007184 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007185 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007186 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007187 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007188
7189 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007190 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007191 // Op0 is MVT::f32, Op1 is MVT::f64.
7192 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
7193 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
7194 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007195 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00007196 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00007197 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007198 }
7199
Evan Cheng73d6cf12007-01-05 21:37:56 +00007200 // Clear first operand sign bit.
7201 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00007202 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007203 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
7204 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007205 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007206 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
7207 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7208 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7209 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007210 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007211 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007212 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007213 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007214 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007215 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007216 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007217
7218 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00007219 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007220}
7221
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00007222SDValue X86TargetLowering::LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) const {
7223 SDValue N0 = Op.getOperand(0);
7224 DebugLoc dl = Op.getDebugLoc();
7225 EVT VT = Op.getValueType();
7226
7227 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
7228 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
7229 DAG.getConstant(1, VT));
7230 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
7231}
7232
Dan Gohman076aee32009-03-04 19:44:21 +00007233/// Emit nodes that will be selected as "test Op0,Op0", or something
7234/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007235SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007236 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007237 DebugLoc dl = Op.getDebugLoc();
7238
Dan Gohman31125812009-03-07 01:58:32 +00007239 // CF and OF aren't always set the way we want. Determine which
7240 // of these we need.
7241 bool NeedCF = false;
7242 bool NeedOF = false;
7243 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007244 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00007245 case X86::COND_A: case X86::COND_AE:
7246 case X86::COND_B: case X86::COND_BE:
7247 NeedCF = true;
7248 break;
7249 case X86::COND_G: case X86::COND_GE:
7250 case X86::COND_L: case X86::COND_LE:
7251 case X86::COND_O: case X86::COND_NO:
7252 NeedOF = true;
7253 break;
Dan Gohman31125812009-03-07 01:58:32 +00007254 }
7255
Dan Gohman076aee32009-03-04 19:44:21 +00007256 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00007257 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
7258 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007259 if (Op.getResNo() != 0 || NeedOF || NeedCF)
7260 // Emit a CMP with 0, which is the TEST pattern.
7261 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7262 DAG.getConstant(0, Op.getValueType()));
7263
7264 unsigned Opcode = 0;
7265 unsigned NumOperands = 0;
7266 switch (Op.getNode()->getOpcode()) {
7267 case ISD::ADD:
7268 // Due to an isel shortcoming, be conservative if this add is likely to be
7269 // selected as part of a load-modify-store instruction. When the root node
7270 // in a match is a store, isel doesn't know how to remap non-chain non-flag
7271 // uses of other nodes in the match, such as the ADD in this case. This
7272 // leads to the ADD being left around and reselected, with the result being
7273 // two adds in the output. Alas, even if none our users are stores, that
7274 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
7275 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
7276 // climbing the DAG back to the root, and it doesn't seem to be worth the
7277 // effort.
7278 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00007279 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007280 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
7281 goto default_case;
7282
7283 if (ConstantSDNode *C =
7284 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
7285 // An add of one will be selected as an INC.
7286 if (C->getAPIntValue() == 1) {
7287 Opcode = X86ISD::INC;
7288 NumOperands = 1;
7289 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00007290 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007291
7292 // An add of negative one (subtract of one) will be selected as a DEC.
7293 if (C->getAPIntValue().isAllOnesValue()) {
7294 Opcode = X86ISD::DEC;
7295 NumOperands = 1;
7296 break;
7297 }
Dan Gohman076aee32009-03-04 19:44:21 +00007298 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007299
7300 // Otherwise use a regular EFLAGS-setting add.
7301 Opcode = X86ISD::ADD;
7302 NumOperands = 2;
7303 break;
7304 case ISD::AND: {
7305 // If the primary and result isn't used, don't bother using X86ISD::AND,
7306 // because a TEST instruction will be better.
7307 bool NonFlagUse = false;
7308 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7309 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
7310 SDNode *User = *UI;
7311 unsigned UOpNo = UI.getOperandNo();
7312 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
7313 // Look pass truncate.
7314 UOpNo = User->use_begin().getOperandNo();
7315 User = *User->use_begin();
7316 }
7317
7318 if (User->getOpcode() != ISD::BRCOND &&
7319 User->getOpcode() != ISD::SETCC &&
7320 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
7321 NonFlagUse = true;
7322 break;
7323 }
Dan Gohman076aee32009-03-04 19:44:21 +00007324 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007325
7326 if (!NonFlagUse)
7327 break;
7328 }
7329 // FALL THROUGH
7330 case ISD::SUB:
7331 case ISD::OR:
7332 case ISD::XOR:
7333 // Due to the ISEL shortcoming noted above, be conservative if this op is
7334 // likely to be selected as part of a load-modify-store instruction.
7335 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7336 UE = Op.getNode()->use_end(); UI != UE; ++UI)
7337 if (UI->getOpcode() == ISD::STORE)
7338 goto default_case;
7339
7340 // Otherwise use a regular EFLAGS-setting instruction.
7341 switch (Op.getNode()->getOpcode()) {
7342 default: llvm_unreachable("unexpected operator!");
7343 case ISD::SUB: Opcode = X86ISD::SUB; break;
7344 case ISD::OR: Opcode = X86ISD::OR; break;
7345 case ISD::XOR: Opcode = X86ISD::XOR; break;
7346 case ISD::AND: Opcode = X86ISD::AND; break;
7347 }
7348
7349 NumOperands = 2;
7350 break;
7351 case X86ISD::ADD:
7352 case X86ISD::SUB:
7353 case X86ISD::INC:
7354 case X86ISD::DEC:
7355 case X86ISD::OR:
7356 case X86ISD::XOR:
7357 case X86ISD::AND:
7358 return SDValue(Op.getNode(), 1);
7359 default:
7360 default_case:
7361 break;
Dan Gohman076aee32009-03-04 19:44:21 +00007362 }
7363
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007364 if (Opcode == 0)
7365 // Emit a CMP with 0, which is the TEST pattern.
7366 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7367 DAG.getConstant(0, Op.getValueType()));
7368
7369 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
7370 SmallVector<SDValue, 4> Ops;
7371 for (unsigned i = 0; i != NumOperands; ++i)
7372 Ops.push_back(Op.getOperand(i));
7373
7374 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
7375 DAG.ReplaceAllUsesWith(Op, New);
7376 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00007377}
7378
7379/// Emit nodes that will be selected as "cmp Op0,Op1", or something
7380/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007381SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007382 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007383 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
7384 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00007385 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00007386
7387 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00007388 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00007389}
7390
Evan Chengd40d03e2010-01-06 19:38:29 +00007391/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
7392/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00007393SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
7394 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007395 SDValue Op0 = And.getOperand(0);
7396 SDValue Op1 = And.getOperand(1);
7397 if (Op0.getOpcode() == ISD::TRUNCATE)
7398 Op0 = Op0.getOperand(0);
7399 if (Op1.getOpcode() == ISD::TRUNCATE)
7400 Op1 = Op1.getOperand(0);
7401
Evan Chengd40d03e2010-01-06 19:38:29 +00007402 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007403 if (Op1.getOpcode() == ISD::SHL)
7404 std::swap(Op0, Op1);
7405 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007406 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
7407 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007408 // If we looked past a truncate, check that it's only truncating away
7409 // known zeros.
7410 unsigned BitWidth = Op0.getValueSizeInBits();
7411 unsigned AndBitWidth = And.getValueSizeInBits();
7412 if (BitWidth > AndBitWidth) {
7413 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
7414 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
7415 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
7416 return SDValue();
7417 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007418 LHS = Op1;
7419 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00007420 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007421 } else if (Op1.getOpcode() == ISD::Constant) {
7422 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
7423 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00007424 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
7425 LHS = AndLHS.getOperand(0);
7426 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007427 }
Evan Chengd40d03e2010-01-06 19:38:29 +00007428 }
Evan Cheng0488db92007-09-25 01:57:46 +00007429
Evan Chengd40d03e2010-01-06 19:38:29 +00007430 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00007431 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00007432 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00007433 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00007434 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00007435 // Also promote i16 to i32 for performance / code size reason.
7436 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00007437 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00007438 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00007439
Evan Chengd40d03e2010-01-06 19:38:29 +00007440 // If the operand types disagree, extend the shift amount to match. Since
7441 // BT ignores high bits (like shifts) we can use anyextend.
7442 if (LHS.getValueType() != RHS.getValueType())
7443 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007444
Evan Chengd40d03e2010-01-06 19:38:29 +00007445 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
7446 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
7447 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7448 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00007449 }
7450
Evan Cheng54de3ea2010-01-05 06:52:31 +00007451 return SDValue();
7452}
7453
Dan Gohmand858e902010-04-17 15:26:15 +00007454SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00007455 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7456 SDValue Op0 = Op.getOperand(0);
7457 SDValue Op1 = Op.getOperand(1);
7458 DebugLoc dl = Op.getDebugLoc();
7459 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7460
7461 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007462 // Lower (X & (1 << N)) == 0 to BT(X, N).
7463 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7464 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Andrew Trickf6c39412011-03-23 23:11:02 +00007465 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007466 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007467 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007468 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7469 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7470 if (NewSetCC.getNode())
7471 return NewSetCC;
7472 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007473
Chris Lattner481eebc2010-12-19 21:23:48 +00007474 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
7475 // these.
7476 if (Op1.getOpcode() == ISD::Constant &&
Andrew Trickf6c39412011-03-23 23:11:02 +00007477 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
Evan Cheng2c755ba2010-02-27 07:36:59 +00007478 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7479 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007480
Chris Lattner481eebc2010-12-19 21:23:48 +00007481 // If the input is a setcc, then reuse the input setcc or use a new one with
7482 // the inverted condition.
7483 if (Op0.getOpcode() == X86ISD::SETCC) {
7484 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7485 bool Invert = (CC == ISD::SETNE) ^
7486 cast<ConstantSDNode>(Op1)->isNullValue();
7487 if (!Invert) return Op0;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007488
Evan Cheng2c755ba2010-02-27 07:36:59 +00007489 CCode = X86::GetOppositeBranchCondition(CCode);
Chris Lattner481eebc2010-12-19 21:23:48 +00007490 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7491 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7492 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007493 }
7494
Evan Chenge5b51ac2010-04-17 06:13:15 +00007495 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007496 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007497 if (X86CC == X86::COND_INVALID)
7498 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007499
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007500 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00007501 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007502 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
Evan Cheng0488db92007-09-25 01:57:46 +00007503}
7504
Dan Gohmand858e902010-04-17 15:26:15 +00007505SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007506 SDValue Cond;
7507 SDValue Op0 = Op.getOperand(0);
7508 SDValue Op1 = Op.getOperand(1);
7509 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007510 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007511 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7512 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007513 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007514
7515 if (isFP) {
7516 unsigned SSECC = 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007517 EVT VT0 = Op0.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00007518 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
7519 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007520 bool Swap = false;
7521
7522 switch (SetCCOpcode) {
7523 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007524 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007525 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007526 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007527 case ISD::SETGT: Swap = true; // Fallthrough
7528 case ISD::SETLT:
7529 case ISD::SETOLT: SSECC = 1; break;
7530 case ISD::SETOGE:
7531 case ISD::SETGE: Swap = true; // Fallthrough
7532 case ISD::SETLE:
7533 case ISD::SETOLE: SSECC = 2; break;
7534 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007535 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007536 case ISD::SETNE: SSECC = 4; break;
7537 case ISD::SETULE: Swap = true;
7538 case ISD::SETUGE: SSECC = 5; break;
7539 case ISD::SETULT: Swap = true;
7540 case ISD::SETUGT: SSECC = 6; break;
7541 case ISD::SETO: SSECC = 7; break;
7542 }
7543 if (Swap)
7544 std::swap(Op0, Op1);
7545
Nate Begemanfb8ead02008-07-25 19:05:58 +00007546 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007547 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007548 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007549 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007550 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7551 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007552 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007553 }
7554 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007555 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007556 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7557 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007558 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007559 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007560 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007561 }
7562 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007563 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007564 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007565
Nate Begeman30a0de92008-07-17 16:51:19 +00007566 // We are handling one of the integer comparisons here. Since SSE only has
7567 // GT and EQ comparisons for integer, swapping operands and multiple
7568 // operations may be required for some comparisons.
7569 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7570 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007571
Owen Anderson825b72b2009-08-11 20:47:22 +00007572 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007573 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007574 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007575 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007576 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7577 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00007578 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007579
Nate Begeman30a0de92008-07-17 16:51:19 +00007580 switch (SetCCOpcode) {
7581 default: break;
7582 case ISD::SETNE: Invert = true;
7583 case ISD::SETEQ: Opc = EQOpc; break;
7584 case ISD::SETLT: Swap = true;
7585 case ISD::SETGT: Opc = GTOpc; break;
7586 case ISD::SETGE: Swap = true;
7587 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
7588 case ISD::SETULT: Swap = true;
7589 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
7590 case ISD::SETUGE: Swap = true;
7591 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
7592 }
7593 if (Swap)
7594 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007595
Nate Begeman30a0de92008-07-17 16:51:19 +00007596 // Since SSE has no unsigned integer comparisons, we need to flip the sign
7597 // bits of the inputs before performing those operations.
7598 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00007599 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00007600 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
7601 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00007602 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00007603 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
7604 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00007605 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
7606 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00007607 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007608
Dale Johannesenace16102009-02-03 19:33:06 +00007609 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00007610
7611 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00007612 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00007613 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00007614
Nate Begeman30a0de92008-07-17 16:51:19 +00007615 return Result;
7616}
Evan Cheng0488db92007-09-25 01:57:46 +00007617
Evan Cheng370e5342008-12-03 08:38:43 +00007618// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00007619static bool isX86LogicalCmp(SDValue Op) {
7620 unsigned Opc = Op.getNode()->getOpcode();
7621 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
7622 return true;
7623 if (Op.getResNo() == 1 &&
7624 (Opc == X86ISD::ADD ||
7625 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00007626 Opc == X86ISD::ADC ||
7627 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00007628 Opc == X86ISD::SMUL ||
7629 Opc == X86ISD::UMUL ||
7630 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00007631 Opc == X86ISD::DEC ||
7632 Opc == X86ISD::OR ||
7633 Opc == X86ISD::XOR ||
7634 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00007635 return true;
7636
Chris Lattner9637d5b2010-12-05 07:49:54 +00007637 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
7638 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007639
Dan Gohman076aee32009-03-04 19:44:21 +00007640 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00007641}
7642
Chris Lattnera2b56002010-12-05 01:23:24 +00007643static bool isZero(SDValue V) {
7644 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
7645 return C && C->isNullValue();
7646}
7647
Chris Lattner96908b12010-12-05 02:00:51 +00007648static bool isAllOnes(SDValue V) {
7649 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
7650 return C && C->isAllOnesValue();
7651}
7652
Dan Gohmand858e902010-04-17 15:26:15 +00007653SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007654 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007655 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00007656 SDValue Op1 = Op.getOperand(1);
7657 SDValue Op2 = Op.getOperand(2);
7658 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007659 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00007660
Dan Gohman1a492952009-10-20 16:22:37 +00007661 if (Cond.getOpcode() == ISD::SETCC) {
7662 SDValue NewCond = LowerSETCC(Cond, DAG);
7663 if (NewCond.getNode())
7664 Cond = NewCond;
7665 }
Evan Cheng734503b2006-09-11 02:19:56 +00007666
Chris Lattnera2b56002010-12-05 01:23:24 +00007667 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00007668 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00007669 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00007670 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007671 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00007672 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
7673 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007674 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007675
Chris Lattnera2b56002010-12-05 01:23:24 +00007676 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007677
7678 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00007679 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
7680 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00007681
7682 SDValue CmpOp0 = Cmp.getOperand(0);
7683 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
7684 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007685
Chris Lattner96908b12010-12-05 02:00:51 +00007686 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00007687 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
7688 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007689
Chris Lattner96908b12010-12-05 02:00:51 +00007690 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
7691 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007692
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007693 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00007694 if (N2C == 0 || !N2C->isNullValue())
7695 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
7696 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007697 }
7698 }
7699
Chris Lattnera2b56002010-12-05 01:23:24 +00007700 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00007701 if (Cond.getOpcode() == ISD::AND &&
7702 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7703 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007704 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007705 Cond = Cond.getOperand(0);
7706 }
7707
Evan Cheng3f41d662007-10-08 22:16:29 +00007708 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7709 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007710 if (Cond.getOpcode() == X86ISD::SETCC ||
7711 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007712 CC = Cond.getOperand(0);
7713
Dan Gohman475871a2008-07-27 21:46:04 +00007714 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007715 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00007716 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00007717
Evan Cheng3f41d662007-10-08 22:16:29 +00007718 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007719 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00007720 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00007721 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00007722
Chris Lattnerd1980a52009-03-12 06:52:53 +00007723 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
7724 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00007725 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007726 addTest = false;
7727 }
7728 }
7729
7730 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007731 // Look pass the truncate.
7732 if (Cond.getOpcode() == ISD::TRUNCATE)
7733 Cond = Cond.getOperand(0);
7734
7735 // We know the result of AND is compared against zero. Try to match
7736 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007737 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00007738 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00007739 if (NewSetCC.getNode()) {
7740 CC = NewSetCC.getOperand(0);
7741 Cond = NewSetCC.getOperand(1);
7742 addTest = false;
7743 }
7744 }
7745 }
7746
7747 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007748 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007749 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007750 }
7751
Benjamin Kramere915ff32010-12-22 23:09:28 +00007752 // a < b ? -1 : 0 -> RES = ~setcc_carry
7753 // a < b ? 0 : -1 -> RES = setcc_carry
7754 // a >= b ? -1 : 0 -> RES = setcc_carry
7755 // a >= b ? 0 : -1 -> RES = ~setcc_carry
7756 if (Cond.getOpcode() == X86ISD::CMP) {
7757 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
7758
7759 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
7760 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
7761 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
7762 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
7763 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
7764 return DAG.getNOT(DL, Res, Res.getValueType());
7765 return Res;
7766 }
7767 }
7768
Evan Cheng0488db92007-09-25 01:57:46 +00007769 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
7770 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007771 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007772 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00007773 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00007774}
7775
Evan Cheng370e5342008-12-03 08:38:43 +00007776// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
7777// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
7778// from the AND / OR.
7779static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
7780 Opc = Op.getOpcode();
7781 if (Opc != ISD::OR && Opc != ISD::AND)
7782 return false;
7783 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7784 Op.getOperand(0).hasOneUse() &&
7785 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
7786 Op.getOperand(1).hasOneUse());
7787}
7788
Evan Cheng961d6d42009-02-02 08:19:07 +00007789// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
7790// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00007791static bool isXor1OfSetCC(SDValue Op) {
7792 if (Op.getOpcode() != ISD::XOR)
7793 return false;
7794 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7795 if (N1C && N1C->getAPIntValue() == 1) {
7796 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7797 Op.getOperand(0).hasOneUse();
7798 }
7799 return false;
7800}
7801
Dan Gohmand858e902010-04-17 15:26:15 +00007802SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007803 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007804 SDValue Chain = Op.getOperand(0);
7805 SDValue Cond = Op.getOperand(1);
7806 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007807 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007808 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00007809
Dan Gohman1a492952009-10-20 16:22:37 +00007810 if (Cond.getOpcode() == ISD::SETCC) {
7811 SDValue NewCond = LowerSETCC(Cond, DAG);
7812 if (NewCond.getNode())
7813 Cond = NewCond;
7814 }
Chris Lattnere55484e2008-12-25 05:34:37 +00007815#if 0
7816 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00007817 else if (Cond.getOpcode() == X86ISD::ADD ||
7818 Cond.getOpcode() == X86ISD::SUB ||
7819 Cond.getOpcode() == X86ISD::SMUL ||
7820 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00007821 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00007822#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00007823
Evan Chengad9c0a32009-12-15 00:53:42 +00007824 // Look pass (and (setcc_carry (cmp ...)), 1).
7825 if (Cond.getOpcode() == ISD::AND &&
7826 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7827 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007828 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007829 Cond = Cond.getOperand(0);
7830 }
7831
Evan Cheng3f41d662007-10-08 22:16:29 +00007832 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7833 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007834 if (Cond.getOpcode() == X86ISD::SETCC ||
7835 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007836 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007837
Dan Gohman475871a2008-07-27 21:46:04 +00007838 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007839 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00007840 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00007841 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00007842 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007843 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00007844 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00007845 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007846 default: break;
7847 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00007848 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00007849 // These can only come from an arithmetic instruction with overflow,
7850 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007851 Cond = Cond.getNode()->getOperand(1);
7852 addTest = false;
7853 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00007854 }
Evan Cheng0488db92007-09-25 01:57:46 +00007855 }
Evan Cheng370e5342008-12-03 08:38:43 +00007856 } else {
7857 unsigned CondOpc;
7858 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
7859 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00007860 if (CondOpc == ISD::OR) {
7861 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
7862 // two branches instead of an explicit OR instruction with a
7863 // separate test.
7864 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007865 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00007866 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007867 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007868 Chain, Dest, CC, Cmp);
7869 CC = Cond.getOperand(1).getOperand(0);
7870 Cond = Cmp;
7871 addTest = false;
7872 }
7873 } else { // ISD::AND
7874 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
7875 // two branches instead of an explicit AND instruction with a
7876 // separate test. However, we only do this if this block doesn't
7877 // have a fall-through edge, because this requires an explicit
7878 // jmp when the condition is false.
7879 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007880 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00007881 Op.getNode()->hasOneUse()) {
7882 X86::CondCode CCode =
7883 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7884 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007885 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00007886 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00007887 // Look for an unconditional branch following this conditional branch.
7888 // We need this because we need to reverse the successors in order
7889 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00007890 if (User->getOpcode() == ISD::BR) {
7891 SDValue FalseBB = User->getOperand(1);
7892 SDNode *NewBR =
7893 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00007894 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00007895 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00007896 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00007897
Dale Johannesene4d209d2009-02-03 20:21:25 +00007898 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007899 Chain, Dest, CC, Cmp);
7900 X86::CondCode CCode =
7901 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
7902 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007903 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00007904 Cond = Cmp;
7905 addTest = false;
7906 }
7907 }
Dan Gohman279c22e2008-10-21 03:29:32 +00007908 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00007909 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
7910 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
7911 // It should be transformed during dag combiner except when the condition
7912 // is set by a arithmetics with overflow node.
7913 X86::CondCode CCode =
7914 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7915 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007916 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00007917 Cond = Cond.getOperand(0).getOperand(1);
7918 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00007919 }
Evan Cheng0488db92007-09-25 01:57:46 +00007920 }
7921
7922 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007923 // Look pass the truncate.
7924 if (Cond.getOpcode() == ISD::TRUNCATE)
7925 Cond = Cond.getOperand(0);
7926
7927 // We know the result of AND is compared against zero. Try to match
7928 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007929 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007930 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7931 if (NewSetCC.getNode()) {
7932 CC = NewSetCC.getOperand(0);
7933 Cond = NewSetCC.getOperand(1);
7934 addTest = false;
7935 }
7936 }
7937 }
7938
7939 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007940 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007941 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007942 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00007943 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00007944 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007945}
7946
Anton Korobeynikove060b532007-04-17 19:34:00 +00007947
7948// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
7949// Calls to _alloca is needed to probe the stack when allocating more than 4k
7950// bytes in one go. Touching the stack at 4K increments is necessary to ensure
7951// that the guard pages used by the OS virtual memory manager are allocated in
7952// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00007953SDValue
7954X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007955 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00007956 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007957 "This should be used only on Windows targets");
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00007958 assert(!Subtarget->isTargetEnvMacho());
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007959 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007960
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007961 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007962 SDValue Chain = Op.getOperand(0);
7963 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007964 // FIXME: Ensure alignment here
7965
Dan Gohman475871a2008-07-27 21:46:04 +00007966 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007967
Owen Anderson825b72b2009-08-11 20:47:22 +00007968 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00007969 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007970
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00007971 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007972 Flag = Chain.getValue(1);
7973
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007974 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007975
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007976 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007977 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007978
Dale Johannesendd64c412009-02-04 00:33:20 +00007979 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007980
Dan Gohman475871a2008-07-27 21:46:04 +00007981 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00007982 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007983}
7984
Dan Gohmand858e902010-04-17 15:26:15 +00007985SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00007986 MachineFunction &MF = DAG.getMachineFunction();
7987 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
7988
Dan Gohman69de1932008-02-06 22:27:42 +00007989 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00007990 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00007991
Anton Korobeynikove7beda12010-10-03 22:52:07 +00007992 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00007993 // vastart just stores the address of the VarArgsFrameIndex slot into the
7994 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00007995 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7996 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007997 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
7998 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007999 }
8000
8001 // __va_list_tag:
8002 // gp_offset (0 - 6 * 8)
8003 // fp_offset (48 - 48 + 8 * 16)
8004 // overflow_arg_area (point to parameters coming in memory).
8005 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00008006 SmallVector<SDValue, 8> MemOps;
8007 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00008008 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008009 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008010 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
8011 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008012 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008013 MemOps.push_back(Store);
8014
8015 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008016 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008017 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008018 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008019 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
8020 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008021 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008022 MemOps.push_back(Store);
8023
8024 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00008025 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008026 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00008027 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8028 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008029 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
8030 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00008031 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008032 MemOps.push_back(Store);
8033
8034 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00008035 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008036 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00008037 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
8038 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008039 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
8040 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008041 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008042 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00008043 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00008044}
8045
Dan Gohmand858e902010-04-17 15:26:15 +00008046SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00008047 assert(Subtarget->is64Bit() &&
8048 "LowerVAARG only handles 64-bit va_arg!");
8049 assert((Subtarget->isTargetLinux() ||
8050 Subtarget->isTargetDarwin()) &&
8051 "Unhandled target in LowerVAARG");
8052 assert(Op.getNode()->getNumOperands() == 4);
8053 SDValue Chain = Op.getOperand(0);
8054 SDValue SrcPtr = Op.getOperand(1);
8055 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
8056 unsigned Align = Op.getConstantOperandVal(3);
8057 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00008058
Dan Gohman320afb82010-10-12 18:00:49 +00008059 EVT ArgVT = Op.getNode()->getValueType(0);
8060 const Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
8061 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
8062 uint8_t ArgMode;
8063
8064 // Decide which area this value should be read from.
8065 // TODO: Implement the AMD64 ABI in its entirety. This simple
8066 // selection mechanism works only for the basic types.
8067 if (ArgVT == MVT::f80) {
8068 llvm_unreachable("va_arg for f80 not yet implemented");
8069 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
8070 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
8071 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
8072 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
8073 } else {
8074 llvm_unreachable("Unhandled argument type in LowerVAARG");
8075 }
8076
8077 if (ArgMode == 2) {
8078 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00008079 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00008080 !(DAG.getMachineFunction()
8081 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00008082 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00008083 }
8084
8085 // Insert VAARG_64 node into the DAG
8086 // VAARG_64 returns two values: Variable Argument Address, Chain
8087 SmallVector<SDValue, 11> InstOps;
8088 InstOps.push_back(Chain);
8089 InstOps.push_back(SrcPtr);
8090 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
8091 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
8092 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
8093 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
8094 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
8095 VTs, &InstOps[0], InstOps.size(),
8096 MVT::i64,
8097 MachinePointerInfo(SV),
8098 /*Align=*/0,
8099 /*Volatile=*/false,
8100 /*ReadMem=*/true,
8101 /*WriteMem=*/true);
8102 Chain = VAARG.getValue(1);
8103
8104 // Load the next argument and return it
8105 return DAG.getLoad(ArgVT, dl,
8106 Chain,
8107 VAARG,
8108 MachinePointerInfo(),
8109 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00008110}
8111
Dan Gohmand858e902010-04-17 15:26:15 +00008112SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00008113 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00008114 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00008115 SDValue Chain = Op.getOperand(0);
8116 SDValue DstPtr = Op.getOperand(1);
8117 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00008118 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
8119 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00008120 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00008121
Chris Lattnere72f2022010-09-21 05:40:29 +00008122 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00008123 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008124 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00008125 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00008126}
8127
Dan Gohman475871a2008-07-27 21:46:04 +00008128SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008129X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008130 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008131 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00008132 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00008133 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00008134 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00008135 case Intrinsic::x86_sse_comieq_ss:
8136 case Intrinsic::x86_sse_comilt_ss:
8137 case Intrinsic::x86_sse_comile_ss:
8138 case Intrinsic::x86_sse_comigt_ss:
8139 case Intrinsic::x86_sse_comige_ss:
8140 case Intrinsic::x86_sse_comineq_ss:
8141 case Intrinsic::x86_sse_ucomieq_ss:
8142 case Intrinsic::x86_sse_ucomilt_ss:
8143 case Intrinsic::x86_sse_ucomile_ss:
8144 case Intrinsic::x86_sse_ucomigt_ss:
8145 case Intrinsic::x86_sse_ucomige_ss:
8146 case Intrinsic::x86_sse_ucomineq_ss:
8147 case Intrinsic::x86_sse2_comieq_sd:
8148 case Intrinsic::x86_sse2_comilt_sd:
8149 case Intrinsic::x86_sse2_comile_sd:
8150 case Intrinsic::x86_sse2_comigt_sd:
8151 case Intrinsic::x86_sse2_comige_sd:
8152 case Intrinsic::x86_sse2_comineq_sd:
8153 case Intrinsic::x86_sse2_ucomieq_sd:
8154 case Intrinsic::x86_sse2_ucomilt_sd:
8155 case Intrinsic::x86_sse2_ucomile_sd:
8156 case Intrinsic::x86_sse2_ucomigt_sd:
8157 case Intrinsic::x86_sse2_ucomige_sd:
8158 case Intrinsic::x86_sse2_ucomineq_sd: {
8159 unsigned Opc = 0;
8160 ISD::CondCode CC = ISD::SETCC_INVALID;
8161 switch (IntNo) {
8162 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008163 case Intrinsic::x86_sse_comieq_ss:
8164 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008165 Opc = X86ISD::COMI;
8166 CC = ISD::SETEQ;
8167 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008168 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008169 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008170 Opc = X86ISD::COMI;
8171 CC = ISD::SETLT;
8172 break;
8173 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008174 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008175 Opc = X86ISD::COMI;
8176 CC = ISD::SETLE;
8177 break;
8178 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008179 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008180 Opc = X86ISD::COMI;
8181 CC = ISD::SETGT;
8182 break;
8183 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008184 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008185 Opc = X86ISD::COMI;
8186 CC = ISD::SETGE;
8187 break;
8188 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008189 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008190 Opc = X86ISD::COMI;
8191 CC = ISD::SETNE;
8192 break;
8193 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008194 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008195 Opc = X86ISD::UCOMI;
8196 CC = ISD::SETEQ;
8197 break;
8198 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008199 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008200 Opc = X86ISD::UCOMI;
8201 CC = ISD::SETLT;
8202 break;
8203 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008204 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008205 Opc = X86ISD::UCOMI;
8206 CC = ISD::SETLE;
8207 break;
8208 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008209 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008210 Opc = X86ISD::UCOMI;
8211 CC = ISD::SETGT;
8212 break;
8213 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008214 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008215 Opc = X86ISD::UCOMI;
8216 CC = ISD::SETGE;
8217 break;
8218 case Intrinsic::x86_sse_ucomineq_ss:
8219 case Intrinsic::x86_sse2_ucomineq_sd:
8220 Opc = X86ISD::UCOMI;
8221 CC = ISD::SETNE;
8222 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008223 }
Evan Cheng734503b2006-09-11 02:19:56 +00008224
Dan Gohman475871a2008-07-27 21:46:04 +00008225 SDValue LHS = Op.getOperand(1);
8226 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00008227 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008228 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008229 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
8230 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8231 DAG.getConstant(X86CC, MVT::i8), Cond);
8232 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00008233 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008234 // ptest and testp intrinsics. The intrinsic these come from are designed to
8235 // return an integer value, not just an instruction so lower it to the ptest
8236 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00008237 case Intrinsic::x86_sse41_ptestz:
8238 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008239 case Intrinsic::x86_sse41_ptestnzc:
8240 case Intrinsic::x86_avx_ptestz_256:
8241 case Intrinsic::x86_avx_ptestc_256:
8242 case Intrinsic::x86_avx_ptestnzc_256:
8243 case Intrinsic::x86_avx_vtestz_ps:
8244 case Intrinsic::x86_avx_vtestc_ps:
8245 case Intrinsic::x86_avx_vtestnzc_ps:
8246 case Intrinsic::x86_avx_vtestz_pd:
8247 case Intrinsic::x86_avx_vtestc_pd:
8248 case Intrinsic::x86_avx_vtestnzc_pd:
8249 case Intrinsic::x86_avx_vtestz_ps_256:
8250 case Intrinsic::x86_avx_vtestc_ps_256:
8251 case Intrinsic::x86_avx_vtestnzc_ps_256:
8252 case Intrinsic::x86_avx_vtestz_pd_256:
8253 case Intrinsic::x86_avx_vtestc_pd_256:
8254 case Intrinsic::x86_avx_vtestnzc_pd_256: {
8255 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00008256 unsigned X86CC = 0;
8257 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00008258 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008259 case Intrinsic::x86_avx_vtestz_ps:
8260 case Intrinsic::x86_avx_vtestz_pd:
8261 case Intrinsic::x86_avx_vtestz_ps_256:
8262 case Intrinsic::x86_avx_vtestz_pd_256:
8263 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008264 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008265 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008266 // ZF = 1
8267 X86CC = X86::COND_E;
8268 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008269 case Intrinsic::x86_avx_vtestc_ps:
8270 case Intrinsic::x86_avx_vtestc_pd:
8271 case Intrinsic::x86_avx_vtestc_ps_256:
8272 case Intrinsic::x86_avx_vtestc_pd_256:
8273 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008274 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008275 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008276 // CF = 1
8277 X86CC = X86::COND_B;
8278 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008279 case Intrinsic::x86_avx_vtestnzc_ps:
8280 case Intrinsic::x86_avx_vtestnzc_pd:
8281 case Intrinsic::x86_avx_vtestnzc_ps_256:
8282 case Intrinsic::x86_avx_vtestnzc_pd_256:
8283 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00008284 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008285 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008286 // ZF and CF = 0
8287 X86CC = X86::COND_A;
8288 break;
8289 }
Eric Christopherfd179292009-08-27 18:07:15 +00008290
Eric Christopher71c67532009-07-29 00:28:05 +00008291 SDValue LHS = Op.getOperand(1);
8292 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008293 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
8294 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00008295 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
8296 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
8297 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00008298 }
Evan Cheng5759f972008-05-04 09:15:50 +00008299
8300 // Fix vector shift instructions where the last operand is a non-immediate
8301 // i32 value.
8302 case Intrinsic::x86_sse2_pslli_w:
8303 case Intrinsic::x86_sse2_pslli_d:
8304 case Intrinsic::x86_sse2_pslli_q:
8305 case Intrinsic::x86_sse2_psrli_w:
8306 case Intrinsic::x86_sse2_psrli_d:
8307 case Intrinsic::x86_sse2_psrli_q:
8308 case Intrinsic::x86_sse2_psrai_w:
8309 case Intrinsic::x86_sse2_psrai_d:
8310 case Intrinsic::x86_mmx_pslli_w:
8311 case Intrinsic::x86_mmx_pslli_d:
8312 case Intrinsic::x86_mmx_pslli_q:
8313 case Intrinsic::x86_mmx_psrli_w:
8314 case Intrinsic::x86_mmx_psrli_d:
8315 case Intrinsic::x86_mmx_psrli_q:
8316 case Intrinsic::x86_mmx_psrai_w:
8317 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00008318 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00008319 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00008320 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00008321
8322 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008323 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008324 switch (IntNo) {
8325 case Intrinsic::x86_sse2_pslli_w:
8326 NewIntNo = Intrinsic::x86_sse2_psll_w;
8327 break;
8328 case Intrinsic::x86_sse2_pslli_d:
8329 NewIntNo = Intrinsic::x86_sse2_psll_d;
8330 break;
8331 case Intrinsic::x86_sse2_pslli_q:
8332 NewIntNo = Intrinsic::x86_sse2_psll_q;
8333 break;
8334 case Intrinsic::x86_sse2_psrli_w:
8335 NewIntNo = Intrinsic::x86_sse2_psrl_w;
8336 break;
8337 case Intrinsic::x86_sse2_psrli_d:
8338 NewIntNo = Intrinsic::x86_sse2_psrl_d;
8339 break;
8340 case Intrinsic::x86_sse2_psrli_q:
8341 NewIntNo = Intrinsic::x86_sse2_psrl_q;
8342 break;
8343 case Intrinsic::x86_sse2_psrai_w:
8344 NewIntNo = Intrinsic::x86_sse2_psra_w;
8345 break;
8346 case Intrinsic::x86_sse2_psrai_d:
8347 NewIntNo = Intrinsic::x86_sse2_psra_d;
8348 break;
8349 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008350 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008351 switch (IntNo) {
8352 case Intrinsic::x86_mmx_pslli_w:
8353 NewIntNo = Intrinsic::x86_mmx_psll_w;
8354 break;
8355 case Intrinsic::x86_mmx_pslli_d:
8356 NewIntNo = Intrinsic::x86_mmx_psll_d;
8357 break;
8358 case Intrinsic::x86_mmx_pslli_q:
8359 NewIntNo = Intrinsic::x86_mmx_psll_q;
8360 break;
8361 case Intrinsic::x86_mmx_psrli_w:
8362 NewIntNo = Intrinsic::x86_mmx_psrl_w;
8363 break;
8364 case Intrinsic::x86_mmx_psrli_d:
8365 NewIntNo = Intrinsic::x86_mmx_psrl_d;
8366 break;
8367 case Intrinsic::x86_mmx_psrli_q:
8368 NewIntNo = Intrinsic::x86_mmx_psrl_q;
8369 break;
8370 case Intrinsic::x86_mmx_psrai_w:
8371 NewIntNo = Intrinsic::x86_mmx_psra_w;
8372 break;
8373 case Intrinsic::x86_mmx_psrai_d:
8374 NewIntNo = Intrinsic::x86_mmx_psra_d;
8375 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00008376 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00008377 }
8378 break;
8379 }
8380 }
Mon P Wangefa42202009-09-03 19:56:25 +00008381
8382 // The vector shift intrinsics with scalars uses 32b shift amounts but
8383 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
8384 // to be zero.
8385 SDValue ShOps[4];
8386 ShOps[0] = ShAmt;
8387 ShOps[1] = DAG.getConstant(0, MVT::i32);
8388 if (ShAmtVT == MVT::v4i32) {
8389 ShOps[2] = DAG.getUNDEF(MVT::i32);
8390 ShOps[3] = DAG.getUNDEF(MVT::i32);
8391 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
8392 } else {
8393 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00008394// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00008395 }
8396
Owen Andersone50ed302009-08-10 22:56:29 +00008397 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008398 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008399 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008400 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00008401 Op.getOperand(1), ShAmt);
8402 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00008403 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008404}
Evan Cheng72261582005-12-20 06:22:03 +00008405
Dan Gohmand858e902010-04-17 15:26:15 +00008406SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
8407 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00008408 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8409 MFI->setReturnAddressIsTaken(true);
8410
Bill Wendling64e87322009-01-16 19:25:27 +00008411 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008412 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00008413
8414 if (Depth > 0) {
8415 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
8416 SDValue Offset =
8417 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00008418 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008419 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008420 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008421 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00008422 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00008423 }
8424
8425 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00008426 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00008427 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008428 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008429}
8430
Dan Gohmand858e902010-04-17 15:26:15 +00008431SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00008432 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8433 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00008434
Owen Andersone50ed302009-08-10 22:56:29 +00008435 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008436 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00008437 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
8438 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00008439 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00008440 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00008441 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
8442 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00008443 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00008444 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00008445}
8446
Dan Gohman475871a2008-07-27 21:46:04 +00008447SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008448 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008449 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008450}
8451
Dan Gohmand858e902010-04-17 15:26:15 +00008452SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008453 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00008454 SDValue Chain = Op.getOperand(0);
8455 SDValue Offset = Op.getOperand(1);
8456 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008457 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008458
Dan Gohmand8816272010-08-11 18:14:00 +00008459 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
8460 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
8461 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008462 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008463
Dan Gohmand8816272010-08-11 18:14:00 +00008464 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
8465 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008466 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008467 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
8468 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00008469 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008470 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008471
Dale Johannesene4d209d2009-02-03 20:21:25 +00008472 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008473 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008474 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008475}
8476
Dan Gohman475871a2008-07-27 21:46:04 +00008477SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008478 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008479 SDValue Root = Op.getOperand(0);
8480 SDValue Trmp = Op.getOperand(1); // trampoline
8481 SDValue FPtr = Op.getOperand(2); // nested function
8482 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008483 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008484
Dan Gohman69de1932008-02-06 22:27:42 +00008485 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008486
8487 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008488 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00008489
8490 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00008491 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
8492 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00008493
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008494 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
8495 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00008496
8497 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
8498
8499 // Load the pointer to the nested function into R11.
8500 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00008501 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008502 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008503 Addr, MachinePointerInfo(TrmpAddr),
8504 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008505
Owen Anderson825b72b2009-08-11 20:47:22 +00008506 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8507 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008508 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8509 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00008510 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008511
8512 // Load the 'nest' parameter value into R10.
8513 // R10 is specified in X86CallingConv.td
8514 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00008515 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8516 DAG.getConstant(10, MVT::i64));
8517 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008518 Addr, MachinePointerInfo(TrmpAddr, 10),
8519 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008520
Owen Anderson825b72b2009-08-11 20:47:22 +00008521 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8522 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008523 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8524 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00008525 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008526
8527 // Jump to the nested function.
8528 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00008529 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8530 DAG.getConstant(20, MVT::i64));
8531 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008532 Addr, MachinePointerInfo(TrmpAddr, 20),
8533 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008534
8535 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008536 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8537 DAG.getConstant(22, MVT::i64));
8538 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008539 MachinePointerInfo(TrmpAddr, 22),
8540 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008541
Dan Gohman475871a2008-07-27 21:46:04 +00008542 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008543 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008544 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008545 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008546 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008547 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008548 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008549 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008550
8551 switch (CC) {
8552 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008553 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008554 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008555 case CallingConv::X86_StdCall: {
8556 // Pass 'nest' parameter in ECX.
8557 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008558 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008559
8560 // Check that ECX wasn't needed by an 'inreg' parameter.
8561 const FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008562 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008563
Chris Lattner58d74912008-03-12 17:45:29 +00008564 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008565 unsigned InRegCount = 0;
8566 unsigned Idx = 1;
8567
8568 for (FunctionType::param_iterator I = FTy->param_begin(),
8569 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008570 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008571 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008572 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008573
8574 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00008575 report_fatal_error("Nest register in use - reduce number of inreg"
8576 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008577 }
8578 }
8579 break;
8580 }
8581 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00008582 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00008583 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008584 // Pass 'nest' parameter in EAX.
8585 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008586 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008587 break;
8588 }
8589
Dan Gohman475871a2008-07-27 21:46:04 +00008590 SDValue OutChains[4];
8591 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008592
Owen Anderson825b72b2009-08-11 20:47:22 +00008593 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8594 DAG.getConstant(10, MVT::i32));
8595 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008596
Chris Lattnera62fe662010-02-05 19:20:30 +00008597 // This is storing the opcode for MOV32ri.
8598 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008599 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00008600 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008601 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008602 Trmp, MachinePointerInfo(TrmpAddr),
8603 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008604
Owen Anderson825b72b2009-08-11 20:47:22 +00008605 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8606 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008607 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
8608 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00008609 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008610
Chris Lattnera62fe662010-02-05 19:20:30 +00008611 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00008612 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8613 DAG.getConstant(5, MVT::i32));
8614 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008615 MachinePointerInfo(TrmpAddr, 5),
8616 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008617
Owen Anderson825b72b2009-08-11 20:47:22 +00008618 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8619 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008620 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
8621 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00008622 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008623
Dan Gohman475871a2008-07-27 21:46:04 +00008624 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008625 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008626 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008627 }
8628}
8629
Dan Gohmand858e902010-04-17 15:26:15 +00008630SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
8631 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008632 /*
8633 The rounding mode is in bits 11:10 of FPSR, and has the following
8634 settings:
8635 00 Round to nearest
8636 01 Round to -inf
8637 10 Round to +inf
8638 11 Round to 0
8639
8640 FLT_ROUNDS, on the other hand, expects the following:
8641 -1 Undefined
8642 0 Round to 0
8643 1 Round to nearest
8644 2 Round to +inf
8645 3 Round to -inf
8646
8647 To perform the conversion, we do:
8648 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
8649 */
8650
8651 MachineFunction &MF = DAG.getMachineFunction();
8652 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00008653 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008654 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008655 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00008656 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008657
8658 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00008659 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008660 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008661
Michael J. Spencerec38de22010-10-10 22:04:20 +00008662
Chris Lattner2156b792010-09-22 01:11:26 +00008663 MachineMemOperand *MMO =
8664 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8665 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008666
Chris Lattner2156b792010-09-22 01:11:26 +00008667 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
8668 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
8669 DAG.getVTList(MVT::Other),
8670 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008671
8672 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00008673 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00008674 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008675
8676 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00008677 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00008678 DAG.getNode(ISD::SRL, DL, MVT::i16,
8679 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008680 CWD, DAG.getConstant(0x800, MVT::i16)),
8681 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00008682 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00008683 DAG.getNode(ISD::SRL, DL, MVT::i16,
8684 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008685 CWD, DAG.getConstant(0x400, MVT::i16)),
8686 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008687
Dan Gohman475871a2008-07-27 21:46:04 +00008688 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00008689 DAG.getNode(ISD::AND, DL, MVT::i16,
8690 DAG.getNode(ISD::ADD, DL, MVT::i16,
8691 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00008692 DAG.getConstant(1, MVT::i16)),
8693 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008694
8695
Duncan Sands83ec4b62008-06-06 12:08:01 +00008696 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00008697 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008698}
8699
Dan Gohmand858e902010-04-17 15:26:15 +00008700SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008701 EVT VT = Op.getValueType();
8702 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008703 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008704 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008705
8706 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008707 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00008708 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00008709 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008710 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008711 }
Evan Cheng18efe262007-12-14 02:13:44 +00008712
Evan Cheng152804e2007-12-14 08:30:15 +00008713 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008714 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008715 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008716
8717 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008718 SDValue Ops[] = {
8719 Op,
8720 DAG.getConstant(NumBits+NumBits-1, OpVT),
8721 DAG.getConstant(X86::COND_E, MVT::i8),
8722 Op.getValue(1)
8723 };
8724 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008725
8726 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00008727 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00008728
Owen Anderson825b72b2009-08-11 20:47:22 +00008729 if (VT == MVT::i8)
8730 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008731 return Op;
8732}
8733
Dan Gohmand858e902010-04-17 15:26:15 +00008734SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008735 EVT VT = Op.getValueType();
8736 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008737 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008738 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008739
8740 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008741 if (VT == MVT::i8) {
8742 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008743 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008744 }
Evan Cheng152804e2007-12-14 08:30:15 +00008745
8746 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008747 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008748 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008749
8750 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008751 SDValue Ops[] = {
8752 Op,
8753 DAG.getConstant(NumBits, OpVT),
8754 DAG.getConstant(X86::COND_E, MVT::i8),
8755 Op.getValue(1)
8756 };
8757 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008758
Owen Anderson825b72b2009-08-11 20:47:22 +00008759 if (VT == MVT::i8)
8760 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008761 return Op;
8762}
8763
Dan Gohmand858e902010-04-17 15:26:15 +00008764SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008765 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00008766 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008767 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008768
Mon P Wangaf9b9522008-12-18 21:42:19 +00008769 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
8770 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
8771 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
8772 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
8773 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
8774 //
8775 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
8776 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
8777 // return AloBlo + AloBhi + AhiBlo;
8778
8779 SDValue A = Op.getOperand(0);
8780 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008781
Dale Johannesene4d209d2009-02-03 20:21:25 +00008782 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008783 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8784 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008785 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008786 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8787 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008788 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008789 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008790 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008791 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008792 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008793 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008794 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008795 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008796 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008797 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008798 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8799 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008800 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008801 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8802 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008803 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
8804 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008805 return Res;
8806}
8807
Nadav Rotem43012222011-05-11 08:12:09 +00008808SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
8809
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008810 EVT VT = Op.getValueType();
8811 DebugLoc dl = Op.getDebugLoc();
8812 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +00008813 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008814
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008815 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008816
Nadav Rotem43012222011-05-11 08:12:09 +00008817 // Must have SSE2.
8818 if (!Subtarget->hasSSE2()) return SDValue();
Nate Begeman51409212010-07-28 00:21:48 +00008819
Nadav Rotem43012222011-05-11 08:12:09 +00008820 // Optimize shl/srl/sra with constant shift amount.
8821 if (isSplatVector(Amt.getNode())) {
8822 SDValue SclrAmt = Amt->getOperand(0);
8823 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
8824 uint64_t ShiftAmt = C->getZExtValue();
8825
8826 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SHL)
8827 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8828 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8829 R, DAG.getConstant(ShiftAmt, MVT::i32));
8830
8831 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SHL)
8832 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8833 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8834 R, DAG.getConstant(ShiftAmt, MVT::i32));
8835
8836 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SHL)
8837 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8838 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8839 R, DAG.getConstant(ShiftAmt, MVT::i32));
8840
8841 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SRL)
8842 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8843 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8844 R, DAG.getConstant(ShiftAmt, MVT::i32));
8845
8846 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRL)
8847 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8848 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
8849 R, DAG.getConstant(ShiftAmt, MVT::i32));
8850
8851 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRL)
8852 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8853 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
8854 R, DAG.getConstant(ShiftAmt, MVT::i32));
8855
8856 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRA)
8857 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8858 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
8859 R, DAG.getConstant(ShiftAmt, MVT::i32));
8860
8861 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRA)
8862 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8863 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
8864 R, DAG.getConstant(ShiftAmt, MVT::i32));
8865 }
8866 }
8867
8868 // Lower SHL with variable shift amount.
8869 // Cannot lower SHL without SSE4.1 or later.
8870 if (!Subtarget->hasSSE41()) return SDValue();
8871
8872 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00008873 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8874 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8875 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
8876
8877 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008878
Nate Begeman51409212010-07-28 00:21:48 +00008879 std::vector<Constant*> CV(4, CI);
8880 Constant *C = ConstantVector::get(CV);
8881 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8882 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008883 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008884 false, false, 16);
8885
8886 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008887 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00008888 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
8889 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
8890 }
Nadav Rotem43012222011-05-11 08:12:09 +00008891 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00008892 // a = a << 5;
8893 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8894 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8895 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
8896
8897 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
8898 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
8899
8900 std::vector<Constant*> CVM1(16, CM1);
8901 std::vector<Constant*> CVM2(16, CM2);
8902 Constant *C = ConstantVector::get(CVM1);
8903 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8904 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008905 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008906 false, false, 16);
8907
8908 // r = pblendv(r, psllw(r & (char16)15, 4), a);
8909 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8910 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8911 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8912 DAG.getConstant(4, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00008913 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00008914 // a += a
8915 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008916
Nate Begeman51409212010-07-28 00:21:48 +00008917 C = ConstantVector::get(CVM2);
8918 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8919 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008920 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008921 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008922
Nate Begeman51409212010-07-28 00:21:48 +00008923 // r = pblendv(r, psllw(r & (char16)63, 2), a);
8924 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8925 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8926 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8927 DAG.getConstant(2, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00008928 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00008929 // a += a
8930 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008931
Nate Begeman51409212010-07-28 00:21:48 +00008932 // return pblendv(r, r+r, a);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008933 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT,
Nate Begeman51409212010-07-28 00:21:48 +00008934 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
8935 return R;
8936 }
8937 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008938}
Mon P Wangaf9b9522008-12-18 21:42:19 +00008939
Dan Gohmand858e902010-04-17 15:26:15 +00008940SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00008941 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
8942 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00008943 // looks for this combo and may remove the "setcc" instruction if the "setcc"
8944 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00008945 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00008946 SDValue LHS = N->getOperand(0);
8947 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00008948 unsigned BaseOp = 0;
8949 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008950 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00008951 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008952 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00008953 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00008954 // A subtract of one will be selected as a INC. Note that INC doesn't
8955 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00008956 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
8957 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00008958 BaseOp = X86ISD::INC;
8959 Cond = X86::COND_O;
8960 break;
8961 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008962 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00008963 Cond = X86::COND_O;
8964 break;
8965 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008966 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00008967 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008968 break;
8969 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00008970 // A subtract of one will be selected as a DEC. Note that DEC doesn't
8971 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00008972 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
8973 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00008974 BaseOp = X86ISD::DEC;
8975 Cond = X86::COND_O;
8976 break;
8977 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008978 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00008979 Cond = X86::COND_O;
8980 break;
8981 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008982 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00008983 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008984 break;
8985 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008986 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00008987 Cond = X86::COND_O;
8988 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008989 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
8990 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
8991 MVT::i32);
8992 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008993
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008994 SDValue SetCC =
8995 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
8996 DAG.getConstant(X86::COND_O, MVT::i32),
8997 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008998
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008999 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
9000 return Sum;
9001 }
Bill Wendling74c37652008-12-09 22:08:41 +00009002 }
Bill Wendling3fafd932008-11-26 22:37:40 +00009003
Bill Wendling61edeb52008-12-02 01:06:39 +00009004 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009005 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009006 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00009007
Bill Wendling61edeb52008-12-02 01:06:39 +00009008 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009009 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
9010 DAG.getConstant(Cond, MVT::i32),
9011 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00009012
Bill Wendling61edeb52008-12-02 01:06:39 +00009013 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
9014 return Sum;
Bill Wendling41ea7e72008-11-24 19:21:46 +00009015}
9016
Eric Christopher9a9d2752010-07-22 02:48:34 +00009017SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
9018 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009019
Eric Christopherb6729dc2010-08-04 23:03:04 +00009020 if (!Subtarget->hasSSE2()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00009021 SDValue Chain = Op.getOperand(0);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009022 SDValue Zero = DAG.getConstant(0,
Eric Christopherb6729dc2010-08-04 23:03:04 +00009023 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00009024 SDValue Ops[] = {
9025 DAG.getRegister(X86::ESP, MVT::i32), // Base
9026 DAG.getTargetConstant(1, MVT::i8), // Scale
9027 DAG.getRegister(0, MVT::i32), // Index
9028 DAG.getTargetConstant(0, MVT::i32), // Disp
9029 DAG.getRegister(0, MVT::i32), // Segment.
9030 Zero,
9031 Chain
9032 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00009033 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00009034 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9035 array_lengthof(Ops));
9036 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00009037 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009038
Eric Christopher9a9d2752010-07-22 02:48:34 +00009039 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00009040 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00009041 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009042
Chris Lattner132929a2010-08-14 17:26:09 +00009043 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
9044 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
9045 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
9046 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009047
Chris Lattner132929a2010-08-14 17:26:09 +00009048 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
9049 if (!Op1 && !Op2 && !Op3 && Op4)
9050 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009051
Chris Lattner132929a2010-08-14 17:26:09 +00009052 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
9053 if (Op1 && !Op2 && !Op3 && !Op4)
9054 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009055
9056 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00009057 // (MFENCE)>;
9058 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00009059}
9060
Dan Gohmand858e902010-04-17 15:26:15 +00009061SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009062 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009063 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00009064 unsigned Reg = 0;
9065 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00009066 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009067 default:
9068 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00009069 case MVT::i8: Reg = X86::AL; size = 1; break;
9070 case MVT::i16: Reg = X86::AX; size = 2; break;
9071 case MVT::i32: Reg = X86::EAX; size = 4; break;
9072 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00009073 assert(Subtarget->is64Bit() && "Node not type legal!");
9074 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00009075 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00009076 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009077 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00009078 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00009079 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009080 Op.getOperand(1),
9081 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00009082 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009083 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009084 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009085 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
9086 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
9087 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00009088 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009089 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00009090 return cpOut;
9091}
9092
Duncan Sands1607f052008-12-01 11:39:25 +00009093SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009094 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00009095 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009096 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009097 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009098 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009099 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009100 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
9101 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00009102 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00009103 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
9104 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00009105 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00009106 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00009107 rdx.getValue(1)
9108 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009109 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009110}
9111
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009112SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +00009113 SelectionDAG &DAG) const {
9114 EVT SrcVT = Op.getOperand(0).getValueType();
9115 EVT DstVT = Op.getValueType();
Chris Lattner2a786eb2010-12-19 20:19:20 +00009116 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
9117 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009118 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00009119 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009120 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +00009121 // i64 <=> MMX conversions are Legal.
9122 if (SrcVT==MVT::i64 && DstVT.isVector())
9123 return Op;
9124 if (DstVT==MVT::i64 && SrcVT.isVector())
9125 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00009126 // MMX <=> MMX conversions are Legal.
9127 if (SrcVT.isVector() && DstVT.isVector())
9128 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00009129 // All other conversions need to be expanded.
9130 return SDValue();
9131}
Chris Lattner5b856542010-12-20 00:59:46 +00009132
Dan Gohmand858e902010-04-17 15:26:15 +00009133SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009134 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009135 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00009136 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009137 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00009138 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009139 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009140 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009141 Node->getOperand(0),
9142 Node->getOperand(1), negOp,
9143 cast<AtomicSDNode>(Node)->getSrcValue(),
9144 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00009145}
9146
Chris Lattner5b856542010-12-20 00:59:46 +00009147static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
9148 EVT VT = Op.getNode()->getValueType(0);
9149
9150 // Let legalize expand this if it isn't a legal type yet.
9151 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
9152 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009153
Chris Lattner5b856542010-12-20 00:59:46 +00009154 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009155
Chris Lattner5b856542010-12-20 00:59:46 +00009156 unsigned Opc;
9157 bool ExtraOp = false;
9158 switch (Op.getOpcode()) {
9159 default: assert(0 && "Invalid code");
9160 case ISD::ADDC: Opc = X86ISD::ADD; break;
9161 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
9162 case ISD::SUBC: Opc = X86ISD::SUB; break;
9163 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
9164 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009165
Chris Lattner5b856542010-12-20 00:59:46 +00009166 if (!ExtraOp)
9167 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9168 Op.getOperand(1));
9169 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9170 Op.getOperand(1), Op.getOperand(2));
9171}
9172
Evan Cheng0db9fe62006-04-25 20:13:52 +00009173/// LowerOperation - Provide custom lowering hooks for some operations.
9174///
Dan Gohmand858e902010-04-17 15:26:15 +00009175SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00009176 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009177 default: llvm_unreachable("Should not custom lower this!");
Eric Christopher9a9d2752010-07-22 02:48:34 +00009178 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009179 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
9180 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009181 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00009182 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009183 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
9184 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
9185 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
David Greene91585092011-01-26 15:38:49 +00009186 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
David Greenecfe33c42011-01-26 19:13:22 +00009187 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009188 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
9189 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
9190 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009191 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00009192 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00009193 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009194 case ISD::SHL_PARTS:
9195 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +00009196 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009197 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00009198 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009199 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00009200 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009201 case ISD::FABS: return LowerFABS(Op, DAG);
9202 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009203 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009204 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009205 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00009206 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009207 case ISD::SELECT: return LowerSELECT(Op, DAG);
9208 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009209 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009210 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00009211 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00009212 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009213 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00009214 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
9215 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009216 case ISD::FRAME_TO_ARGS_OFFSET:
9217 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00009218 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009219 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009220 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00009221 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00009222 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
9223 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009224 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +00009225 case ISD::SRA:
9226 case ISD::SRL:
9227 case ISD::SHL: return LowerShift(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00009228 case ISD::SADDO:
9229 case ISD::UADDO:
9230 case ISD::SSUBO:
9231 case ISD::USUBO:
9232 case ISD::SMULO:
9233 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00009234 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009235 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +00009236 case ISD::ADDC:
9237 case ISD::ADDE:
9238 case ISD::SUBC:
9239 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009240 }
Chris Lattner27a6c732007-11-24 07:07:01 +00009241}
9242
Duncan Sands1607f052008-12-01 11:39:25 +00009243void X86TargetLowering::
9244ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009245 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009246 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009247 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00009248 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00009249
9250 SDValue Chain = Node->getOperand(0);
9251 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009252 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009253 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00009254 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009255 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00009256 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00009257 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00009258 SDValue Result =
9259 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
9260 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00009261 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009262 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009263 Results.push_back(Result.getValue(2));
9264}
9265
Duncan Sands126d9072008-07-04 11:47:58 +00009266/// ReplaceNodeResults - Replace a node with an illegal result type
9267/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00009268void X86TargetLowering::ReplaceNodeResults(SDNode *N,
9269 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009270 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009271 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00009272 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00009273 default:
Duncan Sands1607f052008-12-01 11:39:25 +00009274 assert(false && "Do not know how to custom type legalize this operation!");
9275 return;
Chris Lattner5b856542010-12-20 00:59:46 +00009276 case ISD::ADDC:
9277 case ISD::ADDE:
9278 case ISD::SUBC:
9279 case ISD::SUBE:
9280 // We don't want to expand or promote these.
9281 return;
Duncan Sands1607f052008-12-01 11:39:25 +00009282 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00009283 std::pair<SDValue,SDValue> Vals =
9284 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00009285 SDValue FIST = Vals.first, StackSlot = Vals.second;
9286 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00009287 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00009288 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00009289 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
9290 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00009291 }
9292 return;
9293 }
9294 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009295 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009296 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009297 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009298 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00009299 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00009300 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009301 eax.getValue(2));
9302 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
9303 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00009304 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009305 Results.push_back(edx.getValue(1));
9306 return;
9307 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009308 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00009309 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009310 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00009311 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009312 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9313 DAG.getConstant(0, MVT::i32));
9314 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9315 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009316 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
9317 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009318 cpInL.getValue(1));
9319 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009320 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9321 DAG.getConstant(0, MVT::i32));
9322 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9323 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009324 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00009325 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009326 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009327 swapInL.getValue(1));
9328 SDValue Ops[] = { swapInH.getValue(0),
9329 N->getOperand(1),
9330 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009331 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +00009332 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
9333 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
9334 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +00009335 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009336 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009337 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009338 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00009339 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009340 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009341 Results.push_back(cpOutH.getValue(1));
9342 return;
9343 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009344 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00009345 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
9346 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009347 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00009348 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
9349 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009350 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00009351 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
9352 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009353 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00009354 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
9355 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009356 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00009357 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
9358 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009359 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00009360 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
9361 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009362 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00009363 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
9364 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00009365 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00009366}
9367
Evan Cheng72261582005-12-20 06:22:03 +00009368const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
9369 switch (Opcode) {
9370 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00009371 case X86ISD::BSF: return "X86ISD::BSF";
9372 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00009373 case X86ISD::SHLD: return "X86ISD::SHLD";
9374 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00009375 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009376 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00009377 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009378 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00009379 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00009380 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00009381 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
9382 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
9383 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00009384 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00009385 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00009386 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00009387 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00009388 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00009389 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00009390 case X86ISD::COMI: return "X86ISD::COMI";
9391 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00009392 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00009393 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Evan Cheng72261582005-12-20 06:22:03 +00009394 case X86ISD::CMOV: return "X86ISD::CMOV";
9395 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00009396 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00009397 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
9398 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00009399 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00009400 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00009401 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009402 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00009403 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009404 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
9405 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00009406 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00009407 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Nate Begemanb65c1752010-12-17 22:55:37 +00009408 case X86ISD::PANDN: return "X86ISD::PANDN";
9409 case X86ISD::PSIGNB: return "X86ISD::PSIGNB";
9410 case X86ISD::PSIGNW: return "X86ISD::PSIGNW";
9411 case X86ISD::PSIGND: return "X86ISD::PSIGND";
Nate Begeman672fb622010-12-20 22:04:24 +00009412 case X86ISD::PBLENDVB: return "X86ISD::PBLENDVB";
Evan Cheng8ca29322006-11-10 21:43:37 +00009413 case X86ISD::FMAX: return "X86ISD::FMAX";
9414 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00009415 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
9416 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009417 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00009418 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009419 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00009420 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009421 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00009422 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
9423 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009424 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
9425 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
9426 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
9427 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
9428 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
9429 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00009430 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
9431 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00009432 case X86ISD::VSHL: return "X86ISD::VSHL";
9433 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00009434 case X86ISD::CMPPD: return "X86ISD::CMPPD";
9435 case X86ISD::CMPPS: return "X86ISD::CMPPS";
9436 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
9437 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
9438 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
9439 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
9440 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
9441 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
9442 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
9443 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009444 case X86ISD::ADD: return "X86ISD::ADD";
9445 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +00009446 case X86ISD::ADC: return "X86ISD::ADC";
9447 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +00009448 case X86ISD::SMUL: return "X86ISD::SMUL";
9449 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00009450 case X86ISD::INC: return "X86ISD::INC";
9451 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +00009452 case X86ISD::OR: return "X86ISD::OR";
9453 case X86ISD::XOR: return "X86ISD::XOR";
9454 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +00009455 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +00009456 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009457 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009458 case X86ISD::PALIGN: return "X86ISD::PALIGN";
9459 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
9460 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
9461 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
9462 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
9463 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
9464 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
9465 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
9466 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009467 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00009468 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009469 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00009470 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
9471 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009472 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
9473 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
9474 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
9475 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
9476 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
9477 case X86ISD::MOVSD: return "X86ISD::MOVSD";
9478 case X86ISD::MOVSS: return "X86ISD::MOVSS";
9479 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
9480 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
David Greenefbf05d32011-02-22 23:31:46 +00009481 case X86ISD::VUNPCKLPS: return "X86ISD::VUNPCKLPS";
9482 case X86ISD::VUNPCKLPD: return "X86ISD::VUNPCKLPD";
9483 case X86ISD::VUNPCKLPSY: return "X86ISD::VUNPCKLPSY";
9484 case X86ISD::VUNPCKLPDY: return "X86ISD::VUNPCKLPDY";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009485 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
9486 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
9487 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
9488 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
9489 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
9490 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
9491 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
9492 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
9493 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
9494 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +00009495 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +00009496 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009497 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Evan Cheng72261582005-12-20 06:22:03 +00009498 }
9499}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00009500
Chris Lattnerc9addb72007-03-30 23:15:24 +00009501// isLegalAddressingMode - Return true if the addressing mode represented
9502// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00009503bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerc9addb72007-03-30 23:15:24 +00009504 const Type *Ty) const {
9505 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009506 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +00009507 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +00009508
Chris Lattnerc9addb72007-03-30 23:15:24 +00009509 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009510 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +00009511 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00009512
Chris Lattnerc9addb72007-03-30 23:15:24 +00009513 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +00009514 unsigned GVFlags =
9515 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009516
Chris Lattnerdfed4132009-07-10 07:38:24 +00009517 // If a reference to this global requires an extra load, we can't fold it.
9518 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +00009519 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009520
Chris Lattnerdfed4132009-07-10 07:38:24 +00009521 // If BaseGV requires a register for the PIC base, we cannot also have a
9522 // BaseReg specified.
9523 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +00009524 return false;
Evan Cheng52787842007-08-01 23:46:47 +00009525
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009526 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +00009527 if ((M != CodeModel::Small || R != Reloc::Static) &&
9528 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009529 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00009530 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009531
Chris Lattnerc9addb72007-03-30 23:15:24 +00009532 switch (AM.Scale) {
9533 case 0:
9534 case 1:
9535 case 2:
9536 case 4:
9537 case 8:
9538 // These scales always work.
9539 break;
9540 case 3:
9541 case 5:
9542 case 9:
9543 // These scales are formed with basereg+scalereg. Only accept if there is
9544 // no basereg yet.
9545 if (AM.HasBaseReg)
9546 return false;
9547 break;
9548 default: // Other stuff never works.
9549 return false;
9550 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009551
Chris Lattnerc9addb72007-03-30 23:15:24 +00009552 return true;
9553}
9554
9555
Evan Cheng2bd122c2007-10-26 01:56:11 +00009556bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00009557 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +00009558 return false;
Evan Chenge127a732007-10-29 07:57:50 +00009559 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
9560 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00009561 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00009562 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00009563 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +00009564}
9565
Owen Andersone50ed302009-08-10 22:56:29 +00009566bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009567 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009568 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009569 unsigned NumBits1 = VT1.getSizeInBits();
9570 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00009571 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009572 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00009573 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009574}
Evan Cheng2bd122c2007-10-26 01:56:11 +00009575
Dan Gohman97121ba2009-04-08 00:15:30 +00009576bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00009577 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00009578 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00009579}
9580
Owen Andersone50ed302009-08-10 22:56:29 +00009581bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00009582 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00009583 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00009584}
9585
Owen Andersone50ed302009-08-10 22:56:29 +00009586bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +00009587 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +00009588 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +00009589}
9590
Evan Cheng60c07e12006-07-05 22:17:51 +00009591/// isShuffleMaskLegal - Targets can use this to indicate that they only
9592/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
9593/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
9594/// are assumed to be legal.
9595bool
Eric Christopherfd179292009-08-27 18:07:15 +00009596X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +00009597 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +00009598 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +00009599 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +00009600 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +00009601
Nate Begemana09008b2009-10-19 02:17:23 +00009602 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +00009603 return (VT.getVectorNumElements() == 2 ||
9604 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
9605 isMOVLMask(M, VT) ||
9606 isSHUFPMask(M, VT) ||
9607 isPSHUFDMask(M, VT) ||
9608 isPSHUFHWMask(M, VT) ||
9609 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +00009610 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +00009611 isUNPCKLMask(M, VT) ||
9612 isUNPCKHMask(M, VT) ||
9613 isUNPCKL_v_undef_Mask(M, VT) ||
9614 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009615}
9616
Dan Gohman7d8143f2008-04-09 20:09:42 +00009617bool
Nate Begeman5a5ca152009-04-29 05:20:52 +00009618X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +00009619 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00009620 unsigned NumElts = VT.getVectorNumElements();
9621 // FIXME: This collection of masks seems suspect.
9622 if (NumElts == 2)
9623 return true;
9624 if (NumElts == 4 && VT.getSizeInBits() == 128) {
9625 return (isMOVLMask(Mask, VT) ||
9626 isCommutedMOVLMask(Mask, VT, true) ||
9627 isSHUFPMask(Mask, VT) ||
9628 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009629 }
9630 return false;
9631}
9632
9633//===----------------------------------------------------------------------===//
9634// X86 Scheduler Hooks
9635//===----------------------------------------------------------------------===//
9636
Mon P Wang63307c32008-05-05 19:05:59 +00009637// private utility function
9638MachineBasicBlock *
9639X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
9640 MachineBasicBlock *MBB,
9641 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009642 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009643 unsigned LoadOpc,
9644 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009645 unsigned notOpc,
9646 unsigned EAXreg,
9647 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009648 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009649 // For the atomic bitwise operator, we generate
9650 // thisMBB:
9651 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009652 // ld t1 = [bitinstr.addr]
9653 // op t2 = t1, [bitinstr.val]
9654 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009655 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9656 // bz newMBB
9657 // fallthrough -->nextMBB
9658 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9659 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009660 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009661 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009662
Mon P Wang63307c32008-05-05 19:05:59 +00009663 /// First build the CFG
9664 MachineFunction *F = MBB->getParent();
9665 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009666 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9667 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9668 F->insert(MBBIter, newMBB);
9669 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009670
Dan Gohman14152b42010-07-06 20:24:04 +00009671 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9672 nextMBB->splice(nextMBB->begin(), thisMBB,
9673 llvm::next(MachineBasicBlock::iterator(bInstr)),
9674 thisMBB->end());
9675 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009676
Mon P Wang63307c32008-05-05 19:05:59 +00009677 // Update thisMBB to fall through to newMBB
9678 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009679
Mon P Wang63307c32008-05-05 19:05:59 +00009680 // newMBB jumps to itself and fall through to nextMBB
9681 newMBB->addSuccessor(nextMBB);
9682 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009683
Mon P Wang63307c32008-05-05 19:05:59 +00009684 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009685 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009686 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +00009687 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009688 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009689 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009690 int numArgs = bInstr->getNumOperands() - 1;
9691 for (int i=0; i < numArgs; ++i)
9692 argOpers[i] = &bInstr->getOperand(i+1);
9693
9694 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009695 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009696 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009697
Dale Johannesen140be2d2008-08-19 18:47:28 +00009698 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009699 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009700 for (int i=0; i <= lastAddrIndx; ++i)
9701 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009702
Dale Johannesen140be2d2008-08-19 18:47:28 +00009703 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009704 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009705 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009706 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009707 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009708 tt = t1;
9709
Dale Johannesen140be2d2008-08-19 18:47:28 +00009710 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00009711 assert((argOpers[valArgIndx]->isReg() ||
9712 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009713 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00009714 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009715 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009716 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009717 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009718 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00009719 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009720
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009721 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00009722 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009723
Dale Johannesene4d209d2009-02-03 20:21:25 +00009724 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00009725 for (int i=0; i <= lastAddrIndx; ++i)
9726 (*MIB).addOperand(*argOpers[i]);
9727 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00009728 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009729 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9730 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +00009731
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009732 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +00009733 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009734
Mon P Wang63307c32008-05-05 19:05:59 +00009735 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009736 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009737
Dan Gohman14152b42010-07-06 20:24:04 +00009738 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009739 return nextMBB;
9740}
9741
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00009742// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +00009743MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009744X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
9745 MachineBasicBlock *MBB,
9746 unsigned regOpcL,
9747 unsigned regOpcH,
9748 unsigned immOpcL,
9749 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009750 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009751 // For the atomic bitwise operator, we generate
9752 // thisMBB (instructions are in pairs, except cmpxchg8b)
9753 // ld t1,t2 = [bitinstr.addr]
9754 // newMBB:
9755 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
9756 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +00009757 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009758 // mov ECX, EBX <- t5, t6
9759 // mov EAX, EDX <- t1, t2
9760 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
9761 // mov t3, t4 <- EAX, EDX
9762 // bz newMBB
9763 // result in out1, out2
9764 // fallthrough -->nextMBB
9765
9766 const TargetRegisterClass *RC = X86::GR32RegisterClass;
9767 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009768 const unsigned NotOpc = X86::NOT32r;
9769 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9770 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9771 MachineFunction::iterator MBBIter = MBB;
9772 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009773
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009774 /// First build the CFG
9775 MachineFunction *F = MBB->getParent();
9776 MachineBasicBlock *thisMBB = MBB;
9777 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9778 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9779 F->insert(MBBIter, newMBB);
9780 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009781
Dan Gohman14152b42010-07-06 20:24:04 +00009782 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9783 nextMBB->splice(nextMBB->begin(), thisMBB,
9784 llvm::next(MachineBasicBlock::iterator(bInstr)),
9785 thisMBB->end());
9786 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009787
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009788 // Update thisMBB to fall through to newMBB
9789 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009790
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009791 // newMBB jumps to itself and fall through to nextMBB
9792 newMBB->addSuccessor(nextMBB);
9793 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009794
Dale Johannesene4d209d2009-02-03 20:21:25 +00009795 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009796 // Insert instructions into newMBB based on incoming instruction
9797 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009798 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009799 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009800 MachineOperand& dest1Oper = bInstr->getOperand(0);
9801 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009802 MachineOperand* argOpers[2 + X86::AddrNumOperands];
9803 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009804 argOpers[i] = &bInstr->getOperand(i+2);
9805
Dan Gohman71ea4e52010-05-14 21:01:44 +00009806 // We use some of the operands multiple times, so conservatively just
9807 // clear any kill flags that might be present.
9808 if (argOpers[i]->isReg() && argOpers[i]->isUse())
9809 argOpers[i]->setIsKill(false);
9810 }
9811
Evan Chengad5b52f2010-01-08 19:14:57 +00009812 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009813 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +00009814
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009815 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009816 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009817 for (int i=0; i <= lastAddrIndx; ++i)
9818 (*MIB).addOperand(*argOpers[i]);
9819 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009820 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +00009821 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +00009822 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009823 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +00009824 MachineOperand newOp3 = *(argOpers[3]);
9825 if (newOp3.isImm())
9826 newOp3.setImm(newOp3.getImm()+4);
9827 else
9828 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009829 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +00009830 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009831
9832 // t3/4 are defined later, at the bottom of the loop
9833 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
9834 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009835 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009836 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009837 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009838 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
9839
Evan Cheng306b4ca2010-01-08 23:41:50 +00009840 // The subsequent operations should be using the destination registers of
9841 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +00009842 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009843 t1 = F->getRegInfo().createVirtualRegister(RC);
9844 t2 = F->getRegInfo().createVirtualRegister(RC);
9845 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
9846 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009847 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009848 t1 = dest1Oper.getReg();
9849 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009850 }
9851
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009852 int valArgIndx = lastAddrIndx + 1;
9853 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +00009854 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009855 "invalid operand");
9856 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
9857 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009858 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009859 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009860 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009861 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +00009862 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009863 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009864 (*MIB).addOperand(*argOpers[valArgIndx]);
9865 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009866 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009867 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009868 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009869 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009870 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009871 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009872 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +00009873 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009874 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009875 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009876
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009877 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009878 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009879 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009880 MIB.addReg(t2);
9881
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009882 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009883 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009884 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009885 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +00009886
Dale Johannesene4d209d2009-02-03 20:21:25 +00009887 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009888 for (int i=0; i <= lastAddrIndx; ++i)
9889 (*MIB).addOperand(*argOpers[i]);
9890
9891 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009892 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9893 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009894
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009895 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009896 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009897 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009898 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009899
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009900 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009901 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009902
Dan Gohman14152b42010-07-06 20:24:04 +00009903 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009904 return nextMBB;
9905}
9906
9907// private utility function
9908MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +00009909X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
9910 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009911 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009912 // For the atomic min/max operator, we generate
9913 // thisMBB:
9914 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009915 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +00009916 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +00009917 // cmp t1, t2
9918 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +00009919 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009920 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9921 // bz newMBB
9922 // fallthrough -->nextMBB
9923 //
9924 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9925 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009926 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009927 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009928
Mon P Wang63307c32008-05-05 19:05:59 +00009929 /// First build the CFG
9930 MachineFunction *F = MBB->getParent();
9931 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009932 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9933 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9934 F->insert(MBBIter, newMBB);
9935 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009936
Dan Gohman14152b42010-07-06 20:24:04 +00009937 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9938 nextMBB->splice(nextMBB->begin(), thisMBB,
9939 llvm::next(MachineBasicBlock::iterator(mInstr)),
9940 thisMBB->end());
9941 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009942
Mon P Wang63307c32008-05-05 19:05:59 +00009943 // Update thisMBB to fall through to newMBB
9944 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009945
Mon P Wang63307c32008-05-05 19:05:59 +00009946 // newMBB jumps to newMBB and fall through to nextMBB
9947 newMBB->addSuccessor(nextMBB);
9948 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009949
Dale Johannesene4d209d2009-02-03 20:21:25 +00009950 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009951 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009952 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009953 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +00009954 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009955 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009956 int numArgs = mInstr->getNumOperands() - 1;
9957 for (int i=0; i < numArgs; ++i)
9958 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009959
Mon P Wang63307c32008-05-05 19:05:59 +00009960 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009961 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009962 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009963
Mon P Wangab3e7472008-05-05 22:56:23 +00009964 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009965 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009966 for (int i=0; i <= lastAddrIndx; ++i)
9967 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +00009968
Mon P Wang63307c32008-05-05 19:05:59 +00009969 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +00009970 assert((argOpers[valArgIndx]->isReg() ||
9971 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009972 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +00009973
9974 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +00009975 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009976 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +00009977 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009978 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009979 (*MIB).addOperand(*argOpers[valArgIndx]);
9980
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009981 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +00009982 MIB.addReg(t1);
9983
Dale Johannesene4d209d2009-02-03 20:21:25 +00009984 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +00009985 MIB.addReg(t1);
9986 MIB.addReg(t2);
9987
9988 // Generate movc
9989 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009990 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +00009991 MIB.addReg(t2);
9992 MIB.addReg(t1);
9993
9994 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +00009995 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +00009996 for (int i=0; i <= lastAddrIndx; ++i)
9997 (*MIB).addOperand(*argOpers[i]);
9998 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +00009999 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010000 (*MIB).setMemRefs(mInstr->memoperands_begin(),
10001 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000010002
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010003 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +000010004 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010005
Mon P Wang63307c32008-05-05 19:05:59 +000010006 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010007 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010008
Dan Gohman14152b42010-07-06 20:24:04 +000010009 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010010 return nextMBB;
10011}
10012
Eric Christopherf83a5de2009-08-27 18:08:16 +000010013// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010014// or XMM0_V32I8 in AVX all of this code can be replaced with that
10015// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010016MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +000010017X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +000010018 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010019 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
10020 "Target must have SSE4.2 or AVX features enabled");
10021
Eric Christopherb120ab42009-08-18 22:50:32 +000010022 DebugLoc dl = MI->getDebugLoc();
10023 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +000010024 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010025 if (!Subtarget->hasAVX()) {
10026 if (memArg)
10027 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
10028 else
10029 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
10030 } else {
10031 if (memArg)
10032 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
10033 else
10034 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
10035 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010036
Eric Christopher41c902f2010-11-30 08:20:21 +000010037 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +000010038 for (unsigned i = 0; i < numArgs; ++i) {
10039 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +000010040 if (!(Op.isReg() && Op.isImplicit()))
10041 MIB.addOperand(Op);
10042 }
Eric Christopher41c902f2010-11-30 08:20:21 +000010043 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000010044 .addReg(X86::XMM0);
10045
Dan Gohman14152b42010-07-06 20:24:04 +000010046 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000010047 return BB;
10048}
10049
10050MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +000010051X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010052 DebugLoc dl = MI->getDebugLoc();
10053 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010054
Eric Christopher228232b2010-11-30 07:20:12 +000010055 // Address into RAX/EAX, other two args into ECX, EDX.
10056 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
10057 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
10058 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
10059 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000010060 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010061
Eric Christopher228232b2010-11-30 07:20:12 +000010062 unsigned ValOps = X86::AddrNumOperands;
10063 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10064 .addReg(MI->getOperand(ValOps).getReg());
10065 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
10066 .addReg(MI->getOperand(ValOps+1).getReg());
10067
10068 // The instruction doesn't actually take any operands though.
10069 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010070
Eric Christopher228232b2010-11-30 07:20:12 +000010071 MI->eraseFromParent(); // The pseudo is gone now.
10072 return BB;
10073}
10074
10075MachineBasicBlock *
10076X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010077 DebugLoc dl = MI->getDebugLoc();
10078 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010079
Eric Christopher228232b2010-11-30 07:20:12 +000010080 // First arg in ECX, the second in EAX.
10081 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10082 .addReg(MI->getOperand(0).getReg());
10083 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
10084 .addReg(MI->getOperand(1).getReg());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010085
Eric Christopher228232b2010-11-30 07:20:12 +000010086 // The instruction doesn't actually take any operands though.
10087 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010088
Eric Christopher228232b2010-11-30 07:20:12 +000010089 MI->eraseFromParent(); // The pseudo is gone now.
10090 return BB;
10091}
10092
10093MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000010094X86TargetLowering::EmitVAARG64WithCustomInserter(
10095 MachineInstr *MI,
10096 MachineBasicBlock *MBB) const {
10097 // Emit va_arg instruction on X86-64.
10098
10099 // Operands to this pseudo-instruction:
10100 // 0 ) Output : destination address (reg)
10101 // 1-5) Input : va_list address (addr, i64mem)
10102 // 6 ) ArgSize : Size (in bytes) of vararg type
10103 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
10104 // 8 ) Align : Alignment of type
10105 // 9 ) EFLAGS (implicit-def)
10106
10107 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
10108 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
10109
10110 unsigned DestReg = MI->getOperand(0).getReg();
10111 MachineOperand &Base = MI->getOperand(1);
10112 MachineOperand &Scale = MI->getOperand(2);
10113 MachineOperand &Index = MI->getOperand(3);
10114 MachineOperand &Disp = MI->getOperand(4);
10115 MachineOperand &Segment = MI->getOperand(5);
10116 unsigned ArgSize = MI->getOperand(6).getImm();
10117 unsigned ArgMode = MI->getOperand(7).getImm();
10118 unsigned Align = MI->getOperand(8).getImm();
10119
10120 // Memory Reference
10121 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
10122 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
10123 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
10124
10125 // Machine Information
10126 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10127 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
10128 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
10129 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
10130 DebugLoc DL = MI->getDebugLoc();
10131
10132 // struct va_list {
10133 // i32 gp_offset
10134 // i32 fp_offset
10135 // i64 overflow_area (address)
10136 // i64 reg_save_area (address)
10137 // }
10138 // sizeof(va_list) = 24
10139 // alignment(va_list) = 8
10140
10141 unsigned TotalNumIntRegs = 6;
10142 unsigned TotalNumXMMRegs = 8;
10143 bool UseGPOffset = (ArgMode == 1);
10144 bool UseFPOffset = (ArgMode == 2);
10145 unsigned MaxOffset = TotalNumIntRegs * 8 +
10146 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
10147
10148 /* Align ArgSize to a multiple of 8 */
10149 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
10150 bool NeedsAlign = (Align > 8);
10151
10152 MachineBasicBlock *thisMBB = MBB;
10153 MachineBasicBlock *overflowMBB;
10154 MachineBasicBlock *offsetMBB;
10155 MachineBasicBlock *endMBB;
10156
10157 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
10158 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
10159 unsigned OffsetReg = 0;
10160
10161 if (!UseGPOffset && !UseFPOffset) {
10162 // If we only pull from the overflow region, we don't create a branch.
10163 // We don't need to alter control flow.
10164 OffsetDestReg = 0; // unused
10165 OverflowDestReg = DestReg;
10166
10167 offsetMBB = NULL;
10168 overflowMBB = thisMBB;
10169 endMBB = thisMBB;
10170 } else {
10171 // First emit code to check if gp_offset (or fp_offset) is below the bound.
10172 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
10173 // If not, pull from overflow_area. (branch to overflowMBB)
10174 //
10175 // thisMBB
10176 // | .
10177 // | .
10178 // offsetMBB overflowMBB
10179 // | .
10180 // | .
10181 // endMBB
10182
10183 // Registers for the PHI in endMBB
10184 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
10185 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
10186
10187 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10188 MachineFunction *MF = MBB->getParent();
10189 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10190 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10191 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10192
10193 MachineFunction::iterator MBBIter = MBB;
10194 ++MBBIter;
10195
10196 // Insert the new basic blocks
10197 MF->insert(MBBIter, offsetMBB);
10198 MF->insert(MBBIter, overflowMBB);
10199 MF->insert(MBBIter, endMBB);
10200
10201 // Transfer the remainder of MBB and its successor edges to endMBB.
10202 endMBB->splice(endMBB->begin(), thisMBB,
10203 llvm::next(MachineBasicBlock::iterator(MI)),
10204 thisMBB->end());
10205 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
10206
10207 // Make offsetMBB and overflowMBB successors of thisMBB
10208 thisMBB->addSuccessor(offsetMBB);
10209 thisMBB->addSuccessor(overflowMBB);
10210
10211 // endMBB is a successor of both offsetMBB and overflowMBB
10212 offsetMBB->addSuccessor(endMBB);
10213 overflowMBB->addSuccessor(endMBB);
10214
10215 // Load the offset value into a register
10216 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10217 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
10218 .addOperand(Base)
10219 .addOperand(Scale)
10220 .addOperand(Index)
10221 .addDisp(Disp, UseFPOffset ? 4 : 0)
10222 .addOperand(Segment)
10223 .setMemRefs(MMOBegin, MMOEnd);
10224
10225 // Check if there is enough room left to pull this argument.
10226 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
10227 .addReg(OffsetReg)
10228 .addImm(MaxOffset + 8 - ArgSizeA8);
10229
10230 // Branch to "overflowMBB" if offset >= max
10231 // Fall through to "offsetMBB" otherwise
10232 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
10233 .addMBB(overflowMBB);
10234 }
10235
10236 // In offsetMBB, emit code to use the reg_save_area.
10237 if (offsetMBB) {
10238 assert(OffsetReg != 0);
10239
10240 // Read the reg_save_area address.
10241 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
10242 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
10243 .addOperand(Base)
10244 .addOperand(Scale)
10245 .addOperand(Index)
10246 .addDisp(Disp, 16)
10247 .addOperand(Segment)
10248 .setMemRefs(MMOBegin, MMOEnd);
10249
10250 // Zero-extend the offset
10251 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
10252 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
10253 .addImm(0)
10254 .addReg(OffsetReg)
10255 .addImm(X86::sub_32bit);
10256
10257 // Add the offset to the reg_save_area to get the final address.
10258 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
10259 .addReg(OffsetReg64)
10260 .addReg(RegSaveReg);
10261
10262 // Compute the offset for the next argument
10263 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10264 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
10265 .addReg(OffsetReg)
10266 .addImm(UseFPOffset ? 16 : 8);
10267
10268 // Store it back into the va_list.
10269 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
10270 .addOperand(Base)
10271 .addOperand(Scale)
10272 .addOperand(Index)
10273 .addDisp(Disp, UseFPOffset ? 4 : 0)
10274 .addOperand(Segment)
10275 .addReg(NextOffsetReg)
10276 .setMemRefs(MMOBegin, MMOEnd);
10277
10278 // Jump to endMBB
10279 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
10280 .addMBB(endMBB);
10281 }
10282
10283 //
10284 // Emit code to use overflow area
10285 //
10286
10287 // Load the overflow_area address into a register.
10288 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
10289 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
10290 .addOperand(Base)
10291 .addOperand(Scale)
10292 .addOperand(Index)
10293 .addDisp(Disp, 8)
10294 .addOperand(Segment)
10295 .setMemRefs(MMOBegin, MMOEnd);
10296
10297 // If we need to align it, do so. Otherwise, just copy the address
10298 // to OverflowDestReg.
10299 if (NeedsAlign) {
10300 // Align the overflow address
10301 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
10302 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
10303
10304 // aligned_addr = (addr + (align-1)) & ~(align-1)
10305 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
10306 .addReg(OverflowAddrReg)
10307 .addImm(Align-1);
10308
10309 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
10310 .addReg(TmpReg)
10311 .addImm(~(uint64_t)(Align-1));
10312 } else {
10313 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
10314 .addReg(OverflowAddrReg);
10315 }
10316
10317 // Compute the next overflow address after this argument.
10318 // (the overflow address should be kept 8-byte aligned)
10319 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
10320 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
10321 .addReg(OverflowDestReg)
10322 .addImm(ArgSizeA8);
10323
10324 // Store the new overflow address.
10325 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
10326 .addOperand(Base)
10327 .addOperand(Scale)
10328 .addOperand(Index)
10329 .addDisp(Disp, 8)
10330 .addOperand(Segment)
10331 .addReg(NextAddrReg)
10332 .setMemRefs(MMOBegin, MMOEnd);
10333
10334 // If we branched, emit the PHI to the front of endMBB.
10335 if (offsetMBB) {
10336 BuildMI(*endMBB, endMBB->begin(), DL,
10337 TII->get(X86::PHI), DestReg)
10338 .addReg(OffsetDestReg).addMBB(offsetMBB)
10339 .addReg(OverflowDestReg).addMBB(overflowMBB);
10340 }
10341
10342 // Erase the pseudo instruction
10343 MI->eraseFromParent();
10344
10345 return endMBB;
10346}
10347
10348MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000010349X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
10350 MachineInstr *MI,
10351 MachineBasicBlock *MBB) const {
10352 // Emit code to save XMM registers to the stack. The ABI says that the
10353 // number of registers to save is given in %al, so it's theoretically
10354 // possible to do an indirect jump trick to avoid saving all of them,
10355 // however this code takes a simpler approach and just executes all
10356 // of the stores if %al is non-zero. It's less code, and it's probably
10357 // easier on the hardware branch predictor, and stores aren't all that
10358 // expensive anyway.
10359
10360 // Create the new basic blocks. One block contains all the XMM stores,
10361 // and one block is the final destination regardless of whether any
10362 // stores were performed.
10363 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10364 MachineFunction *F = MBB->getParent();
10365 MachineFunction::iterator MBBIter = MBB;
10366 ++MBBIter;
10367 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
10368 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
10369 F->insert(MBBIter, XMMSaveMBB);
10370 F->insert(MBBIter, EndMBB);
10371
Dan Gohman14152b42010-07-06 20:24:04 +000010372 // Transfer the remainder of MBB and its successor edges to EndMBB.
10373 EndMBB->splice(EndMBB->begin(), MBB,
10374 llvm::next(MachineBasicBlock::iterator(MI)),
10375 MBB->end());
10376 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
10377
Dan Gohmand6708ea2009-08-15 01:38:56 +000010378 // The original block will now fall through to the XMM save block.
10379 MBB->addSuccessor(XMMSaveMBB);
10380 // The XMMSaveMBB will fall through to the end block.
10381 XMMSaveMBB->addSuccessor(EndMBB);
10382
10383 // Now add the instructions.
10384 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10385 DebugLoc DL = MI->getDebugLoc();
10386
10387 unsigned CountReg = MI->getOperand(0).getReg();
10388 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
10389 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
10390
10391 if (!Subtarget->isTargetWin64()) {
10392 // If %al is 0, branch around the XMM save block.
10393 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010394 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010395 MBB->addSuccessor(EndMBB);
10396 }
10397
10398 // In the XMM save block, save all the XMM argument registers.
10399 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
10400 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000010401 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000010402 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000010403 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000010404 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000010405 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010406 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
10407 .addFrameIndex(RegSaveFrameIndex)
10408 .addImm(/*Scale=*/1)
10409 .addReg(/*IndexReg=*/0)
10410 .addImm(/*Disp=*/Offset)
10411 .addReg(/*Segment=*/0)
10412 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000010413 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010414 }
10415
Dan Gohman14152b42010-07-06 20:24:04 +000010416 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010417
10418 return EndMBB;
10419}
Mon P Wang63307c32008-05-05 19:05:59 +000010420
Evan Cheng60c07e12006-07-05 22:17:51 +000010421MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000010422X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010423 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000010424 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10425 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000010426
Chris Lattner52600972009-09-02 05:57:00 +000010427 // To "insert" a SELECT_CC instruction, we actually have to insert the
10428 // diamond control-flow pattern. The incoming instruction knows the
10429 // destination vreg to set, the condition code register to branch on, the
10430 // true/false values to select between, and a branch opcode to use.
10431 const BasicBlock *LLVM_BB = BB->getBasicBlock();
10432 MachineFunction::iterator It = BB;
10433 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000010434
Chris Lattner52600972009-09-02 05:57:00 +000010435 // thisMBB:
10436 // ...
10437 // TrueVal = ...
10438 // cmpTY ccX, r1, r2
10439 // bCC copy1MBB
10440 // fallthrough --> copy0MBB
10441 MachineBasicBlock *thisMBB = BB;
10442 MachineFunction *F = BB->getParent();
10443 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
10444 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000010445 F->insert(It, copy0MBB);
10446 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000010447
Bill Wendling730c07e2010-06-25 20:48:10 +000010448 // If the EFLAGS register isn't dead in the terminator, then claim that it's
10449 // live into the sink and copy blocks.
10450 const MachineFunction *MF = BB->getParent();
10451 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
10452 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +000010453
Dan Gohman14152b42010-07-06 20:24:04 +000010454 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
10455 const MachineOperand &MO = MI->getOperand(I);
10456 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +000010457 unsigned Reg = MO.getReg();
10458 if (Reg != X86::EFLAGS) continue;
10459 copy0MBB->addLiveIn(Reg);
10460 sinkMBB->addLiveIn(Reg);
10461 }
10462
Dan Gohman14152b42010-07-06 20:24:04 +000010463 // Transfer the remainder of BB and its successor edges to sinkMBB.
10464 sinkMBB->splice(sinkMBB->begin(), BB,
10465 llvm::next(MachineBasicBlock::iterator(MI)),
10466 BB->end());
10467 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
10468
10469 // Add the true and fallthrough blocks as its successors.
10470 BB->addSuccessor(copy0MBB);
10471 BB->addSuccessor(sinkMBB);
10472
10473 // Create the conditional branch instruction.
10474 unsigned Opc =
10475 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
10476 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
10477
Chris Lattner52600972009-09-02 05:57:00 +000010478 // copy0MBB:
10479 // %FalseValue = ...
10480 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000010481 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000010482
Chris Lattner52600972009-09-02 05:57:00 +000010483 // sinkMBB:
10484 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
10485 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000010486 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
10487 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000010488 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
10489 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
10490
Dan Gohman14152b42010-07-06 20:24:04 +000010491 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000010492 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000010493}
10494
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010495MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010496X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010497 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010498 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10499 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010500
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000010501 assert(!Subtarget->isTargetEnvMacho());
10502
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010503 // The lowering is pretty easy: we're just emitting the call to _alloca. The
10504 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010505
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000010506 if (Subtarget->isTargetWin64()) {
10507 if (Subtarget->isTargetCygMing()) {
10508 // ___chkstk(Mingw64):
10509 // Clobbers R10, R11, RAX and EFLAGS.
10510 // Updates RSP.
10511 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
10512 .addExternalSymbol("___chkstk")
10513 .addReg(X86::RAX, RegState::Implicit)
10514 .addReg(X86::RSP, RegState::Implicit)
10515 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
10516 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
10517 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
10518 } else {
10519 // __chkstk(MSVCRT): does not update stack pointer.
10520 // Clobbers R10, R11 and EFLAGS.
10521 // FIXME: RAX(allocated size) might be reused and not killed.
10522 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
10523 .addExternalSymbol("__chkstk")
10524 .addReg(X86::RAX, RegState::Implicit)
10525 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
10526 // RAX has the offset to subtracted from RSP.
10527 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
10528 .addReg(X86::RSP)
10529 .addReg(X86::RAX);
10530 }
10531 } else {
10532 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010533 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
10534
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000010535 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
10536 .addExternalSymbol(StackProbeSymbol)
10537 .addReg(X86::EAX, RegState::Implicit)
10538 .addReg(X86::ESP, RegState::Implicit)
10539 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
10540 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
10541 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
10542 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010543
Dan Gohman14152b42010-07-06 20:24:04 +000010544 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010545 return BB;
10546}
Chris Lattner52600972009-09-02 05:57:00 +000010547
10548MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000010549X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
10550 MachineBasicBlock *BB) const {
10551 // This is pretty easy. We're taking the value that we received from
10552 // our load from the relocation, sticking it in either RDI (x86-64)
10553 // or EAX and doing an indirect call. The return value will then
10554 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010555 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000010556 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000010557 DebugLoc DL = MI->getDebugLoc();
10558 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000010559
10560 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000010561 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000010562
Eric Christopher30ef0e52010-06-03 04:07:48 +000010563 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000010564 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10565 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000010566 .addReg(X86::RIP)
10567 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010568 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000010569 MI->getOperand(3).getTargetFlags())
10570 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000010571 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000010572 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000010573 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000010574 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10575 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000010576 .addReg(0)
10577 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010578 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000010579 MI->getOperand(3).getTargetFlags())
10580 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000010581 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000010582 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010583 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000010584 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10585 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000010586 .addReg(TII->getGlobalBaseReg(F))
10587 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010588 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000010589 MI->getOperand(3).getTargetFlags())
10590 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000010591 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000010592 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010593 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000010594
Dan Gohman14152b42010-07-06 20:24:04 +000010595 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000010596 return BB;
10597}
10598
10599MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000010600X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010601 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000010602 switch (MI->getOpcode()) {
10603 default: assert(false && "Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000010604 case X86::TAILJMPd64:
10605 case X86::TAILJMPr64:
10606 case X86::TAILJMPm64:
10607 assert(!"TAILJMP64 would not be touched here.");
10608 case X86::TCRETURNdi64:
10609 case X86::TCRETURNri64:
10610 case X86::TCRETURNmi64:
10611 // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
10612 // On AMD64, additional defs should be added before register allocation.
10613 if (!Subtarget->isTargetWin64()) {
10614 MI->addRegisterDefined(X86::RSI);
10615 MI->addRegisterDefined(X86::RDI);
10616 MI->addRegisterDefined(X86::XMM6);
10617 MI->addRegisterDefined(X86::XMM7);
10618 MI->addRegisterDefined(X86::XMM8);
10619 MI->addRegisterDefined(X86::XMM9);
10620 MI->addRegisterDefined(X86::XMM10);
10621 MI->addRegisterDefined(X86::XMM11);
10622 MI->addRegisterDefined(X86::XMM12);
10623 MI->addRegisterDefined(X86::XMM13);
10624 MI->addRegisterDefined(X86::XMM14);
10625 MI->addRegisterDefined(X86::XMM15);
10626 }
10627 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010628 case X86::WIN_ALLOCA:
10629 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010630 case X86::TLSCall_32:
10631 case X86::TLSCall_64:
10632 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000010633 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000010634 case X86::CMOV_FR32:
10635 case X86::CMOV_FR64:
10636 case X86::CMOV_V4F32:
10637 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000010638 case X86::CMOV_V2I64:
Chris Lattner314a1132010-03-14 18:31:44 +000010639 case X86::CMOV_GR16:
10640 case X86::CMOV_GR32:
10641 case X86::CMOV_RFP32:
10642 case X86::CMOV_RFP64:
10643 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010644 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010645
Dale Johannesen849f2142007-07-03 00:53:03 +000010646 case X86::FP32_TO_INT16_IN_MEM:
10647 case X86::FP32_TO_INT32_IN_MEM:
10648 case X86::FP32_TO_INT64_IN_MEM:
10649 case X86::FP64_TO_INT16_IN_MEM:
10650 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000010651 case X86::FP64_TO_INT64_IN_MEM:
10652 case X86::FP80_TO_INT16_IN_MEM:
10653 case X86::FP80_TO_INT32_IN_MEM:
10654 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000010655 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10656 DebugLoc DL = MI->getDebugLoc();
10657
Evan Cheng60c07e12006-07-05 22:17:51 +000010658 // Change the floating point control register to use "round towards zero"
10659 // mode when truncating to an integer value.
10660 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000010661 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000010662 addFrameReference(BuildMI(*BB, MI, DL,
10663 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010664
10665 // Load the old value of the high byte of the control word...
10666 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000010667 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000010668 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010669 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010670
10671 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000010672 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010673 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000010674
10675 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000010676 addFrameReference(BuildMI(*BB, MI, DL,
10677 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010678
10679 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000010680 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010681 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000010682
10683 // Get the X86 opcode to use.
10684 unsigned Opc;
10685 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010686 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000010687 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
10688 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
10689 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
10690 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
10691 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
10692 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000010693 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
10694 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
10695 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000010696 }
10697
10698 X86AddressMode AM;
10699 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000010700 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010701 AM.BaseType = X86AddressMode::RegBase;
10702 AM.Base.Reg = Op.getReg();
10703 } else {
10704 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000010705 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000010706 }
10707 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000010708 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010709 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010710 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000010711 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010712 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010713 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000010714 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010715 AM.GV = Op.getGlobal();
10716 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000010717 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010718 }
Dan Gohman14152b42010-07-06 20:24:04 +000010719 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010720 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000010721
10722 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000010723 addFrameReference(BuildMI(*BB, MI, DL,
10724 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010725
Dan Gohman14152b42010-07-06 20:24:04 +000010726 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000010727 return BB;
10728 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010729 // String/text processing lowering.
10730 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010731 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010732 return EmitPCMP(MI, BB, 3, false /* in-mem */);
10733 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010734 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010735 return EmitPCMP(MI, BB, 3, true /* in-mem */);
10736 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010737 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010738 return EmitPCMP(MI, BB, 5, false /* in mem */);
10739 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010740 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010741 return EmitPCMP(MI, BB, 5, true /* in mem */);
10742
Eric Christopher228232b2010-11-30 07:20:12 +000010743 // Thread synchronization.
10744 case X86::MONITOR:
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010745 return EmitMonitor(MI, BB);
Eric Christopher228232b2010-11-30 07:20:12 +000010746 case X86::MWAIT:
10747 return EmitMwait(MI, BB);
10748
Eric Christopherb120ab42009-08-18 22:50:32 +000010749 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000010750 case X86::ATOMAND32:
10751 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010752 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010753 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010754 X86::NOT32r, X86::EAX,
10755 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010756 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000010757 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
10758 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010759 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010760 X86::NOT32r, X86::EAX,
10761 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010762 case X86::ATOMXOR32:
10763 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010764 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010765 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010766 X86::NOT32r, X86::EAX,
10767 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010768 case X86::ATOMNAND32:
10769 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010770 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010771 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010772 X86::NOT32r, X86::EAX,
10773 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000010774 case X86::ATOMMIN32:
10775 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
10776 case X86::ATOMMAX32:
10777 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
10778 case X86::ATOMUMIN32:
10779 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
10780 case X86::ATOMUMAX32:
10781 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000010782
10783 case X86::ATOMAND16:
10784 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10785 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010786 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010787 X86::NOT16r, X86::AX,
10788 X86::GR16RegisterClass);
10789 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000010790 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010791 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010792 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010793 X86::NOT16r, X86::AX,
10794 X86::GR16RegisterClass);
10795 case X86::ATOMXOR16:
10796 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
10797 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010798 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010799 X86::NOT16r, X86::AX,
10800 X86::GR16RegisterClass);
10801 case X86::ATOMNAND16:
10802 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10803 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010804 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010805 X86::NOT16r, X86::AX,
10806 X86::GR16RegisterClass, true);
10807 case X86::ATOMMIN16:
10808 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
10809 case X86::ATOMMAX16:
10810 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
10811 case X86::ATOMUMIN16:
10812 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
10813 case X86::ATOMUMAX16:
10814 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
10815
10816 case X86::ATOMAND8:
10817 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10818 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010819 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010820 X86::NOT8r, X86::AL,
10821 X86::GR8RegisterClass);
10822 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000010823 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010824 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010825 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010826 X86::NOT8r, X86::AL,
10827 X86::GR8RegisterClass);
10828 case X86::ATOMXOR8:
10829 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
10830 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010831 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010832 X86::NOT8r, X86::AL,
10833 X86::GR8RegisterClass);
10834 case X86::ATOMNAND8:
10835 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10836 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010837 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010838 X86::NOT8r, X86::AL,
10839 X86::GR8RegisterClass, true);
10840 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010841 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000010842 case X86::ATOMAND64:
10843 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010844 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010845 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010846 X86::NOT64r, X86::RAX,
10847 X86::GR64RegisterClass);
10848 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000010849 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
10850 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010851 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010852 X86::NOT64r, X86::RAX,
10853 X86::GR64RegisterClass);
10854 case X86::ATOMXOR64:
10855 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010856 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010857 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010858 X86::NOT64r, X86::RAX,
10859 X86::GR64RegisterClass);
10860 case X86::ATOMNAND64:
10861 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
10862 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010863 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010864 X86::NOT64r, X86::RAX,
10865 X86::GR64RegisterClass, true);
10866 case X86::ATOMMIN64:
10867 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
10868 case X86::ATOMMAX64:
10869 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
10870 case X86::ATOMUMIN64:
10871 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
10872 case X86::ATOMUMAX64:
10873 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010874
10875 // This group does 64-bit operations on a 32-bit host.
10876 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010877 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010878 X86::AND32rr, X86::AND32rr,
10879 X86::AND32ri, X86::AND32ri,
10880 false);
10881 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010882 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010883 X86::OR32rr, X86::OR32rr,
10884 X86::OR32ri, X86::OR32ri,
10885 false);
10886 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010887 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010888 X86::XOR32rr, X86::XOR32rr,
10889 X86::XOR32ri, X86::XOR32ri,
10890 false);
10891 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010892 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010893 X86::AND32rr, X86::AND32rr,
10894 X86::AND32ri, X86::AND32ri,
10895 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010896 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010897 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010898 X86::ADD32rr, X86::ADC32rr,
10899 X86::ADD32ri, X86::ADC32ri,
10900 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010901 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010902 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010903 X86::SUB32rr, X86::SBB32rr,
10904 X86::SUB32ri, X86::SBB32ri,
10905 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000010906 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010907 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000010908 X86::MOV32rr, X86::MOV32rr,
10909 X86::MOV32ri, X86::MOV32ri,
10910 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010911 case X86::VASTART_SAVE_XMM_REGS:
10912 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000010913
10914 case X86::VAARG_64:
10915 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010916 }
10917}
10918
10919//===----------------------------------------------------------------------===//
10920// X86 Optimization Hooks
10921//===----------------------------------------------------------------------===//
10922
Dan Gohman475871a2008-07-27 21:46:04 +000010923void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000010924 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010925 APInt &KnownZero,
10926 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000010927 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000010928 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010929 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000010930 assert((Opc >= ISD::BUILTIN_OP_END ||
10931 Opc == ISD::INTRINSIC_WO_CHAIN ||
10932 Opc == ISD::INTRINSIC_W_CHAIN ||
10933 Opc == ISD::INTRINSIC_VOID) &&
10934 "Should use MaskedValueIsZero if you don't know whether Op"
10935 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010936
Dan Gohmanf4f92f52008-02-13 23:07:24 +000010937 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010938 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000010939 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010940 case X86ISD::ADD:
10941 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000010942 case X86ISD::ADC:
10943 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010944 case X86ISD::SMUL:
10945 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000010946 case X86ISD::INC:
10947 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000010948 case X86ISD::OR:
10949 case X86ISD::XOR:
10950 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010951 // These nodes' second result is a boolean.
10952 if (Op.getResNo() == 0)
10953 break;
10954 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010955 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010956 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
10957 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000010958 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010959 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010960}
Chris Lattner259e97c2006-01-31 19:43:35 +000010961
Owen Andersonbc146b02010-09-21 20:42:50 +000010962unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
10963 unsigned Depth) const {
10964 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
10965 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
10966 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010967
Owen Andersonbc146b02010-09-21 20:42:50 +000010968 // Fallback case.
10969 return 1;
10970}
10971
Evan Cheng206ee9d2006-07-07 08:33:52 +000010972/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000010973/// node is a GlobalAddress + offset.
10974bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000010975 const GlobalValue* &GA,
10976 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000010977 if (N->getOpcode() == X86ISD::Wrapper) {
10978 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000010979 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000010980 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000010981 return true;
10982 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000010983 }
Evan Chengad4196b2008-05-12 19:56:52 +000010984 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000010985}
10986
Evan Cheng206ee9d2006-07-07 08:33:52 +000010987/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
10988/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
10989/// if the load addresses are consecutive, non-overlapping, and in the right
Nate Begemanfdea31a2010-03-24 20:49:50 +000010990/// order.
Dan Gohman475871a2008-07-27 21:46:04 +000010991static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Mon P Wanga0fd0d52010-12-19 23:55:53 +000010992 TargetLowering::DAGCombinerInfo &DCI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010993 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000010994 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000010995
Eli Friedman7a5e5552009-06-07 06:52:44 +000010996 if (VT.getSizeInBits() != 128)
10997 return SDValue();
10998
Mon P Wanga0fd0d52010-12-19 23:55:53 +000010999 // Don't create instructions with illegal types after legalize types has run.
11000 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11001 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
11002 return SDValue();
11003
Nate Begemanfdea31a2010-03-24 20:49:50 +000011004 SmallVector<SDValue, 16> Elts;
11005 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011006 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000011007
Nate Begemanfdea31a2010-03-24 20:49:50 +000011008 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000011009}
Evan Chengd880b972008-05-09 21:53:03 +000011010
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000011011/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
11012/// generation and convert it from being a bunch of shuffles and extracts
11013/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011014static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
11015 const TargetLowering &TLI) {
11016 SDValue InputVector = N->getOperand(0);
11017
11018 // Only operate on vectors of 4 elements, where the alternative shuffling
11019 // gets to be more expensive.
11020 if (InputVector.getValueType() != MVT::v4i32)
11021 return SDValue();
11022
11023 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
11024 // single use which is a sign-extend or zero-extend, and all elements are
11025 // used.
11026 SmallVector<SDNode *, 4> Uses;
11027 unsigned ExtractedElements = 0;
11028 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
11029 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
11030 if (UI.getUse().getResNo() != InputVector.getResNo())
11031 return SDValue();
11032
11033 SDNode *Extract = *UI;
11034 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
11035 return SDValue();
11036
11037 if (Extract->getValueType(0) != MVT::i32)
11038 return SDValue();
11039 if (!Extract->hasOneUse())
11040 return SDValue();
11041 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
11042 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
11043 return SDValue();
11044 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
11045 return SDValue();
11046
11047 // Record which element was extracted.
11048 ExtractedElements |=
11049 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
11050
11051 Uses.push_back(Extract);
11052 }
11053
11054 // If not all the elements were used, this may not be worthwhile.
11055 if (ExtractedElements != 15)
11056 return SDValue();
11057
11058 // Ok, we've now decided to do the transformation.
11059 DebugLoc dl = InputVector.getDebugLoc();
11060
11061 // Store the value to a temporary stack slot.
11062 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000011063 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
11064 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011065
11066 // Replace each use (extract) with a load of the appropriate element.
11067 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
11068 UE = Uses.end(); UI != UE; ++UI) {
11069 SDNode *Extract = *UI;
11070
Nadav Rotem86694292011-05-17 08:31:57 +000011071 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011072 SDValue Idx = Extract->getOperand(1);
11073 unsigned EltSize =
11074 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
11075 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
11076 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
11077
Nadav Rotem86694292011-05-17 08:31:57 +000011078 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011079 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011080
11081 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000011082 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000011083 ScalarAddr, MachinePointerInfo(),
11084 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011085
11086 // Replace the exact with the load.
11087 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
11088 }
11089
11090 // The replacement was made in place; don't return anything.
11091 return SDValue();
11092}
11093
Chris Lattner83e6c992006-10-04 06:57:07 +000011094/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011095static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000011096 const X86Subtarget *Subtarget) {
11097 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000011098 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000011099 // Get the LHS/RHS of the select.
11100 SDValue LHS = N->getOperand(1);
11101 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000011102
Dan Gohman670e5392009-09-21 18:03:22 +000011103 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000011104 // instructions match the semantics of the common C idiom x<y?x:y but not
11105 // x<=y?x:y, because of how they handle negative zero (which can be
11106 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000011107 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000011108 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000011109 Cond.getOpcode() == ISD::SETCC) {
11110 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011111
Chris Lattner47b4ce82009-03-11 05:48:52 +000011112 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000011113 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000011114 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
11115 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000011116 switch (CC) {
11117 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000011118 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011119 // Converting this to a min would handle NaNs incorrectly, and swapping
11120 // the operands would cause it to handle comparisons between positive
11121 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011122 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000011123 if (!UnsafeFPMath &&
11124 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11125 break;
11126 std::swap(LHS, RHS);
11127 }
Dan Gohman670e5392009-09-21 18:03:22 +000011128 Opcode = X86ISD::FMIN;
11129 break;
11130 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000011131 // Converting this to a min would handle comparisons between positive
11132 // and negative zero incorrectly.
11133 if (!UnsafeFPMath &&
11134 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
11135 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011136 Opcode = X86ISD::FMIN;
11137 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000011138 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000011139 // Converting this to a min would handle both negative zeros and NaNs
11140 // incorrectly, but we can swap the operands to fix both.
11141 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011142 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011143 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000011144 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011145 Opcode = X86ISD::FMIN;
11146 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011147
Dan Gohman670e5392009-09-21 18:03:22 +000011148 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011149 // Converting this to a max would handle comparisons between positive
11150 // and negative zero incorrectly.
11151 if (!UnsafeFPMath &&
11152 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS))
11153 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011154 Opcode = X86ISD::FMAX;
11155 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000011156 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000011157 // Converting this to a max would handle NaNs incorrectly, and swapping
11158 // the operands would cause it to handle comparisons between positive
11159 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011160 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000011161 if (!UnsafeFPMath &&
11162 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11163 break;
11164 std::swap(LHS, RHS);
11165 }
Dan Gohman670e5392009-09-21 18:03:22 +000011166 Opcode = X86ISD::FMAX;
11167 break;
11168 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011169 // Converting this to a max would handle both negative zeros and NaNs
11170 // incorrectly, but we can swap the operands to fix both.
11171 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011172 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011173 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011174 case ISD::SETGE:
11175 Opcode = X86ISD::FMAX;
11176 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000011177 }
Dan Gohman670e5392009-09-21 18:03:22 +000011178 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000011179 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
11180 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000011181 switch (CC) {
11182 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000011183 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011184 // Converting this to a min would handle comparisons between positive
11185 // and negative zero incorrectly, and swapping the operands would
11186 // cause it to handle NaNs incorrectly.
11187 if (!UnsafeFPMath &&
11188 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000011189 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011190 break;
11191 std::swap(LHS, RHS);
11192 }
Dan Gohman670e5392009-09-21 18:03:22 +000011193 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000011194 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011195 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000011196 // Converting this to a min would handle NaNs incorrectly.
11197 if (!UnsafeFPMath &&
11198 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
11199 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011200 Opcode = X86ISD::FMIN;
11201 break;
11202 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011203 // Converting this to a min would handle both negative zeros and NaNs
11204 // incorrectly, but we can swap the operands to fix both.
11205 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011206 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011207 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011208 case ISD::SETGE:
11209 Opcode = X86ISD::FMIN;
11210 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011211
Dan Gohman670e5392009-09-21 18:03:22 +000011212 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011213 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011214 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011215 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011216 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000011217 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011218 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000011219 // Converting this to a max would handle comparisons between positive
11220 // and negative zero incorrectly, and swapping the operands would
11221 // cause it to handle NaNs incorrectly.
11222 if (!UnsafeFPMath &&
11223 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000011224 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011225 break;
11226 std::swap(LHS, RHS);
11227 }
Dan Gohman670e5392009-09-21 18:03:22 +000011228 Opcode = X86ISD::FMAX;
11229 break;
11230 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000011231 // Converting this to a max would handle both negative zeros and NaNs
11232 // incorrectly, but we can swap the operands to fix both.
11233 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011234 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011235 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000011236 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011237 Opcode = X86ISD::FMAX;
11238 break;
11239 }
Chris Lattner83e6c992006-10-04 06:57:07 +000011240 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011241
Chris Lattner47b4ce82009-03-11 05:48:52 +000011242 if (Opcode)
11243 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000011244 }
Eric Christopherfd179292009-08-27 18:07:15 +000011245
Chris Lattnerd1980a52009-03-12 06:52:53 +000011246 // If this is a select between two integer constants, try to do some
11247 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000011248 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
11249 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000011250 // Don't do this for crazy integer types.
11251 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
11252 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000011253 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011254 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000011255
Chris Lattnercee56e72009-03-13 05:53:31 +000011256 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000011257 // Efficiently invertible.
11258 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
11259 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
11260 isa<ConstantSDNode>(Cond.getOperand(1))))) {
11261 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000011262 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011263 }
Eric Christopherfd179292009-08-27 18:07:15 +000011264
Chris Lattnerd1980a52009-03-12 06:52:53 +000011265 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011266 if (FalseC->getAPIntValue() == 0 &&
11267 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000011268 if (NeedsCondInvert) // Invert the condition if needed.
11269 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11270 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011271
Chris Lattnerd1980a52009-03-12 06:52:53 +000011272 // Zero extend the condition if needed.
11273 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011274
Chris Lattnercee56e72009-03-13 05:53:31 +000011275 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000011276 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011277 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011278 }
Eric Christopherfd179292009-08-27 18:07:15 +000011279
Chris Lattner97a29a52009-03-13 05:22:11 +000011280 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000011281 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000011282 if (NeedsCondInvert) // Invert the condition if needed.
11283 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11284 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011285
Chris Lattner97a29a52009-03-13 05:22:11 +000011286 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000011287 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11288 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000011289 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000011290 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000011291 }
Eric Christopherfd179292009-08-27 18:07:15 +000011292
Chris Lattnercee56e72009-03-13 05:53:31 +000011293 // Optimize cases that will turn into an LEA instruction. This requires
11294 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000011295 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000011296 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011297 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000011298
Chris Lattnercee56e72009-03-13 05:53:31 +000011299 bool isFastMultiplier = false;
11300 if (Diff < 10) {
11301 switch ((unsigned char)Diff) {
11302 default: break;
11303 case 1: // result = add base, cond
11304 case 2: // result = lea base( , cond*2)
11305 case 3: // result = lea base(cond, cond*2)
11306 case 4: // result = lea base( , cond*4)
11307 case 5: // result = lea base(cond, cond*4)
11308 case 8: // result = lea base( , cond*8)
11309 case 9: // result = lea base(cond, cond*8)
11310 isFastMultiplier = true;
11311 break;
11312 }
11313 }
Eric Christopherfd179292009-08-27 18:07:15 +000011314
Chris Lattnercee56e72009-03-13 05:53:31 +000011315 if (isFastMultiplier) {
11316 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
11317 if (NeedsCondInvert) // Invert the condition if needed.
11318 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11319 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011320
Chris Lattnercee56e72009-03-13 05:53:31 +000011321 // Zero extend the condition if needed.
11322 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
11323 Cond);
11324 // Scale the condition by the difference.
11325 if (Diff != 1)
11326 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
11327 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011328
Chris Lattnercee56e72009-03-13 05:53:31 +000011329 // Add the base if non-zero.
11330 if (FalseC->getAPIntValue() != 0)
11331 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11332 SDValue(FalseC, 0));
11333 return Cond;
11334 }
Eric Christopherfd179292009-08-27 18:07:15 +000011335 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000011336 }
11337 }
Eric Christopherfd179292009-08-27 18:07:15 +000011338
Dan Gohman475871a2008-07-27 21:46:04 +000011339 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000011340}
11341
Chris Lattnerd1980a52009-03-12 06:52:53 +000011342/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
11343static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
11344 TargetLowering::DAGCombinerInfo &DCI) {
11345 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000011346
Chris Lattnerd1980a52009-03-12 06:52:53 +000011347 // If the flag operand isn't dead, don't touch this CMOV.
11348 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
11349 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000011350
Evan Chengb5a55d92011-05-24 01:48:22 +000011351 SDValue FalseOp = N->getOperand(0);
11352 SDValue TrueOp = N->getOperand(1);
11353 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
11354 SDValue Cond = N->getOperand(3);
11355 if (CC == X86::COND_E || CC == X86::COND_NE) {
11356 switch (Cond.getOpcode()) {
11357 default: break;
11358 case X86ISD::BSR:
11359 case X86ISD::BSF:
11360 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
11361 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
11362 return (CC == X86::COND_E) ? FalseOp : TrueOp;
11363 }
11364 }
11365
Chris Lattnerd1980a52009-03-12 06:52:53 +000011366 // If this is a select between two integer constants, try to do some
11367 // optimizations. Note that the operands are ordered the opposite of SELECT
11368 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000011369 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
11370 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000011371 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
11372 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000011373 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
11374 CC = X86::GetOppositeBranchCondition(CC);
11375 std::swap(TrueC, FalseC);
11376 }
Eric Christopherfd179292009-08-27 18:07:15 +000011377
Chris Lattnerd1980a52009-03-12 06:52:53 +000011378 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011379 // This is efficient for any integer data type (including i8/i16) and
11380 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011381 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011382 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11383 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011384
Chris Lattnerd1980a52009-03-12 06:52:53 +000011385 // Zero extend the condition if needed.
11386 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011387
Chris Lattnerd1980a52009-03-12 06:52:53 +000011388 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
11389 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011390 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011391 if (N->getNumValues() == 2) // Dead flag value?
11392 return DCI.CombineTo(N, Cond, SDValue());
11393 return Cond;
11394 }
Eric Christopherfd179292009-08-27 18:07:15 +000011395
Chris Lattnercee56e72009-03-13 05:53:31 +000011396 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
11397 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000011398 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011399 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11400 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011401
Chris Lattner97a29a52009-03-13 05:22:11 +000011402 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000011403 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11404 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000011405 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11406 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000011407
Chris Lattner97a29a52009-03-13 05:22:11 +000011408 if (N->getNumValues() == 2) // Dead flag value?
11409 return DCI.CombineTo(N, Cond, SDValue());
11410 return Cond;
11411 }
Eric Christopherfd179292009-08-27 18:07:15 +000011412
Chris Lattnercee56e72009-03-13 05:53:31 +000011413 // Optimize cases that will turn into an LEA instruction. This requires
11414 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000011415 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000011416 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011417 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000011418
Chris Lattnercee56e72009-03-13 05:53:31 +000011419 bool isFastMultiplier = false;
11420 if (Diff < 10) {
11421 switch ((unsigned char)Diff) {
11422 default: break;
11423 case 1: // result = add base, cond
11424 case 2: // result = lea base( , cond*2)
11425 case 3: // result = lea base(cond, cond*2)
11426 case 4: // result = lea base( , cond*4)
11427 case 5: // result = lea base(cond, cond*4)
11428 case 8: // result = lea base( , cond*8)
11429 case 9: // result = lea base(cond, cond*8)
11430 isFastMultiplier = true;
11431 break;
11432 }
11433 }
Eric Christopherfd179292009-08-27 18:07:15 +000011434
Chris Lattnercee56e72009-03-13 05:53:31 +000011435 if (isFastMultiplier) {
11436 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011437 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11438 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000011439 // Zero extend the condition if needed.
11440 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
11441 Cond);
11442 // Scale the condition by the difference.
11443 if (Diff != 1)
11444 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
11445 DAG.getConstant(Diff, Cond.getValueType()));
11446
11447 // Add the base if non-zero.
11448 if (FalseC->getAPIntValue() != 0)
11449 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11450 SDValue(FalseC, 0));
11451 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 Lattnerd1980a52009-03-12 06:52:53 +000011456 }
11457 }
11458 return SDValue();
11459}
11460
11461
Evan Cheng0b0cd912009-03-28 05:57:29 +000011462/// PerformMulCombine - Optimize a single multiply with constant into two
11463/// in order to implement it with two cheaper instructions, e.g.
11464/// LEA + SHL, LEA + LEA.
11465static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
11466 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000011467 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
11468 return SDValue();
11469
Owen Andersone50ed302009-08-10 22:56:29 +000011470 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011471 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000011472 return SDValue();
11473
11474 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
11475 if (!C)
11476 return SDValue();
11477 uint64_t MulAmt = C->getZExtValue();
11478 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
11479 return SDValue();
11480
11481 uint64_t MulAmt1 = 0;
11482 uint64_t MulAmt2 = 0;
11483 if ((MulAmt % 9) == 0) {
11484 MulAmt1 = 9;
11485 MulAmt2 = MulAmt / 9;
11486 } else if ((MulAmt % 5) == 0) {
11487 MulAmt1 = 5;
11488 MulAmt2 = MulAmt / 5;
11489 } else if ((MulAmt % 3) == 0) {
11490 MulAmt1 = 3;
11491 MulAmt2 = MulAmt / 3;
11492 }
11493 if (MulAmt2 &&
11494 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
11495 DebugLoc DL = N->getDebugLoc();
11496
11497 if (isPowerOf2_64(MulAmt2) &&
11498 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
11499 // If second multiplifer is pow2, issue it first. We want the multiply by
11500 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
11501 // is an add.
11502 std::swap(MulAmt1, MulAmt2);
11503
11504 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000011505 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000011506 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000011507 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000011508 else
Evan Cheng73f24c92009-03-30 21:36:47 +000011509 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000011510 DAG.getConstant(MulAmt1, VT));
11511
Eric Christopherfd179292009-08-27 18:07:15 +000011512 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000011513 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000011514 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000011515 else
Evan Cheng73f24c92009-03-30 21:36:47 +000011516 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000011517 DAG.getConstant(MulAmt2, VT));
11518
11519 // Do not add new nodes to DAG combiner worklist.
11520 DCI.CombineTo(N, NewMul, false);
11521 }
11522 return SDValue();
11523}
11524
Evan Chengad9c0a32009-12-15 00:53:42 +000011525static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
11526 SDValue N0 = N->getOperand(0);
11527 SDValue N1 = N->getOperand(1);
11528 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
11529 EVT VT = N0.getValueType();
11530
11531 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
11532 // since the result of setcc_c is all zero's or all ones.
11533 if (N1C && N0.getOpcode() == ISD::AND &&
11534 N0.getOperand(1).getOpcode() == ISD::Constant) {
11535 SDValue N00 = N0.getOperand(0);
11536 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
11537 ((N00.getOpcode() == ISD::ANY_EXTEND ||
11538 N00.getOpcode() == ISD::ZERO_EXTEND) &&
11539 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
11540 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
11541 APInt ShAmt = N1C->getAPIntValue();
11542 Mask = Mask.shl(ShAmt);
11543 if (Mask != 0)
11544 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
11545 N00, DAG.getConstant(Mask, VT));
11546 }
11547 }
11548
11549 return SDValue();
11550}
Evan Cheng0b0cd912009-03-28 05:57:29 +000011551
Nate Begeman740ab032009-01-26 00:52:55 +000011552/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
11553/// when possible.
11554static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
11555 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000011556 EVT VT = N->getValueType(0);
11557 if (!VT.isVector() && VT.isInteger() &&
11558 N->getOpcode() == ISD::SHL)
11559 return PerformSHLCombine(N, DAG);
11560
Nate Begeman740ab032009-01-26 00:52:55 +000011561 // On X86 with SSE2 support, we can transform this to a vector shift if
11562 // all elements are shifted by the same amount. We can't do this in legalize
11563 // because the a constant vector is typically transformed to a constant pool
11564 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011565 if (!Subtarget->hasSSE2())
11566 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000011567
Owen Anderson825b72b2009-08-11 20:47:22 +000011568 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011569 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000011570
Mon P Wang3becd092009-01-28 08:12:05 +000011571 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000011572 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000011573 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000011574 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000011575 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
11576 unsigned NumElts = VT.getVectorNumElements();
11577 unsigned i = 0;
11578 for (; i != NumElts; ++i) {
11579 SDValue Arg = ShAmtOp.getOperand(i);
11580 if (Arg.getOpcode() == ISD::UNDEF) continue;
11581 BaseShAmt = Arg;
11582 break;
11583 }
11584 for (; i != NumElts; ++i) {
11585 SDValue Arg = ShAmtOp.getOperand(i);
11586 if (Arg.getOpcode() == ISD::UNDEF) continue;
11587 if (Arg != BaseShAmt) {
11588 return SDValue();
11589 }
11590 }
11591 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000011592 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000011593 SDValue InVec = ShAmtOp.getOperand(0);
11594 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
11595 unsigned NumElts = InVec.getValueType().getVectorNumElements();
11596 unsigned i = 0;
11597 for (; i != NumElts; ++i) {
11598 SDValue Arg = InVec.getOperand(i);
11599 if (Arg.getOpcode() == ISD::UNDEF) continue;
11600 BaseShAmt = Arg;
11601 break;
11602 }
11603 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
11604 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000011605 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000011606 if (C->getZExtValue() == SplatIdx)
11607 BaseShAmt = InVec.getOperand(1);
11608 }
11609 }
11610 if (BaseShAmt.getNode() == 0)
11611 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
11612 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000011613 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011614 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000011615
Mon P Wangefa42202009-09-03 19:56:25 +000011616 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000011617 if (EltVT.bitsGT(MVT::i32))
11618 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
11619 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000011620 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000011621
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011622 // The shift amount is identical so we can do a vector shift.
11623 SDValue ValOp = N->getOperand(0);
11624 switch (N->getOpcode()) {
11625 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000011626 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011627 break;
11628 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000011629 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011630 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011631 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011632 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011633 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011634 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011635 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011636 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011637 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011638 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011639 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011640 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011641 break;
11642 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000011643 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011644 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011645 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011646 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011647 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011648 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011649 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011650 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011651 break;
11652 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000011653 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011654 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011655 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011656 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011657 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011658 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011659 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011660 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011661 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011662 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011663 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011664 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011665 break;
Nate Begeman740ab032009-01-26 00:52:55 +000011666 }
11667 return SDValue();
11668}
11669
Nate Begemanb65c1752010-12-17 22:55:37 +000011670
11671static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
11672 TargetLowering::DAGCombinerInfo &DCI,
11673 const X86Subtarget *Subtarget) {
11674 if (DCI.isBeforeLegalizeOps())
11675 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011676
Nate Begemanb65c1752010-12-17 22:55:37 +000011677 // Want to form PANDN nodes, in the hopes of then easily combining them with
11678 // OR and AND nodes to form PBLEND/PSIGN.
11679 EVT VT = N->getValueType(0);
11680 if (VT != MVT::v2i64)
11681 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011682
Nate Begemanb65c1752010-12-17 22:55:37 +000011683 SDValue N0 = N->getOperand(0);
11684 SDValue N1 = N->getOperand(1);
11685 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011686
Nate Begemanb65c1752010-12-17 22:55:37 +000011687 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011688 if (N0.getOpcode() == ISD::XOR &&
Nate Begemanb65c1752010-12-17 22:55:37 +000011689 ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
11690 return DAG.getNode(X86ISD::PANDN, DL, VT, N0.getOperand(0), N1);
11691
11692 // Check RHS for vnot
11693 if (N1.getOpcode() == ISD::XOR &&
11694 ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
11695 return DAG.getNode(X86ISD::PANDN, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011696
Nate Begemanb65c1752010-12-17 22:55:37 +000011697 return SDValue();
11698}
11699
Evan Cheng760d1942010-01-04 21:22:48 +000011700static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000011701 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000011702 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000011703 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000011704 return SDValue();
11705
Evan Cheng760d1942010-01-04 21:22:48 +000011706 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000011707 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64 && VT != MVT::v2i64)
Evan Cheng760d1942010-01-04 21:22:48 +000011708 return SDValue();
11709
Evan Cheng760d1942010-01-04 21:22:48 +000011710 SDValue N0 = N->getOperand(0);
11711 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011712
Nate Begemanb65c1752010-12-17 22:55:37 +000011713 // look for psign/blend
11714 if (Subtarget->hasSSSE3()) {
11715 if (VT == MVT::v2i64) {
11716 // Canonicalize pandn to RHS
11717 if (N0.getOpcode() == X86ISD::PANDN)
11718 std::swap(N0, N1);
11719 // or (and (m, x), (pandn m, y))
11720 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::PANDN) {
11721 SDValue Mask = N1.getOperand(0);
11722 SDValue X = N1.getOperand(1);
11723 SDValue Y;
11724 if (N0.getOperand(0) == Mask)
11725 Y = N0.getOperand(1);
11726 if (N0.getOperand(1) == Mask)
11727 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011728
Nate Begemanb65c1752010-12-17 22:55:37 +000011729 // Check to see if the mask appeared in both the AND and PANDN and
11730 if (!Y.getNode())
11731 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011732
Nate Begemanb65c1752010-12-17 22:55:37 +000011733 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
11734 if (Mask.getOpcode() != ISD::BITCAST ||
11735 X.getOpcode() != ISD::BITCAST ||
11736 Y.getOpcode() != ISD::BITCAST)
11737 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011738
Nate Begemanb65c1752010-12-17 22:55:37 +000011739 // Look through mask bitcast.
11740 Mask = Mask.getOperand(0);
11741 EVT MaskVT = Mask.getValueType();
11742
11743 // Validate that the Mask operand is a vector sra node. The sra node
11744 // will be an intrinsic.
11745 if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
11746 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011747
Nate Begemanb65c1752010-12-17 22:55:37 +000011748 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
11749 // there is no psrai.b
11750 switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
11751 case Intrinsic::x86_sse2_psrai_w:
11752 case Intrinsic::x86_sse2_psrai_d:
11753 break;
11754 default: return SDValue();
11755 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011756
Nate Begemanb65c1752010-12-17 22:55:37 +000011757 // Check that the SRA is all signbits.
11758 SDValue SraC = Mask.getOperand(2);
11759 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
11760 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
11761 if ((SraAmt + 1) != EltBits)
11762 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011763
Nate Begemanb65c1752010-12-17 22:55:37 +000011764 DebugLoc DL = N->getDebugLoc();
11765
11766 // Now we know we at least have a plendvb with the mask val. See if
11767 // we can form a psignb/w/d.
11768 // psign = x.type == y.type == mask.type && y = sub(0, x);
11769 X = X.getOperand(0);
11770 Y = Y.getOperand(0);
11771 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
11772 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
11773 X.getValueType() == MaskVT && X.getValueType() == Y.getValueType()){
11774 unsigned Opc = 0;
11775 switch (EltBits) {
11776 case 8: Opc = X86ISD::PSIGNB; break;
11777 case 16: Opc = X86ISD::PSIGNW; break;
11778 case 32: Opc = X86ISD::PSIGND; break;
11779 default: break;
11780 }
11781 if (Opc) {
11782 SDValue Sign = DAG.getNode(Opc, DL, MaskVT, X, Mask.getOperand(1));
11783 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Sign);
11784 }
11785 }
11786 // PBLENDVB only available on SSE 4.1
11787 if (!Subtarget->hasSSE41())
11788 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011789
Nate Begemanb65c1752010-12-17 22:55:37 +000011790 X = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, X);
11791 Y = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Y);
11792 Mask = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Mask);
Nate Begeman672fb622010-12-20 22:04:24 +000011793 Mask = DAG.getNode(X86ISD::PBLENDVB, DL, MVT::v16i8, X, Y, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000011794 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Mask);
11795 }
11796 }
11797 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011798
Nate Begemanb65c1752010-12-17 22:55:37 +000011799 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000011800 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
11801 std::swap(N0, N1);
11802 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
11803 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000011804 if (!N0.hasOneUse() || !N1.hasOneUse())
11805 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000011806
11807 SDValue ShAmt0 = N0.getOperand(1);
11808 if (ShAmt0.getValueType() != MVT::i8)
11809 return SDValue();
11810 SDValue ShAmt1 = N1.getOperand(1);
11811 if (ShAmt1.getValueType() != MVT::i8)
11812 return SDValue();
11813 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
11814 ShAmt0 = ShAmt0.getOperand(0);
11815 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
11816 ShAmt1 = ShAmt1.getOperand(0);
11817
11818 DebugLoc DL = N->getDebugLoc();
11819 unsigned Opc = X86ISD::SHLD;
11820 SDValue Op0 = N0.getOperand(0);
11821 SDValue Op1 = N1.getOperand(0);
11822 if (ShAmt0.getOpcode() == ISD::SUB) {
11823 Opc = X86ISD::SHRD;
11824 std::swap(Op0, Op1);
11825 std::swap(ShAmt0, ShAmt1);
11826 }
11827
Evan Cheng8b1190a2010-04-28 01:18:01 +000011828 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000011829 if (ShAmt1.getOpcode() == ISD::SUB) {
11830 SDValue Sum = ShAmt1.getOperand(0);
11831 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000011832 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
11833 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
11834 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
11835 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000011836 return DAG.getNode(Opc, DL, VT,
11837 Op0, Op1,
11838 DAG.getNode(ISD::TRUNCATE, DL,
11839 MVT::i8, ShAmt0));
11840 }
11841 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
11842 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
11843 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000011844 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000011845 return DAG.getNode(Opc, DL, VT,
11846 N0.getOperand(0), N1.getOperand(0),
11847 DAG.getNode(ISD::TRUNCATE, DL,
11848 MVT::i8, ShAmt0));
11849 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011850
Evan Cheng760d1942010-01-04 21:22:48 +000011851 return SDValue();
11852}
11853
Chris Lattner149a4e52008-02-22 02:09:43 +000011854/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011855static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000011856 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +000011857 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
11858 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000011859 // A preferable solution to the general problem is to figure out the right
11860 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000011861
11862 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +000011863 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +000011864 EVT VT = St->getValue().getValueType();
Evan Cheng536e6672009-03-12 05:59:15 +000011865 if (VT.getSizeInBits() != 64)
11866 return SDValue();
11867
Devang Patel578efa92009-06-05 21:57:13 +000011868 const Function *F = DAG.getMachineFunction().getFunction();
11869 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000011870 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000011871 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000011872 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000011873 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000011874 isa<LoadSDNode>(St->getValue()) &&
11875 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
11876 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011877 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011878 LoadSDNode *Ld = 0;
11879 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000011880 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000011881 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011882 // Must be a store of a load. We currently handle two cases: the load
11883 // is a direct child, and it's under an intervening TokenFactor. It is
11884 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000011885 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000011886 Ld = cast<LoadSDNode>(St->getChain());
11887 else if (St->getValue().hasOneUse() &&
11888 ChainVal->getOpcode() == ISD::TokenFactor) {
11889 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011890 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000011891 TokenFactorIndex = i;
11892 Ld = cast<LoadSDNode>(St->getValue());
11893 } else
11894 Ops.push_back(ChainVal->getOperand(i));
11895 }
11896 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000011897
Evan Cheng536e6672009-03-12 05:59:15 +000011898 if (!Ld || !ISD::isNormalLoad(Ld))
11899 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011900
Evan Cheng536e6672009-03-12 05:59:15 +000011901 // If this is not the MMX case, i.e. we are just turning i64 load/store
11902 // into f64 load/store, avoid the transformation if there are multiple
11903 // uses of the loaded value.
11904 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
11905 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011906
Evan Cheng536e6672009-03-12 05:59:15 +000011907 DebugLoc LdDL = Ld->getDebugLoc();
11908 DebugLoc StDL = N->getDebugLoc();
11909 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
11910 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
11911 // pair instead.
11912 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011913 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000011914 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
11915 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011916 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011917 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000011918 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000011919 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000011920 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000011921 Ops.size());
11922 }
Evan Cheng536e6672009-03-12 05:59:15 +000011923 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011924 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011925 St->isVolatile(), St->isNonTemporal(),
11926 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000011927 }
Evan Cheng536e6672009-03-12 05:59:15 +000011928
11929 // Otherwise, lower to two pairs of 32-bit loads / stores.
11930 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011931 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
11932 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011933
Owen Anderson825b72b2009-08-11 20:47:22 +000011934 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011935 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011936 Ld->isVolatile(), Ld->isNonTemporal(),
11937 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000011938 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011939 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000011940 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011941 MinAlign(Ld->getAlignment(), 4));
11942
11943 SDValue NewChain = LoLd.getValue(1);
11944 if (TokenFactorIndex != -1) {
11945 Ops.push_back(LoLd);
11946 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000011947 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000011948 Ops.size());
11949 }
11950
11951 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011952 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
11953 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011954
11955 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011956 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011957 St->isVolatile(), St->isNonTemporal(),
11958 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011959 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011960 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000011961 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011962 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011963 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000011964 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000011965 }
Dan Gohman475871a2008-07-27 21:46:04 +000011966 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000011967}
11968
Chris Lattner6cf73262008-01-25 06:14:17 +000011969/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
11970/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011971static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000011972 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
11973 // F[X]OR(0.0, x) -> x
11974 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000011975 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11976 if (C->getValueAPF().isPosZero())
11977 return N->getOperand(1);
11978 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11979 if (C->getValueAPF().isPosZero())
11980 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000011981 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011982}
11983
11984/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011985static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000011986 // FAND(0.0, x) -> 0.0
11987 // FAND(x, 0.0) -> 0.0
11988 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11989 if (C->getValueAPF().isPosZero())
11990 return N->getOperand(0);
11991 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11992 if (C->getValueAPF().isPosZero())
11993 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000011994 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011995}
11996
Dan Gohmane5af2d32009-01-29 01:59:02 +000011997static SDValue PerformBTCombine(SDNode *N,
11998 SelectionDAG &DAG,
11999 TargetLowering::DAGCombinerInfo &DCI) {
12000 // BT ignores high bits in the bit index operand.
12001 SDValue Op1 = N->getOperand(1);
12002 if (Op1.hasOneUse()) {
12003 unsigned BitWidth = Op1.getValueSizeInBits();
12004 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
12005 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012006 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
12007 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000012008 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000012009 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
12010 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
12011 DCI.CommitTargetLoweringOpt(TLO);
12012 }
12013 return SDValue();
12014}
Chris Lattner83e6c992006-10-04 06:57:07 +000012015
Eli Friedman7a5e5552009-06-07 06:52:44 +000012016static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
12017 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012018 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000012019 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000012020 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000012021 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000012022 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000012023 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012024 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000012025 }
12026 return SDValue();
12027}
12028
Evan Cheng2e489c42009-12-16 00:53:11 +000012029static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
12030 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
12031 // (and (i32 x86isd::setcc_carry), 1)
12032 // This eliminates the zext. This transformation is necessary because
12033 // ISD::SETCC is always legalized to i8.
12034 DebugLoc dl = N->getDebugLoc();
12035 SDValue N0 = N->getOperand(0);
12036 EVT VT = N->getValueType(0);
12037 if (N0.getOpcode() == ISD::AND &&
12038 N0.hasOneUse() &&
12039 N0.getOperand(0).hasOneUse()) {
12040 SDValue N00 = N0.getOperand(0);
12041 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
12042 return SDValue();
12043 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
12044 if (!C || C->getZExtValue() != 1)
12045 return SDValue();
12046 return DAG.getNode(ISD::AND, dl, VT,
12047 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
12048 N00.getOperand(0), N00.getOperand(1)),
12049 DAG.getConstant(1, VT));
12050 }
12051
12052 return SDValue();
12053}
12054
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012055// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
12056static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
12057 unsigned X86CC = N->getConstantOperandVal(0);
12058 SDValue EFLAG = N->getOperand(1);
12059 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012060
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012061 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
12062 // a zext and produces an all-ones bit which is more useful than 0/1 in some
12063 // cases.
12064 if (X86CC == X86::COND_B)
12065 return DAG.getNode(ISD::AND, DL, MVT::i8,
12066 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
12067 DAG.getConstant(X86CC, MVT::i8), EFLAG),
12068 DAG.getConstant(1, MVT::i8));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012069
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012070 return SDValue();
12071}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012072
Chris Lattner23a01992010-12-20 01:37:09 +000012073// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
12074static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
12075 X86TargetLowering::DAGCombinerInfo &DCI) {
12076 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
12077 // the result is either zero or one (depending on the input carry bit).
12078 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
12079 if (X86::isZeroNode(N->getOperand(0)) &&
12080 X86::isZeroNode(N->getOperand(1)) &&
12081 // We don't have a good way to replace an EFLAGS use, so only do this when
12082 // dead right now.
12083 SDValue(N, 1).use_empty()) {
12084 DebugLoc DL = N->getDebugLoc();
12085 EVT VT = N->getValueType(0);
12086 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
12087 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
12088 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
12089 DAG.getConstant(X86::COND_B,MVT::i8),
12090 N->getOperand(2)),
12091 DAG.getConstant(1, VT));
12092 return DCI.CombineTo(N, Res1, CarryOut);
12093 }
12094
12095 return SDValue();
12096}
12097
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012098// fold (add Y, (sete X, 0)) -> adc 0, Y
12099// (add Y, (setne X, 0)) -> sbb -1, Y
12100// (sub (sete X, 0), Y) -> sbb 0, Y
12101// (sub (setne X, 0), Y) -> adc -1, Y
12102static SDValue OptimizeConditonalInDecrement(SDNode *N, SelectionDAG &DAG) {
12103 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012104
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012105 // Look through ZExts.
12106 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
12107 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
12108 return SDValue();
12109
12110 SDValue SetCC = Ext.getOperand(0);
12111 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
12112 return SDValue();
12113
12114 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
12115 if (CC != X86::COND_E && CC != X86::COND_NE)
12116 return SDValue();
12117
12118 SDValue Cmp = SetCC.getOperand(1);
12119 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000012120 !X86::isZeroNode(Cmp.getOperand(1)) ||
12121 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012122 return SDValue();
12123
12124 SDValue CmpOp0 = Cmp.getOperand(0);
12125 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
12126 DAG.getConstant(1, CmpOp0.getValueType()));
12127
12128 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
12129 if (CC == X86::COND_NE)
12130 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
12131 DL, OtherVal.getValueType(), OtherVal,
12132 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
12133 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
12134 DL, OtherVal.getValueType(), OtherVal,
12135 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
12136}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012137
Dan Gohman475871a2008-07-27 21:46:04 +000012138SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000012139 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000012140 SelectionDAG &DAG = DCI.DAG;
12141 switch (N->getOpcode()) {
12142 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012143 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012144 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000012145 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000012146 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012147 case ISD::ADD:
12148 case ISD::SUB: return OptimizeConditonalInDecrement(N, DAG);
Chris Lattner23a01992010-12-20 01:37:09 +000012149 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000012150 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000012151 case ISD::SHL:
12152 case ISD::SRA:
12153 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000012154 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000012155 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000012156 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000012157 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000012158 case X86ISD::FOR: return PerformFORCombine(N, DAG);
12159 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000012160 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000012161 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000012162 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012163 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012164 case X86ISD::SHUFPS: // Handle all target specific shuffles
12165 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000012166 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012167 case X86ISD::PUNPCKHBW:
12168 case X86ISD::PUNPCKHWD:
12169 case X86ISD::PUNPCKHDQ:
12170 case X86ISD::PUNPCKHQDQ:
12171 case X86ISD::UNPCKHPS:
12172 case X86ISD::UNPCKHPD:
12173 case X86ISD::PUNPCKLBW:
12174 case X86ISD::PUNPCKLWD:
12175 case X86ISD::PUNPCKLDQ:
12176 case X86ISD::PUNPCKLQDQ:
12177 case X86ISD::UNPCKLPS:
12178 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +000012179 case X86ISD::VUNPCKLPS:
12180 case X86ISD::VUNPCKLPD:
12181 case X86ISD::VUNPCKLPSY:
12182 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012183 case X86ISD::MOVHLPS:
12184 case X86ISD::MOVLHPS:
12185 case X86ISD::PSHUFD:
12186 case X86ISD::PSHUFHW:
12187 case X86ISD::PSHUFLW:
12188 case X86ISD::MOVSS:
12189 case X86ISD::MOVSD:
Mon P Wanga0fd0d52010-12-19 23:55:53 +000012190 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI);
Evan Cheng206ee9d2006-07-07 08:33:52 +000012191 }
12192
Dan Gohman475871a2008-07-27 21:46:04 +000012193 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000012194}
12195
Evan Chenge5b51ac2010-04-17 06:13:15 +000012196/// isTypeDesirableForOp - Return true if the target has native support for
12197/// the specified value type and it is 'desirable' to use the type for the
12198/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
12199/// instruction encodings are longer and some i16 instructions are slow.
12200bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
12201 if (!isTypeLegal(VT))
12202 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012203 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000012204 return true;
12205
12206 switch (Opc) {
12207 default:
12208 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000012209 case ISD::LOAD:
12210 case ISD::SIGN_EXTEND:
12211 case ISD::ZERO_EXTEND:
12212 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000012213 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000012214 case ISD::SRL:
12215 case ISD::SUB:
12216 case ISD::ADD:
12217 case ISD::MUL:
12218 case ISD::AND:
12219 case ISD::OR:
12220 case ISD::XOR:
12221 return false;
12222 }
12223}
12224
12225/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000012226/// beneficial for dag combiner to promote the specified node. If true, it
12227/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000012228bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000012229 EVT VT = Op.getValueType();
12230 if (VT != MVT::i16)
12231 return false;
12232
Evan Cheng4c26e932010-04-19 19:29:22 +000012233 bool Promote = false;
12234 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012235 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000012236 default: break;
12237 case ISD::LOAD: {
12238 LoadSDNode *LD = cast<LoadSDNode>(Op);
12239 // If the non-extending load has a single use and it's not live out, then it
12240 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012241 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
12242 Op.hasOneUse()*/) {
12243 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
12244 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
12245 // The only case where we'd want to promote LOAD (rather then it being
12246 // promoted as an operand is when it's only use is liveout.
12247 if (UI->getOpcode() != ISD::CopyToReg)
12248 return false;
12249 }
12250 }
Evan Cheng4c26e932010-04-19 19:29:22 +000012251 Promote = true;
12252 break;
12253 }
12254 case ISD::SIGN_EXTEND:
12255 case ISD::ZERO_EXTEND:
12256 case ISD::ANY_EXTEND:
12257 Promote = true;
12258 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012259 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012260 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000012261 SDValue N0 = Op.getOperand(0);
12262 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000012263 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000012264 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000012265 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012266 break;
12267 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000012268 case ISD::ADD:
12269 case ISD::MUL:
12270 case ISD::AND:
12271 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000012272 case ISD::XOR:
12273 Commute = true;
12274 // fallthrough
12275 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000012276 SDValue N0 = Op.getOperand(0);
12277 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000012278 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012279 return false;
12280 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000012281 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012282 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000012283 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012284 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000012285 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012286 }
12287 }
12288
12289 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000012290 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012291}
12292
Evan Cheng60c07e12006-07-05 22:17:51 +000012293//===----------------------------------------------------------------------===//
12294// X86 Inline Assembly Support
12295//===----------------------------------------------------------------------===//
12296
Chris Lattnerb8105652009-07-20 17:51:36 +000012297bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
12298 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000012299
12300 std::string AsmStr = IA->getAsmString();
12301
12302 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000012303 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000012304 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000012305
12306 switch (AsmPieces.size()) {
12307 default: return false;
12308 case 1:
12309 AsmStr = AsmPieces[0];
12310 AsmPieces.clear();
12311 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
12312
Chris Lattner7a2bdde2011-04-15 05:18:47 +000012313 // FIXME: this should verify that we are targeting a 486 or better. If not,
Evan Cheng55d42002011-01-08 01:24:27 +000012314 // we will turn this bswap into something that will be lowered to logical ops
12315 // instead of emitting the bswap asm. For now, we don't support 486 or lower
12316 // so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000012317 // bswap $0
12318 if (AsmPieces.size() == 2 &&
12319 (AsmPieces[0] == "bswap" ||
12320 AsmPieces[0] == "bswapq" ||
12321 AsmPieces[0] == "bswapl") &&
12322 (AsmPieces[1] == "$0" ||
12323 AsmPieces[1] == "${0:q}")) {
12324 // No need to check constraints, nothing other than the equivalent of
12325 // "=r,0" would be valid here.
Evan Cheng55d42002011-01-08 01:24:27 +000012326 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
12327 if (!Ty || Ty->getBitWidth() % 16 != 0)
12328 return false;
12329 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000012330 }
12331 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000012332 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000012333 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000012334 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000012335 AsmPieces[1] == "$$8," &&
12336 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000012337 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
12338 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000012339 const std::string &ConstraintsStr = IA->getConstraintString();
12340 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000012341 std::sort(AsmPieces.begin(), AsmPieces.end());
12342 if (AsmPieces.size() == 4 &&
12343 AsmPieces[0] == "~{cc}" &&
12344 AsmPieces[1] == "~{dirflag}" &&
12345 AsmPieces[2] == "~{flags}" &&
12346 AsmPieces[3] == "~{fpsr}") {
Evan Cheng55d42002011-01-08 01:24:27 +000012347 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
12348 if (!Ty || Ty->getBitWidth() % 16 != 0)
12349 return false;
12350 return IntrinsicLowering::LowerToByteSwap(CI);
Dan Gohman0ef701e2010-03-04 19:58:08 +000012351 }
Chris Lattnerb8105652009-07-20 17:51:36 +000012352 }
12353 break;
12354 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000012355 if (CI->getType()->isIntegerTy(32) &&
12356 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
12357 SmallVector<StringRef, 4> Words;
12358 SplitString(AsmPieces[0], Words, " \t,");
12359 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
12360 Words[2] == "${0:w}") {
12361 Words.clear();
12362 SplitString(AsmPieces[1], Words, " \t,");
12363 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
12364 Words[2] == "$0") {
12365 Words.clear();
12366 SplitString(AsmPieces[2], Words, " \t,");
12367 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
12368 Words[2] == "${0:w}") {
12369 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000012370 const std::string &ConstraintsStr = IA->getConstraintString();
12371 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Peter Collingbourne948cf022010-11-13 19:54:30 +000012372 std::sort(AsmPieces.begin(), AsmPieces.end());
12373 if (AsmPieces.size() == 4 &&
12374 AsmPieces[0] == "~{cc}" &&
12375 AsmPieces[1] == "~{dirflag}" &&
12376 AsmPieces[2] == "~{flags}" &&
12377 AsmPieces[3] == "~{fpsr}") {
Evan Cheng55d42002011-01-08 01:24:27 +000012378 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
12379 if (!Ty || Ty->getBitWidth() % 16 != 0)
12380 return false;
12381 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000012382 }
12383 }
12384 }
12385 }
12386 }
Evan Cheng55d42002011-01-08 01:24:27 +000012387
12388 if (CI->getType()->isIntegerTy(64)) {
12389 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
12390 if (Constraints.size() >= 2 &&
12391 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
12392 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
12393 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
12394 SmallVector<StringRef, 4> Words;
12395 SplitString(AsmPieces[0], Words, " \t");
12396 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
Chris Lattnerb8105652009-07-20 17:51:36 +000012397 Words.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000012398 SplitString(AsmPieces[1], Words, " \t");
12399 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
12400 Words.clear();
12401 SplitString(AsmPieces[2], Words, " \t,");
12402 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
12403 Words[2] == "%edx") {
12404 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
12405 if (!Ty || Ty->getBitWidth() % 16 != 0)
12406 return false;
12407 return IntrinsicLowering::LowerToByteSwap(CI);
12408 }
Chris Lattnerb8105652009-07-20 17:51:36 +000012409 }
12410 }
12411 }
12412 }
12413 break;
12414 }
12415 return false;
12416}
12417
12418
12419
Chris Lattnerf4dff842006-07-11 02:54:03 +000012420/// getConstraintType - Given a constraint letter, return the type of
12421/// constraint it is for this target.
12422X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000012423X86TargetLowering::getConstraintType(const std::string &Constraint) const {
12424 if (Constraint.size() == 1) {
12425 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000012426 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000012427 case 'q':
12428 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000012429 case 'f':
12430 case 't':
12431 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000012432 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000012433 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000012434 case 'Y':
12435 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000012436 case 'a':
12437 case 'b':
12438 case 'c':
12439 case 'd':
12440 case 'S':
12441 case 'D':
12442 case 'A':
12443 return C_Register;
12444 case 'I':
12445 case 'J':
12446 case 'K':
12447 case 'L':
12448 case 'M':
12449 case 'N':
12450 case 'G':
12451 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000012452 case 'e':
12453 case 'Z':
12454 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000012455 default:
12456 break;
12457 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000012458 }
Chris Lattner4234f572007-03-25 02:14:49 +000012459 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000012460}
12461
John Thompson44ab89e2010-10-29 17:29:13 +000012462/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000012463/// This object must already have been set up with the operand type
12464/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000012465TargetLowering::ConstraintWeight
12466 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000012467 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000012468 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012469 Value *CallOperandVal = info.CallOperandVal;
12470 // If we don't have a value, we can't do a match,
12471 // but allow it at the lowest weight.
12472 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000012473 return CW_Default;
12474 const Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000012475 // Look at the constraint type.
12476 switch (*constraint) {
12477 default:
John Thompson44ab89e2010-10-29 17:29:13 +000012478 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
12479 case 'R':
12480 case 'q':
12481 case 'Q':
12482 case 'a':
12483 case 'b':
12484 case 'c':
12485 case 'd':
12486 case 'S':
12487 case 'D':
12488 case 'A':
12489 if (CallOperandVal->getType()->isIntegerTy())
12490 weight = CW_SpecificReg;
12491 break;
12492 case 'f':
12493 case 't':
12494 case 'u':
12495 if (type->isFloatingPointTy())
12496 weight = CW_SpecificReg;
12497 break;
12498 case 'y':
Chris Lattner2a786eb2010-12-19 20:19:20 +000012499 if (type->isX86_MMXTy() && Subtarget->hasMMX())
John Thompson44ab89e2010-10-29 17:29:13 +000012500 weight = CW_SpecificReg;
12501 break;
12502 case 'x':
12503 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012504 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000012505 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012506 break;
12507 case 'I':
12508 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
12509 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000012510 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012511 }
12512 break;
John Thompson44ab89e2010-10-29 17:29:13 +000012513 case 'J':
12514 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12515 if (C->getZExtValue() <= 63)
12516 weight = CW_Constant;
12517 }
12518 break;
12519 case 'K':
12520 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12521 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
12522 weight = CW_Constant;
12523 }
12524 break;
12525 case 'L':
12526 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12527 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
12528 weight = CW_Constant;
12529 }
12530 break;
12531 case 'M':
12532 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12533 if (C->getZExtValue() <= 3)
12534 weight = CW_Constant;
12535 }
12536 break;
12537 case 'N':
12538 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12539 if (C->getZExtValue() <= 0xff)
12540 weight = CW_Constant;
12541 }
12542 break;
12543 case 'G':
12544 case 'C':
12545 if (dyn_cast<ConstantFP>(CallOperandVal)) {
12546 weight = CW_Constant;
12547 }
12548 break;
12549 case 'e':
12550 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12551 if ((C->getSExtValue() >= -0x80000000LL) &&
12552 (C->getSExtValue() <= 0x7fffffffLL))
12553 weight = CW_Constant;
12554 }
12555 break;
12556 case 'Z':
12557 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12558 if (C->getZExtValue() <= 0xffffffff)
12559 weight = CW_Constant;
12560 }
12561 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012562 }
12563 return weight;
12564}
12565
Dale Johannesenba2a0b92008-01-29 02:21:21 +000012566/// LowerXConstraint - try to replace an X constraint, which matches anything,
12567/// with another that has more specific requirements based on the type of the
12568/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000012569const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000012570LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000012571 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
12572 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000012573 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012574 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000012575 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012576 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000012577 return "x";
12578 }
Scott Michelfdc40a02009-02-17 22:15:04 +000012579
Chris Lattner5e764232008-04-26 23:02:14 +000012580 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000012581}
12582
Chris Lattner48884cd2007-08-25 00:47:38 +000012583/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
12584/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000012585void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattner48884cd2007-08-25 00:47:38 +000012586 char Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000012587 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000012588 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000012589 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000012590
Chris Lattner22aaf1d2006-10-31 20:13:11 +000012591 switch (Constraint) {
12592 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000012593 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000012594 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000012595 if (C->getZExtValue() <= 31) {
12596 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000012597 break;
12598 }
Devang Patel84f7fd22007-03-17 00:13:28 +000012599 }
Chris Lattner48884cd2007-08-25 00:47:38 +000012600 return;
Evan Cheng364091e2008-09-22 23:57:37 +000012601 case 'J':
12602 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000012603 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000012604 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
12605 break;
12606 }
12607 }
12608 return;
12609 case 'K':
12610 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000012611 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000012612 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
12613 break;
12614 }
12615 }
12616 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000012617 case 'N':
12618 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000012619 if (C->getZExtValue() <= 255) {
12620 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000012621 break;
12622 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000012623 }
Chris Lattner48884cd2007-08-25 00:47:38 +000012624 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000012625 case 'e': {
12626 // 32-bit signed value
12627 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000012628 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
12629 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000012630 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000012631 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000012632 break;
12633 }
12634 // FIXME gcc accepts some relocatable values here too, but only in certain
12635 // memory models; it's complicated.
12636 }
12637 return;
12638 }
12639 case 'Z': {
12640 // 32-bit unsigned value
12641 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000012642 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
12643 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000012644 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
12645 break;
12646 }
12647 }
12648 // FIXME gcc accepts some relocatable values here too, but only in certain
12649 // memory models; it's complicated.
12650 return;
12651 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000012652 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000012653 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000012654 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000012655 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000012656 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000012657 break;
12658 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012659
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000012660 // In any sort of PIC mode addresses need to be computed at runtime by
12661 // adding in a register or some sort of table lookup. These can't
12662 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000012663 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000012664 return;
12665
Chris Lattnerdc43a882007-05-03 16:52:29 +000012666 // If we are in non-pic codegen mode, we allow the address of a global (with
12667 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000012668 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000012669 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000012670
Chris Lattner49921962009-05-08 18:23:14 +000012671 // Match either (GA), (GA+C), (GA+C1+C2), etc.
12672 while (1) {
12673 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
12674 Offset += GA->getOffset();
12675 break;
12676 } else if (Op.getOpcode() == ISD::ADD) {
12677 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
12678 Offset += C->getZExtValue();
12679 Op = Op.getOperand(0);
12680 continue;
12681 }
12682 } else if (Op.getOpcode() == ISD::SUB) {
12683 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
12684 Offset += -C->getZExtValue();
12685 Op = Op.getOperand(0);
12686 continue;
12687 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000012688 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000012689
Chris Lattner49921962009-05-08 18:23:14 +000012690 // Otherwise, this isn't something we can handle, reject it.
12691 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000012692 }
Eric Christopherfd179292009-08-27 18:07:15 +000012693
Dan Gohman46510a72010-04-15 01:51:59 +000012694 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000012695 // If we require an extra load to get this address, as in PIC mode, we
12696 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000012697 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
12698 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000012699 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000012700
Devang Patel0d881da2010-07-06 22:08:15 +000012701 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
12702 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000012703 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000012704 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000012705 }
Scott Michelfdc40a02009-02-17 22:15:04 +000012706
Gabor Greifba36cb52008-08-28 21:40:38 +000012707 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000012708 Ops.push_back(Result);
12709 return;
12710 }
Dale Johannesen1784d162010-06-25 21:55:36 +000012711 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000012712}
12713
Chris Lattner259e97c2006-01-31 19:43:35 +000012714std::vector<unsigned> X86TargetLowering::
Chris Lattner1efa40f2006-02-22 00:56:39 +000012715getRegClassForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000012716 EVT VT) const {
Chris Lattner259e97c2006-01-31 19:43:35 +000012717 if (Constraint.size() == 1) {
12718 // FIXME: not handling fp-stack yet!
Chris Lattner259e97c2006-01-31 19:43:35 +000012719 switch (Constraint[0]) { // GCC X86 Constraint Letters
Chris Lattnerf4dff842006-07-11 02:54:03 +000012720 default: break; // Unknown constraint letter
Evan Cheng47e9fab2009-07-17 22:13:25 +000012721 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
12722 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012723 if (VT == MVT::i32)
Evan Cheng47e9fab2009-07-17 22:13:25 +000012724 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX,
12725 X86::ESI, X86::EDI, X86::R8D, X86::R9D,
12726 X86::R10D,X86::R11D,X86::R12D,
12727 X86::R13D,X86::R14D,X86::R15D,
12728 X86::EBP, X86::ESP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012729 else if (VT == MVT::i16)
Evan Cheng47e9fab2009-07-17 22:13:25 +000012730 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX,
12731 X86::SI, X86::DI, X86::R8W,X86::R9W,
12732 X86::R10W,X86::R11W,X86::R12W,
12733 X86::R13W,X86::R14W,X86::R15W,
12734 X86::BP, X86::SP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012735 else if (VT == MVT::i8)
Evan Cheng47e9fab2009-07-17 22:13:25 +000012736 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL,
12737 X86::SIL, X86::DIL, X86::R8B,X86::R9B,
12738 X86::R10B,X86::R11B,X86::R12B,
12739 X86::R13B,X86::R14B,X86::R15B,
12740 X86::BPL, X86::SPL, 0);
12741
Owen Anderson825b72b2009-08-11 20:47:22 +000012742 else if (VT == MVT::i64)
Evan Cheng47e9fab2009-07-17 22:13:25 +000012743 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX,
12744 X86::RSI, X86::RDI, X86::R8, X86::R9,
12745 X86::R10, X86::R11, X86::R12,
12746 X86::R13, X86::R14, X86::R15,
12747 X86::RBP, X86::RSP, 0);
12748
12749 break;
12750 }
Eric Christopherfd179292009-08-27 18:07:15 +000012751 // 32-bit fallthrough
Chris Lattner259e97c2006-01-31 19:43:35 +000012752 case 'Q': // Q_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000012753 if (VT == MVT::i32)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000012754 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012755 else if (VT == MVT::i16)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000012756 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012757 else if (VT == MVT::i8)
Evan Cheng12914382007-08-13 23:27:11 +000012758 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012759 else if (VT == MVT::i64)
Chris Lattner03e6c702007-11-04 06:51:12 +000012760 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
12761 break;
Chris Lattner259e97c2006-01-31 19:43:35 +000012762 }
12763 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012764
Chris Lattner1efa40f2006-02-22 00:56:39 +000012765 return std::vector<unsigned>();
Chris Lattner259e97c2006-01-31 19:43:35 +000012766}
Chris Lattnerf76d1802006-07-31 23:26:50 +000012767
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012768std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000012769X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000012770 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000012771 // First, see if this is a constraint that directly corresponds to an LLVM
12772 // register class.
12773 if (Constraint.size() == 1) {
12774 // GCC Constraint Letters
12775 switch (Constraint[0]) {
12776 default: break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000012777 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000012778 case 'l': // INDEX_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000012779 if (VT == MVT::i8)
Chris Lattner0f65cad2007-04-09 05:49:22 +000012780 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000012781 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000012782 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000012783 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000012784 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000012785 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000012786 case 'R': // LEGACY_REGS
12787 if (VT == MVT::i8)
12788 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
12789 if (VT == MVT::i16)
12790 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
12791 if (VT == MVT::i32 || !Subtarget->is64Bit())
12792 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
12793 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000012794 case 'f': // FP Stack registers.
12795 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
12796 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000012797 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000012798 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000012799 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000012800 return std::make_pair(0U, X86::RFP64RegisterClass);
12801 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000012802 case 'y': // MMX_REGS if MMX allowed.
12803 if (!Subtarget->hasMMX()) break;
12804 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000012805 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012806 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000012807 // FALL THROUGH.
12808 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012809 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000012810
Owen Anderson825b72b2009-08-11 20:47:22 +000012811 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000012812 default: break;
12813 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000012814 case MVT::f32:
12815 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000012816 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000012817 case MVT::f64:
12818 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000012819 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000012820 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000012821 case MVT::v16i8:
12822 case MVT::v8i16:
12823 case MVT::v4i32:
12824 case MVT::v2i64:
12825 case MVT::v4f32:
12826 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000012827 return std::make_pair(0U, X86::VR128RegisterClass);
12828 }
Chris Lattnerad043e82007-04-09 05:11:28 +000012829 break;
12830 }
12831 }
Scott Michelfdc40a02009-02-17 22:15:04 +000012832
Chris Lattnerf76d1802006-07-31 23:26:50 +000012833 // Use the default implementation in TargetLowering to convert the register
12834 // constraint into a member of a register class.
12835 std::pair<unsigned, const TargetRegisterClass*> Res;
12836 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000012837
12838 // Not found as a standard register?
12839 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000012840 // Map st(0) -> st(7) -> ST0
12841 if (Constraint.size() == 7 && Constraint[0] == '{' &&
12842 tolower(Constraint[1]) == 's' &&
12843 tolower(Constraint[2]) == 't' &&
12844 Constraint[3] == '(' &&
12845 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
12846 Constraint[5] == ')' &&
12847 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000012848
Chris Lattner56d77c72009-09-13 22:41:48 +000012849 Res.first = X86::ST0+Constraint[4]-'0';
12850 Res.second = X86::RFP80RegisterClass;
12851 return Res;
12852 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000012853
Chris Lattner56d77c72009-09-13 22:41:48 +000012854 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000012855 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000012856 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000012857 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000012858 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000012859 }
Chris Lattner56d77c72009-09-13 22:41:48 +000012860
12861 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000012862 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000012863 Res.first = X86::EFLAGS;
12864 Res.second = X86::CCRRegisterClass;
12865 return Res;
12866 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000012867
Dale Johannesen330169f2008-11-13 21:52:36 +000012868 // 'A' means EAX + EDX.
12869 if (Constraint == "A") {
12870 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000012871 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000012872 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000012873 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000012874 return Res;
12875 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012876
Chris Lattnerf76d1802006-07-31 23:26:50 +000012877 // Otherwise, check to see if this is a register class of the wrong value
12878 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
12879 // turn into {ax},{dx}.
12880 if (Res.second->hasType(VT))
12881 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012882
Chris Lattnerf76d1802006-07-31 23:26:50 +000012883 // All of the single-register GCC register classes map their values onto
12884 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
12885 // really want an 8-bit or 32-bit register, map to the appropriate register
12886 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000012887 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012888 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012889 unsigned DestReg = 0;
12890 switch (Res.first) {
12891 default: break;
12892 case X86::AX: DestReg = X86::AL; break;
12893 case X86::DX: DestReg = X86::DL; break;
12894 case X86::CX: DestReg = X86::CL; break;
12895 case X86::BX: DestReg = X86::BL; break;
12896 }
12897 if (DestReg) {
12898 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012899 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012900 }
Owen Anderson825b72b2009-08-11 20:47:22 +000012901 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012902 unsigned DestReg = 0;
12903 switch (Res.first) {
12904 default: break;
12905 case X86::AX: DestReg = X86::EAX; break;
12906 case X86::DX: DestReg = X86::EDX; break;
12907 case X86::CX: DestReg = X86::ECX; break;
12908 case X86::BX: DestReg = X86::EBX; break;
12909 case X86::SI: DestReg = X86::ESI; break;
12910 case X86::DI: DestReg = X86::EDI; break;
12911 case X86::BP: DestReg = X86::EBP; break;
12912 case X86::SP: DestReg = X86::ESP; break;
12913 }
12914 if (DestReg) {
12915 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012916 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012917 }
Owen Anderson825b72b2009-08-11 20:47:22 +000012918 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012919 unsigned DestReg = 0;
12920 switch (Res.first) {
12921 default: break;
12922 case X86::AX: DestReg = X86::RAX; break;
12923 case X86::DX: DestReg = X86::RDX; break;
12924 case X86::CX: DestReg = X86::RCX; break;
12925 case X86::BX: DestReg = X86::RBX; break;
12926 case X86::SI: DestReg = X86::RSI; break;
12927 case X86::DI: DestReg = X86::RDI; break;
12928 case X86::BP: DestReg = X86::RBP; break;
12929 case X86::SP: DestReg = X86::RSP; break;
12930 }
12931 if (DestReg) {
12932 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012933 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012934 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000012935 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000012936 } else if (Res.second == X86::FR32RegisterClass ||
12937 Res.second == X86::FR64RegisterClass ||
12938 Res.second == X86::VR128RegisterClass) {
12939 // Handle references to XMM physical registers that got mapped into the
12940 // wrong class. This can happen with constraints like {xmm0} where the
12941 // target independent register mapper will just pick the first match it can
12942 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000012943 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012944 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000012945 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012946 Res.second = X86::FR64RegisterClass;
12947 else if (X86::VR128RegisterClass->hasType(VT))
12948 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000012949 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012950
Chris Lattnerf76d1802006-07-31 23:26:50 +000012951 return Res;
12952}