blob: 596f010ec123a045fbbd63929ed77b67252d379f [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"
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000019#include "X86ShuffleDecode.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000020#include "X86TargetMachine.h"
Chris Lattner8c6ed052009-09-16 01:46:41 +000021#include "X86TargetObjectFile.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"
Mon P Wang3c81d352008-11-23 04:37:22 +000048#include "llvm/Support/CommandLine.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
David Greenef125a292011-02-08 19:04:41 +000059static cl::opt<bool>
60Disable256Bit("disable-256bit", cl::Hidden,
61 cl::desc("Disable use of 256-bit vectors"));
62
Evan Cheng10e86422008-04-25 19:11:04 +000063// Forward declarations.
Owen Andersone50ed302009-08-10 22:56:29 +000064static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +000065 SDValue V2);
Evan Cheng10e86422008-04-25 19:11:04 +000066
David Greenea5f26012011-02-07 19:36:54 +000067static SDValue Insert128BitVector(SDValue Result,
68 SDValue Vec,
69 SDValue Idx,
70 SelectionDAG &DAG,
71 DebugLoc dl);
David Greenef125a292011-02-08 19:04:41 +000072
David Greenea5f26012011-02-07 19:36:54 +000073static SDValue Extract128BitVector(SDValue Vec,
74 SDValue Idx,
75 SelectionDAG &DAG,
76 DebugLoc dl);
77
David Greenef125a292011-02-08 19:04:41 +000078static SDValue ConcatVectors(SDValue Lower, SDValue Upper, SelectionDAG &DAG);
79
80
David Greenea5f26012011-02-07 19:36:54 +000081/// Generate a DAG to grab 128-bits from a vector > 128 bits. This
82/// sets things up to match to an AVX VEXTRACTF128 instruction or a
David Greene74a579d2011-02-10 16:57:36 +000083/// simple subregister reference. Idx is an index in the 128 bits we
84/// want. It need not be aligned to a 128-bit bounday. That makes
85/// lowering EXTRACT_VECTOR_ELT operations easier.
David Greenea5f26012011-02-07 19:36:54 +000086static SDValue Extract128BitVector(SDValue Vec,
87 SDValue Idx,
88 SelectionDAG &DAG,
89 DebugLoc dl) {
90 EVT VT = Vec.getValueType();
91 assert(VT.getSizeInBits() == 256 && "Unexpected vector size!");
92
93 EVT ElVT = VT.getVectorElementType();
94
95 int Factor = VT.getSizeInBits() / 128;
96
97 EVT ResultVT = EVT::getVectorVT(*DAG.getContext(),
98 ElVT,
99 VT.getVectorNumElements() / Factor);
100
101 // Extract from UNDEF is UNDEF.
102 if (Vec.getOpcode() == ISD::UNDEF)
103 return DAG.getNode(ISD::UNDEF, dl, ResultVT);
104
105 if (isa<ConstantSDNode>(Idx)) {
106 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
107
108 // Extract the relevant 128 bits. Generate an EXTRACT_SUBVECTOR
109 // we can match to VEXTRACTF128.
110 unsigned ElemsPerChunk = 128 / ElVT.getSizeInBits();
111
112 // This is the index of the first element of the 128-bit chunk
113 // we want.
114 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / 128)
115 * ElemsPerChunk);
116
117 SDValue VecIdx = DAG.getConstant(NormalizedIdxVal, MVT::i32);
118
119 SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
120 VecIdx);
121
122 return Result;
123 }
124
125 return SDValue();
126}
127
128/// Generate a DAG to put 128-bits into a vector > 128 bits. This
129/// sets things up to match to an AVX VINSERTF128 instruction or a
David Greene6b381262011-02-09 15:32:06 +0000130/// simple superregister reference. Idx is an index in the 128 bits
131/// we want. It need not be aligned to a 128-bit bounday. That makes
132/// lowering INSERT_VECTOR_ELT operations easier.
David Greenea5f26012011-02-07 19:36:54 +0000133static SDValue Insert128BitVector(SDValue Result,
134 SDValue Vec,
135 SDValue Idx,
136 SelectionDAG &DAG,
137 DebugLoc dl) {
138 if (isa<ConstantSDNode>(Idx)) {
139 EVT VT = Vec.getValueType();
140 assert(VT.getSizeInBits() == 128 && "Unexpected vector size!");
141
142 EVT ElVT = VT.getVectorElementType();
143
144 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
145
146 EVT ResultVT = Result.getValueType();
147
148 // Insert the relevant 128 bits.
149 unsigned ElemsPerChunk = 128 / ElVT.getSizeInBits();
150
151 // This is the index of the first element of the 128-bit chunk
152 // we want.
153 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / 128)
154 * ElemsPerChunk);
155
156 SDValue VecIdx = DAG.getConstant(NormalizedIdxVal, MVT::i32);
157
158 Result = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
159 VecIdx);
160 return Result;
161 }
162
163 return SDValue();
164}
165
David Greenef125a292011-02-08 19:04:41 +0000166/// Given two vectors, concat them.
167static SDValue ConcatVectors(SDValue Lower, SDValue Upper, SelectionDAG &DAG) {
168 DebugLoc dl = Lower.getDebugLoc();
169
170 assert(Lower.getValueType() == Upper.getValueType() && "Mismatched vectors!");
171
172 EVT VT = EVT::getVectorVT(*DAG.getContext(),
173 Lower.getValueType().getVectorElementType(),
174 Lower.getValueType().getVectorNumElements() * 2);
175
176 // TODO: Generalize to arbitrary vector length (this assumes 256-bit vectors).
177 assert(VT.getSizeInBits() == 256 && "Unsupported vector concat!");
178
179 // Insert the upper subvector.
180 SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Upper,
181 DAG.getConstant(
182 // This is half the length of the result
183 // vector. Start inserting the upper 128
184 // bits here.
185 Lower.getValueType().getVectorNumElements(),
186 MVT::i32),
187 DAG, dl);
188
189 // Insert the lower subvector.
190 Vec = Insert128BitVector(Vec, Lower, DAG.getConstant(0, MVT::i32), DAG, dl);
191 return Vec;
192}
193
Chris Lattnerf0144122009-07-28 03:13:23 +0000194static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
Evan Cheng2bffee22011-02-01 01:14:13 +0000195 const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
196 bool is64Bit = Subtarget->is64Bit();
NAKAMURA Takumi27635382011-02-05 15:10:54 +0000197
Evan Cheng2bffee22011-02-01 01:14:13 +0000198 if (Subtarget->isTargetEnvMacho()) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000199 if (is64Bit)
200 return new X8664_MachoTargetObjectFile();
Anton Korobeynikov293d5922010-02-21 20:28:15 +0000201 return new TargetLoweringObjectFileMachO();
Michael J. Spencerec38de22010-10-10 22:04:20 +0000202 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000203
Evan Cheng2bffee22011-02-01 01:14:13 +0000204 if (Subtarget->isTargetELF()) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000205 if (is64Bit)
206 return new X8664_ELFTargetObjectFile(TM);
207 return new X8632_ELFTargetObjectFile(TM);
208 }
Evan Cheng2bffee22011-02-01 01:14:13 +0000209 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
Chris Lattnere019ec12010-12-19 20:07:10 +0000210 return new TargetLoweringObjectFileCOFF();
Eric Christopher62f35a22010-07-05 19:26:33 +0000211 llvm_unreachable("unknown subtarget type");
Chris Lattnerf0144122009-07-28 03:13:23 +0000212}
213
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +0000214X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +0000215 : TargetLowering(TM, createTLOF(TM)) {
Evan Cheng559806f2006-01-27 08:10:46 +0000216 Subtarget = &TM.getSubtarget<X86Subtarget>();
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000217 X86ScalarSSEf64 = Subtarget->hasXMMInt();
218 X86ScalarSSEf32 = Subtarget->hasXMM();
Evan Cheng25ab6902006-09-08 06:48:29 +0000219 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000220
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000221 RegInfo = TM.getRegisterInfo();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000222 TD = getTargetData();
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000223
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000224 // Set up the TargetLowering object.
Chris Lattnera34b3cf2010-12-19 20:03:11 +0000225 static MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000226
227 // X86 is weird, it always uses i8 for shift amounts and setcc results.
Owen Anderson825b72b2009-08-11 20:47:22 +0000228 setShiftAmountType(MVT::i8);
Duncan Sands03228082008-11-23 15:47:28 +0000229 setBooleanContents(ZeroOrOneBooleanContent);
Evan Cheng211ffa12010-05-19 20:19:50 +0000230 setSchedulingPreference(Sched::RegPressure);
Evan Cheng25ab6902006-09-08 06:48:29 +0000231 setStackPointerRegisterToSaveRestore(X86StackPtr);
Evan Cheng714554d2006-03-16 21:47:42 +0000232
Michael J. Spencer92bf38c2010-10-10 23:11:06 +0000233 if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000234 // Setup Windows compiler runtime calls.
235 setLibcallName(RTLIB::SDIV_I64, "_alldiv");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000236 setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
237 setLibcallName(RTLIB::FPTOUINT_F64_I64, "_ftol2");
Michael J. Spencer94f7eeb2010-10-19 07:32:52 +0000238 setLibcallName(RTLIB::FPTOUINT_F32_I64, "_ftol2");
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000239 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer335b8062010-10-11 05:29:15 +0000240 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer6dad10e2010-10-27 18:52:38 +0000241 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::C);
242 setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::C);
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000243 }
244
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000245 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +0000246 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000247 setUseUnderscoreSetJmp(false);
248 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000249 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000250 // MS runtime is weird: it exports _setjmp, but longjmp!
251 setUseUnderscoreSetJmp(true);
252 setUseUnderscoreLongJmp(false);
253 } else {
254 setUseUnderscoreSetJmp(true);
255 setUseUnderscoreLongJmp(true);
256 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000257
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000258 // Set up the register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000259 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
Dan Gohman71edb242010-04-30 18:30:26 +0000260 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000261 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
Evan Cheng25ab6902006-09-08 06:48:29 +0000262 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000263 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000264
Owen Anderson825b72b2009-08-11 20:47:22 +0000265 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +0000266
Scott Michelfdc40a02009-02-17 22:15:04 +0000267 // We don't accept any truncstore of integer registers.
Owen Anderson825b72b2009-08-11 20:47:22 +0000268 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000269 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000270 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000271 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000272 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
273 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Evan Cheng7f042682008-10-15 02:05:31 +0000274
275 // SETOEQ and SETUNE require checking two conditions.
Owen Anderson825b72b2009-08-11 20:47:22 +0000276 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
277 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
278 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
279 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
280 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
281 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000282
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000283 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
284 // operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000285 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
286 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
287 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000288
Evan Cheng25ab6902006-09-08 06:48:29 +0000289 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000290 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
291 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Eli Friedman948e95a2009-05-23 09:59:16 +0000292 } else if (!UseSoftFloat) {
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000293 // We have an algorithm for SSE2->double, and we turn this into a
294 // 64-bit FILD followed by conditional FADD for other targets.
295 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Eli Friedman948e95a2009-05-23 09:59:16 +0000296 // We have an algorithm for SSE2, and we turn this into a 64-bit
297 // FILD for other targets.
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000298 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000299 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000300
301 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
302 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000303 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
304 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000305
Devang Patel6a784892009-06-05 18:48:29 +0000306 if (!UseSoftFloat) {
Bill Wendling105be5a2009-03-13 08:41:47 +0000307 // SSE has no i16 to fp conversion, only i32
308 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000309 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000310 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000311 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000312 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000313 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
314 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000315 }
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000316 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000317 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
318 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000319 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000320
Dale Johannesen73328d12007-09-19 23:55:34 +0000321 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
322 // are Legal, f80 is custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000323 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
324 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000325
Evan Cheng02568ff2006-01-30 22:13:22 +0000326 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
327 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000328 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
329 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
Evan Cheng02568ff2006-01-30 22:13:22 +0000330
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000331 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000332 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000333 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000334 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000335 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000336 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
337 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000338 }
339
340 // Handle FP_TO_UINT by promoting the destination to a larger signed
341 // conversion.
Owen Anderson825b72b2009-08-11 20:47:22 +0000342 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
343 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
344 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000345
Evan Cheng25ab6902006-09-08 06:48:29 +0000346 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000347 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
348 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Eli Friedman948e95a2009-05-23 09:59:16 +0000349 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000350 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000351 // Expand FP_TO_UINT into a select.
352 // FIXME: We would like to use a Custom expander here eventually to do
353 // the optimal thing for SSE vs. the default expansion in the legalizer.
Owen Anderson825b72b2009-08-11 20:47:22 +0000354 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000355 else
Eli Friedman948e95a2009-05-23 09:59:16 +0000356 // With SSE3 we can use fisttpll to convert to a signed i64; without
357 // SSE, we're stuck with a fistpll.
Owen Anderson825b72b2009-08-11 20:47:22 +0000358 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000359 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000360
Chris Lattner399610a2006-12-05 18:22:22 +0000361 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Michael J. Spencerec38de22010-10-10 22:04:20 +0000362 if (!X86ScalarSSEf64) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000363 setOperationAction(ISD::BITCAST , MVT::f32 , Expand);
364 setOperationAction(ISD::BITCAST , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000365 if (Subtarget->is64Bit()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000366 setOperationAction(ISD::BITCAST , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000367 // Without SSE, i64->f64 goes through memory.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000368 setOperationAction(ISD::BITCAST , MVT::i64 , Expand);
Dale Johannesen7d07b482010-05-21 00:52:33 +0000369 }
Chris Lattnerf3597a12006-12-05 18:45:06 +0000370 }
Chris Lattner21f66852005-12-23 05:15:23 +0000371
Dan Gohmanb00ee212008-02-18 19:34:53 +0000372 // Scalar integer divide and remainder are lowered to use operations that
373 // produce two results, to match the available instructions. This exposes
374 // the two-result form to trivial CSE, which is able to combine x/y and x%y
375 // into a single instruction.
376 //
377 // Scalar integer multiply-high is also lowered to use two-result
378 // operations, to match the available instructions. However, plain multiply
379 // (low) operations are left as Legal, as there are single-result
380 // instructions for this in x86. Using the two-result multiply instructions
381 // when both high and low results are needed must be arranged by dagcombine.
Chris Lattnere019ec12010-12-19 20:07:10 +0000382 for (unsigned i = 0, e = 4; i != e; ++i) {
383 MVT VT = IntVTs[i];
384 setOperationAction(ISD::MULHS, VT, Expand);
385 setOperationAction(ISD::MULHU, VT, Expand);
386 setOperationAction(ISD::SDIV, VT, Expand);
387 setOperationAction(ISD::UDIV, VT, Expand);
388 setOperationAction(ISD::SREM, VT, Expand);
389 setOperationAction(ISD::UREM, VT, Expand);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000390
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000391 // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
Chris Lattnerd8ff7ec2010-12-20 01:03:27 +0000392 setOperationAction(ISD::ADDC, VT, Custom);
393 setOperationAction(ISD::ADDE, VT, Custom);
394 setOperationAction(ISD::SUBC, VT, Custom);
395 setOperationAction(ISD::SUBE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000396 }
Dan Gohmana37c9f72007-09-25 18:23:27 +0000397
Owen Anderson825b72b2009-08-11 20:47:22 +0000398 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
399 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
400 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
401 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000402 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000403 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
404 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
405 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
406 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
407 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
408 setOperationAction(ISD::FREM , MVT::f32 , Expand);
409 setOperationAction(ISD::FREM , MVT::f64 , Expand);
410 setOperationAction(ISD::FREM , MVT::f80 , Expand);
411 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000412
Owen Anderson825b72b2009-08-11 20:47:22 +0000413 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
414 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000415 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
416 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000417 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
418 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000419 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000420 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
421 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000422 }
423
Benjamin Kramer1292c222010-12-04 20:32:23 +0000424 if (Subtarget->hasPOPCNT()) {
425 setOperationAction(ISD::CTPOP , MVT::i8 , Promote);
426 } else {
427 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
428 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
429 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
430 if (Subtarget->is64Bit())
431 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
432 }
433
Owen Anderson825b72b2009-08-11 20:47:22 +0000434 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
435 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000436
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000437 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000438 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000439 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000440 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000441 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000442 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
443 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
444 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
445 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
446 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000447 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000448 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
449 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
450 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
451 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000452 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000453 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
454 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000455 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000456 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000457
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000458 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000459 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
460 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
461 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
462 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000463 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000464 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
465 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000466 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000467 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000468 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
469 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
470 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
471 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000472 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000473 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000474 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000475 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
476 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
477 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000478 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000479 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
480 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
481 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000482 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000483
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000484 if (Subtarget->hasXMM())
Owen Anderson825b72b2009-08-11 20:47:22 +0000485 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000486
Eric Christopher9a9d2752010-07-22 02:48:34 +0000487 // We may not have a libcall for MEMBARRIER so we should lower this.
488 setOperationAction(ISD::MEMBARRIER , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000489
Jim Grosbachf1ab49e2010-06-23 16:25:07 +0000490 // On X86 and X86-64, atomic operations are lowered to locked instructions.
491 // Locked instructions, in turn, have implicit fence semantics (all memory
492 // operations are flushed before issuing the locked instruction, and they
493 // are not buffered), so we can fold away the common pattern of
494 // fence-atomic-fence.
495 setShouldFoldAtomicFences(true);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000496
Mon P Wang63307c32008-05-05 19:05:59 +0000497 // Expand certain atomics
Chris Lattnere019ec12010-12-19 20:07:10 +0000498 for (unsigned i = 0, e = 4; i != e; ++i) {
499 MVT VT = IntVTs[i];
500 setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
501 setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
502 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000503
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000504 if (!Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000505 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
506 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
507 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
508 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
509 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
510 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
511 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000512 }
513
Evan Cheng3c992d22006-03-07 02:02:57 +0000514 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000515 if (!Subtarget->isTargetDarwin() &&
516 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000517 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000518 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000519 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000520
Owen Anderson825b72b2009-08-11 20:47:22 +0000521 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
522 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
523 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
524 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000525 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000526 setExceptionPointerRegister(X86::RAX);
527 setExceptionSelectorRegister(X86::RDX);
528 } else {
529 setExceptionPointerRegister(X86::EAX);
530 setExceptionSelectorRegister(X86::EDX);
531 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000532 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
533 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000534
Owen Anderson825b72b2009-08-11 20:47:22 +0000535 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000536
Owen Anderson825b72b2009-08-11 20:47:22 +0000537 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000538
Nate Begemanacc398c2006-01-25 18:21:52 +0000539 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000540 setOperationAction(ISD::VASTART , MVT::Other, Custom);
541 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000542 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000543 setOperationAction(ISD::VAARG , MVT::Other, Custom);
544 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000545 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000546 setOperationAction(ISD::VAARG , MVT::Other, Expand);
547 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000548 }
Evan Chengae642192007-03-02 23:16:35 +0000549
Owen Anderson825b72b2009-08-11 20:47:22 +0000550 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
551 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000552 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000553 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
Michael J. Spencere9c253e2010-10-21 01:41:01 +0000554 if (Subtarget->isTargetCygMing() || Subtarget->isTargetWindows())
Owen Anderson825b72b2009-08-11 20:47:22 +0000555 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +0000556 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000557 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000558
Evan Chengc7ce29b2009-02-13 22:36:38 +0000559 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000560 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000561 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000562 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
563 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000564
Evan Cheng223547a2006-01-31 22:28:30 +0000565 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000566 setOperationAction(ISD::FABS , MVT::f64, Custom);
567 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000568
569 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000570 setOperationAction(ISD::FNEG , MVT::f64, Custom);
571 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000572
Evan Cheng68c47cb2007-01-05 07:55:56 +0000573 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000574 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
575 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000576
Evan Chengd25e9e82006-02-02 00:28:23 +0000577 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000578 setOperationAction(ISD::FSIN , MVT::f64, Expand);
579 setOperationAction(ISD::FCOS , MVT::f64, Expand);
580 setOperationAction(ISD::FSIN , MVT::f32, Expand);
581 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000582
Chris Lattnera54aa942006-01-29 06:26:08 +0000583 // Expand FP immediates into loads from the stack, except for the special
584 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000585 addLegalFPImmediate(APFloat(+0.0)); // xorpd
586 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000587 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000588 // Use SSE for f32, x87 for f64.
589 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000590 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
591 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000592
593 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000594 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000595
596 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000597 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000598
Owen Anderson825b72b2009-08-11 20:47:22 +0000599 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000600
601 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000602 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
603 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000604
605 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000606 setOperationAction(ISD::FSIN , MVT::f32, Expand);
607 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000608
Nate Begemane1795842008-02-14 08:57:00 +0000609 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000610 addLegalFPImmediate(APFloat(+0.0f)); // xorps
611 addLegalFPImmediate(APFloat(+0.0)); // FLD0
612 addLegalFPImmediate(APFloat(+1.0)); // FLD1
613 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
614 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
615
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000616 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000617 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
618 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000619 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000620 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000621 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000622 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000623 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
624 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000625
Owen Anderson825b72b2009-08-11 20:47:22 +0000626 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
627 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
628 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
629 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000630
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000631 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000632 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
633 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000634 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000635 addLegalFPImmediate(APFloat(+0.0)); // FLD0
636 addLegalFPImmediate(APFloat(+1.0)); // FLD1
637 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
638 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000639 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
640 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
641 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
642 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000643 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000644
Dale Johannesen59a58732007-08-05 18:49:15 +0000645 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000646 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000647 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
648 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
649 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000650 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000651 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000652 addLegalFPImmediate(TmpFlt); // FLD0
653 TmpFlt.changeSign();
654 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000655
656 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000657 APFloat TmpFlt2(+1.0);
658 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
659 &ignored);
660 addLegalFPImmediate(TmpFlt2); // FLD1
661 TmpFlt2.changeSign();
662 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
663 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000664
Evan Chengc7ce29b2009-02-13 22:36:38 +0000665 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000666 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
667 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000668 }
Dale Johannesen2f429012007-09-26 21:10:55 +0000669 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000670
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000671 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000672 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
673 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
674 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000675
Owen Anderson825b72b2009-08-11 20:47:22 +0000676 setOperationAction(ISD::FLOG, MVT::f80, Expand);
677 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
678 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
679 setOperationAction(ISD::FEXP, MVT::f80, Expand);
680 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000681
Mon P Wangf007a8b2008-11-06 05:31:54 +0000682 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000683 // (for widening) or expand (for scalarization). Then we will selectively
684 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000685 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
686 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
687 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
688 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
689 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
690 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
691 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
692 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
693 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
694 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
695 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
696 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
697 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
698 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
699 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
700 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
701 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000702 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
David Greenecfe33c42011-01-26 19:13:22 +0000703 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
704 setOperationAction(ISD::INSERT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000705 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
706 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
707 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
708 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
709 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
710 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
711 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
712 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
713 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
714 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
715 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
716 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
717 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
718 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
719 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
720 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
721 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
722 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
723 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
724 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
725 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
726 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
727 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
728 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
729 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
730 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
731 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
732 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
733 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
734 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
735 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000736 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000737 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
738 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
739 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
740 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
741 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
742 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
743 setTruncStoreAction((MVT::SimpleValueType)VT,
744 (MVT::SimpleValueType)InnerVT, Expand);
745 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
746 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
747 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000748 }
749
Evan Chengc7ce29b2009-02-13 22:36:38 +0000750 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
751 // with -msoft-float, disable use of MMX as well.
Chris Lattner2a786eb2010-12-19 20:19:20 +0000752 if (!UseSoftFloat && Subtarget->hasMMX()) {
Dale Johannesene93d99c2010-10-20 21:32:10 +0000753 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000754 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000755 }
756
Dale Johannesen0488fb62010-09-30 23:57:10 +0000757 // MMX-sized vectors (other than x86mmx) are expected to be expanded
758 // into smaller operations.
759 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
760 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
761 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
762 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
763 setOperationAction(ISD::AND, MVT::v8i8, Expand);
764 setOperationAction(ISD::AND, MVT::v4i16, Expand);
765 setOperationAction(ISD::AND, MVT::v2i32, Expand);
766 setOperationAction(ISD::AND, MVT::v1i64, Expand);
767 setOperationAction(ISD::OR, MVT::v8i8, Expand);
768 setOperationAction(ISD::OR, MVT::v4i16, Expand);
769 setOperationAction(ISD::OR, MVT::v2i32, Expand);
770 setOperationAction(ISD::OR, MVT::v1i64, Expand);
771 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
772 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
773 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
774 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
775 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
776 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
777 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
778 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
779 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
780 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
781 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
782 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
783 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000784 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
785 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
786 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
787 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000788
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000789 if (!UseSoftFloat && Subtarget->hasXMM()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000790 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000791
Owen Anderson825b72b2009-08-11 20:47:22 +0000792 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
793 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
794 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
795 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
796 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
797 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
798 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
799 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
800 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
801 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
802 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
803 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000804 }
805
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000806 if (!UseSoftFloat && Subtarget->hasXMMInt()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000807 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000808
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000809 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
810 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000811 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
812 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
813 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
814 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000815
Owen Anderson825b72b2009-08-11 20:47:22 +0000816 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
817 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
818 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
819 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
820 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
821 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
822 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
823 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
824 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
825 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
826 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
827 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
828 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
829 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
830 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
831 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000832
Owen Anderson825b72b2009-08-11 20:47:22 +0000833 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
834 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
835 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
836 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000837
Owen Anderson825b72b2009-08-11 20:47:22 +0000838 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
839 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
840 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
841 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
842 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000843
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000844 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
845 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
846 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
847 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
848 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
849
Evan Cheng2c3ae372006-04-12 21:21:57 +0000850 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000851 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
852 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000853 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000854 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000855 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000856 // Do not attempt to custom lower non-128-bit vectors
857 if (!VT.is128BitVector())
858 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000859 setOperationAction(ISD::BUILD_VECTOR,
860 VT.getSimpleVT().SimpleTy, Custom);
861 setOperationAction(ISD::VECTOR_SHUFFLE,
862 VT.getSimpleVT().SimpleTy, Custom);
863 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
864 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000865 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000866
Owen Anderson825b72b2009-08-11 20:47:22 +0000867 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
868 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
869 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
870 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
871 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
872 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000873
Nate Begemancdd1eec2008-02-12 22:51:28 +0000874 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000875 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
876 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000877 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000878
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000879 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000880 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
881 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000882 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000883
884 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000885 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000886 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000887
Owen Andersond6662ad2009-08-10 20:46:15 +0000888 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000889 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000890 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000891 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000892 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000893 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000894 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000895 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000896 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000897 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000898 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000899
Owen Anderson825b72b2009-08-11 20:47:22 +0000900 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000901
Evan Cheng2c3ae372006-04-12 21:21:57 +0000902 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000903 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
904 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
905 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
906 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000907
Owen Anderson825b72b2009-08-11 20:47:22 +0000908 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
909 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000910 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000911
Nate Begeman14d12ca2008-02-11 04:19:36 +0000912 if (Subtarget->hasSSE41()) {
Dale Johannesen54feef22010-05-27 20:12:41 +0000913 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
914 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
915 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
916 setOperationAction(ISD::FRINT, MVT::f32, Legal);
917 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
918 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
919 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
920 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
921 setOperationAction(ISD::FRINT, MVT::f64, Legal);
922 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
923
Nate Begeman14d12ca2008-02-11 04:19:36 +0000924 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000925 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000926
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000927 // Can turn SHL into an integer multiply.
928 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Nate Begeman51409212010-07-28 00:21:48 +0000929 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000930
Nate Begeman14d12ca2008-02-11 04:19:36 +0000931 // i8 and i16 vectors are custom , because the source register and source
932 // source memory operand types are not the same width. f32 vectors are
933 // custom since the immediate controlling the insert encodes additional
934 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000935 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
936 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
937 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
938 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000939
Owen Anderson825b72b2009-08-11 20:47:22 +0000940 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
941 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
942 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
943 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000944
945 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000946 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
947 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000948 }
949 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000950
Chris Lattnera34b3cf2010-12-19 20:03:11 +0000951 if (Subtarget->hasSSE42())
Owen Anderson825b72b2009-08-11 20:47:22 +0000952 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000953
David Greene9b9838d2009-06-29 16:47:10 +0000954 if (!UseSoftFloat && Subtarget->hasAVX()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000955 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
956 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
957 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
958 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
Bruno Cardoso Lopes405f11b2010-08-10 01:43:16 +0000959 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000960
Owen Anderson825b72b2009-08-11 20:47:22 +0000961 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
962 setOperationAction(ISD::LOAD, MVT::v8i32, Legal);
963 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
964 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +0000965
Owen Anderson825b72b2009-08-11 20:47:22 +0000966 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
967 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
968 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
969 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
970 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
971 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000972
Owen Anderson825b72b2009-08-11 20:47:22 +0000973 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
974 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
975 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
976 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
977 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
978 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000979
David Greene54d8eba2011-01-27 22:38:56 +0000980 // Custom lower build_vector, vector_shuffle, scalar_to_vector,
981 // insert_vector_elt extract_subvector and extract_vector_elt for
982 // 256-bit types.
983 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
984 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE;
985 ++i) {
986 MVT::SimpleValueType VT = (MVT::SimpleValueType)i;
987 // Do not attempt to custom lower non-256-bit vectors
988 if (!isPowerOf2_32(MVT(VT).getVectorNumElements())
989 || (MVT(VT).getSizeInBits() < 256))
David Greene9b9838d2009-06-29 16:47:10 +0000990 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000991 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
992 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
David Greene54d8eba2011-01-27 22:38:56 +0000993 setOperationAction(ISD::INSERT_VECTOR_ELT, VT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000994 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
David Greene54d8eba2011-01-27 22:38:56 +0000995 setOperationAction(ISD::SCALAR_TO_VECTOR, VT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000996 }
David Greene54d8eba2011-01-27 22:38:56 +0000997 // Custom-lower insert_subvector and extract_subvector based on
998 // the result type.
999 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1000 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE;
1001 ++i) {
1002 MVT::SimpleValueType VT = (MVT::SimpleValueType)i;
1003 // Do not attempt to custom lower non-256-bit vectors
1004 if (!isPowerOf2_32(MVT(VT).getVectorNumElements()))
David Greene9b9838d2009-06-29 16:47:10 +00001005 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001006
1007 if (MVT(VT).getSizeInBits() == 128) {
1008 setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001009 }
David Greene54d8eba2011-01-27 22:38:56 +00001010 else if (MVT(VT).getSizeInBits() == 256) {
1011 setOperationAction(ISD::INSERT_SUBVECTOR, VT, Custom);
1012 }
David Greene9b9838d2009-06-29 16:47:10 +00001013 }
1014
David Greene54d8eba2011-01-27 22:38:56 +00001015 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1016 // Don't promote loads because we need them for VPERM vector index versions.
1017
1018 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1019 VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE;
1020 VT++) {
1021 if (!isPowerOf2_32(MVT((MVT::SimpleValueType)VT).getVectorNumElements())
1022 || (MVT((MVT::SimpleValueType)VT).getSizeInBits() < 256))
1023 continue;
1024 setOperationAction(ISD::AND, (MVT::SimpleValueType)VT, Promote);
1025 AddPromotedToType (ISD::AND, (MVT::SimpleValueType)VT, MVT::v4i64);
1026 setOperationAction(ISD::OR, (MVT::SimpleValueType)VT, Promote);
1027 AddPromotedToType (ISD::OR, (MVT::SimpleValueType)VT, MVT::v4i64);
1028 setOperationAction(ISD::XOR, (MVT::SimpleValueType)VT, Promote);
1029 AddPromotedToType (ISD::XOR, (MVT::SimpleValueType)VT, MVT::v4i64);
1030 //setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Promote);
1031 //AddPromotedToType (ISD::LOAD, (MVT::SimpleValueType)VT, MVT::v4i64);
1032 setOperationAction(ISD::SELECT, (MVT::SimpleValueType)VT, Promote);
1033 AddPromotedToType (ISD::SELECT, (MVT::SimpleValueType)VT, MVT::v4i64);
1034 }
David Greene9b9838d2009-06-29 16:47:10 +00001035 }
1036
Evan Cheng6be2c582006-04-05 23:38:46 +00001037 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001038 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001039
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001040
Eli Friedman962f5492010-06-02 19:35:46 +00001041 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1042 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001043 //
Eli Friedman962f5492010-06-02 19:35:46 +00001044 // FIXME: We really should do custom legalization for addition and
1045 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1046 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001047 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1048 // Add/Sub/Mul with overflow operations are custom lowered.
1049 MVT VT = IntVTs[i];
1050 setOperationAction(ISD::SADDO, VT, Custom);
1051 setOperationAction(ISD::UADDO, VT, Custom);
1052 setOperationAction(ISD::SSUBO, VT, Custom);
1053 setOperationAction(ISD::USUBO, VT, Custom);
1054 setOperationAction(ISD::SMULO, VT, Custom);
1055 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001056 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001057
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001058 // There are no 8-bit 3-address imul/mul instructions
1059 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1060 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001061
Evan Chengd54f2d52009-03-31 19:38:51 +00001062 if (!Subtarget->is64Bit()) {
1063 // These libcalls are not available in 32-bit.
1064 setLibcallName(RTLIB::SHL_I128, 0);
1065 setLibcallName(RTLIB::SRL_I128, 0);
1066 setLibcallName(RTLIB::SRA_I128, 0);
1067 }
1068
Evan Cheng206ee9d2006-07-07 08:33:52 +00001069 // We have target-specific dag combine patterns for the following nodes:
1070 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001071 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +00001072 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +00001073 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001074 setTargetDAGCombine(ISD::SHL);
1075 setTargetDAGCombine(ISD::SRA);
1076 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001077 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001078 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001079 setTargetDAGCombine(ISD::ADD);
1080 setTargetDAGCombine(ISD::SUB);
Chris Lattner149a4e52008-02-22 02:09:43 +00001081 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001082 setTargetDAGCombine(ISD::ZERO_EXTEND);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001083 if (Subtarget->is64Bit())
1084 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001085
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001086 computeRegisterProperties();
1087
Evan Cheng05219282011-01-06 06:52:41 +00001088 // On Darwin, -Os means optimize for size without hurting performance,
1089 // do not reduce the limit.
Dan Gohman87060f52008-06-30 21:00:56 +00001090 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001091 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
Evan Cheng255f20f2010-04-01 06:04:33 +00001092 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001093 maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1094 maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1095 maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Evan Chengfb8075d2008-02-28 00:43:03 +00001096 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +00001097 benefitFromCodePlacementOpt = true;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001098}
1099
Scott Michel5b8f82e2008-03-10 15:42:14 +00001100
Owen Anderson825b72b2009-08-11 20:47:22 +00001101MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1102 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +00001103}
1104
1105
Evan Cheng29286502008-01-23 23:17:41 +00001106/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1107/// the desired ByVal argument alignment.
1108static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
1109 if (MaxAlign == 16)
1110 return;
1111 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1112 if (VTy->getBitWidth() == 128)
1113 MaxAlign = 16;
Evan Cheng29286502008-01-23 23:17:41 +00001114 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1115 unsigned EltAlign = 0;
1116 getMaxByValAlign(ATy->getElementType(), EltAlign);
1117 if (EltAlign > MaxAlign)
1118 MaxAlign = EltAlign;
1119 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
1120 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1121 unsigned EltAlign = 0;
1122 getMaxByValAlign(STy->getElementType(i), EltAlign);
1123 if (EltAlign > MaxAlign)
1124 MaxAlign = EltAlign;
1125 if (MaxAlign == 16)
1126 break;
1127 }
1128 }
1129 return;
1130}
1131
1132/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1133/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001134/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1135/// are at 4-byte boundaries.
Evan Cheng29286502008-01-23 23:17:41 +00001136unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001137 if (Subtarget->is64Bit()) {
1138 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001139 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001140 if (TyAlign > 8)
1141 return TyAlign;
1142 return 8;
1143 }
1144
Evan Cheng29286502008-01-23 23:17:41 +00001145 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001146 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001147 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001148 return Align;
1149}
Chris Lattner2b02a442007-02-25 08:29:00 +00001150
Evan Chengf0df0312008-05-15 08:39:06 +00001151/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001152/// and store operations as a result of memset, memcpy, and memmove
1153/// lowering. If DstAlign is zero that means it's safe to destination
1154/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1155/// means there isn't a need to check it against alignment requirement,
1156/// probably because the source does not need to be loaded. If
1157/// 'NonScalarIntSafe' is true, that means it's safe to return a
1158/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1159/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1160/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001161/// It returns EVT::Other if the type should be determined using generic
1162/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001163EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001164X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1165 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001166 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001167 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001168 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001169 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1170 // linux. This is because the stack realignment code can't handle certain
1171 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001172 const Function *F = MF.getFunction();
Evan Chenga5e13622011-01-07 19:35:30 +00001173 if (NonScalarIntSafe &&
1174 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001175 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001176 (Subtarget->isUnalignedMemAccessFast() ||
1177 ((DstAlign == 0 || DstAlign >= 16) &&
1178 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001179 Subtarget->getStackAlignment() >= 16) {
1180 if (Subtarget->hasSSE2())
1181 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001182 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001183 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001184 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001185 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001186 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001187 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001188 // Do not use f64 to lower memcpy if source is string constant. It's
1189 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001190 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001191 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001192 }
Evan Chengf0df0312008-05-15 08:39:06 +00001193 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001194 return MVT::i64;
1195 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001196}
1197
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001198/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1199/// current function. The returned value is a member of the
1200/// MachineJumpTableInfo::JTEntryKind enum.
1201unsigned X86TargetLowering::getJumpTableEncoding() const {
1202 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1203 // symbol.
1204 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1205 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001206 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001207
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001208 // Otherwise, use the normal jump table encoding heuristics.
1209 return TargetLowering::getJumpTableEncoding();
1210}
1211
Chris Lattnerc64daab2010-01-26 05:02:42 +00001212const MCExpr *
1213X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1214 const MachineBasicBlock *MBB,
1215 unsigned uid,MCContext &Ctx) const{
1216 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1217 Subtarget->isPICStyleGOT());
1218 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1219 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001220 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1221 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001222}
1223
Evan Chengcc415862007-11-09 01:32:10 +00001224/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1225/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001226SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001227 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001228 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001229 // This doesn't have DebugLoc associated with it, but is not really the
1230 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001231 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001232 return Table;
1233}
1234
Chris Lattner589c6f62010-01-26 06:28:43 +00001235/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1236/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1237/// MCExpr.
1238const MCExpr *X86TargetLowering::
1239getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1240 MCContext &Ctx) const {
1241 // X86-64 uses RIP relative addressing based on the jump table label.
1242 if (Subtarget->isPICStyleRIPRel())
1243 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1244
1245 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001246 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001247}
1248
Bill Wendlingb4202b82009-07-01 18:50:55 +00001249/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling20c568f2009-06-30 22:38:32 +00001250unsigned X86TargetLowering::getFunctionAlignment(const Function *F) const {
Dan Gohman25103a22009-08-18 00:20:06 +00001251 return F->hasFnAttr(Attribute::OptimizeForSize) ? 0 : 4;
Bill Wendling20c568f2009-06-30 22:38:32 +00001252}
1253
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001254// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001255std::pair<const TargetRegisterClass*, uint8_t>
1256X86TargetLowering::findRepresentativeClass(EVT VT) const{
1257 const TargetRegisterClass *RRC = 0;
1258 uint8_t Cost = 1;
1259 switch (VT.getSimpleVT().SimpleTy) {
1260 default:
1261 return TargetLowering::findRepresentativeClass(VT);
1262 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1263 RRC = (Subtarget->is64Bit()
1264 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1265 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001266 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001267 RRC = X86::VR64RegisterClass;
1268 break;
1269 case MVT::f32: case MVT::f64:
1270 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1271 case MVT::v4f32: case MVT::v2f64:
1272 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1273 case MVT::v4f64:
1274 RRC = X86::VR128RegisterClass;
1275 break;
1276 }
1277 return std::make_pair(RRC, Cost);
1278}
1279
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001280// FIXME: Why this routine is here? Move to RegInfo!
Evan Cheng70017e42010-07-24 00:39:05 +00001281unsigned
1282X86TargetLowering::getRegPressureLimit(const TargetRegisterClass *RC,
1283 MachineFunction &MF) const {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001284 const TargetFrameLowering *TFI = MF.getTarget().getFrameLowering();
Anton Korobeynikovd0c38172010-11-18 21:19:35 +00001285
1286 unsigned FPDiff = TFI->hasFP(MF) ? 1 : 0;
Evan Cheng70017e42010-07-24 00:39:05 +00001287 switch (RC->getID()) {
1288 default:
1289 return 0;
1290 case X86::GR32RegClassID:
1291 return 4 - FPDiff;
1292 case X86::GR64RegClassID:
1293 return 8 - FPDiff;
1294 case X86::VR128RegClassID:
1295 return Subtarget->is64Bit() ? 10 : 4;
1296 case X86::VR64RegClassID:
1297 return 4;
1298 }
1299}
1300
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001301bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1302 unsigned &Offset) const {
1303 if (!Subtarget->isTargetLinux())
1304 return false;
1305
1306 if (Subtarget->is64Bit()) {
1307 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1308 Offset = 0x28;
1309 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1310 AddressSpace = 256;
1311 else
1312 AddressSpace = 257;
1313 } else {
1314 // %gs:0x14 on i386
1315 Offset = 0x14;
1316 AddressSpace = 256;
1317 }
1318 return true;
1319}
1320
1321
Chris Lattner2b02a442007-02-25 08:29:00 +00001322//===----------------------------------------------------------------------===//
1323// Return Value Calling Convention Implementation
1324//===----------------------------------------------------------------------===//
1325
Chris Lattner59ed56b2007-02-28 04:55:35 +00001326#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001327
Michael J. Spencerec38de22010-10-10 22:04:20 +00001328bool
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001329X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001330 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001331 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001332 SmallVector<CCValAssign, 16> RVLocs;
1333 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001334 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001335 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001336}
1337
Dan Gohman98ca4f22009-08-05 01:29:28 +00001338SDValue
1339X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001340 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001341 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001342 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001343 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001344 MachineFunction &MF = DAG.getMachineFunction();
1345 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001346
Chris Lattner9774c912007-02-27 05:28:59 +00001347 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001348 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1349 RVLocs, *DAG.getContext());
1350 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001351
Evan Chengdcea1632010-02-04 02:40:39 +00001352 // Add the regs to the liveout set for the function.
1353 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1354 for (unsigned i = 0; i != RVLocs.size(); ++i)
1355 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1356 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001357
Dan Gohman475871a2008-07-27 21:46:04 +00001358 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001359
Dan Gohman475871a2008-07-27 21:46:04 +00001360 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001361 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1362 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001363 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1364 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001365
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001366 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001367 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1368 CCValAssign &VA = RVLocs[i];
1369 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001370 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001371 EVT ValVT = ValToCopy.getValueType();
1372
Dale Johannesenc4510512010-09-24 19:05:48 +00001373 // If this is x86-64, and we disabled SSE, we can't return FP values,
1374 // or SSE or MMX vectors.
1375 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1376 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001377 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001378 report_fatal_error("SSE register return with SSE disabled");
1379 }
1380 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1381 // llvm-gcc has never done it right and no one has noticed, so this
1382 // should be OK for now.
1383 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001384 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001385 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001386
Chris Lattner447ff682008-03-11 03:23:40 +00001387 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1388 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001389 if (VA.getLocReg() == X86::ST0 ||
1390 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001391 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1392 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001393 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001394 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001395 RetOps.push_back(ValToCopy);
1396 // Don't emit a copytoreg.
1397 continue;
1398 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001399
Evan Cheng242b38b2009-02-23 09:03:22 +00001400 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1401 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001402 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001403 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001404 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001405 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001406 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1407 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001408 // If we don't have SSE2 available, convert to v4f32 so the generated
1409 // register is legal.
1410 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001411 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001412 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001413 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001414 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001415
Dale Johannesendd64c412009-02-04 00:33:20 +00001416 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001417 Flag = Chain.getValue(1);
1418 }
Dan Gohman61a92132008-04-21 23:59:07 +00001419
1420 // The x86-64 ABI for returning structs by value requires that we copy
1421 // the sret argument into %rax for the return. We saved the argument into
1422 // a virtual register in the entry block, so now we copy the value out
1423 // and into %rax.
1424 if (Subtarget->is64Bit() &&
1425 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1426 MachineFunction &MF = DAG.getMachineFunction();
1427 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1428 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001429 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001430 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001431 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001432
Dale Johannesendd64c412009-02-04 00:33:20 +00001433 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001434 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001435
1436 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001437 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001438 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001439
Chris Lattner447ff682008-03-11 03:23:40 +00001440 RetOps[0] = Chain; // Update chain.
1441
1442 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001443 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001444 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001445
1446 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001447 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001448}
1449
Evan Cheng3d2125c2010-11-30 23:55:39 +00001450bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1451 if (N->getNumValues() != 1)
1452 return false;
1453 if (!N->hasNUsesOfValue(1, 0))
1454 return false;
1455
1456 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001457 if (Copy->getOpcode() != ISD::CopyToReg &&
1458 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001459 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001460
1461 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001462 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001463 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001464 if (UI->getOpcode() != X86ISD::RET_FLAG)
1465 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001466 HasRet = true;
1467 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001468
Evan Cheng1bf891a2010-12-01 22:59:46 +00001469 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001470}
1471
Dan Gohman98ca4f22009-08-05 01:29:28 +00001472/// LowerCallResult - Lower the result values of a call into the
1473/// appropriate copies out of appropriate physical registers.
1474///
1475SDValue
1476X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001477 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001478 const SmallVectorImpl<ISD::InputArg> &Ins,
1479 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001480 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001481
Chris Lattnere32bbf62007-02-28 07:09:55 +00001482 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001483 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001484 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001485 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +00001486 RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001487 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001488
Chris Lattner3085e152007-02-25 08:59:22 +00001489 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001490 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001491 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001492 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001493
Torok Edwin3f142c32009-02-01 18:15:56 +00001494 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001495 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001496 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001497 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001498 }
1499
Evan Cheng79fb3b42009-02-20 20:43:02 +00001500 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001501
1502 // If this is a call to a function that returns an fp value on the floating
1503 // point stack, we must guarantee the the value is popped from the stack, so
1504 // a CopyFromReg is not good enough - the copy instruction may be eliminated
1505 // if the return value is not used. We use the FpGET_ST0 instructions
1506 // instead.
1507 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1508 // If we prefer to use the value in xmm registers, copy it out as f80 and
1509 // use a truncate to move it from fp stack reg to xmm reg.
1510 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1511 bool isST0 = VA.getLocReg() == X86::ST0;
1512 unsigned Opc = 0;
1513 if (CopyVT == MVT::f32) Opc = isST0 ? X86::FpGET_ST0_32:X86::FpGET_ST1_32;
1514 if (CopyVT == MVT::f64) Opc = isST0 ? X86::FpGET_ST0_64:X86::FpGET_ST1_64;
1515 if (CopyVT == MVT::f80) Opc = isST0 ? X86::FpGET_ST0_80:X86::FpGET_ST1_80;
1516 SDValue Ops[] = { Chain, InFlag };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001517 Chain = SDValue(DAG.getMachineNode(Opc, dl, CopyVT, MVT::Other, MVT::Glue,
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001518 Ops, 2), 1);
1519 Val = Chain.getValue(0);
1520
1521 // Round the f80 to the right size, which also moves it to the appropriate
1522 // xmm register.
1523 if (CopyVT != VA.getValVT())
1524 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1525 // This truncation won't change the value.
1526 DAG.getIntPtrConstant(1));
1527 } else if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
Evan Cheng242b38b2009-02-23 09:03:22 +00001528 // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64.
1529 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1530 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001531 MVT::v2i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001532 Val = Chain.getValue(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001533 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1534 Val, DAG.getConstant(0, MVT::i64));
Evan Cheng242b38b2009-02-23 09:03:22 +00001535 } else {
1536 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001537 MVT::i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001538 Val = Chain.getValue(0);
1539 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001540 Val = DAG.getNode(ISD::BITCAST, dl, CopyVT, Val);
Evan Cheng79fb3b42009-02-20 20:43:02 +00001541 } else {
1542 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1543 CopyVT, InFlag).getValue(1);
1544 Val = Chain.getValue(0);
1545 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001546 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001547 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001548 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001549
Dan Gohman98ca4f22009-08-05 01:29:28 +00001550 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001551}
1552
1553
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001554//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001555// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001556//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001557// StdCall calling convention seems to be standard for many Windows' API
1558// routines and around. It differs from C calling convention just a little:
1559// callee should clean up the stack, not caller. Symbols should be also
1560// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001561// For info on fast calling convention see Fast Calling Convention (tail call)
1562// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001563
Dan Gohman98ca4f22009-08-05 01:29:28 +00001564/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001565/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001566static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1567 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001568 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001569
Dan Gohman98ca4f22009-08-05 01:29:28 +00001570 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001571}
1572
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001573/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001574/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001575static bool
1576ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1577 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001578 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001579
Dan Gohman98ca4f22009-08-05 01:29:28 +00001580 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001581}
1582
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001583/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1584/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001585/// the specific parameter attribute. The copy will be passed as a byval
1586/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001587static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001588CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001589 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1590 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001591 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001592
Dale Johannesendd64c412009-02-04 00:33:20 +00001593 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Mon P Wang20adc9d2010-04-04 03:10:48 +00001594 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001595 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001596}
1597
Chris Lattner29689432010-03-11 00:22:57 +00001598/// IsTailCallConvention - Return true if the calling convention is one that
1599/// supports tail call optimization.
1600static bool IsTailCallConvention(CallingConv::ID CC) {
1601 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1602}
1603
Evan Cheng0c439eb2010-01-27 00:07:07 +00001604/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1605/// a tailcall target by changing its ABI.
1606static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001607 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001608}
1609
Dan Gohman98ca4f22009-08-05 01:29:28 +00001610SDValue
1611X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001612 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001613 const SmallVectorImpl<ISD::InputArg> &Ins,
1614 DebugLoc dl, SelectionDAG &DAG,
1615 const CCValAssign &VA,
1616 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001617 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001618 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001619 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001620 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001621 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001622 EVT ValVT;
1623
1624 // If value is passed by pointer we have address passed instead of the value
1625 // itself.
1626 if (VA.getLocInfo() == CCValAssign::Indirect)
1627 ValVT = VA.getLocVT();
1628 else
1629 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001630
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001631 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001632 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001633 // In case of tail call optimization mark all arguments mutable. Since they
1634 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001635 if (Flags.isByVal()) {
1636 int FI = MFI->CreateFixedObject(Flags.getByValSize(),
Evan Chenged2ae132010-07-03 00:40:23 +00001637 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001638 return DAG.getFrameIndex(FI, getPointerTy());
1639 } else {
1640 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001641 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001642 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1643 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001644 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001645 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001646 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001647}
1648
Dan Gohman475871a2008-07-27 21:46:04 +00001649SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001650X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001651 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001652 bool isVarArg,
1653 const SmallVectorImpl<ISD::InputArg> &Ins,
1654 DebugLoc dl,
1655 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001656 SmallVectorImpl<SDValue> &InVals)
1657 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001658 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001659 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001660
Gordon Henriksen86737662008-01-05 16:56:59 +00001661 const Function* Fn = MF.getFunction();
1662 if (Fn->hasExternalLinkage() &&
1663 Subtarget->isTargetCygMing() &&
1664 Fn->getName() == "main")
1665 FuncInfo->setForceFramePointer(true);
1666
Evan Cheng1bc78042006-04-26 01:20:17 +00001667 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001668 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001669 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001670
Chris Lattner29689432010-03-11 00:22:57 +00001671 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1672 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001673
Chris Lattner638402b2007-02-28 07:00:42 +00001674 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001675 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001676 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1677 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001678
1679 // Allocate shadow area for Win64
1680 if (IsWin64) {
1681 CCInfo.AllocateStack(32, 8);
1682 }
1683
Duncan Sands45907662010-10-31 13:21:44 +00001684 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001685
Chris Lattnerf39f7712007-02-28 05:46:49 +00001686 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001687 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001688 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1689 CCValAssign &VA = ArgLocs[i];
1690 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1691 // places.
1692 assert(VA.getValNo() != LastVal &&
1693 "Don't support value assigned to multiple locs yet");
1694 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001695
Chris Lattnerf39f7712007-02-28 05:46:49 +00001696 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001697 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001698 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001699 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001700 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001701 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001702 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001703 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001704 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001705 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001706 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001707 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1708 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001709 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001710 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001711 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001712 RC = X86::VR64RegisterClass;
1713 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001714 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001715
Devang Patele9a7ea62011-01-31 21:38:14 +00001716 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC, dl);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001717 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001718
Chris Lattnerf39f7712007-02-28 05:46:49 +00001719 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1720 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1721 // right size.
1722 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001723 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001724 DAG.getValueType(VA.getValVT()));
1725 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001726 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001727 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001728 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001729 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001730
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001731 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001732 // Handle MMX values passed in XMM regs.
1733 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001734 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1735 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001736 } else
1737 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001738 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001739 } else {
1740 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001741 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001742 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001743
1744 // If value is passed via pointer - do a load.
1745 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001746 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1747 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001748
Dan Gohman98ca4f22009-08-05 01:29:28 +00001749 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001750 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001751
Dan Gohman61a92132008-04-21 23:59:07 +00001752 // The x86-64 ABI for returning structs by value requires that we copy
1753 // the sret argument into %rax for the return. Save the argument into
1754 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001755 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001756 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1757 unsigned Reg = FuncInfo->getSRetReturnReg();
1758 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001759 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001760 FuncInfo->setSRetReturnReg(Reg);
1761 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001762 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001763 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001764 }
1765
Chris Lattnerf39f7712007-02-28 05:46:49 +00001766 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001767 // Align stack specially for tail calls.
1768 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001769 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001770
Evan Cheng1bc78042006-04-26 01:20:17 +00001771 // If the function takes variable number of arguments, make a frame index for
1772 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001773 if (isVarArg) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001774 if (!IsWin64 && (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1775 CallConv != CallingConv::X86_ThisCall))) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001776 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001777 }
1778 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001779 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1780
1781 // FIXME: We should really autogenerate these arrays
1782 static const unsigned GPR64ArgRegsWin64[] = {
1783 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001784 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001785 static const unsigned GPR64ArgRegs64Bit[] = {
1786 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1787 };
1788 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001789 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1790 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1791 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001792 const unsigned *GPR64ArgRegs;
1793 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001794
1795 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001796 // The XMM registers which might contain var arg parameters are shadowed
1797 // in their paired GPR. So we only need to save the GPR to their home
1798 // slots.
1799 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001800 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001801 } else {
1802 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1803 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001804
1805 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001806 }
1807 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1808 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001809
Devang Patel578efa92009-06-05 21:57:13 +00001810 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001811 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001812 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001813 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001814 "SSE register cannot be used when SSE is disabled!");
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001815 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001816 // Kernel mode asks for SSE to be disabled, so don't push them
1817 // on the stack.
1818 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001819
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001820 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001821 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001822 // Get to the caller-allocated home save location. Add 8 to account
1823 // for the return address.
1824 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001825 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001826 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001827 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
1828 } else {
1829 // For X86-64, if there are vararg parameters that are passed via
1830 // registers, then we must store them to their spots on the stack so they
1831 // may be loaded by deferencing the result of va_next.
1832 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1833 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1834 FuncInfo->setRegSaveFrameIndex(
1835 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001836 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001837 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001838
Gordon Henriksen86737662008-01-05 16:56:59 +00001839 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001840 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001841 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1842 getPointerTy());
1843 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001844 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001845 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1846 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001847 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Devang Patele9a7ea62011-01-31 21:38:14 +00001848 X86::GR64RegisterClass, dl);
Owen Anderson825b72b2009-08-11 20:47:22 +00001849 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001850 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001851 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001852 MachinePointerInfo::getFixedStack(
1853 FuncInfo->getRegSaveFrameIndex(), Offset),
1854 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001855 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001856 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001857 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001858
Dan Gohmanface41a2009-08-16 21:24:25 +00001859 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1860 // Now store the XMM (fp + vector) parameter registers.
1861 SmallVector<SDValue, 11> SaveXMMOps;
1862 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001863
Devang Patele9a7ea62011-01-31 21:38:14 +00001864 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass, dl);
Dan Gohmanface41a2009-08-16 21:24:25 +00001865 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1866 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001867
Dan Gohman1e93df62010-04-17 14:41:14 +00001868 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1869 FuncInfo->getRegSaveFrameIndex()));
1870 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1871 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001872
Dan Gohmanface41a2009-08-16 21:24:25 +00001873 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001874 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Devang Patele9a7ea62011-01-31 21:38:14 +00001875 X86::VR128RegisterClass, dl);
Dan Gohmanface41a2009-08-16 21:24:25 +00001876 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1877 SaveXMMOps.push_back(Val);
1878 }
1879 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1880 MVT::Other,
1881 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001882 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001883
1884 if (!MemOps.empty())
1885 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1886 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001887 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001888 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001889
Gordon Henriksen86737662008-01-05 16:56:59 +00001890 // Some CCs need callee pop.
Dan Gohman4d3d6e12010-05-27 18:43:40 +00001891 if (Subtarget->IsCalleePop(isVarArg, CallConv)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001892 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001893 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001894 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001895 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001896 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001897 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001898 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001899
Gordon Henriksen86737662008-01-05 16:56:59 +00001900 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001901 // RegSaveFrameIndex is X86-64 only.
1902 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001903 if (CallConv == CallingConv::X86_FastCall ||
1904 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001905 // fastcc functions can't have varargs.
1906 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001907 }
Evan Cheng25caf632006-05-23 21:06:34 +00001908
Dan Gohman98ca4f22009-08-05 01:29:28 +00001909 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001910}
1911
Dan Gohman475871a2008-07-27 21:46:04 +00001912SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001913X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1914 SDValue StackPtr, SDValue Arg,
1915 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001916 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001917 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001918 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001919 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001920 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001921 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001922 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001923
1924 return DAG.getStore(Chain, dl, Arg, PtrOff,
1925 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001926 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001927}
1928
Bill Wendling64e87322009-01-16 19:25:27 +00001929/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001930/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001931SDValue
1932X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001933 SDValue &OutRetAddr, SDValue Chain,
1934 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001935 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001936 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001937 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001938 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001939
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001940 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001941 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1942 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001943 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001944}
1945
1946/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1947/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001948static SDValue
1949EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001950 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001951 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001952 // Store the return address to the appropriate stack slot.
1953 if (!FPDiff) return Chain;
1954 // Calculate the new stack slot for the return address.
1955 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001956 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001957 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001958 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001959 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001960 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001961 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001962 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001963 return Chain;
1964}
1965
Dan Gohman98ca4f22009-08-05 01:29:28 +00001966SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001967X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001968 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001969 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001970 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001971 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001972 const SmallVectorImpl<ISD::InputArg> &Ins,
1973 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001974 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001975 MachineFunction &MF = DAG.getMachineFunction();
1976 bool Is64Bit = Subtarget->is64Bit();
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00001977 bool IsWin64 = Subtarget->isTargetWin64();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001978 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001979 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001980
Evan Cheng5f941932010-02-05 02:21:12 +00001981 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001982 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001983 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1984 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001985 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001986
1987 // Sibcalls are automatically detected tailcalls which do not require
1988 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001989 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001990 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001991
1992 if (isTailCall)
1993 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001994 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001995
Chris Lattner29689432010-03-11 00:22:57 +00001996 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1997 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001998
Chris Lattner638402b2007-02-28 07:00:42 +00001999 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002000 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002001 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
2002 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002003
2004 // Allocate shadow area for Win64
2005 if (IsWin64) {
2006 CCInfo.AllocateStack(32, 8);
2007 }
2008
Duncan Sands45907662010-10-31 13:21:44 +00002009 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002010
Chris Lattner423c5f42007-02-28 05:31:48 +00002011 // Get a count of how many bytes are to be pushed on the stack.
2012 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002013 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002014 // This is a sibcall. The memory operands are available in caller's
2015 // own caller's stack.
2016 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00002017 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002018 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002019
Gordon Henriksen86737662008-01-05 16:56:59 +00002020 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002021 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002022 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00002023 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00002024 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
2025 FPDiff = NumBytesCallerPushed - NumBytes;
2026
2027 // Set the delta of movement of the returnaddr stackslot.
2028 // But only set if delta is greater than previous delta.
2029 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2030 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2031 }
2032
Evan Chengf22f9b32010-02-06 03:28:46 +00002033 if (!IsSibcall)
2034 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002035
Dan Gohman475871a2008-07-27 21:46:04 +00002036 SDValue RetAddrFrIdx;
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002037 // Load return adress for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002038 if (isTailCall && FPDiff)
2039 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2040 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002041
Dan Gohman475871a2008-07-27 21:46:04 +00002042 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2043 SmallVector<SDValue, 8> MemOpChains;
2044 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002045
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002046 // Walk the register/memloc assignments, inserting copies/loads. In the case
2047 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00002048 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2049 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002050 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002051 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002052 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002053 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002054
Chris Lattner423c5f42007-02-28 05:31:48 +00002055 // Promote the value if needed.
2056 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002057 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002058 case CCValAssign::Full: break;
2059 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002060 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002061 break;
2062 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002063 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002064 break;
2065 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002066 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2067 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002068 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002069 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2070 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002071 } else
2072 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2073 break;
2074 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002075 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002076 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002077 case CCValAssign::Indirect: {
2078 // Store the argument.
2079 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002080 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002081 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002082 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002083 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002084 Arg = SpillSlot;
2085 break;
2086 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002087 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002088
Chris Lattner423c5f42007-02-28 05:31:48 +00002089 if (VA.isRegLoc()) {
2090 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002091 if (isVarArg && IsWin64) {
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002092 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2093 // shadow reg if callee is a varargs function.
2094 unsigned ShadowReg = 0;
2095 switch (VA.getLocReg()) {
2096 case X86::XMM0: ShadowReg = X86::RCX; break;
2097 case X86::XMM1: ShadowReg = X86::RDX; break;
2098 case X86::XMM2: ShadowReg = X86::R8; break;
2099 case X86::XMM3: ShadowReg = X86::R9; break;
2100 }
2101 if (ShadowReg)
2102 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2103 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002104 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002105 assert(VA.isMemLoc());
2106 if (StackPtr.getNode() == 0)
2107 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2108 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2109 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002110 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002111 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002112
Evan Cheng32fe1032006-05-25 00:59:30 +00002113 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002114 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002115 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002116
Evan Cheng347d5f72006-04-28 21:29:37 +00002117 // Build a sequence of copy-to-reg nodes chained together with token chain
2118 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002119 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002120 // Tail call byval lowering might overwrite argument registers so in case of
2121 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002122 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002123 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002124 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002125 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002126 InFlag = Chain.getValue(1);
2127 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002128
Chris Lattner88e1fd52009-07-09 04:24:46 +00002129 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002130 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2131 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002132 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002133 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2134 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002135 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002136 InFlag);
2137 InFlag = Chain.getValue(1);
2138 } else {
2139 // If we are tail calling and generating PIC/GOT style code load the
2140 // address of the callee into ECX. The value in ecx is used as target of
2141 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2142 // for tail calls on PIC/GOT architectures. Normally we would just put the
2143 // address of GOT into ebx and then call target@PLT. But for tail calls
2144 // ebx would be restored (since ebx is callee saved) before jumping to the
2145 // target@PLT.
2146
2147 // Note: The actual moving to ECX is done further down.
2148 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2149 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2150 !G->getGlobal()->hasProtectedVisibility())
2151 Callee = LowerGlobalAddress(Callee, DAG);
2152 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002153 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002154 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002155 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002156
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002157 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002158 // From AMD64 ABI document:
2159 // For calls that may call functions that use varargs or stdargs
2160 // (prototype-less calls or calls to functions containing ellipsis (...) in
2161 // the declaration) %al is used as hidden argument to specify the number
2162 // of SSE registers used. The contents of %al do not need to match exactly
2163 // the number of registers, but must be an ubound on the number of SSE
2164 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002165
Gordon Henriksen86737662008-01-05 16:56:59 +00002166 // Count the number of XMM registers allocated.
2167 static const unsigned XMMArgRegs[] = {
2168 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2169 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2170 };
2171 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002172 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002173 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002174
Dale Johannesendd64c412009-02-04 00:33:20 +00002175 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002176 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002177 InFlag = Chain.getValue(1);
2178 }
2179
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002180
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002181 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002182 if (isTailCall) {
2183 // Force all the incoming stack arguments to be loaded from the stack
2184 // before any new outgoing arguments are stored to the stack, because the
2185 // outgoing stack slots may alias the incoming argument stack slots, and
2186 // the alias isn't otherwise explicit. This is slightly more conservative
2187 // than necessary, because it means that each store effectively depends
2188 // on every argument instead of just those arguments it would clobber.
2189 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2190
Dan Gohman475871a2008-07-27 21:46:04 +00002191 SmallVector<SDValue, 8> MemOpChains2;
2192 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002193 int FI = 0;
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002194 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002195 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002196 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002197 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2198 CCValAssign &VA = ArgLocs[i];
2199 if (VA.isRegLoc())
2200 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002201 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002202 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002203 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002204 // Create frame index.
2205 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002206 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002207 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002208 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002209
Duncan Sands276dcbd2008-03-21 09:14:45 +00002210 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002211 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002212 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002213 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002214 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002215 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002216 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002217
Dan Gohman98ca4f22009-08-05 01:29:28 +00002218 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2219 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002220 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002221 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002222 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002223 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002224 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002225 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002226 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002227 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002228 }
2229 }
2230
2231 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002232 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002233 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002234
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002235 // Copy arguments to their registers.
2236 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002237 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002238 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002239 InFlag = Chain.getValue(1);
2240 }
Dan Gohman475871a2008-07-27 21:46:04 +00002241 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002242
Gordon Henriksen86737662008-01-05 16:56:59 +00002243 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002244 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002245 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002246 }
2247
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002248 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2249 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2250 // In the 64-bit large code model, we have to make all calls
2251 // through a register, since the call instruction's 32-bit
2252 // pc-relative offset may not be large enough to hold the whole
2253 // address.
2254 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002255 // If the callee is a GlobalAddress node (quite common, every direct call
2256 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2257 // it.
2258
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002259 // We should use extra load for direct calls to dllimported functions in
2260 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002261 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002262 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002263 unsigned char OpFlags = 0;
Eric Christopherfd179292009-08-27 18:07:15 +00002264
Chris Lattner48a7d022009-07-09 05:02:21 +00002265 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2266 // external symbols most go through the PLT in PIC mode. If the symbol
2267 // has hidden or protected visibility, or if it is static or local, then
2268 // we don't need to use the PLT - we can directly call it.
2269 if (Subtarget->isTargetELF() &&
2270 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002271 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002272 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002273 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002274 (GV->isDeclaration() || GV->isWeakForLinker()) &&
2275 Subtarget->getDarwinVers() < 9) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002276 // PC-relative references to external symbols should go through $stub,
2277 // unless we're building with the leopard linker or later, which
2278 // automatically synthesizes these stubs.
2279 OpFlags = X86II::MO_DARWIN_STUB;
2280 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002281
Devang Patel0d881da2010-07-06 22:08:15 +00002282 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002283 G->getOffset(), OpFlags);
2284 }
Bill Wendling056292f2008-09-16 21:48:12 +00002285 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002286 unsigned char OpFlags = 0;
2287
Evan Cheng1bf891a2010-12-01 22:59:46 +00002288 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2289 // external symbols should go through the PLT.
2290 if (Subtarget->isTargetELF() &&
2291 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2292 OpFlags = X86II::MO_PLT;
2293 } else if (Subtarget->isPICStyleStubAny() &&
2294 Subtarget->getDarwinVers() < 9) {
2295 // PC-relative references to external symbols should go through $stub,
2296 // unless we're building with the leopard linker or later, which
2297 // automatically synthesizes these stubs.
2298 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002299 }
Eric Christopherfd179292009-08-27 18:07:15 +00002300
Chris Lattner48a7d022009-07-09 05:02:21 +00002301 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2302 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002303 }
2304
Chris Lattnerd96d0722007-02-25 06:40:16 +00002305 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002306 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002307 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002308
Evan Chengf22f9b32010-02-06 03:28:46 +00002309 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002310 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2311 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002312 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002313 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002314
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002315 Ops.push_back(Chain);
2316 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002317
Dan Gohman98ca4f22009-08-05 01:29:28 +00002318 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002319 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002320
Gordon Henriksen86737662008-01-05 16:56:59 +00002321 // Add argument registers to the end of the list so that they are known live
2322 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002323 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2324 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2325 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002326
Evan Cheng586ccac2008-03-18 23:36:35 +00002327 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002328 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002329 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2330
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002331 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002332 if (Is64Bit && isVarArg && !IsWin64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002333 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002334
Gabor Greifba36cb52008-08-28 21:40:38 +00002335 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002336 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002337
Dan Gohman98ca4f22009-08-05 01:29:28 +00002338 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002339 // We used to do:
2340 //// If this is the first return lowered for this function, add the regs
2341 //// to the liveout set for the function.
2342 // This isn't right, although it's probably harmless on x86; liveouts
2343 // should be computed from returns not tail calls. Consider a void
2344 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002345 return DAG.getNode(X86ISD::TC_RETURN, dl,
2346 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002347 }
2348
Dale Johannesenace16102009-02-03 19:33:06 +00002349 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002350 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002351
Chris Lattner2d297092006-05-23 18:50:38 +00002352 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002353 unsigned NumBytesForCalleeToPush;
Dan Gohman4d3d6e12010-05-27 18:43:40 +00002354 if (Subtarget->IsCalleePop(isVarArg, CallConv))
Gordon Henriksen86737662008-01-05 16:56:59 +00002355 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002356 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002357 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002358 // pops the hidden struct pointer, so we have to push it back.
2359 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002360 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002361 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002362 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002363
Gordon Henriksenae636f82008-01-03 16:47:34 +00002364 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002365 if (!IsSibcall) {
2366 Chain = DAG.getCALLSEQ_END(Chain,
2367 DAG.getIntPtrConstant(NumBytes, true),
2368 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2369 true),
2370 InFlag);
2371 InFlag = Chain.getValue(1);
2372 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002373
Chris Lattner3085e152007-02-25 08:59:22 +00002374 // Handle result values, copying them out of physregs into vregs that we
2375 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002376 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2377 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002378}
2379
Evan Cheng25ab6902006-09-08 06:48:29 +00002380
2381//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002382// Fast Calling Convention (tail call) implementation
2383//===----------------------------------------------------------------------===//
2384
2385// Like std call, callee cleans arguments, convention except that ECX is
2386// reserved for storing the tail called function address. Only 2 registers are
2387// free for argument passing (inreg). Tail call optimization is performed
2388// provided:
2389// * tailcallopt is enabled
2390// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002391// On X86_64 architecture with GOT-style position independent code only local
2392// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002393// To keep the stack aligned according to platform abi the function
2394// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2395// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002396// If a tail called function callee has more arguments than the caller the
2397// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002398// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002399// original REtADDR, but before the saved framepointer or the spilled registers
2400// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2401// stack layout:
2402// arg1
2403// arg2
2404// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002405// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002406// move area ]
2407// (possible EBP)
2408// ESI
2409// EDI
2410// local1 ..
2411
2412/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2413/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002414unsigned
2415X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2416 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002417 MachineFunction &MF = DAG.getMachineFunction();
2418 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002419 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002420 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002421 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002422 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002423 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002424 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2425 // Number smaller than 12 so just add the difference.
2426 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2427 } else {
2428 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002429 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002430 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002431 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002432 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002433}
2434
Evan Cheng5f941932010-02-05 02:21:12 +00002435/// MatchingStackOffset - Return true if the given stack call argument is
2436/// already available in the same position (relatively) of the caller's
2437/// incoming argument stack.
2438static
2439bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2440 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2441 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002442 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2443 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002444 if (Arg.getOpcode() == ISD::CopyFromReg) {
2445 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002446 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002447 return false;
2448 MachineInstr *Def = MRI->getVRegDef(VR);
2449 if (!Def)
2450 return false;
2451 if (!Flags.isByVal()) {
2452 if (!TII->isLoadFromStackSlot(Def, FI))
2453 return false;
2454 } else {
2455 unsigned Opcode = Def->getOpcode();
2456 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2457 Def->getOperand(1).isFI()) {
2458 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002459 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002460 } else
2461 return false;
2462 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002463 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2464 if (Flags.isByVal())
2465 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002466 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002467 // define @foo(%struct.X* %A) {
2468 // tail call @bar(%struct.X* byval %A)
2469 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002470 return false;
2471 SDValue Ptr = Ld->getBasePtr();
2472 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2473 if (!FINode)
2474 return false;
2475 FI = FINode->getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002476 } else
2477 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002478
Evan Cheng4cae1332010-03-05 08:38:04 +00002479 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002480 if (!MFI->isFixedObjectIndex(FI))
2481 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002482 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002483}
2484
Dan Gohman98ca4f22009-08-05 01:29:28 +00002485/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2486/// for tail call optimization. Targets which want to do tail call
2487/// optimization should implement this function.
2488bool
2489X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002490 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002491 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002492 bool isCalleeStructRet,
2493 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002494 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002495 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002496 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002497 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002498 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002499 CalleeCC != CallingConv::C)
2500 return false;
2501
Evan Cheng7096ae42010-01-29 06:45:59 +00002502 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002503 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002504 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002505 CallingConv::ID CallerCC = CallerF->getCallingConv();
2506 bool CCMatch = CallerCC == CalleeCC;
2507
Dan Gohman1797ed52010-02-08 20:27:50 +00002508 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002509 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002510 return true;
2511 return false;
2512 }
2513
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002514 // Look for obvious safe cases to perform tail call optimization that do not
2515 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002516
Evan Cheng2c12cb42010-03-26 16:26:03 +00002517 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2518 // emit a special epilogue.
2519 if (RegInfo->needsStackRealignment(MF))
2520 return false;
2521
Eric Christopher90eb4022010-07-22 00:26:08 +00002522 // Do not sibcall optimize vararg calls unless the call site is not passing
2523 // any arguments.
Evan Cheng3c262ee2010-03-26 02:13:13 +00002524 if (isVarArg && !Outs.empty())
Evan Cheng843bd692010-01-31 06:44:49 +00002525 return false;
2526
Evan Chenga375d472010-03-15 18:54:48 +00002527 // Also avoid sibcall optimization if either caller or callee uses struct
2528 // return semantics.
2529 if (isCalleeStructRet || isCallerStructRet)
2530 return false;
2531
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002532 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2533 // Therefore if it's not used by the call it is not safe to optimize this into
2534 // a sibcall.
2535 bool Unused = false;
2536 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2537 if (!Ins[i].Used) {
2538 Unused = true;
2539 break;
2540 }
2541 }
2542 if (Unused) {
2543 SmallVector<CCValAssign, 16> RVLocs;
2544 CCState CCInfo(CalleeCC, false, getTargetMachine(),
2545 RVLocs, *DAG.getContext());
2546 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002547 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002548 CCValAssign &VA = RVLocs[i];
2549 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2550 return false;
2551 }
2552 }
2553
Evan Cheng13617962010-04-30 01:12:32 +00002554 // If the calling conventions do not match, then we'd better make sure the
2555 // results are returned in the same way as what the caller expects.
2556 if (!CCMatch) {
2557 SmallVector<CCValAssign, 16> RVLocs1;
2558 CCState CCInfo1(CalleeCC, false, getTargetMachine(),
2559 RVLocs1, *DAG.getContext());
2560 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2561
2562 SmallVector<CCValAssign, 16> RVLocs2;
2563 CCState CCInfo2(CallerCC, false, getTargetMachine(),
2564 RVLocs2, *DAG.getContext());
2565 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2566
2567 if (RVLocs1.size() != RVLocs2.size())
2568 return false;
2569 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2570 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2571 return false;
2572 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2573 return false;
2574 if (RVLocs1[i].isRegLoc()) {
2575 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2576 return false;
2577 } else {
2578 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2579 return false;
2580 }
2581 }
2582 }
2583
Evan Chenga6bff982010-01-30 01:22:00 +00002584 // If the callee takes no arguments then go on to check the results of the
2585 // call.
2586 if (!Outs.empty()) {
2587 // Check if stack adjustment is needed. For now, do not do this if any
2588 // argument is passed on the stack.
2589 SmallVector<CCValAssign, 16> ArgLocs;
2590 CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(),
2591 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002592
2593 // Allocate shadow area for Win64
2594 if (Subtarget->isTargetWin64()) {
2595 CCInfo.AllocateStack(32, 8);
2596 }
2597
Duncan Sands45907662010-10-31 13:21:44 +00002598 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Evan Chengb2c92902010-02-02 02:22:50 +00002599 if (CCInfo.getNextStackOffset()) {
2600 MachineFunction &MF = DAG.getMachineFunction();
2601 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2602 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00002603
2604 // Check if the arguments are already laid out in the right way as
2605 // the caller's fixed stack objects.
2606 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002607 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2608 const X86InstrInfo *TII =
2609 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002610 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2611 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002612 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002613 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002614 if (VA.getLocInfo() == CCValAssign::Indirect)
2615 return false;
2616 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002617 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2618 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002619 return false;
2620 }
2621 }
2622 }
Evan Cheng9c044672010-05-29 01:35:22 +00002623
2624 // If the tailcall address may be in a register, then make sure it's
2625 // possible to register allocate for it. In 32-bit, the call address can
2626 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002627 // callee-saved registers are restored. These happen to be the same
2628 // registers used to pass 'inreg' arguments so watch out for those.
2629 if (!Subtarget->is64Bit() &&
2630 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002631 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002632 unsigned NumInRegs = 0;
2633 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2634 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002635 if (!VA.isRegLoc())
2636 continue;
2637 unsigned Reg = VA.getLocReg();
2638 switch (Reg) {
2639 default: break;
2640 case X86::EAX: case X86::EDX: case X86::ECX:
2641 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002642 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002643 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002644 }
2645 }
2646 }
Evan Chenga6bff982010-01-30 01:22:00 +00002647 }
Evan Chengb1712452010-01-27 06:25:16 +00002648
Dale Johannesend155d7e2010-10-25 22:17:05 +00002649 // An stdcall caller is expected to clean up its arguments; the callee
Dale Johannesen0e034562010-11-12 00:43:18 +00002650 // isn't going to do that.
Dale Johannesend155d7e2010-10-25 22:17:05 +00002651 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2652 return false;
2653
Evan Cheng86809cc2010-02-03 03:28:02 +00002654 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002655}
2656
Dan Gohman3df24e62008-09-03 23:12:08 +00002657FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002658X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2659 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002660}
2661
2662
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002663//===----------------------------------------------------------------------===//
2664// Other Lowering Hooks
2665//===----------------------------------------------------------------------===//
2666
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002667static bool MayFoldLoad(SDValue Op) {
2668 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2669}
2670
2671static bool MayFoldIntoStore(SDValue Op) {
2672 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2673}
2674
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002675static bool isTargetShuffle(unsigned Opcode) {
2676 switch(Opcode) {
2677 default: return false;
2678 case X86ISD::PSHUFD:
2679 case X86ISD::PSHUFHW:
2680 case X86ISD::PSHUFLW:
2681 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002682 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002683 case X86ISD::SHUFPS:
2684 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002685 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002686 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002687 case X86ISD::MOVLPS:
2688 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002689 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002690 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002691 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002692 case X86ISD::MOVSS:
2693 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002694 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002695 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002696 case X86ISD::PUNPCKLWD:
2697 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002698 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002699 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002700 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002701 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002702 case X86ISD::PUNPCKHWD:
2703 case X86ISD::PUNPCKHBW:
2704 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002705 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002706 return true;
2707 }
2708 return false;
2709}
2710
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002711static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002712 SDValue V1, SelectionDAG &DAG) {
2713 switch(Opc) {
2714 default: llvm_unreachable("Unknown x86 shuffle node");
2715 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002716 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002717 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002718 return DAG.getNode(Opc, dl, VT, V1);
2719 }
2720
2721 return SDValue();
2722}
2723
2724static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002725 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002726 switch(Opc) {
2727 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002728 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002729 case X86ISD::PSHUFHW:
2730 case X86ISD::PSHUFLW:
2731 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2732 }
2733
2734 return SDValue();
2735}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002736
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002737static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2738 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2739 switch(Opc) {
2740 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002741 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002742 case X86ISD::SHUFPD:
2743 case X86ISD::SHUFPS:
2744 return DAG.getNode(Opc, dl, VT, V1, V2,
2745 DAG.getConstant(TargetMask, MVT::i8));
2746 }
2747 return SDValue();
2748}
2749
2750static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2751 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2752 switch(Opc) {
2753 default: llvm_unreachable("Unknown x86 shuffle node");
2754 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002755 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002756 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002757 case X86ISD::MOVLPS:
2758 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002759 case X86ISD::MOVSS:
2760 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002761 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002762 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002763 case X86ISD::PUNPCKLWD:
2764 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002765 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002766 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002767 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002768 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002769 case X86ISD::PUNPCKHWD:
2770 case X86ISD::PUNPCKHBW:
2771 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002772 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002773 return DAG.getNode(Opc, dl, VT, V1, V2);
2774 }
2775 return SDValue();
2776}
2777
Dan Gohmand858e902010-04-17 15:26:15 +00002778SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002779 MachineFunction &MF = DAG.getMachineFunction();
2780 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2781 int ReturnAddrIndex = FuncInfo->getRAIndex();
2782
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002783 if (ReturnAddrIndex == 0) {
2784 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002785 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002786 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002787 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002788 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002789 }
2790
Evan Cheng25ab6902006-09-08 06:48:29 +00002791 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002792}
2793
2794
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002795bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2796 bool hasSymbolicDisplacement) {
2797 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002798 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002799 return false;
2800
2801 // If we don't have a symbolic displacement - we don't have any extra
2802 // restrictions.
2803 if (!hasSymbolicDisplacement)
2804 return true;
2805
2806 // FIXME: Some tweaks might be needed for medium code model.
2807 if (M != CodeModel::Small && M != CodeModel::Kernel)
2808 return false;
2809
2810 // For small code model we assume that latest object is 16MB before end of 31
2811 // bits boundary. We may also accept pretty large negative constants knowing
2812 // that all objects are in the positive half of address space.
2813 if (M == CodeModel::Small && Offset < 16*1024*1024)
2814 return true;
2815
2816 // For kernel code model we know that all object resist in the negative half
2817 // of 32bits address space. We may not accept negative offsets, since they may
2818 // be just off and we may accept pretty large positive ones.
2819 if (M == CodeModel::Kernel && Offset > 0)
2820 return true;
2821
2822 return false;
2823}
2824
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002825/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2826/// specific condition code, returning the condition code and the LHS/RHS of the
2827/// comparison to make.
2828static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2829 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002830 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002831 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2832 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2833 // X > -1 -> X == 0, jump !sign.
2834 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002835 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002836 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2837 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002838 return X86::COND_S;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002839 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002840 // X < 1 -> X <= 0
2841 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002842 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002843 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002844 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002845
Evan Chengd9558e02006-01-06 00:43:03 +00002846 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002847 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002848 case ISD::SETEQ: return X86::COND_E;
2849 case ISD::SETGT: return X86::COND_G;
2850 case ISD::SETGE: return X86::COND_GE;
2851 case ISD::SETLT: return X86::COND_L;
2852 case ISD::SETLE: return X86::COND_LE;
2853 case ISD::SETNE: return X86::COND_NE;
2854 case ISD::SETULT: return X86::COND_B;
2855 case ISD::SETUGT: return X86::COND_A;
2856 case ISD::SETULE: return X86::COND_BE;
2857 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002858 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002859 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002860
Chris Lattner4c78e022008-12-23 23:42:27 +00002861 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002862
Chris Lattner4c78e022008-12-23 23:42:27 +00002863 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00002864 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
2865 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00002866 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2867 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002868 }
2869
Chris Lattner4c78e022008-12-23 23:42:27 +00002870 switch (SetCCOpcode) {
2871 default: break;
2872 case ISD::SETOLT:
2873 case ISD::SETOLE:
2874 case ISD::SETUGT:
2875 case ISD::SETUGE:
2876 std::swap(LHS, RHS);
2877 break;
2878 }
2879
2880 // On a floating point condition, the flags are set as follows:
2881 // ZF PF CF op
2882 // 0 | 0 | 0 | X > Y
2883 // 0 | 0 | 1 | X < Y
2884 // 1 | 0 | 0 | X == Y
2885 // 1 | 1 | 1 | unordered
2886 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002887 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002888 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002889 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002890 case ISD::SETOLT: // flipped
2891 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002892 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002893 case ISD::SETOLE: // flipped
2894 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002895 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002896 case ISD::SETUGT: // flipped
2897 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002898 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002899 case ISD::SETUGE: // flipped
2900 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002901 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002902 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002903 case ISD::SETNE: return X86::COND_NE;
2904 case ISD::SETUO: return X86::COND_P;
2905 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002906 case ISD::SETOEQ:
2907 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002908 }
Evan Chengd9558e02006-01-06 00:43:03 +00002909}
2910
Evan Cheng4a460802006-01-11 00:33:36 +00002911/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2912/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002913/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002914static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002915 switch (X86CC) {
2916 default:
2917 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002918 case X86::COND_B:
2919 case X86::COND_BE:
2920 case X86::COND_E:
2921 case X86::COND_P:
2922 case X86::COND_A:
2923 case X86::COND_AE:
2924 case X86::COND_NE:
2925 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002926 return true;
2927 }
2928}
2929
Evan Chengeb2f9692009-10-27 19:56:55 +00002930/// isFPImmLegal - Returns true if the target can instruction select the
2931/// specified FP immediate natively. If false, the legalizer will
2932/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00002933bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00002934 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
2935 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
2936 return true;
2937 }
2938 return false;
2939}
2940
Nate Begeman9008ca62009-04-27 18:41:29 +00002941/// isUndefOrInRange - Return true if Val is undef or if its value falls within
2942/// the specified range (L, H].
2943static bool isUndefOrInRange(int Val, int Low, int Hi) {
2944 return (Val < 0) || (Val >= Low && Val < Hi);
2945}
2946
2947/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
2948/// specified value.
2949static bool isUndefOrEqual(int Val, int CmpVal) {
2950 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002951 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00002952 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00002953}
2954
Nate Begeman9008ca62009-04-27 18:41:29 +00002955/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
2956/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
2957/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00002958static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00002959 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00002960 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002961 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00002962 return (Mask[0] < 2 && Mask[1] < 2);
2963 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002964}
2965
Nate Begeman9008ca62009-04-27 18:41:29 +00002966bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002967 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002968 N->getMask(M);
2969 return ::isPSHUFDMask(M, N->getValueType(0));
2970}
Evan Cheng0188ecb2006-03-22 18:59:22 +00002971
Nate Begeman9008ca62009-04-27 18:41:29 +00002972/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
2973/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00002974static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002975 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00002976 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002977
Nate Begeman9008ca62009-04-27 18:41:29 +00002978 // Lower quadword copied in order or undef.
2979 for (int i = 0; i != 4; ++i)
2980 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00002981 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002982
Evan Cheng506d3df2006-03-29 23:07:14 +00002983 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002984 for (int i = 4; i != 8; ++i)
2985 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00002986 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002987
Evan Cheng506d3df2006-03-29 23:07:14 +00002988 return true;
2989}
2990
Nate Begeman9008ca62009-04-27 18:41:29 +00002991bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002992 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002993 N->getMask(M);
2994 return ::isPSHUFHWMask(M, N->getValueType(0));
2995}
Evan Cheng506d3df2006-03-29 23:07:14 +00002996
Nate Begeman9008ca62009-04-27 18:41:29 +00002997/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
2998/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00002999static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003000 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00003001 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003002
Rafael Espindola15684b22009-04-24 12:40:33 +00003003 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00003004 for (int i = 4; i != 8; ++i)
3005 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00003006 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003007
Rafael Espindola15684b22009-04-24 12:40:33 +00003008 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003009 for (int i = 0; i != 4; ++i)
3010 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00003011 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003012
Rafael Espindola15684b22009-04-24 12:40:33 +00003013 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003014}
3015
Nate Begeman9008ca62009-04-27 18:41:29 +00003016bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003017 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003018 N->getMask(M);
3019 return ::isPSHUFLWMask(M, N->getValueType(0));
3020}
3021
Nate Begemana09008b2009-10-19 02:17:23 +00003022/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3023/// is suitable for input to PALIGNR.
3024static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
3025 bool hasSSSE3) {
3026 int i, e = VT.getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003027
Nate Begemana09008b2009-10-19 02:17:23 +00003028 // Do not handle v2i64 / v2f64 shuffles with palignr.
3029 if (e < 4 || !hasSSSE3)
3030 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003031
Nate Begemana09008b2009-10-19 02:17:23 +00003032 for (i = 0; i != e; ++i)
3033 if (Mask[i] >= 0)
3034 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003035
Nate Begemana09008b2009-10-19 02:17:23 +00003036 // All undef, not a palignr.
3037 if (i == e)
3038 return false;
3039
3040 // Determine if it's ok to perform a palignr with only the LHS, since we
3041 // don't have access to the actual shuffle elements to see if RHS is undef.
3042 bool Unary = Mask[i] < (int)e;
3043 bool NeedsUnary = false;
3044
3045 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003046
Nate Begemana09008b2009-10-19 02:17:23 +00003047 // Check the rest of the elements to see if they are consecutive.
3048 for (++i; i != e; ++i) {
3049 int m = Mask[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00003050 if (m < 0)
Nate Begemana09008b2009-10-19 02:17:23 +00003051 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003052
Nate Begemana09008b2009-10-19 02:17:23 +00003053 Unary = Unary && (m < (int)e);
3054 NeedsUnary = NeedsUnary || (m < s);
3055
3056 if (NeedsUnary && !Unary)
3057 return false;
3058 if (Unary && m != ((s+i) & (e-1)))
3059 return false;
3060 if (!Unary && m != (s+i))
3061 return false;
3062 }
3063 return true;
3064}
3065
3066bool X86::isPALIGNRMask(ShuffleVectorSDNode *N) {
3067 SmallVector<int, 8> M;
3068 N->getMask(M);
3069 return ::isPALIGNRMask(M, N->getValueType(0), true);
3070}
3071
Evan Cheng14aed5e2006-03-24 01:18:28 +00003072/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3073/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00003074static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003075 int NumElems = VT.getVectorNumElements();
3076 if (NumElems != 2 && NumElems != 4)
3077 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003078
Nate Begeman9008ca62009-04-27 18:41:29 +00003079 int Half = NumElems / 2;
3080 for (int i = 0; i < Half; ++i)
3081 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003082 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003083 for (int i = Half; i < NumElems; ++i)
3084 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003085 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003086
Evan Cheng14aed5e2006-03-24 01:18:28 +00003087 return true;
3088}
3089
Nate Begeman9008ca62009-04-27 18:41:29 +00003090bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3091 SmallVector<int, 8> M;
3092 N->getMask(M);
3093 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003094}
3095
Evan Cheng213d2cf2007-05-17 18:45:50 +00003096/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00003097/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
3098/// half elements to come from vector 1 (which would equal the dest.) and
3099/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00003100static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003101 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003102
3103 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00003104 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003105
Nate Begeman9008ca62009-04-27 18:41:29 +00003106 int Half = NumElems / 2;
3107 for (int i = 0; i < Half; ++i)
3108 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003109 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003110 for (int i = Half; i < NumElems; ++i)
3111 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003112 return false;
3113 return true;
3114}
3115
Nate Begeman9008ca62009-04-27 18:41:29 +00003116static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3117 SmallVector<int, 8> M;
3118 N->getMask(M);
3119 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003120}
3121
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003122/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3123/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003124bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
3125 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003126 return false;
3127
Evan Cheng2064a2b2006-03-28 06:50:32 +00003128 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003129 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3130 isUndefOrEqual(N->getMaskElt(1), 7) &&
3131 isUndefOrEqual(N->getMaskElt(2), 2) &&
3132 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003133}
3134
Nate Begeman0b10b912009-11-07 23:17:15 +00003135/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3136/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3137/// <2, 3, 2, 3>
3138bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
3139 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003140
Nate Begeman0b10b912009-11-07 23:17:15 +00003141 if (NumElems != 4)
3142 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003143
Nate Begeman0b10b912009-11-07 23:17:15 +00003144 return isUndefOrEqual(N->getMaskElt(0), 2) &&
3145 isUndefOrEqual(N->getMaskElt(1), 3) &&
3146 isUndefOrEqual(N->getMaskElt(2), 2) &&
3147 isUndefOrEqual(N->getMaskElt(3), 3);
3148}
3149
Evan Cheng5ced1d82006-04-06 23:23:56 +00003150/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3151/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003152bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3153 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003154
Evan Cheng5ced1d82006-04-06 23:23:56 +00003155 if (NumElems != 2 && NumElems != 4)
3156 return false;
3157
Evan Chengc5cdff22006-04-07 21:53:05 +00003158 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003159 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003160 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003161
Evan Chengc5cdff22006-04-07 21:53:05 +00003162 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003163 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003164 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003165
3166 return true;
3167}
3168
Nate Begeman0b10b912009-11-07 23:17:15 +00003169/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3170/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3171bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003172 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003173
Evan Cheng5ced1d82006-04-06 23:23:56 +00003174 if (NumElems != 2 && NumElems != 4)
3175 return false;
3176
Evan Chengc5cdff22006-04-07 21:53:05 +00003177 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003178 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003179 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003180
Nate Begeman9008ca62009-04-27 18:41:29 +00003181 for (unsigned i = 0; i < NumElems/2; ++i)
3182 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003183 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003184
3185 return true;
3186}
3187
Evan Cheng0038e592006-03-28 00:39:58 +00003188/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3189/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003190static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003191 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003192 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003193 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00003194 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003195
Nate Begeman9008ca62009-04-27 18:41:29 +00003196 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3197 int BitI = Mask[i];
3198 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003199 if (!isUndefOrEqual(BitI, j))
3200 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003201 if (V2IsSplat) {
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003202 if (!isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003203 return false;
3204 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003205 if (!isUndefOrEqual(BitI1, j + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003206 return false;
3207 }
Evan Cheng0038e592006-03-28 00:39:58 +00003208 }
Evan Cheng0038e592006-03-28 00:39:58 +00003209 return true;
3210}
3211
Nate Begeman9008ca62009-04-27 18:41:29 +00003212bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3213 SmallVector<int, 8> M;
3214 N->getMask(M);
3215 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003216}
3217
Evan Cheng4fcb9222006-03-28 02:43:26 +00003218/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3219/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003220static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003221 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003222 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003223 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003224 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003225
Nate Begeman9008ca62009-04-27 18:41:29 +00003226 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3227 int BitI = Mask[i];
3228 int BitI1 = Mask[i+1];
Chris Lattner5a88b832007-02-25 07:10:00 +00003229 if (!isUndefOrEqual(BitI, j + NumElts/2))
Evan Chengc5cdff22006-04-07 21:53:05 +00003230 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003231 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00003232 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003233 return false;
3234 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003235 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003236 return false;
3237 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003238 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003239 return true;
3240}
3241
Nate Begeman9008ca62009-04-27 18:41:29 +00003242bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3243 SmallVector<int, 8> M;
3244 N->getMask(M);
3245 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003246}
3247
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003248/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3249/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3250/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003251static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003252 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003253 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003254 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003255
Nate Begeman9008ca62009-04-27 18:41:29 +00003256 for (int i = 0, j = 0; i != NumElems; i += 2, ++j) {
3257 int BitI = Mask[i];
3258 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003259 if (!isUndefOrEqual(BitI, j))
3260 return false;
3261 if (!isUndefOrEqual(BitI1, j))
3262 return false;
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003263 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003264 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003265}
3266
Nate Begeman9008ca62009-04-27 18:41:29 +00003267bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3268 SmallVector<int, 8> M;
3269 N->getMask(M);
3270 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3271}
3272
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003273/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3274/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3275/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003276static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003277 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003278 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3279 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003280
Nate Begeman9008ca62009-04-27 18:41:29 +00003281 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3282 int BitI = Mask[i];
3283 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003284 if (!isUndefOrEqual(BitI, j))
3285 return false;
3286 if (!isUndefOrEqual(BitI1, j))
3287 return false;
3288 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003289 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003290}
3291
Nate Begeman9008ca62009-04-27 18:41:29 +00003292bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3293 SmallVector<int, 8> M;
3294 N->getMask(M);
3295 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3296}
3297
Evan Cheng017dcc62006-04-21 01:05:10 +00003298/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3299/// specifies a shuffle of elements that is suitable for input to MOVSS,
3300/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003301static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003302 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003303 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003304
3305 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003306
Nate Begeman9008ca62009-04-27 18:41:29 +00003307 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003308 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003309
Nate Begeman9008ca62009-04-27 18:41:29 +00003310 for (int i = 1; i < NumElts; ++i)
3311 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003312 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003313
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003314 return true;
3315}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003316
Nate Begeman9008ca62009-04-27 18:41:29 +00003317bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3318 SmallVector<int, 8> M;
3319 N->getMask(M);
3320 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003321}
3322
Evan Cheng017dcc62006-04-21 01:05:10 +00003323/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3324/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003325/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003326static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003327 bool V2IsSplat = false, bool V2IsUndef = false) {
3328 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003329 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003330 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003331
Nate Begeman9008ca62009-04-27 18:41:29 +00003332 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003333 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003334
Nate Begeman9008ca62009-04-27 18:41:29 +00003335 for (int i = 1; i < NumOps; ++i)
3336 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3337 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3338 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003339 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003340
Evan Cheng39623da2006-04-20 08:58:49 +00003341 return true;
3342}
3343
Nate Begeman9008ca62009-04-27 18:41:29 +00003344static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003345 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003346 SmallVector<int, 8> M;
3347 N->getMask(M);
3348 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003349}
3350
Evan Chengd9539472006-04-14 21:59:03 +00003351/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3352/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003353bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) {
3354 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003355 return false;
3356
3357 // Expect 1, 1, 3, 3
Rafael Espindola15684b22009-04-24 12:40:33 +00003358 for (unsigned i = 0; i < 2; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003359 int Elt = N->getMaskElt(i);
3360 if (Elt >= 0 && Elt != 1)
3361 return false;
Rafael Espindola15684b22009-04-24 12:40:33 +00003362 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003363
3364 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003365 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003366 int Elt = N->getMaskElt(i);
3367 if (Elt >= 0 && Elt != 3)
3368 return false;
3369 if (Elt == 3)
3370 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003371 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003372 // Don't use movshdup if it can be done with a shufps.
Nate Begeman9008ca62009-04-27 18:41:29 +00003373 // FIXME: verify that matching u, u, 3, 3 is what we want.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003374 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003375}
3376
3377/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3378/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003379bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) {
3380 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003381 return false;
3382
3383 // Expect 0, 0, 2, 2
Nate Begeman9008ca62009-04-27 18:41:29 +00003384 for (unsigned i = 0; i < 2; ++i)
3385 if (N->getMaskElt(i) > 0)
3386 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003387
3388 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003389 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003390 int Elt = N->getMaskElt(i);
3391 if (Elt >= 0 && Elt != 2)
3392 return false;
3393 if (Elt == 2)
3394 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003395 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003396 // Don't use movsldup if it can be done with a shufps.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003397 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003398}
3399
Evan Cheng0b457f02008-09-25 20:50:48 +00003400/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3401/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003402bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3403 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003404
Nate Begeman9008ca62009-04-27 18:41:29 +00003405 for (int i = 0; i < e; ++i)
3406 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003407 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003408 for (int i = 0; i < e; ++i)
3409 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003410 return false;
3411 return true;
3412}
3413
David Greenec38a03e2011-02-03 15:50:00 +00003414/// isVEXTRACTF128Index - Return true if the specified
3415/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3416/// suitable for input to VEXTRACTF128.
3417bool X86::isVEXTRACTF128Index(SDNode *N) {
3418 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3419 return false;
3420
3421 // The index should be aligned on a 128-bit boundary.
3422 uint64_t Index =
3423 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3424
3425 unsigned VL = N->getValueType(0).getVectorNumElements();
3426 unsigned VBits = N->getValueType(0).getSizeInBits();
3427 unsigned ElSize = VBits / VL;
3428 bool Result = (Index * ElSize) % 128 == 0;
3429
3430 return Result;
3431}
3432
David Greeneccacdc12011-02-04 16:08:29 +00003433/// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
3434/// operand specifies a subvector insert that is suitable for input to
3435/// VINSERTF128.
3436bool X86::isVINSERTF128Index(SDNode *N) {
3437 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3438 return false;
3439
3440 // The index should be aligned on a 128-bit boundary.
3441 uint64_t Index =
3442 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3443
3444 unsigned VL = N->getValueType(0).getVectorNumElements();
3445 unsigned VBits = N->getValueType(0).getSizeInBits();
3446 unsigned ElSize = VBits / VL;
3447 bool Result = (Index * ElSize) % 128 == 0;
3448
3449 return Result;
3450}
3451
Evan Cheng63d33002006-03-22 08:01:21 +00003452/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003453/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003454unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003455 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3456 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3457
Evan Chengb9df0ca2006-03-22 02:53:00 +00003458 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3459 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003460 for (int i = 0; i < NumOperands; ++i) {
3461 int Val = SVOp->getMaskElt(NumOperands-i-1);
3462 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003463 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003464 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003465 if (i != NumOperands - 1)
3466 Mask <<= Shift;
3467 }
Evan Cheng63d33002006-03-22 08:01:21 +00003468 return Mask;
3469}
3470
Evan Cheng506d3df2006-03-29 23:07:14 +00003471/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003472/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003473unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003474 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003475 unsigned Mask = 0;
3476 // 8 nodes, but we only care about the last 4.
3477 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003478 int Val = SVOp->getMaskElt(i);
3479 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003480 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003481 if (i != 4)
3482 Mask <<= 2;
3483 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003484 return Mask;
3485}
3486
3487/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003488/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003489unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003490 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003491 unsigned Mask = 0;
3492 // 8 nodes, but we only care about the first 4.
3493 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003494 int Val = SVOp->getMaskElt(i);
3495 if (Val >= 0)
3496 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003497 if (i != 0)
3498 Mask <<= 2;
3499 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003500 return Mask;
3501}
3502
Nate Begemana09008b2009-10-19 02:17:23 +00003503/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3504/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3505unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3506 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3507 EVT VVT = N->getValueType(0);
3508 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3509 int Val = 0;
3510
3511 unsigned i, e;
3512 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3513 Val = SVOp->getMaskElt(i);
3514 if (Val >= 0)
3515 break;
3516 }
3517 return (Val - i) * EltSize;
3518}
3519
David Greenec38a03e2011-02-03 15:50:00 +00003520/// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
3521/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
3522/// instructions.
3523unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
3524 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3525 llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
3526
3527 uint64_t Index =
3528 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3529
3530 EVT VecVT = N->getOperand(0).getValueType();
3531 EVT ElVT = VecVT.getVectorElementType();
3532
3533 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
3534
3535 return Index / NumElemsPerChunk;
3536}
3537
David Greeneccacdc12011-02-04 16:08:29 +00003538/// getInsertVINSERTF128Immediate - Return the appropriate immediate
3539/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
3540/// instructions.
3541unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
3542 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3543 llvm_unreachable("Illegal insert subvector for VINSERTF128");
3544
3545 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00003546 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00003547
3548 EVT VecVT = N->getValueType(0);
3549 EVT ElVT = VecVT.getVectorElementType();
3550
3551 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
3552
3553 return Index / NumElemsPerChunk;
3554}
3555
Evan Cheng37b73872009-07-30 08:33:02 +00003556/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3557/// constant +0.0.
3558bool X86::isZeroNode(SDValue Elt) {
3559 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003560 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003561 (isa<ConstantFPSDNode>(Elt) &&
3562 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3563}
3564
Nate Begeman9008ca62009-04-27 18:41:29 +00003565/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3566/// their permute mask.
3567static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3568 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003569 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003570 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003571 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003572
Nate Begeman5a5ca152009-04-29 05:20:52 +00003573 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003574 int idx = SVOp->getMaskElt(i);
3575 if (idx < 0)
3576 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003577 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003578 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003579 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003580 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003581 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003582 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3583 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003584}
3585
Evan Cheng779ccea2007-12-07 21:30:01 +00003586/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3587/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003588static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003589 unsigned NumElems = VT.getVectorNumElements();
3590 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003591 int idx = Mask[i];
3592 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003593 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003594 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003595 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003596 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003597 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003598 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003599}
3600
Evan Cheng533a0aa2006-04-19 20:35:22 +00003601/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3602/// match movhlps. The lower half elements should come from upper half of
3603/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003604/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003605static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3606 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003607 return false;
3608 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003609 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003610 return false;
3611 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003612 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003613 return false;
3614 return true;
3615}
3616
Evan Cheng5ced1d82006-04-06 23:23:56 +00003617/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003618/// is promoted to a vector. It also returns the LoadSDNode by reference if
3619/// required.
3620static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003621 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3622 return false;
3623 N = N->getOperand(0).getNode();
3624 if (!ISD::isNON_EXTLoad(N))
3625 return false;
3626 if (LD)
3627 *LD = cast<LoadSDNode>(N);
3628 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003629}
3630
Evan Cheng533a0aa2006-04-19 20:35:22 +00003631/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3632/// match movlp{s|d}. The lower half elements should come from lower half of
3633/// V1 (and in order), and the upper half elements should come from the upper
3634/// half of V2 (and in order). And since V1 will become the source of the
3635/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003636static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3637 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003638 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003639 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003640 // Is V2 is a vector load, don't do this transformation. We will try to use
3641 // load folding shufps op.
3642 if (ISD::isNON_EXTLoad(V2))
3643 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003644
Nate Begeman5a5ca152009-04-29 05:20:52 +00003645 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003646
Evan Cheng533a0aa2006-04-19 20:35:22 +00003647 if (NumElems != 2 && NumElems != 4)
3648 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003649 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003650 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003651 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003652 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003653 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003654 return false;
3655 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003656}
3657
Evan Cheng39623da2006-04-20 08:58:49 +00003658/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3659/// all the same.
3660static bool isSplatVector(SDNode *N) {
3661 if (N->getOpcode() != ISD::BUILD_VECTOR)
3662 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003663
Dan Gohman475871a2008-07-27 21:46:04 +00003664 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003665 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3666 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003667 return false;
3668 return true;
3669}
3670
Evan Cheng213d2cf2007-05-17 18:45:50 +00003671/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003672/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003673/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003674static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003675 SDValue V1 = N->getOperand(0);
3676 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003677 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3678 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003679 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003680 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003681 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003682 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3683 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003684 if (Opc != ISD::BUILD_VECTOR ||
3685 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003686 return false;
3687 } else if (Idx >= 0) {
3688 unsigned Opc = V1.getOpcode();
3689 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3690 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003691 if (Opc != ISD::BUILD_VECTOR ||
3692 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003693 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003694 }
3695 }
3696 return true;
3697}
3698
3699/// getZeroVector - Returns a vector of specified type with all zero elements.
3700///
Owen Andersone50ed302009-08-10 22:56:29 +00003701static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003702 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003703 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003704
Dale Johannesen0488fb62010-09-30 23:57:10 +00003705 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003706 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003707 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003708 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003709 if (HasSSE2) { // SSE2
3710 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3711 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3712 } else { // SSE1
3713 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3714 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3715 }
3716 } else if (VT.getSizeInBits() == 256) { // AVX
3717 // 256-bit logic and arithmetic instructions in AVX are
3718 // all floating-point, no support for integer ops. Default
3719 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003720 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003721 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3722 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003723 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003724 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003725}
3726
Chris Lattner8a594482007-11-25 00:24:49 +00003727/// getOnesVector - Returns a vector of specified type with all bits set.
3728///
Owen Andersone50ed302009-08-10 22:56:29 +00003729static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003730 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003731
Chris Lattner8a594482007-11-25 00:24:49 +00003732 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
3733 // type. This ensures they get CSE'd.
Owen Anderson825b72b2009-08-11 20:47:22 +00003734 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +00003735 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003736 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003737 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00003738}
3739
3740
Evan Cheng39623da2006-04-20 08:58:49 +00003741/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
3742/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00003743static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003744 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003745 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003746
Evan Cheng39623da2006-04-20 08:58:49 +00003747 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003748 SmallVector<int, 8> MaskVec;
3749 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00003750
Nate Begeman5a5ca152009-04-29 05:20:52 +00003751 for (unsigned i = 0; i != NumElems; ++i) {
3752 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003753 MaskVec[i] = NumElems;
3754 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00003755 }
Evan Cheng39623da2006-04-20 08:58:49 +00003756 }
Evan Cheng39623da2006-04-20 08:58:49 +00003757 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00003758 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
3759 SVOp->getOperand(1), &MaskVec[0]);
3760 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00003761}
3762
Evan Cheng017dcc62006-04-21 01:05:10 +00003763/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
3764/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00003765static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003766 SDValue V2) {
3767 unsigned NumElems = VT.getVectorNumElements();
3768 SmallVector<int, 8> Mask;
3769 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00003770 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003771 Mask.push_back(i);
3772 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00003773}
3774
Nate Begeman9008ca62009-04-27 18:41:29 +00003775/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003776static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003777 SDValue V2) {
3778 unsigned NumElems = VT.getVectorNumElements();
3779 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00003780 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003781 Mask.push_back(i);
3782 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00003783 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003784 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00003785}
3786
Nate Begeman9008ca62009-04-27 18:41:29 +00003787/// getUnpackhMask - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003788static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003789 SDValue V2) {
3790 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00003791 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003792 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00003793 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003794 Mask.push_back(i + Half);
3795 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00003796 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003797 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00003798}
3799
Bruno Cardoso Lopesbb0a9482010-08-13 17:50:47 +00003800/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32.
3801static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003802 EVT PVT = MVT::v4f32;
Owen Andersone50ed302009-08-10 22:56:29 +00003803 EVT VT = SV->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00003804 DebugLoc dl = SV->getDebugLoc();
3805 SDValue V1 = SV->getOperand(0);
3806 int NumElems = VT.getVectorNumElements();
3807 int EltNo = SV->getSplatIndex();
Rafael Espindola15684b22009-04-24 12:40:33 +00003808
Nate Begeman9008ca62009-04-27 18:41:29 +00003809 // unpack elements to the correct location
3810 while (NumElems > 4) {
3811 if (EltNo < NumElems/2) {
3812 V1 = getUnpackl(DAG, dl, VT, V1, V1);
3813 } else {
3814 V1 = getUnpackh(DAG, dl, VT, V1, V1);
3815 EltNo -= NumElems/2;
3816 }
3817 NumElems >>= 1;
3818 }
Eric Christopherfd179292009-08-27 18:07:15 +00003819
Nate Begeman9008ca62009-04-27 18:41:29 +00003820 // Perform the splat.
3821 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003822 V1 = DAG.getNode(ISD::BITCAST, dl, PVT, V1);
Nate Begeman9008ca62009-04-27 18:41:29 +00003823 V1 = DAG.getVectorShuffle(PVT, dl, V1, DAG.getUNDEF(PVT), &SplatMask[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003824 return DAG.getNode(ISD::BITCAST, dl, VT, V1);
Evan Chengc575ca22006-04-17 20:43:08 +00003825}
3826
Evan Chengba05f722006-04-21 23:03:30 +00003827/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00003828/// vector of zero or undef vector. This produces a shuffle where the low
3829/// element of V2 is swizzled into the zero/undef vector, landing at element
3830/// 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 +00003831static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00003832 bool isZero, bool HasSSE2,
3833 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003834 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003835 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00003836 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
3837 unsigned NumElems = VT.getVectorNumElements();
3838 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00003839 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003840 // If this is the insertion idx, put the low elt of V2 here.
3841 MaskVec.push_back(i == Idx ? NumElems : i);
3842 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00003843}
3844
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003845/// getShuffleScalarElt - Returns the scalar element that will make up the ith
3846/// element of the result of the vector shuffle.
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003847SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
3848 unsigned Depth) {
3849 if (Depth == 6)
3850 return SDValue(); // Limit search depth.
3851
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003852 SDValue V = SDValue(N, 0);
3853 EVT VT = V.getValueType();
3854 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003855
3856 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
3857 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
3858 Index = SV->getMaskElt(Index);
3859
3860 if (Index < 0)
3861 return DAG.getUNDEF(VT.getVectorElementType());
3862
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003863 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003864 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003865 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00003866 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003867
3868 // Recurse into target specific vector shuffles to find scalars.
3869 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003870 int NumElems = VT.getVectorNumElements();
3871 SmallVector<unsigned, 16> ShuffleMask;
3872 SDValue ImmN;
3873
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003874 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003875 case X86ISD::SHUFPS:
3876 case X86ISD::SHUFPD:
3877 ImmN = N->getOperand(N->getNumOperands()-1);
3878 DecodeSHUFPSMask(NumElems,
3879 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3880 ShuffleMask);
3881 break;
3882 case X86ISD::PUNPCKHBW:
3883 case X86ISD::PUNPCKHWD:
3884 case X86ISD::PUNPCKHDQ:
3885 case X86ISD::PUNPCKHQDQ:
3886 DecodePUNPCKHMask(NumElems, ShuffleMask);
3887 break;
3888 case X86ISD::UNPCKHPS:
3889 case X86ISD::UNPCKHPD:
3890 DecodeUNPCKHPMask(NumElems, ShuffleMask);
3891 break;
3892 case X86ISD::PUNPCKLBW:
3893 case X86ISD::PUNPCKLWD:
3894 case X86ISD::PUNPCKLDQ:
3895 case X86ISD::PUNPCKLQDQ:
3896 DecodePUNPCKLMask(NumElems, ShuffleMask);
3897 break;
3898 case X86ISD::UNPCKLPS:
3899 case X86ISD::UNPCKLPD:
3900 DecodeUNPCKLPMask(NumElems, ShuffleMask);
3901 break;
3902 case X86ISD::MOVHLPS:
3903 DecodeMOVHLPSMask(NumElems, ShuffleMask);
3904 break;
3905 case X86ISD::MOVLHPS:
3906 DecodeMOVLHPSMask(NumElems, ShuffleMask);
3907 break;
3908 case X86ISD::PSHUFD:
3909 ImmN = N->getOperand(N->getNumOperands()-1);
3910 DecodePSHUFMask(NumElems,
3911 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3912 ShuffleMask);
3913 break;
3914 case X86ISD::PSHUFHW:
3915 ImmN = N->getOperand(N->getNumOperands()-1);
3916 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3917 ShuffleMask);
3918 break;
3919 case X86ISD::PSHUFLW:
3920 ImmN = N->getOperand(N->getNumOperands()-1);
3921 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3922 ShuffleMask);
3923 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003924 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003925 case X86ISD::MOVSD: {
3926 // The index 0 always comes from the first element of the second source,
3927 // this is why MOVSS and MOVSD are used in the first place. The other
3928 // elements come from the other positions of the first source vector.
3929 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003930 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
3931 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003932 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003933 default:
3934 assert("not implemented for target shuffle node");
3935 return SDValue();
3936 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003937
3938 Index = ShuffleMask[Index];
3939 if (Index < 0)
3940 return DAG.getUNDEF(VT.getVectorElementType());
3941
3942 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
3943 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
3944 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003945 }
3946
3947 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003948 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003949 V = V.getOperand(0);
3950 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003951 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003952
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003953 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003954 return SDValue();
3955 }
3956
3957 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
3958 return (Index == 0) ? V.getOperand(0)
3959 : DAG.getUNDEF(VT.getVectorElementType());
3960
3961 if (V.getOpcode() == ISD::BUILD_VECTOR)
3962 return V.getOperand(Index);
3963
3964 return SDValue();
3965}
3966
3967/// getNumOfConsecutiveZeros - Return the number of elements of a vector
3968/// shuffle operation which come from a consecutively from a zero. The
3969/// search can start in two diferent directions, from left or right.
3970static
3971unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
3972 bool ZerosFromLeft, SelectionDAG &DAG) {
3973 int i = 0;
3974
3975 while (i < NumElems) {
3976 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003977 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003978 if (!(Elt.getNode() &&
3979 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
3980 break;
3981 ++i;
3982 }
3983
3984 return i;
3985}
3986
3987/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
3988/// MaskE correspond consecutively to elements from one of the vector operands,
3989/// starting from its index OpIdx. Also tell OpNum which source vector operand.
3990static
3991bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
3992 int OpIdx, int NumElems, unsigned &OpNum) {
3993 bool SeenV1 = false;
3994 bool SeenV2 = false;
3995
3996 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
3997 int Idx = SVOp->getMaskElt(i);
3998 // Ignore undef indicies
3999 if (Idx < 0)
4000 continue;
4001
4002 if (Idx < NumElems)
4003 SeenV1 = true;
4004 else
4005 SeenV2 = true;
4006
4007 // Only accept consecutive elements from the same vector
4008 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4009 return false;
4010 }
4011
4012 OpNum = SeenV1 ? 0 : 1;
4013 return true;
4014}
4015
4016/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4017/// logical left shift of a vector.
4018static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4019 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4020 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4021 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4022 false /* check zeros from right */, DAG);
4023 unsigned OpSrc;
4024
4025 if (!NumZeros)
4026 return false;
4027
4028 // Considering the elements in the mask that are not consecutive zeros,
4029 // check if they consecutively come from only one of the source vectors.
4030 //
4031 // V1 = {X, A, B, C} 0
4032 // \ \ \ /
4033 // vector_shuffle V1, V2 <1, 2, 3, X>
4034 //
4035 if (!isShuffleMaskConsecutive(SVOp,
4036 0, // Mask Start Index
4037 NumElems-NumZeros-1, // Mask End Index
4038 NumZeros, // Where to start looking in the src vector
4039 NumElems, // Number of elements in vector
4040 OpSrc)) // Which source operand ?
4041 return false;
4042
4043 isLeft = false;
4044 ShAmt = NumZeros;
4045 ShVal = SVOp->getOperand(OpSrc);
4046 return true;
4047}
4048
4049/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4050/// logical left shift of a vector.
4051static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4052 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4053 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4054 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4055 true /* check zeros from left */, DAG);
4056 unsigned OpSrc;
4057
4058 if (!NumZeros)
4059 return false;
4060
4061 // Considering the elements in the mask that are not consecutive zeros,
4062 // check if they consecutively come from only one of the source vectors.
4063 //
4064 // 0 { A, B, X, X } = V2
4065 // / \ / /
4066 // vector_shuffle V1, V2 <X, X, 4, 5>
4067 //
4068 if (!isShuffleMaskConsecutive(SVOp,
4069 NumZeros, // Mask Start Index
4070 NumElems-1, // Mask End Index
4071 0, // Where to start looking in the src vector
4072 NumElems, // Number of elements in vector
4073 OpSrc)) // Which source operand ?
4074 return false;
4075
4076 isLeft = true;
4077 ShAmt = NumZeros;
4078 ShVal = SVOp->getOperand(OpSrc);
4079 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004080}
4081
4082/// isVectorShift - Returns true if the shuffle can be implemented as a
4083/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004084static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004085 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004086 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4087 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4088 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004089
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004090 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00004091}
4092
Evan Chengc78d3b42006-04-24 18:01:45 +00004093/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4094///
Dan Gohman475871a2008-07-27 21:46:04 +00004095static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00004096 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00004097 SelectionDAG &DAG,
4098 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004099 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00004100 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004101
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004102 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004103 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004104 bool First = true;
4105 for (unsigned i = 0; i < 16; ++i) {
4106 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4107 if (ThisIsNonZero && First) {
4108 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004109 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004110 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004111 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004112 First = false;
4113 }
4114
4115 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00004116 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004117 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4118 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004119 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004120 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00004121 }
4122 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004123 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4124 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4125 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00004126 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004127 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00004128 } else
4129 ThisElt = LastElt;
4130
Gabor Greifba36cb52008-08-28 21:40:38 +00004131 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00004132 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00004133 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00004134 }
4135 }
4136
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004137 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00004138}
4139
Bill Wendlinga348c562007-03-22 18:42:45 +00004140/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00004141///
Dan Gohman475871a2008-07-27 21:46:04 +00004142static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00004143 unsigned NumNonZero, unsigned NumZero,
4144 SelectionDAG &DAG,
4145 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004146 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00004147 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004148
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004149 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004150 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004151 bool First = true;
4152 for (unsigned i = 0; i < 8; ++i) {
4153 bool isNonZero = (NonZeros & (1 << i)) != 0;
4154 if (isNonZero) {
4155 if (First) {
4156 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004157 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004158 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004159 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004160 First = false;
4161 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004162 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004163 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00004164 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00004165 }
4166 }
4167
4168 return V;
4169}
4170
Evan Chengf26ffe92008-05-29 08:22:04 +00004171/// getVShift - Return a vector logical shift node.
4172///
Owen Andersone50ed302009-08-10 22:56:29 +00004173static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00004174 unsigned NumBits, SelectionDAG &DAG,
4175 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004176 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00004177 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004178 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4179 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004180 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif327ef032008-08-28 23:19:51 +00004181 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengf26ffe92008-05-29 08:22:04 +00004182}
4183
Dan Gohman475871a2008-07-27 21:46:04 +00004184SDValue
Evan Chengc3630942009-12-09 21:00:30 +00004185X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00004186 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00004187
Evan Chengc3630942009-12-09 21:00:30 +00004188 // Check if the scalar load can be widened into a vector load. And if
4189 // the address is "base + cst" see if the cst can be "absorbed" into
4190 // the shuffle mask.
4191 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4192 SDValue Ptr = LD->getBasePtr();
4193 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4194 return SDValue();
4195 EVT PVT = LD->getValueType(0);
4196 if (PVT != MVT::i32 && PVT != MVT::f32)
4197 return SDValue();
4198
4199 int FI = -1;
4200 int64_t Offset = 0;
4201 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4202 FI = FINode->getIndex();
4203 Offset = 0;
4204 } else if (Ptr.getOpcode() == ISD::ADD &&
4205 isa<ConstantSDNode>(Ptr.getOperand(1)) &&
4206 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4207 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4208 Offset = Ptr.getConstantOperandVal(1);
4209 Ptr = Ptr.getOperand(0);
4210 } else {
4211 return SDValue();
4212 }
4213
4214 SDValue Chain = LD->getChain();
4215 // Make sure the stack object alignment is at least 16.
4216 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4217 if (DAG.InferPtrAlignment(Ptr) < 16) {
4218 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004219 // Can't change the alignment. FIXME: It's possible to compute
4220 // the exact stack offset and reference FI + adjust offset instead.
4221 // If someone *really* cares about this. That's the way to implement it.
4222 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004223 } else {
4224 MFI->setObjectAlignment(FI, 16);
4225 }
4226 }
4227
4228 // (Offset % 16) must be multiple of 4. Then address is then
4229 // Ptr + (Offset & ~15).
4230 if (Offset < 0)
4231 return SDValue();
4232 if ((Offset % 16) & 3)
4233 return SDValue();
4234 int64_t StartOffset = Offset & ~15;
4235 if (StartOffset)
4236 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4237 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4238
4239 int EltNo = (Offset - StartOffset) >> 2;
4240 int Mask[4] = { EltNo, EltNo, EltNo, EltNo };
4241 EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32;
Chris Lattner51abfe42010-09-21 06:02:19 +00004242 SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr,
4243 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004244 false, false, 0);
Evan Chengc3630942009-12-09 21:00:30 +00004245 // Canonicalize it to a v4i32 shuffle.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004246 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V1);
4247 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Chengc3630942009-12-09 21:00:30 +00004248 DAG.getVectorShuffle(MVT::v4i32, dl, V1,
Chris Lattner51abfe42010-09-21 06:02:19 +00004249 DAG.getUNDEF(MVT::v4i32),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004250 }
4251
4252 return SDValue();
4253}
4254
Michael J. Spencerec38de22010-10-10 22:04:20 +00004255/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4256/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004257/// load which has the same value as a build_vector whose operands are 'elts'.
4258///
4259/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004260///
Nate Begeman1449f292010-03-24 22:19:06 +00004261/// FIXME: we'd also like to handle the case where the last elements are zero
4262/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4263/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004264static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004265 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004266 EVT EltVT = VT.getVectorElementType();
4267 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004268
Nate Begemanfdea31a2010-03-24 20:49:50 +00004269 LoadSDNode *LDBase = NULL;
4270 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004271
Nate Begeman1449f292010-03-24 22:19:06 +00004272 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004273 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004274 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004275 for (unsigned i = 0; i < NumElems; ++i) {
4276 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004277
Nate Begemanfdea31a2010-03-24 20:49:50 +00004278 if (!Elt.getNode() ||
4279 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4280 return SDValue();
4281 if (!LDBase) {
4282 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4283 return SDValue();
4284 LDBase = cast<LoadSDNode>(Elt.getNode());
4285 LastLoadedElt = i;
4286 continue;
4287 }
4288 if (Elt.getOpcode() == ISD::UNDEF)
4289 continue;
4290
4291 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4292 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4293 return SDValue();
4294 LastLoadedElt = i;
4295 }
Nate Begeman1449f292010-03-24 22:19:06 +00004296
4297 // If we have found an entire vector of loads and undefs, then return a large
4298 // load of the entire vector width starting at the base pointer. If we found
4299 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004300 if (LastLoadedElt == NumElems - 1) {
4301 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004302 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004303 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004304 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004305 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004306 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004307 LDBase->isVolatile(), LDBase->isNonTemporal(),
4308 LDBase->getAlignment());
4309 } else if (NumElems == 4 && LastLoadedElt == 1) {
4310 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4311 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004312 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4313 Ops, 2, MVT::i32,
4314 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004315 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004316 }
4317 return SDValue();
4318}
4319
Evan Chengc3630942009-12-09 21:00:30 +00004320SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004321X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004322 DebugLoc dl = Op.getDebugLoc();
David Greenea5f26012011-02-07 19:36:54 +00004323
David Greenef125a292011-02-08 19:04:41 +00004324 EVT VT = Op.getValueType();
4325 EVT ExtVT = VT.getVectorElementType();
4326
4327 unsigned NumElems = Op.getNumOperands();
4328
4329 // For AVX-length vectors, build the individual 128-bit pieces and
4330 // use shuffles to put them in place.
4331 if (VT.getSizeInBits() > 256 &&
4332 Subtarget->hasAVX() &&
4333 !Disable256Bit &&
4334 !ISD::isBuildVectorAllZeros(Op.getNode())) {
4335 SmallVector<SDValue, 8> V;
4336 V.resize(NumElems);
4337 for (unsigned i = 0; i < NumElems; ++i) {
4338 V[i] = Op.getOperand(i);
4339 }
4340
4341 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
4342
4343 // Build the lower subvector.
4344 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
4345 // Build the upper subvector.
4346 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
4347 NumElems/2);
4348
4349 return ConcatVectors(Lower, Upper, DAG);
4350 }
4351
Chris Lattner6e80e442010-08-28 17:15:43 +00004352 // All zero's are handled with pxor in SSE2 and above, xorps in SSE1.
4353 // All one's are handled with pcmpeqd. In AVX, zero's are handled with
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004354 // vpxor in 128-bit and xor{pd,ps} in 256-bit, but no 256 version of pcmpeqd
4355 // is present, so AllOnes is ignored.
4356 if (ISD::isBuildVectorAllZeros(Op.getNode()) ||
4357 (Op.getValueType().getSizeInBits() != 256 &&
4358 ISD::isBuildVectorAllOnes(Op.getNode()))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004359 // Canonicalize this to <4 x i32> (SSE) to
Chris Lattner8a594482007-11-25 00:24:49 +00004360 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
4361 // eliminated on x86-32 hosts.
Dale Johannesen0488fb62010-09-30 23:57:10 +00004362 if (Op.getValueType() == MVT::v4i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004363 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004364
Gabor Greifba36cb52008-08-28 21:40:38 +00004365 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004366 return getOnesVector(Op.getValueType(), DAG, dl);
4367 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004368 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004369
Owen Andersone50ed302009-08-10 22:56:29 +00004370 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004371
Evan Cheng0db9fe62006-04-25 20:13:52 +00004372 unsigned NumZero = 0;
4373 unsigned NumNonZero = 0;
4374 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004375 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004376 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004377 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004378 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004379 if (Elt.getOpcode() == ISD::UNDEF)
4380 continue;
4381 Values.insert(Elt);
4382 if (Elt.getOpcode() != ISD::Constant &&
4383 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004384 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004385 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004386 NumZero++;
4387 else {
4388 NonZeros |= (1 << i);
4389 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004390 }
4391 }
4392
Chris Lattner97a2a562010-08-26 05:24:29 +00004393 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4394 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004395 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004396
Chris Lattner67f453a2008-03-09 05:42:06 +00004397 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004398 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004399 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004400 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004401
Chris Lattner62098042008-03-09 01:05:04 +00004402 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4403 // the value are obviously zero, truncate the value to i32 and do the
4404 // insertion that way. Only do this if the value is non-constant or if the
4405 // value is a constant being inserted into element 0. It is cheaper to do
4406 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004407 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004408 (!IsAllConstants || Idx == 0)) {
4409 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004410 // Handle SSE only.
4411 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4412 EVT VecVT = MVT::v4i32;
4413 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004414
Chris Lattner62098042008-03-09 01:05:04 +00004415 // Truncate the value (which may itself be a constant) to i32, and
4416 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004417 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004418 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004419 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4420 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004421
Chris Lattner62098042008-03-09 01:05:04 +00004422 // Now we have our 32-bit value zero extended in the low element of
4423 // a vector. If Idx != 0, swizzle it into place.
4424 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004425 SmallVector<int, 4> Mask;
4426 Mask.push_back(Idx);
4427 for (unsigned i = 1; i != VecElts; ++i)
4428 Mask.push_back(i);
4429 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004430 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004431 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004432 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004433 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004434 }
4435 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004436
Chris Lattner19f79692008-03-08 22:59:52 +00004437 // If we have a constant or non-constant insertion into the low element of
4438 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4439 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004440 // depending on what the source datatype is.
4441 if (Idx == 0) {
4442 if (NumZero == 0) {
4443 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004444 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4445 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004446 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4447 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4448 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4449 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004450 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4451 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004452 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4453 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004454 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4455 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4456 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004457 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00004458 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004459 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004460
4461 // Is it a vector logical left shift?
4462 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004463 X86::isZeroNode(Op.getOperand(0)) &&
4464 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004465 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004466 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004467 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004468 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004469 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004470 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004471
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004472 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004473 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004474
Chris Lattner19f79692008-03-08 22:59:52 +00004475 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4476 // is a non-constant being inserted into an element other than the low one,
4477 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4478 // movd/movss) to move this into the low element, then shuffle it into
4479 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004480 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004481 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004482
Evan Cheng0db9fe62006-04-25 20:13:52 +00004483 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004484 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4485 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004486 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004487 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004488 MaskVec.push_back(i == Idx ? 0 : 1);
4489 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004490 }
4491 }
4492
Chris Lattner67f453a2008-03-09 05:42:06 +00004493 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004494 if (Values.size() == 1) {
4495 if (EVTBits == 32) {
4496 // Instead of a shuffle like this:
4497 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4498 // Check if it's possible to issue this instead.
4499 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4500 unsigned Idx = CountTrailingZeros_32(NonZeros);
4501 SDValue Item = Op.getOperand(Idx);
4502 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4503 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4504 }
Dan Gohman475871a2008-07-27 21:46:04 +00004505 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004506 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004507
Dan Gohmana3941172007-07-24 22:55:08 +00004508 // A vector full of immediates; various special cases are already
4509 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004510 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004511 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004512
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004513 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004514 if (EVTBits == 64) {
4515 if (NumNonZero == 1) {
4516 // One half is zero or undef.
4517 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004518 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004519 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004520 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4521 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004522 }
Dan Gohman475871a2008-07-27 21:46:04 +00004523 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004524 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004525
4526 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004527 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004528 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004529 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004530 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004531 }
4532
Bill Wendling826f36f2007-03-28 00:57:11 +00004533 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004534 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004535 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004536 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004537 }
4538
4539 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004540 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004541 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004542 if (NumElems == 4 && NumZero > 0) {
4543 for (unsigned i = 0; i < 4; ++i) {
4544 bool isZero = !(NonZeros & (1 << i));
4545 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004546 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004547 else
Dale Johannesenace16102009-02-03 19:33:06 +00004548 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004549 }
4550
4551 for (unsigned i = 0; i < 2; ++i) {
4552 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4553 default: break;
4554 case 0:
4555 V[i] = V[i*2]; // Must be a zero vector.
4556 break;
4557 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004558 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004559 break;
4560 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004561 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004562 break;
4563 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004564 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004565 break;
4566 }
4567 }
4568
Nate Begeman9008ca62009-04-27 18:41:29 +00004569 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004570 bool Reverse = (NonZeros & 0x3) == 2;
4571 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004572 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004573 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4574 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004575 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4576 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004577 }
4578
Nate Begemanfdea31a2010-03-24 20:49:50 +00004579 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4580 // Check for a build vector of consecutive loads.
4581 for (unsigned i = 0; i < NumElems; ++i)
4582 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004583
Nate Begemanfdea31a2010-03-24 20:49:50 +00004584 // Check for elements which are consecutive loads.
4585 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4586 if (LD.getNode())
4587 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004588
4589 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004590 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004591 SDValue Result;
4592 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4593 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4594 else
4595 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004596
Chris Lattner24faf612010-08-28 17:59:08 +00004597 for (unsigned i = 1; i < NumElems; ++i) {
4598 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4599 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004600 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004601 }
4602 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004603 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004604
Chris Lattner6e80e442010-08-28 17:15:43 +00004605 // Otherwise, expand into a number of unpckl*, start by extending each of
4606 // our (non-undef) elements to the full vector width with the element in the
4607 // bottom slot of the vector (which generates no code for SSE).
4608 for (unsigned i = 0; i < NumElems; ++i) {
4609 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4610 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4611 else
4612 V[i] = DAG.getUNDEF(VT);
4613 }
4614
4615 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004616 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4617 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4618 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00004619 unsigned EltStride = NumElems >> 1;
4620 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00004621 for (unsigned i = 0; i < EltStride; ++i) {
4622 // If V[i+EltStride] is undef and this is the first round of mixing,
4623 // then it is safe to just drop this shuffle: V[i] is already in the
4624 // right place, the one element (since it's the first round) being
4625 // inserted as undef can be dropped. This isn't safe for successive
4626 // rounds because they will permute elements within both vectors.
4627 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
4628 EltStride == NumElems/2)
4629 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004630
Chris Lattner6e80e442010-08-28 17:15:43 +00004631 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00004632 }
Chris Lattner6e80e442010-08-28 17:15:43 +00004633 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004634 }
4635 return V[0];
4636 }
Dan Gohman475871a2008-07-27 21:46:04 +00004637 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004638}
4639
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004640SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004641X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004642 // We support concatenate two MMX registers and place them in a MMX
4643 // register. This is better than doing a stack convert.
4644 DebugLoc dl = Op.getDebugLoc();
4645 EVT ResVT = Op.getValueType();
4646 assert(Op.getNumOperands() == 2);
4647 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
4648 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
4649 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004650 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004651 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4652 InVec = Op.getOperand(1);
4653 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4654 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004655 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004656 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
4657 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
4658 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004659 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004660 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4661 Mask[0] = 0; Mask[1] = 2;
4662 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
4663 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004664 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004665}
4666
Nate Begemanb9a47b82009-02-23 08:49:38 +00004667// v8i16 shuffles - Prefer shuffles in the following order:
4668// 1. [all] pshuflw, pshufhw, optional move
4669// 2. [ssse3] 1 x pshufb
4670// 3. [ssse3] 2 x pshufb + 1 x por
4671// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004672SDValue
4673X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
4674 SelectionDAG &DAG) const {
4675 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00004676 SDValue V1 = SVOp->getOperand(0);
4677 SDValue V2 = SVOp->getOperand(1);
4678 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004679 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00004680
Nate Begemanb9a47b82009-02-23 08:49:38 +00004681 // Determine if more than 1 of the words in each of the low and high quadwords
4682 // of the result come from the same quadword of one of the two inputs. Undef
4683 // mask values count as coming from any quadword, for better codegen.
4684 SmallVector<unsigned, 4> LoQuad(4);
4685 SmallVector<unsigned, 4> HiQuad(4);
4686 BitVector InputQuads(4);
4687 for (unsigned i = 0; i < 8; ++i) {
4688 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00004689 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004690 MaskVals.push_back(EltIdx);
4691 if (EltIdx < 0) {
4692 ++Quad[0];
4693 ++Quad[1];
4694 ++Quad[2];
4695 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00004696 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004697 }
4698 ++Quad[EltIdx / 4];
4699 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00004700 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004701
Nate Begemanb9a47b82009-02-23 08:49:38 +00004702 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004703 unsigned MaxQuad = 1;
4704 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004705 if (LoQuad[i] > MaxQuad) {
4706 BestLoQuad = i;
4707 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004708 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004709 }
4710
Nate Begemanb9a47b82009-02-23 08:49:38 +00004711 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004712 MaxQuad = 1;
4713 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004714 if (HiQuad[i] > MaxQuad) {
4715 BestHiQuad = i;
4716 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004717 }
4718 }
4719
Nate Begemanb9a47b82009-02-23 08:49:38 +00004720 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00004721 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00004722 // single pshufb instruction is necessary. If There are more than 2 input
4723 // quads, disable the next transformation since it does not help SSSE3.
4724 bool V1Used = InputQuads[0] || InputQuads[1];
4725 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004726 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004727 if (InputQuads.count() == 2 && V1Used && V2Used) {
4728 BestLoQuad = InputQuads.find_first();
4729 BestHiQuad = InputQuads.find_next(BestLoQuad);
4730 }
4731 if (InputQuads.count() > 2) {
4732 BestLoQuad = -1;
4733 BestHiQuad = -1;
4734 }
4735 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004736
Nate Begemanb9a47b82009-02-23 08:49:38 +00004737 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
4738 // the shuffle mask. If a quad is scored as -1, that means that it contains
4739 // words from all 4 input quadwords.
4740 SDValue NewV;
4741 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004742 SmallVector<int, 8> MaskV;
4743 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
4744 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00004745 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004746 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
4747 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
4748 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004749
Nate Begemanb9a47b82009-02-23 08:49:38 +00004750 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
4751 // source words for the shuffle, to aid later transformations.
4752 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00004753 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00004754 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004755 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00004756 if (idx != (int)i)
4757 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004758 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00004759 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004760 AllWordsInNewV = false;
4761 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00004762 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004763
Nate Begemanb9a47b82009-02-23 08:49:38 +00004764 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
4765 if (AllWordsInNewV) {
4766 for (int i = 0; i != 8; ++i) {
4767 int idx = MaskVals[i];
4768 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004769 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004770 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004771 if ((idx != i) && idx < 4)
4772 pshufhw = false;
4773 if ((idx != i) && idx > 3)
4774 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00004775 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00004776 V1 = NewV;
4777 V2Used = false;
4778 BestLoQuad = 0;
4779 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004780 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004781
Nate Begemanb9a47b82009-02-23 08:49:38 +00004782 // If we've eliminated the use of V2, and the new mask is a pshuflw or
4783 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00004784 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004785 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
4786 unsigned TargetMask = 0;
4787 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00004788 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004789 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
4790 X86::getShufflePSHUFLWImmediate(NewV.getNode());
4791 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004792 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00004793 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004794 }
Eric Christopherfd179292009-08-27 18:07:15 +00004795
Nate Begemanb9a47b82009-02-23 08:49:38 +00004796 // If we have SSSE3, and all words of the result are from 1 input vector,
4797 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
4798 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004799 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004800 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004801
Nate Begemanb9a47b82009-02-23 08:49:38 +00004802 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00004803 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00004804 // mask, and elements that come from V1 in the V2 mask, so that the two
4805 // results can be OR'd together.
4806 bool TwoInputs = V1Used && V2Used;
4807 for (unsigned i = 0; i != 8; ++i) {
4808 int EltIdx = MaskVals[i] * 2;
4809 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004810 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4811 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004812 continue;
4813 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004814 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
4815 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004816 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004817 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004818 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004819 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004820 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004821 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004822 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004823
Nate Begemanb9a47b82009-02-23 08:49:38 +00004824 // Calculate the shuffle mask for the second input, shuffle it, and
4825 // OR it with the first shuffled input.
4826 pshufbMask.clear();
4827 for (unsigned i = 0; i != 8; ++i) {
4828 int EltIdx = MaskVals[i] * 2;
4829 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004830 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4831 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004832 continue;
4833 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004834 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
4835 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004836 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004837 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00004838 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004839 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004840 MVT::v16i8, &pshufbMask[0], 16));
4841 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004842 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004843 }
4844
4845 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
4846 // and update MaskVals with new element order.
4847 BitVector InOrder(8);
4848 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004849 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004850 for (int i = 0; i != 4; ++i) {
4851 int idx = MaskVals[i];
4852 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004853 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004854 InOrder.set(i);
4855 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004856 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004857 InOrder.set(i);
4858 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004859 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004860 }
4861 }
4862 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004863 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00004864 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004865 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004866
4867 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4868 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
4869 NewV.getOperand(0),
4870 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
4871 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004872 }
Eric Christopherfd179292009-08-27 18:07:15 +00004873
Nate Begemanb9a47b82009-02-23 08:49:38 +00004874 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
4875 // and update MaskVals with the new element order.
4876 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004877 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004878 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004879 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004880 for (unsigned i = 4; i != 8; ++i) {
4881 int idx = MaskVals[i];
4882 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004883 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004884 InOrder.set(i);
4885 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004886 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004887 InOrder.set(i);
4888 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004889 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004890 }
4891 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004892 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004893 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004894
4895 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4896 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
4897 NewV.getOperand(0),
4898 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
4899 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004900 }
Eric Christopherfd179292009-08-27 18:07:15 +00004901
Nate Begemanb9a47b82009-02-23 08:49:38 +00004902 // In case BestHi & BestLo were both -1, which means each quadword has a word
4903 // from each of the four input quadwords, calculate the InOrder bitvector now
4904 // before falling through to the insert/extract cleanup.
4905 if (BestLoQuad == -1 && BestHiQuad == -1) {
4906 NewV = V1;
4907 for (int i = 0; i != 8; ++i)
4908 if (MaskVals[i] < 0 || MaskVals[i] == i)
4909 InOrder.set(i);
4910 }
Eric Christopherfd179292009-08-27 18:07:15 +00004911
Nate Begemanb9a47b82009-02-23 08:49:38 +00004912 // The other elements are put in the right place using pextrw and pinsrw.
4913 for (unsigned i = 0; i != 8; ++i) {
4914 if (InOrder[i])
4915 continue;
4916 int EltIdx = MaskVals[i];
4917 if (EltIdx < 0)
4918 continue;
4919 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004920 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004921 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00004922 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004923 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00004924 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004925 DAG.getIntPtrConstant(i));
4926 }
4927 return NewV;
4928}
4929
4930// v16i8 shuffles - Prefer shuffles in the following order:
4931// 1. [ssse3] 1 x pshufb
4932// 2. [ssse3] 2 x pshufb + 1 x por
4933// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
4934static
Nate Begeman9008ca62009-04-27 18:41:29 +00004935SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00004936 SelectionDAG &DAG,
4937 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004938 SDValue V1 = SVOp->getOperand(0);
4939 SDValue V2 = SVOp->getOperand(1);
4940 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004941 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00004942 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00004943
Nate Begemanb9a47b82009-02-23 08:49:38 +00004944 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00004945 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00004946 // present, fall back to case 3.
4947 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
4948 bool V1Only = true;
4949 bool V2Only = true;
4950 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004951 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00004952 if (EltIdx < 0)
4953 continue;
4954 if (EltIdx < 16)
4955 V2Only = false;
4956 else
4957 V1Only = false;
4958 }
Eric Christopherfd179292009-08-27 18:07:15 +00004959
Nate Begemanb9a47b82009-02-23 08:49:38 +00004960 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
4961 if (TLI.getSubtarget()->hasSSSE3()) {
4962 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004963
Nate Begemanb9a47b82009-02-23 08:49:38 +00004964 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00004965 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004966 //
4967 // Otherwise, we have elements from both input vectors, and must zero out
4968 // elements that come from V2 in the first mask, and V1 in the second mask
4969 // so that we can OR them together.
4970 bool TwoInputs = !(V1Only || V2Only);
4971 for (unsigned i = 0; i != 16; ++i) {
4972 int EltIdx = MaskVals[i];
4973 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004974 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004975 continue;
4976 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004977 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004978 }
4979 // If all the elements are from V2, assign it to V1 and return after
4980 // building the first pshufb.
4981 if (V2Only)
4982 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00004983 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004984 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004985 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004986 if (!TwoInputs)
4987 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00004988
Nate Begemanb9a47b82009-02-23 08:49:38 +00004989 // Calculate the shuffle mask for the second input, shuffle it, and
4990 // OR it with the first shuffled input.
4991 pshufbMask.clear();
4992 for (unsigned i = 0; i != 16; ++i) {
4993 int EltIdx = MaskVals[i];
4994 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004995 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004996 continue;
4997 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004998 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004999 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005000 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005001 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005002 MVT::v16i8, &pshufbMask[0], 16));
5003 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005004 }
Eric Christopherfd179292009-08-27 18:07:15 +00005005
Nate Begemanb9a47b82009-02-23 08:49:38 +00005006 // No SSSE3 - Calculate in place words and then fix all out of place words
5007 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
5008 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005009 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5010 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005011 SDValue NewV = V2Only ? V2 : V1;
5012 for (int i = 0; i != 8; ++i) {
5013 int Elt0 = MaskVals[i*2];
5014 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00005015
Nate Begemanb9a47b82009-02-23 08:49:38 +00005016 // This word of the result is all undef, skip it.
5017 if (Elt0 < 0 && Elt1 < 0)
5018 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005019
Nate Begemanb9a47b82009-02-23 08:49:38 +00005020 // This word of the result is already in the correct place, skip it.
5021 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5022 continue;
5023 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
5024 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005025
Nate Begemanb9a47b82009-02-23 08:49:38 +00005026 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5027 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5028 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00005029
5030 // If Elt0 and Elt1 are defined, are consecutive, and can be load
5031 // using a single extract together, load it and store it.
5032 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005033 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005034 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00005035 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005036 DAG.getIntPtrConstant(i));
5037 continue;
5038 }
5039
Nate Begemanb9a47b82009-02-23 08:49:38 +00005040 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00005041 // source byte is not also odd, shift the extracted word left 8 bits
5042 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005043 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005044 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005045 DAG.getIntPtrConstant(Elt1 / 2));
5046 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005047 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005048 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005049 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005050 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5051 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005052 }
5053 // If Elt0 is defined, extract it from the appropriate source. If the
5054 // source byte is not also even, shift the extracted word right 8 bits. If
5055 // Elt1 was also defined, OR the extracted values together before
5056 // inserting them in the result.
5057 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005058 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005059 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5060 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005061 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005062 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005063 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005064 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5065 DAG.getConstant(0x00FF, MVT::i16));
5066 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00005067 : InsElt0;
5068 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005069 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005070 DAG.getIntPtrConstant(i));
5071 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005072 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005073}
5074
Evan Cheng7a831ce2007-12-15 03:00:47 +00005075/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005076/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00005077/// done when every pair / quad of shuffle mask elements point to elements in
5078/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005079/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00005080static
Nate Begeman9008ca62009-04-27 18:41:29 +00005081SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005082 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00005083 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00005084 SDValue V1 = SVOp->getOperand(0);
5085 SDValue V2 = SVOp->getOperand(1);
5086 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00005087 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005088 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00005089 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005090 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00005091 case MVT::v4f32: NewVT = MVT::v2f64; break;
5092 case MVT::v4i32: NewVT = MVT::v2i64; break;
5093 case MVT::v8i16: NewVT = MVT::v4i32; break;
5094 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00005095 }
5096
Nate Begeman9008ca62009-04-27 18:41:29 +00005097 int Scale = NumElems / NewWidth;
5098 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00005099 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005100 int StartIdx = -1;
5101 for (int j = 0; j < Scale; ++j) {
5102 int EltIdx = SVOp->getMaskElt(i+j);
5103 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005104 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00005105 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00005106 StartIdx = EltIdx - (EltIdx % Scale);
5107 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00005108 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005109 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005110 if (StartIdx == -1)
5111 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00005112 else
Nate Begeman9008ca62009-04-27 18:41:29 +00005113 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005114 }
5115
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005116 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
5117 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005118 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005119}
5120
Evan Chengd880b972008-05-09 21:53:03 +00005121/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005122///
Owen Andersone50ed302009-08-10 22:56:29 +00005123static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00005124 SDValue SrcOp, SelectionDAG &DAG,
5125 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005126 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005127 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00005128 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00005129 LD = dyn_cast<LoadSDNode>(SrcOp);
5130 if (!LD) {
5131 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
5132 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00005133 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00005134 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00005135 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005136 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00005137 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005138 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00005139 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005140 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005141 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5142 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5143 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00005144 SrcOp.getOperand(0)
5145 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005146 }
5147 }
5148 }
5149
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005150 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005151 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005152 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00005153 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005154}
5155
Evan Chengace3c172008-07-22 21:13:36 +00005156/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
5157/// shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00005158static SDValue
Nate Begeman9008ca62009-04-27 18:41:29 +00005159LowerVECTOR_SHUFFLE_4wide(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
5160 SDValue V1 = SVOp->getOperand(0);
5161 SDValue V2 = SVOp->getOperand(1);
5162 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00005163 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00005164
Evan Chengace3c172008-07-22 21:13:36 +00005165 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00005166 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005167 SmallVector<int, 8> Mask1(4U, -1);
5168 SmallVector<int, 8> PermMask;
5169 SVOp->getMask(PermMask);
5170
Evan Chengace3c172008-07-22 21:13:36 +00005171 unsigned NumHi = 0;
5172 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00005173 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005174 int Idx = PermMask[i];
5175 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005176 Locs[i] = std::make_pair(-1, -1);
5177 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005178 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
5179 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005180 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00005181 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005182 NumLo++;
5183 } else {
5184 Locs[i] = std::make_pair(1, NumHi);
5185 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005186 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005187 NumHi++;
5188 }
5189 }
5190 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005191
Evan Chengace3c172008-07-22 21:13:36 +00005192 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005193 // If no more than two elements come from either vector. This can be
5194 // implemented with two shuffles. First shuffle gather the elements.
5195 // The second shuffle, which takes the first shuffle as both of its
5196 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00005197 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005198
Nate Begeman9008ca62009-04-27 18:41:29 +00005199 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00005200
Evan Chengace3c172008-07-22 21:13:36 +00005201 for (unsigned i = 0; i != 4; ++i) {
5202 if (Locs[i].first == -1)
5203 continue;
5204 else {
5205 unsigned Idx = (i < 2) ? 0 : 4;
5206 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005207 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005208 }
5209 }
5210
Nate Begeman9008ca62009-04-27 18:41:29 +00005211 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005212 } else if (NumLo == 3 || NumHi == 3) {
5213 // Otherwise, we must have three elements from one vector, call it X, and
5214 // one element from the other, call it Y. First, use a shufps to build an
5215 // intermediate vector with the one element from Y and the element from X
5216 // that will be in the same half in the final destination (the indexes don't
5217 // matter). Then, use a shufps to build the final vector, taking the half
5218 // containing the element from Y from the intermediate, and the other half
5219 // from X.
5220 if (NumHi == 3) {
5221 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00005222 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005223 std::swap(V1, V2);
5224 }
5225
5226 // Find the element from V2.
5227 unsigned HiIndex;
5228 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005229 int Val = PermMask[HiIndex];
5230 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005231 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005232 if (Val >= 4)
5233 break;
5234 }
5235
Nate Begeman9008ca62009-04-27 18:41:29 +00005236 Mask1[0] = PermMask[HiIndex];
5237 Mask1[1] = -1;
5238 Mask1[2] = PermMask[HiIndex^1];
5239 Mask1[3] = -1;
5240 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005241
5242 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005243 Mask1[0] = PermMask[0];
5244 Mask1[1] = PermMask[1];
5245 Mask1[2] = HiIndex & 1 ? 6 : 4;
5246 Mask1[3] = HiIndex & 1 ? 4 : 6;
5247 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005248 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005249 Mask1[0] = HiIndex & 1 ? 2 : 0;
5250 Mask1[1] = HiIndex & 1 ? 0 : 2;
5251 Mask1[2] = PermMask[2];
5252 Mask1[3] = PermMask[3];
5253 if (Mask1[2] >= 0)
5254 Mask1[2] += 4;
5255 if (Mask1[3] >= 0)
5256 Mask1[3] += 4;
5257 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005258 }
Evan Chengace3c172008-07-22 21:13:36 +00005259 }
5260
5261 // Break it into (shuffle shuffle_hi, shuffle_lo).
5262 Locs.clear();
Nate Begeman9008ca62009-04-27 18:41:29 +00005263 SmallVector<int,8> LoMask(4U, -1);
5264 SmallVector<int,8> HiMask(4U, -1);
5265
5266 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005267 unsigned MaskIdx = 0;
5268 unsigned LoIdx = 0;
5269 unsigned HiIdx = 2;
5270 for (unsigned i = 0; i != 4; ++i) {
5271 if (i == 2) {
5272 MaskPtr = &HiMask;
5273 MaskIdx = 1;
5274 LoIdx = 0;
5275 HiIdx = 2;
5276 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005277 int Idx = PermMask[i];
5278 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005279 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005280 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005281 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005282 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005283 LoIdx++;
5284 } else {
5285 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005286 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005287 HiIdx++;
5288 }
5289 }
5290
Nate Begeman9008ca62009-04-27 18:41:29 +00005291 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5292 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5293 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005294 for (unsigned i = 0; i != 4; ++i) {
5295 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005296 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005297 } else {
5298 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005299 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005300 }
5301 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005302 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005303}
5304
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005305static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005306 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005307 V = V.getOperand(0);
5308 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5309 V = V.getOperand(0);
5310 if (MayFoldLoad(V))
5311 return true;
5312 return false;
5313}
5314
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005315// FIXME: the version above should always be used. Since there's
5316// a bug where several vector shuffles can't be folded because the
5317// DAG is not updated during lowering and a node claims to have two
5318// uses while it only has one, use this version, and let isel match
5319// another instruction if the load really happens to have more than
5320// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005321// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005322static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005323 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005324 V = V.getOperand(0);
5325 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5326 V = V.getOperand(0);
5327 if (ISD::isNormalLoad(V.getNode()))
5328 return true;
5329 return false;
5330}
5331
5332/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5333/// a vector extract, and if both can be later optimized into a single load.
5334/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5335/// here because otherwise a target specific shuffle node is going to be
5336/// emitted for this shuffle, and the optimization not done.
5337/// FIXME: This is probably not the best approach, but fix the problem
5338/// until the right path is decided.
5339static
5340bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5341 const TargetLowering &TLI) {
5342 EVT VT = V.getValueType();
5343 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5344
5345 // Be sure that the vector shuffle is present in a pattern like this:
5346 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5347 if (!V.hasOneUse())
5348 return false;
5349
5350 SDNode *N = *V.getNode()->use_begin();
5351 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5352 return false;
5353
5354 SDValue EltNo = N->getOperand(1);
5355 if (!isa<ConstantSDNode>(EltNo))
5356 return false;
5357
5358 // If the bit convert changed the number of elements, it is unsafe
5359 // to examine the mask.
5360 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005361 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005362 EVT SrcVT = V.getOperand(0).getValueType();
5363 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5364 return false;
5365 V = V.getOperand(0);
5366 HasShuffleIntoBitcast = true;
5367 }
5368
5369 // Select the input vector, guarding against out of range extract vector.
5370 unsigned NumElems = VT.getVectorNumElements();
5371 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5372 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5373 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5374
5375 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005376 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005377 V = V.getOperand(0);
5378
5379 if (ISD::isNormalLoad(V.getNode())) {
5380 // Is the original load suitable?
5381 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5382
5383 // FIXME: avoid the multi-use bug that is preventing lots of
5384 // of foldings to be detected, this is still wrong of course, but
5385 // give the temporary desired behavior, and if it happens that
5386 // the load has real more uses, during isel it will not fold, and
5387 // will generate poor code.
5388 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5389 return false;
5390
5391 if (!HasShuffleIntoBitcast)
5392 return true;
5393
5394 // If there's a bitcast before the shuffle, check if the load type and
5395 // alignment is valid.
5396 unsigned Align = LN0->getAlignment();
5397 unsigned NewAlign =
5398 TLI.getTargetData()->getABITypeAlignment(
5399 VT.getTypeForEVT(*DAG.getContext()));
5400
5401 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5402 return false;
5403 }
5404
5405 return true;
5406}
5407
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005408static
Evan Cheng835580f2010-10-07 20:50:20 +00005409SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5410 EVT VT = Op.getValueType();
5411
5412 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005413 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
5414 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00005415 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5416 V1, DAG));
5417}
5418
5419static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005420SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5421 bool HasSSE2) {
5422 SDValue V1 = Op.getOperand(0);
5423 SDValue V2 = Op.getOperand(1);
5424 EVT VT = Op.getValueType();
5425
5426 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5427
5428 if (HasSSE2 && VT == MVT::v2f64)
5429 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5430
5431 // v4f32 or v4i32
5432 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5433}
5434
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005435static
5436SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5437 SDValue V1 = Op.getOperand(0);
5438 SDValue V2 = Op.getOperand(1);
5439 EVT VT = Op.getValueType();
5440
5441 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5442 "unsupported shuffle type");
5443
5444 if (V2.getOpcode() == ISD::UNDEF)
5445 V2 = V1;
5446
5447 // v4i32 or v4f32
5448 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5449}
5450
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005451static
5452SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5453 SDValue V1 = Op.getOperand(0);
5454 SDValue V2 = Op.getOperand(1);
5455 EVT VT = Op.getValueType();
5456 unsigned NumElems = VT.getVectorNumElements();
5457
5458 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5459 // operand of these instructions is only memory, so check if there's a
5460 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5461 // same masks.
5462 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005463
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005464 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005465 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005466 CanFoldLoad = true;
5467
5468 // When V1 is a load, it can be folded later into a store in isel, example:
5469 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5470 // turns into:
5471 // (MOVLPSmr addr:$src1, VR128:$src2)
5472 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005473 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005474 CanFoldLoad = true;
5475
5476 if (CanFoldLoad) {
5477 if (HasSSE2 && NumElems == 2)
5478 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5479
5480 if (NumElems == 4)
5481 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5482 }
5483
5484 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5485 // movl and movlp will both match v2i64, but v2i64 is never matched by
5486 // movl earlier because we make it strict to avoid messing with the movlp load
5487 // folding logic (see the code above getMOVLP call). Match it here then,
5488 // this is horrible, but will stay like this until we move all shuffle
5489 // matching to x86 specific nodes. Note that for the 1st condition all
5490 // types are matched with movsd.
5491 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5492 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5493 else if (HasSSE2)
5494 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5495
5496
5497 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5498
5499 // Invert the operand order and use SHUFPS to match it.
5500 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5501 X86::getShuffleSHUFImmediate(SVOp), DAG);
5502}
5503
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005504static inline unsigned getUNPCKLOpcode(EVT VT) {
5505 switch(VT.getSimpleVT().SimpleTy) {
5506 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5507 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
5508 case MVT::v4f32: return X86ISD::UNPCKLPS;
5509 case MVT::v2f64: return X86ISD::UNPCKLPD;
5510 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5511 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5512 default:
5513 llvm_unreachable("Unknow type for unpckl");
5514 }
5515 return 0;
5516}
5517
5518static inline unsigned getUNPCKHOpcode(EVT VT) {
5519 switch(VT.getSimpleVT().SimpleTy) {
5520 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5521 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5522 case MVT::v4f32: return X86ISD::UNPCKHPS;
5523 case MVT::v2f64: return X86ISD::UNPCKHPD;
5524 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5525 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5526 default:
5527 llvm_unreachable("Unknow type for unpckh");
5528 }
5529 return 0;
5530}
5531
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005532static
5533SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005534 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005535 const X86Subtarget *Subtarget) {
5536 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5537 EVT VT = Op.getValueType();
5538 DebugLoc dl = Op.getDebugLoc();
5539 SDValue V1 = Op.getOperand(0);
5540 SDValue V2 = Op.getOperand(1);
5541
5542 if (isZeroShuffle(SVOp))
5543 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
5544
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005545 // Handle splat operations
5546 if (SVOp->isSplat()) {
5547 // Special case, this is the only place now where it's
5548 // allowed to return a vector_shuffle operation without
5549 // using a target specific node, because *hopefully* it
5550 // will be optimized away by the dag combiner.
5551 if (VT.getVectorNumElements() <= 4 &&
5552 CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
5553 return Op;
5554
5555 // Handle splats by matching through known masks
5556 if (VT.getVectorNumElements() <= 4)
5557 return SDValue();
5558
Evan Cheng835580f2010-10-07 20:50:20 +00005559 // Canonicalize all of the remaining to v4f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005560 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005561 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005562
5563 // If the shuffle can be profitably rewritten as a narrower shuffle, then
5564 // do it!
5565 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
5566 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5567 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005568 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005569 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
5570 // FIXME: Figure out a cleaner way to do this.
5571 // Try to make use of movq to zero out the top part.
5572 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
5573 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5574 if (NewOp.getNode()) {
5575 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
5576 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
5577 DAG, Subtarget, dl);
5578 }
5579 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
5580 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5581 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
5582 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
5583 DAG, Subtarget, dl);
5584 }
5585 }
5586 return SDValue();
5587}
5588
Dan Gohman475871a2008-07-27 21:46:04 +00005589SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005590X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00005591 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005592 SDValue V1 = Op.getOperand(0);
5593 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005594 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005595 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00005596 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005597 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005598 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
5599 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00005600 bool V1IsSplat = false;
5601 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005602 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005603 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005604 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005605 MachineFunction &MF = DAG.getMachineFunction();
5606 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005607
Dale Johannesen0488fb62010-09-30 23:57:10 +00005608 // Shuffle operations on MMX not supported.
5609 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00005610 return Op;
5611
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005612 // Vector shuffle lowering takes 3 steps:
5613 //
5614 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
5615 // narrowing and commutation of operands should be handled.
5616 // 2) Matching of shuffles with known shuffle masks to x86 target specific
5617 // shuffle nodes.
5618 // 3) Rewriting of unmatched masks into new generic shuffle operations,
5619 // so the shuffle can be broken into other shuffles and the legalizer can
5620 // try the lowering again.
5621 //
5622 // The general ideia is that no vector_shuffle operation should be left to
5623 // be matched during isel, all of them must be converted to a target specific
5624 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00005625
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005626 // Normalize the input vectors. Here splats, zeroed vectors, profitable
5627 // narrowing and commutation of operands should be handled. The actual code
5628 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005629 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005630 if (NewOp.getNode())
5631 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00005632
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005633 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
5634 // unpckh_undef). Only use pshufd if speed is more important than size.
5635 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
5636 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5637 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5638 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
5639 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5640 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00005641
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005642 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00005643 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00005644 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005645
Dale Johannesen0488fb62010-09-30 23:57:10 +00005646 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005647 return getMOVHighToLow(Op, dl, DAG);
5648
5649 // Use to match splats
5650 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
5651 (VT == MVT::v2f64 || VT == MVT::v2i64))
5652 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5653
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005654 if (X86::isPSHUFDMask(SVOp)) {
5655 // The actual implementation will match the mask in the if above and then
5656 // during isel it can match several different instructions, not only pshufd
5657 // as its name says, sad but true, emulate the behavior for now...
5658 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
5659 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
5660
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005661 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5662
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005663 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005664 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
5665
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005666 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005667 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
5668 TargetMask, DAG);
5669
5670 if (VT == MVT::v4f32)
5671 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
5672 TargetMask, DAG);
5673 }
Eric Christopherfd179292009-08-27 18:07:15 +00005674
Evan Chengf26ffe92008-05-29 08:22:04 +00005675 // Check if this can be converted into a logical shift.
5676 bool isLeft = false;
5677 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00005678 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00005679 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00005680 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00005681 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005682 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00005683 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005684 EVT EltVT = VT.getVectorElementType();
5685 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005686 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005687 }
Eric Christopherfd179292009-08-27 18:07:15 +00005688
Nate Begeman9008ca62009-04-27 18:41:29 +00005689 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005690 if (V1IsUndef)
5691 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00005692 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00005693 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00005694 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005695 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005696 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5697
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005698 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005699 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5700 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00005701 }
Eric Christopherfd179292009-08-27 18:07:15 +00005702
Nate Begeman9008ca62009-04-27 18:41:29 +00005703 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00005704 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
5705 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005706
Dale Johannesen0488fb62010-09-30 23:57:10 +00005707 if (X86::isMOVHLPSMask(SVOp))
5708 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005709
Dale Johannesen0488fb62010-09-30 23:57:10 +00005710 if (X86::isMOVSHDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5711 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005712
Dale Johannesen0488fb62010-09-30 23:57:10 +00005713 if (X86::isMOVSLDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5714 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00005715
Dale Johannesen0488fb62010-09-30 23:57:10 +00005716 if (X86::isMOVLPMask(SVOp))
5717 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005718
Nate Begeman9008ca62009-04-27 18:41:29 +00005719 if (ShouldXformToMOVHLPS(SVOp) ||
5720 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
5721 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005722
Evan Chengf26ffe92008-05-29 08:22:04 +00005723 if (isShift) {
5724 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005725 EVT EltVT = VT.getVectorElementType();
5726 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005727 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005728 }
Eric Christopherfd179292009-08-27 18:07:15 +00005729
Evan Cheng9eca5e82006-10-25 21:49:50 +00005730 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00005731 // FIXME: This should also accept a bitcast of a splat? Be careful, not
5732 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00005733 V1IsSplat = isSplatVector(V1.getNode());
5734 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005735
Chris Lattner8a594482007-11-25 00:24:49 +00005736 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00005737 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005738 Op = CommuteVectorShuffle(SVOp, DAG);
5739 SVOp = cast<ShuffleVectorSDNode>(Op);
5740 V1 = SVOp->getOperand(0);
5741 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00005742 std::swap(V1IsSplat, V2IsSplat);
5743 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005744 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00005745 }
5746
Nate Begeman9008ca62009-04-27 18:41:29 +00005747 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
5748 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00005749 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00005750 return V1;
5751 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
5752 // the instruction selector will not match, so get a canonical MOVL with
5753 // swapped operands to undo the commute.
5754 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00005755 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005756
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005757 if (X86::isUNPCKLMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005758 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005759
5760 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005761 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00005762
Evan Cheng9bbbb982006-10-25 20:48:19 +00005763 if (V2IsSplat) {
5764 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00005765 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00005766 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00005767 SDValue NewMask = NormalizeMask(SVOp, DAG);
5768 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
5769 if (NSVOp != SVOp) {
5770 if (X86::isUNPCKLMask(NSVOp, true)) {
5771 return NewMask;
5772 } else if (X86::isUNPCKHMask(NSVOp, true)) {
5773 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005774 }
5775 }
5776 }
5777
Evan Cheng9eca5e82006-10-25 21:49:50 +00005778 if (Commuted) {
5779 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00005780 // FIXME: this seems wrong.
5781 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
5782 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005783
5784 if (X86::isUNPCKLMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005785 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005786
5787 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005788 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005789 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005790
Nate Begeman9008ca62009-04-27 18:41:29 +00005791 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00005792 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00005793 return CommuteVectorShuffle(SVOp, DAG);
5794
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00005795 // The checks below are all present in isShuffleMaskLegal, but they are
5796 // inlined here right now to enable us to directly emit target specific
5797 // nodes, and remove one by one until they don't return Op anymore.
5798 SmallVector<int, 16> M;
5799 SVOp->getMask(M);
5800
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005801 if (isPALIGNRMask(M, VT, HasSSSE3))
5802 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
5803 X86::getShufflePALIGNRImmediate(SVOp),
5804 DAG);
5805
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00005806 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
5807 SVOp->getSplatIndex() == 0 && V2IsUndef) {
5808 if (VT == MVT::v2f64)
5809 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
5810 if (VT == MVT::v2i64)
5811 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
5812 }
5813
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00005814 if (isPSHUFHWMask(M, VT))
5815 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
5816 X86::getShufflePSHUFHWImmediate(SVOp),
5817 DAG);
5818
5819 if (isPSHUFLWMask(M, VT))
5820 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
5821 X86::getShufflePSHUFLWImmediate(SVOp),
5822 DAG);
5823
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00005824 if (isSHUFPMask(M, VT)) {
5825 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5826 if (VT == MVT::v4f32 || VT == MVT::v4i32)
5827 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
5828 TargetMask, DAG);
5829 if (VT == MVT::v2f64 || VT == MVT::v2i64)
5830 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
5831 TargetMask, DAG);
5832 }
5833
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005834 if (X86::isUNPCKL_v_undef_Mask(SVOp))
5835 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5836 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5837 if (X86::isUNPCKH_v_undef_Mask(SVOp))
5838 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5839 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5840
Evan Cheng14b32e12007-12-11 01:46:18 +00005841 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
Owen Anderson825b72b2009-08-11 20:47:22 +00005842 if (VT == MVT::v8i16) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005843 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005844 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00005845 return NewOp;
5846 }
5847
Owen Anderson825b72b2009-08-11 20:47:22 +00005848 if (VT == MVT::v16i8) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005849 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005850 if (NewOp.getNode())
5851 return NewOp;
5852 }
Eric Christopherfd179292009-08-27 18:07:15 +00005853
Dale Johannesen0488fb62010-09-30 23:57:10 +00005854 // Handle all 4 wide cases with a number of shuffles.
5855 if (NumElems == 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005856 return LowerVECTOR_SHUFFLE_4wide(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005857
Dan Gohman475871a2008-07-27 21:46:04 +00005858 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005859}
5860
Dan Gohman475871a2008-07-27 21:46:04 +00005861SDValue
5862X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00005863 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005864 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005865 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005866 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005867 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005868 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005869 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005870 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005871 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005872 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00005873 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
5874 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
5875 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005876 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5877 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005878 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005879 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00005880 Op.getOperand(0)),
5881 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00005882 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005883 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005884 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005885 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005886 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00005887 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00005888 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
5889 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005890 // result has a single use which is a store or a bitcast to i32. And in
5891 // the case of a store, it's not worth it if the index is a constant 0,
5892 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00005893 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00005894 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00005895 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005896 if ((User->getOpcode() != ISD::STORE ||
5897 (isa<ConstantSDNode>(Op.getOperand(1)) &&
5898 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005899 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005900 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00005901 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00005902 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005903 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00005904 Op.getOperand(0)),
5905 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005906 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00005907 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00005908 // ExtractPS works with constant index.
5909 if (isa<ConstantSDNode>(Op.getOperand(1)))
5910 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005911 }
Dan Gohman475871a2008-07-27 21:46:04 +00005912 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005913}
5914
5915
Dan Gohman475871a2008-07-27 21:46:04 +00005916SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005917X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
5918 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005919 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00005920 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005921
David Greene74a579d2011-02-10 16:57:36 +00005922 SDValue Vec = Op.getOperand(0);
5923 EVT VecVT = Vec.getValueType();
5924
5925 // If this is a 256-bit vector result, first extract the 128-bit
5926 // vector and then extract from the 128-bit vector.
5927 if (VecVT.getSizeInBits() > 128) {
5928 DebugLoc dl = Op.getNode()->getDebugLoc();
5929 unsigned NumElems = VecVT.getVectorNumElements();
5930 SDValue Idx = Op.getOperand(1);
5931
5932 if (!isa<ConstantSDNode>(Idx))
5933 return SDValue();
5934
5935 unsigned ExtractNumElems = NumElems / (VecVT.getSizeInBits() / 128);
5936 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
5937
5938 // Get the 128-bit vector.
5939 bool Upper = IdxVal >= ExtractNumElems;
5940 Vec = Extract128BitVector(Vec, Idx, DAG, dl);
5941
5942 // Extract from it.
5943 SDValue ScaledIdx = Idx;
5944 if (Upper)
5945 ScaledIdx = DAG.getNode(ISD::SUB, dl, Idx.getValueType(), Idx,
5946 DAG.getConstant(ExtractNumElems,
5947 Idx.getValueType()));
5948 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
5949 ScaledIdx);
5950 }
5951
5952 assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
5953
Evan Cheng62a3f152008-03-24 21:52:23 +00005954 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005955 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005956 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00005957 return Res;
5958 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00005959
Owen Andersone50ed302009-08-10 22:56:29 +00005960 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005961 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005962 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005963 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005964 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005965 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005966 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005967 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5968 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005969 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005970 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00005971 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005972 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00005973 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00005974 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005975 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00005976 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005977 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005978 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005979 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005980 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005981 if (Idx == 0)
5982 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00005983
Evan Cheng0db9fe62006-04-25 20:13:52 +00005984 // SHUFPS the element to the lowest double word, then movss.
Nate Begeman9008ca62009-04-27 18:41:29 +00005985 int Mask[4] = { Idx, -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005986 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005987 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005988 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005989 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005990 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00005991 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005992 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
5993 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
5994 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005995 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005996 if (Idx == 0)
5997 return Op;
5998
5999 // UNPCKHPD the element to the lowest double word, then movsd.
6000 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6001 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00006002 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006003 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006004 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006005 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006006 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006007 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006008 }
6009
Dan Gohman475871a2008-07-27 21:46:04 +00006010 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006011}
6012
Dan Gohman475871a2008-07-27 21:46:04 +00006013SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006014X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6015 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006016 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006017 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006018 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006019
Dan Gohman475871a2008-07-27 21:46:04 +00006020 SDValue N0 = Op.getOperand(0);
6021 SDValue N1 = Op.getOperand(1);
6022 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00006023
Dan Gohman8a55ce42009-09-23 21:02:20 +00006024 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00006025 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006026 unsigned Opc;
6027 if (VT == MVT::v8i16)
6028 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006029 else if (VT == MVT::v16i8)
6030 Opc = X86ISD::PINSRB;
6031 else
6032 Opc = X86ISD::PINSRB;
6033
Nate Begeman14d12ca2008-02-11 04:19:36 +00006034 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
6035 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006036 if (N1.getValueType() != MVT::i32)
6037 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6038 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006039 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00006040 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006041 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006042 // Bits [7:6] of the constant are the source select. This will always be
6043 // zero here. The DAG Combiner may combine an extract_elt index into these
6044 // bits. For example (insert (extract, 3), 2) could be matched by putting
6045 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00006046 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00006047 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00006048 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00006049 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006050 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00006051 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00006052 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00006053 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006054 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00006055 // PINSR* works with constant index.
6056 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006057 }
Dan Gohman475871a2008-07-27 21:46:04 +00006058 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006059}
6060
Dan Gohman475871a2008-07-27 21:46:04 +00006061SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006062X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006063 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006064 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006065
David Greene6b381262011-02-09 15:32:06 +00006066 DebugLoc dl = Op.getDebugLoc();
6067 SDValue N0 = Op.getOperand(0);
6068 SDValue N1 = Op.getOperand(1);
6069 SDValue N2 = Op.getOperand(2);
6070
6071 // If this is a 256-bit vector result, first insert into a 128-bit
6072 // vector and then insert into the 256-bit vector.
6073 if (VT.getSizeInBits() > 128) {
6074 if (!isa<ConstantSDNode>(N2))
6075 return SDValue();
6076
6077 // Get the 128-bit vector.
6078 unsigned NumElems = VT.getVectorNumElements();
6079 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
6080 bool Upper = IdxVal >= NumElems / 2;
6081
6082 SDValue SubN0 = Extract128BitVector(N0, N2, DAG, dl);
6083
6084 // Insert into it.
6085 SDValue ScaledN2 = N2;
6086 if (Upper)
6087 ScaledN2 = DAG.getNode(ISD::SUB, dl, N2.getValueType(), N2,
6088 DAG.getConstant(NumElems /
6089 (VT.getSizeInBits() / 128),
6090 N2.getValueType()));
6091 Op = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, SubN0.getValueType(), SubN0,
6092 N1, ScaledN2);
6093
6094 // Insert the 128-bit vector
6095 // FIXME: Why UNDEF?
6096 return Insert128BitVector(N0, Op, N2, DAG, dl);
6097 }
6098
Nate Begeman14d12ca2008-02-11 04:19:36 +00006099 if (Subtarget->hasSSE41())
6100 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
6101
Dan Gohman8a55ce42009-09-23 21:02:20 +00006102 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00006103 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00006104
Dan Gohman8a55ce42009-09-23 21:02:20 +00006105 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00006106 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
6107 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006108 if (N1.getValueType() != MVT::i32)
6109 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6110 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006111 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00006112 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006113 }
Dan Gohman475871a2008-07-27 21:46:04 +00006114 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006115}
6116
Dan Gohman475871a2008-07-27 21:46:04 +00006117SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006118X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
David Greene2fcdfb42011-02-10 23:11:29 +00006119 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006120 DebugLoc dl = Op.getDebugLoc();
David Greene2fcdfb42011-02-10 23:11:29 +00006121 EVT OpVT = Op.getValueType();
6122
6123 // If this is a 256-bit vector result, first insert into a 128-bit
6124 // vector and then insert into the 256-bit vector.
6125 if (OpVT.getSizeInBits() > 128) {
6126 // Insert into a 128-bit vector.
6127 EVT VT128 = EVT::getVectorVT(*Context,
6128 OpVT.getVectorElementType(),
6129 OpVT.getVectorNumElements() / 2);
6130
6131 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
6132
6133 // Insert the 128-bit vector.
6134 return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op,
6135 DAG.getConstant(0, MVT::i32),
6136 DAG, dl);
6137 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006138
Chris Lattnerf172ecd2010-07-04 23:07:25 +00006139 if (Op.getValueType() == MVT::v1i64 &&
6140 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00006141 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00006142
Owen Anderson825b72b2009-08-11 20:47:22 +00006143 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00006144 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
6145 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006146 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00006147 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006148}
6149
David Greene91585092011-01-26 15:38:49 +00006150// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
6151// a simple subregister reference or explicit instructions to grab
6152// upper bits of a vector.
6153SDValue
6154X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6155 if (Subtarget->hasAVX()) {
David Greenea5f26012011-02-07 19:36:54 +00006156 DebugLoc dl = Op.getNode()->getDebugLoc();
6157 SDValue Vec = Op.getNode()->getOperand(0);
6158 SDValue Idx = Op.getNode()->getOperand(1);
6159
6160 if (Op.getNode()->getValueType(0).getSizeInBits() == 128
6161 && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
6162 return Extract128BitVector(Vec, Idx, DAG, dl);
6163 }
David Greene91585092011-01-26 15:38:49 +00006164 }
6165 return SDValue();
6166}
6167
David Greenecfe33c42011-01-26 19:13:22 +00006168// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
6169// simple superregister reference or explicit instructions to insert
6170// the upper bits of a vector.
6171SDValue
6172X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6173 if (Subtarget->hasAVX()) {
6174 DebugLoc dl = Op.getNode()->getDebugLoc();
6175 SDValue Vec = Op.getNode()->getOperand(0);
6176 SDValue SubVec = Op.getNode()->getOperand(1);
6177 SDValue Idx = Op.getNode()->getOperand(2);
6178
6179 if (Op.getNode()->getValueType(0).getSizeInBits() == 256
6180 && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
David Greenea5f26012011-02-07 19:36:54 +00006181 return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00006182 }
6183 }
6184 return SDValue();
6185}
6186
Bill Wendling056292f2008-09-16 21:48:12 +00006187// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
6188// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
6189// one of the above mentioned nodes. It has to be wrapped because otherwise
6190// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
6191// be used to form addressing mode. These wrapped nodes will be selected
6192// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00006193SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006194X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006195 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006196
Chris Lattner41621a22009-06-26 19:22:52 +00006197 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6198 // global base reg.
6199 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006200 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006201 CodeModel::Model M = getTargetMachine().getCodeModel();
6202
Chris Lattner4f066492009-07-11 20:29:19 +00006203 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006204 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006205 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006206 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006207 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006208 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006209 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006210
Evan Cheng1606e8e2009-03-13 07:51:59 +00006211 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00006212 CP->getAlignment(),
6213 CP->getOffset(), OpFlag);
6214 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00006215 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006216 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00006217 if (OpFlag) {
6218 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00006219 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006220 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006221 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006222 }
6223
6224 return Result;
6225}
6226
Dan Gohmand858e902010-04-17 15:26:15 +00006227SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006228 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006229
Chris Lattner18c59872009-06-27 04:16:01 +00006230 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6231 // global base reg.
6232 unsigned char OpFlag = 0;
6233 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006234 CodeModel::Model M = getTargetMachine().getCodeModel();
6235
Chris Lattner4f066492009-07-11 20:29:19 +00006236 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006237 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006238 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006239 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006240 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006241 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006242 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006243
Chris Lattner18c59872009-06-27 04:16:01 +00006244 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
6245 OpFlag);
6246 DebugLoc DL = JT->getDebugLoc();
6247 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006248
Chris Lattner18c59872009-06-27 04:16:01 +00006249 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00006250 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00006251 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6252 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006253 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006254 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006255
Chris Lattner18c59872009-06-27 04:16:01 +00006256 return Result;
6257}
6258
6259SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006260X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006261 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00006262
Chris Lattner18c59872009-06-27 04:16:01 +00006263 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6264 // global base reg.
6265 unsigned char OpFlag = 0;
6266 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006267 CodeModel::Model M = getTargetMachine().getCodeModel();
6268
Chris Lattner4f066492009-07-11 20:29:19 +00006269 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006270 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006271 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006272 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006273 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006274 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006275 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006276
Chris Lattner18c59872009-06-27 04:16:01 +00006277 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00006278
Chris Lattner18c59872009-06-27 04:16:01 +00006279 DebugLoc DL = Op.getDebugLoc();
6280 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006281
6282
Chris Lattner18c59872009-06-27 04:16:01 +00006283 // With PIC, the address is actually $g + Offset.
6284 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00006285 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00006286 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6287 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006288 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006289 Result);
6290 }
Eric Christopherfd179292009-08-27 18:07:15 +00006291
Chris Lattner18c59872009-06-27 04:16:01 +00006292 return Result;
6293}
6294
Dan Gohman475871a2008-07-27 21:46:04 +00006295SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006296X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00006297 // Create the TargetBlockAddressAddress node.
6298 unsigned char OpFlags =
6299 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00006300 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00006301 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00006302 DebugLoc dl = Op.getDebugLoc();
6303 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
6304 /*isTarget=*/true, OpFlags);
6305
Dan Gohmanf705adb2009-10-30 01:28:02 +00006306 if (Subtarget->isPICStyleRIPRel() &&
6307 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00006308 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6309 else
6310 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00006311
Dan Gohman29cbade2009-11-20 23:18:13 +00006312 // With PIC, the address is actually $g + Offset.
6313 if (isGlobalRelativeToPICBase(OpFlags)) {
6314 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6315 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
6316 Result);
6317 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00006318
6319 return Result;
6320}
6321
6322SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00006323X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00006324 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00006325 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00006326 // Create the TargetGlobalAddress node, folding in the constant
6327 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00006328 unsigned char OpFlags =
6329 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006330 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00006331 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006332 if (OpFlags == X86II::MO_NO_FLAG &&
6333 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00006334 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00006335 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00006336 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006337 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00006338 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006339 }
Eric Christopherfd179292009-08-27 18:07:15 +00006340
Chris Lattner4f066492009-07-11 20:29:19 +00006341 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006342 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00006343 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6344 else
6345 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00006346
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006347 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00006348 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006349 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6350 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006351 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006352 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006353
Chris Lattner36c25012009-07-10 07:34:39 +00006354 // For globals that require a load from a stub to get the address, emit the
6355 // load.
6356 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00006357 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006358 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006359
Dan Gohman6520e202008-10-18 02:06:02 +00006360 // If there was a non-zero offset that we didn't fold, create an explicit
6361 // addition for it.
6362 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006363 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006364 DAG.getConstant(Offset, getPointerTy()));
6365
Evan Cheng0db9fe62006-04-25 20:13:52 +00006366 return Result;
6367}
6368
Evan Chengda43bcf2008-09-24 00:05:32 +00006369SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006370X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006371 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006372 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006373 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006374}
6375
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006376static SDValue
6377GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006378 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006379 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006380 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006381 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006382 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006383 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006384 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006385 GA->getOffset(),
6386 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006387 if (InFlag) {
6388 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006389 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006390 } else {
6391 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006392 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006393 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006394
6395 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006396 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006397
Rafael Espindola15f1b662009-04-24 12:59:40 +00006398 SDValue Flag = Chain.getValue(1);
6399 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006400}
6401
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006402// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006403static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006404LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006405 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006406 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006407 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6408 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006409 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006410 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006411 InFlag = Chain.getValue(1);
6412
Chris Lattnerb903bed2009-06-26 21:20:29 +00006413 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006414}
6415
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006416// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006417static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006418LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006419 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006420 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6421 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006422}
6423
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006424// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6425// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006426static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006427 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006428 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006429 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006430
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006431 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6432 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6433 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006434
Michael J. Spencerec38de22010-10-10 22:04:20 +00006435 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006436 DAG.getIntPtrConstant(0),
6437 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006438
Chris Lattnerb903bed2009-06-26 21:20:29 +00006439 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006440 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6441 // initialexec.
6442 unsigned WrapperKind = X86ISD::Wrapper;
6443 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006444 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006445 } else if (is64Bit) {
6446 assert(model == TLSModel::InitialExec);
6447 OperandFlags = X86II::MO_GOTTPOFF;
6448 WrapperKind = X86ISD::WrapperRIP;
6449 } else {
6450 assert(model == TLSModel::InitialExec);
6451 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006452 }
Eric Christopherfd179292009-08-27 18:07:15 +00006453
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006454 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6455 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006456 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006457 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006458 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006459 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006460
Rafael Espindola9a580232009-02-27 13:37:18 +00006461 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006462 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006463 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006464
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006465 // The address of the thread local variable is the add of the thread
6466 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006467 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006468}
6469
Dan Gohman475871a2008-07-27 21:46:04 +00006470SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006471X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006472
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006473 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006474 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006475
Eric Christopher30ef0e52010-06-03 04:07:48 +00006476 if (Subtarget->isTargetELF()) {
6477 // TODO: implement the "local dynamic" model
6478 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006479
Eric Christopher30ef0e52010-06-03 04:07:48 +00006480 // If GV is an alias then use the aliasee for determining
6481 // thread-localness.
6482 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6483 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006484
6485 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006486 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006487
Eric Christopher30ef0e52010-06-03 04:07:48 +00006488 switch (model) {
6489 case TLSModel::GeneralDynamic:
6490 case TLSModel::LocalDynamic: // not implemented
6491 if (Subtarget->is64Bit())
6492 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6493 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006494
Eric Christopher30ef0e52010-06-03 04:07:48 +00006495 case TLSModel::InitialExec:
6496 case TLSModel::LocalExec:
6497 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6498 Subtarget->is64Bit());
6499 }
6500 } else if (Subtarget->isTargetDarwin()) {
6501 // Darwin only has one model of TLS. Lower to that.
6502 unsigned char OpFlag = 0;
6503 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6504 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006505
Eric Christopher30ef0e52010-06-03 04:07:48 +00006506 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6507 // global base reg.
6508 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6509 !Subtarget->is64Bit();
6510 if (PIC32)
6511 OpFlag = X86II::MO_TLVP_PIC_BASE;
6512 else
6513 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006514 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006515 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00006516 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00006517 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00006518 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006519
Eric Christopher30ef0e52010-06-03 04:07:48 +00006520 // With PIC32, the address is actually $g + Offset.
6521 if (PIC32)
6522 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6523 DAG.getNode(X86ISD::GlobalBaseReg,
6524 DebugLoc(), getPointerTy()),
6525 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006526
Eric Christopher30ef0e52010-06-03 04:07:48 +00006527 // Lowering the machine isd will make sure everything is in the right
6528 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00006529 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006530 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00006531 SDValue Args[] = { Chain, Offset };
6532 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006533
Eric Christopher30ef0e52010-06-03 04:07:48 +00006534 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
6535 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6536 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00006537
Eric Christopher30ef0e52010-06-03 04:07:48 +00006538 // And our return value (tls address) is in the standard call return value
6539 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00006540 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
6541 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006542 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006543
Eric Christopher30ef0e52010-06-03 04:07:48 +00006544 assert(false &&
6545 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00006546
Torok Edwinc23197a2009-07-14 16:55:14 +00006547 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00006548 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006549}
6550
Evan Cheng0db9fe62006-04-25 20:13:52 +00006551
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006552/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00006553/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohmand858e902010-04-17 15:26:15 +00006554SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00006555 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00006556 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006557 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006558 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006559 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00006560 SDValue ShOpLo = Op.getOperand(0);
6561 SDValue ShOpHi = Op.getOperand(1);
6562 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00006563 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00006564 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00006565 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00006566
Dan Gohman475871a2008-07-27 21:46:04 +00006567 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006568 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006569 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
6570 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006571 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006572 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
6573 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006574 }
Evan Chenge3413162006-01-09 18:33:28 +00006575
Owen Anderson825b72b2009-08-11 20:47:22 +00006576 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
6577 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00006578 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00006579 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00006580
Dan Gohman475871a2008-07-27 21:46:04 +00006581 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00006582 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00006583 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
6584 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00006585
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006586 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006587 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6588 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006589 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006590 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6591 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006592 }
6593
Dan Gohman475871a2008-07-27 21:46:04 +00006594 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00006595 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006596}
Evan Chenga3195e82006-01-12 22:54:21 +00006597
Dan Gohmand858e902010-04-17 15:26:15 +00006598SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
6599 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006600 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00006601
Dale Johannesen0488fb62010-09-30 23:57:10 +00006602 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006603 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006604
Owen Anderson825b72b2009-08-11 20:47:22 +00006605 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00006606 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00006607
Eli Friedman36df4992009-05-27 00:47:34 +00006608 // These are really Legal; return the operand so the caller accepts it as
6609 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006610 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00006611 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00006612 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00006613 Subtarget->is64Bit()) {
6614 return Op;
6615 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006616
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006617 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006618 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006619 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00006620 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006621 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00006622 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00006623 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006624 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006625 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006626 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
6627}
Evan Cheng0db9fe62006-04-25 20:13:52 +00006628
Owen Andersone50ed302009-08-10 22:56:29 +00006629SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00006630 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00006631 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006632 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00006633 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00006634 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00006635 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006636 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006637 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00006638 else
Owen Anderson825b72b2009-08-11 20:47:22 +00006639 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006640
Chris Lattner492a43e2010-09-22 01:28:21 +00006641 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006642
Chris Lattner492a43e2010-09-22 01:28:21 +00006643 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6644 MachineMemOperand *MMO =
6645 DAG.getMachineFunction()
6646 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6647 MachineMemOperand::MOLoad, ByteSize, ByteSize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006648
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006649 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006650 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
6651 X86ISD::FILD, DL,
6652 Tys, Ops, array_lengthof(Ops),
6653 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006654
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006655 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006656 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00006657 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006658
6659 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
6660 // shouldn't be necessary except that RFP cannot be live across
6661 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006662 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006663 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
6664 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006665 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00006666 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006667 SDValue Ops[] = {
6668 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
6669 };
Chris Lattner492a43e2010-09-22 01:28:21 +00006670 MachineMemOperand *MMO =
6671 DAG.getMachineFunction()
6672 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006673 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006674
Chris Lattner492a43e2010-09-22 01:28:21 +00006675 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
6676 Ops, array_lengthof(Ops),
6677 Op.getValueType(), MMO);
6678 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006679 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006680 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006681 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006682
Evan Cheng0db9fe62006-04-25 20:13:52 +00006683 return Result;
6684}
6685
Bill Wendling8b8a6362009-01-17 03:56:04 +00006686// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006687SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
6688 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00006689 // This algorithm is not obvious. Here it is in C code, more or less:
6690 /*
6691 double uint64_to_double( uint32_t hi, uint32_t lo ) {
6692 static const __m128i exp = { 0x4330000045300000ULL, 0 };
6693 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00006694
Bill Wendling8b8a6362009-01-17 03:56:04 +00006695 // Copy ints to xmm registers.
6696 __m128i xh = _mm_cvtsi32_si128( hi );
6697 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00006698
Bill Wendling8b8a6362009-01-17 03:56:04 +00006699 // Combine into low half of a single xmm register.
6700 __m128i x = _mm_unpacklo_epi32( xh, xl );
6701 __m128d d;
6702 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00006703
Bill Wendling8b8a6362009-01-17 03:56:04 +00006704 // Merge in appropriate exponents to give the integer bits the right
6705 // magnitude.
6706 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00006707
Bill Wendling8b8a6362009-01-17 03:56:04 +00006708 // Subtract away the biases to deal with the IEEE-754 double precision
6709 // implicit 1.
6710 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00006711
Bill Wendling8b8a6362009-01-17 03:56:04 +00006712 // All conversions up to here are exact. The correctly rounded result is
6713 // calculated using the current rounding mode using the following
6714 // horizontal add.
6715 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
6716 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
6717 // store doesn't really need to be here (except
6718 // maybe to zero the other double)
6719 return sd;
6720 }
6721 */
Dale Johannesen040225f2008-10-21 23:07:49 +00006722
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006723 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00006724 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00006725
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006726 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00006727 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00006728 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
6729 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
6730 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
6731 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006732 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006733 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006734
Bill Wendling8b8a6362009-01-17 03:56:04 +00006735 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00006736 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006737 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00006738 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006739 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006740 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006741 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006742
Owen Anderson825b72b2009-08-11 20:47:22 +00006743 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6744 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006745 Op.getOperand(0),
6746 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006747 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6748 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006749 Op.getOperand(0),
6750 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006751 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
6752 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00006753 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006754 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006755 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006756 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00006757 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00006758 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006759 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006760 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006761
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006762 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00006763 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00006764 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
6765 DAG.getUNDEF(MVT::v2f64), ShufMask);
6766 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
6767 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006768 DAG.getIntPtrConstant(0));
6769}
6770
Bill Wendling8b8a6362009-01-17 03:56:04 +00006771// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006772SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
6773 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006774 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006775 // FP constant to bias correct the final result.
6776 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00006777 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006778
6779 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00006780 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6781 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00006782 Op.getOperand(0),
6783 DAG.getIntPtrConstant(0)));
6784
Owen Anderson825b72b2009-08-11 20:47:22 +00006785 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006786 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006787 DAG.getIntPtrConstant(0));
6788
6789 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006790 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006791 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006792 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006793 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006794 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006795 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006796 MVT::v2f64, Bias)));
6797 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006798 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006799 DAG.getIntPtrConstant(0));
6800
6801 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006802 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006803
6804 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00006805 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00006806
Owen Anderson825b72b2009-08-11 20:47:22 +00006807 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006808 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00006809 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00006810 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006811 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00006812 }
6813
6814 // Handle final rounding.
6815 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00006816}
6817
Dan Gohmand858e902010-04-17 15:26:15 +00006818SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
6819 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00006820 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006821 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006822
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006823 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00006824 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
6825 // the optimization here.
6826 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00006827 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00006828
Owen Andersone50ed302009-08-10 22:56:29 +00006829 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006830 EVT DstVT = Op.getValueType();
6831 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006832 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006833 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006834 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00006835
6836 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00006837 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006838 if (SrcVT == MVT::i32) {
6839 SDValue WordOff = DAG.getConstant(4, getPointerTy());
6840 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
6841 getPointerTy(), StackSlot, WordOff);
6842 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006843 StackSlot, MachinePointerInfo(),
6844 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006845 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006846 OffsetSlot, MachinePointerInfo(),
6847 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006848 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
6849 return Fild;
6850 }
6851
6852 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
6853 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006854 StackSlot, MachinePointerInfo(),
6855 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006856 // For i64 source, we need to add the appropriate power of 2 if the input
6857 // was negative. This is the same as the optimization in
6858 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
6859 // we must be careful to do the computation in x87 extended precision, not
6860 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00006861 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6862 MachineMemOperand *MMO =
6863 DAG.getMachineFunction()
6864 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6865 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006866
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006867 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
6868 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006869 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
6870 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006871
6872 APInt FF(32, 0x5F800000ULL);
6873
6874 // Check whether the sign bit is set.
6875 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
6876 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
6877 ISD::SETLT);
6878
6879 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
6880 SDValue FudgePtr = DAG.getConstantPool(
6881 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
6882 getPointerTy());
6883
6884 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
6885 SDValue Zero = DAG.getIntPtrConstant(0);
6886 SDValue Four = DAG.getIntPtrConstant(4);
6887 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
6888 Zero, Four);
6889 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
6890
6891 // Load the value out, extending it from f32 to f80.
6892 // FIXME: Avoid the extend by constructing the right constant pool?
Evan Chengbcc80172010-07-07 22:15:37 +00006893 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, MVT::f80, dl, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00006894 FudgePtr, MachinePointerInfo::getConstantPool(),
6895 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006896 // Extend everything to 80 bits to force it to be done on x87.
6897 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
6898 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00006899}
6900
Dan Gohman475871a2008-07-27 21:46:04 +00006901std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00006902FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00006903 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00006904
Owen Andersone50ed302009-08-10 22:56:29 +00006905 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00006906
6907 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006908 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
6909 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00006910 }
6911
Owen Anderson825b72b2009-08-11 20:47:22 +00006912 assert(DstTy.getSimpleVT() <= MVT::i64 &&
6913 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00006914 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00006915
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006916 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006917 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00006918 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006919 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00006920 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006921 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00006922 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006923 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006924
Evan Cheng87c89352007-10-15 20:11:21 +00006925 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
6926 // stack slot.
6927 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00006928 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00006929 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006930 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00006931
Michael J. Spencerec38de22010-10-10 22:04:20 +00006932
6933
Evan Cheng0db9fe62006-04-25 20:13:52 +00006934 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00006935 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00006936 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00006937 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
6938 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
6939 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006940 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006941
Dan Gohman475871a2008-07-27 21:46:04 +00006942 SDValue Chain = DAG.getEntryNode();
6943 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00006944 EVT TheVT = Op.getOperand(0).getValueType();
6945 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006946 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00006947 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006948 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006949 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00006950 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00006951 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00006952 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00006953 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00006954
Chris Lattner492a43e2010-09-22 01:28:21 +00006955 MachineMemOperand *MMO =
6956 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6957 MachineMemOperand::MOLoad, MemSize, MemSize);
6958 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
6959 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006960 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00006961 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006962 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
6963 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006964
Chris Lattner07290932010-09-22 01:05:16 +00006965 MachineMemOperand *MMO =
6966 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6967 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006968
Evan Cheng0db9fe62006-04-25 20:13:52 +00006969 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00006970 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00006971 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
6972 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00006973
Chris Lattner27a6c732007-11-24 07:07:01 +00006974 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006975}
6976
Dan Gohmand858e902010-04-17 15:26:15 +00006977SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
6978 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00006979 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006980 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006981
Eli Friedman948e95a2009-05-23 09:59:16 +00006982 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00006983 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00006984 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
6985 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00006986
Chris Lattner27a6c732007-11-24 07:07:01 +00006987 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006988 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006989 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00006990}
6991
Dan Gohmand858e902010-04-17 15:26:15 +00006992SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
6993 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00006994 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
6995 SDValue FIST = Vals.first, StackSlot = Vals.second;
6996 assert(FIST.getNode() && "Unexpected failure");
6997
6998 // Load the result.
6999 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007000 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007001}
7002
Dan Gohmand858e902010-04-17 15:26:15 +00007003SDValue X86TargetLowering::LowerFABS(SDValue Op,
7004 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007005 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007006 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007007 EVT VT = Op.getValueType();
7008 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007009 if (VT.isVector())
7010 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007011 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007012 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007013 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00007014 CV.push_back(C);
7015 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007016 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007017 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00007018 CV.push_back(C);
7019 CV.push_back(C);
7020 CV.push_back(C);
7021 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007022 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007023 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007024 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007025 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007026 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007027 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007028 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007029}
7030
Dan Gohmand858e902010-04-17 15:26:15 +00007031SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007032 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007033 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007034 EVT VT = Op.getValueType();
7035 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00007036 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007037 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007038 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007039 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007040 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00007041 CV.push_back(C);
7042 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007043 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007044 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00007045 CV.push_back(C);
7046 CV.push_back(C);
7047 CV.push_back(C);
7048 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007049 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007050 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007051 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007052 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007053 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007054 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007055 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007056 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007057 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007058 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007059 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007060 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00007061 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007062 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00007063 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007064}
7065
Dan Gohmand858e902010-04-17 15:26:15 +00007066SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007067 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00007068 SDValue Op0 = Op.getOperand(0);
7069 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007070 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007071 EVT VT = Op.getValueType();
7072 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00007073
7074 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007075 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007076 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007077 SrcVT = VT;
7078 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007079 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007080 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007081 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007082 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007083 }
7084
7085 // At this point the operands and the result should have the same
7086 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00007087
Evan Cheng68c47cb2007-01-05 07:55:56 +00007088 // First get the sign bit of second operand.
7089 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007090 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007091 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
7092 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007093 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007094 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
7095 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7096 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7097 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007098 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007099 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007100 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007101 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007102 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007103 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007104 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007105
7106 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007107 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007108 // Op0 is MVT::f32, Op1 is MVT::f64.
7109 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
7110 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
7111 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007112 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00007113 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00007114 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007115 }
7116
Evan Cheng73d6cf12007-01-05 21:37:56 +00007117 // Clear first operand sign bit.
7118 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00007119 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007120 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
7121 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007122 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007123 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
7124 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7125 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7126 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007127 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007128 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007129 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007130 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007131 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007132 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007133 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007134
7135 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00007136 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007137}
7138
Dan Gohman076aee32009-03-04 19:44:21 +00007139/// Emit nodes that will be selected as "test Op0,Op0", or something
7140/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007141SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007142 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007143 DebugLoc dl = Op.getDebugLoc();
7144
Dan Gohman31125812009-03-07 01:58:32 +00007145 // CF and OF aren't always set the way we want. Determine which
7146 // of these we need.
7147 bool NeedCF = false;
7148 bool NeedOF = false;
7149 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007150 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00007151 case X86::COND_A: case X86::COND_AE:
7152 case X86::COND_B: case X86::COND_BE:
7153 NeedCF = true;
7154 break;
7155 case X86::COND_G: case X86::COND_GE:
7156 case X86::COND_L: case X86::COND_LE:
7157 case X86::COND_O: case X86::COND_NO:
7158 NeedOF = true;
7159 break;
Dan Gohman31125812009-03-07 01:58:32 +00007160 }
7161
Dan Gohman076aee32009-03-04 19:44:21 +00007162 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00007163 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
7164 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007165 if (Op.getResNo() != 0 || NeedOF || NeedCF)
7166 // Emit a CMP with 0, which is the TEST pattern.
7167 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7168 DAG.getConstant(0, Op.getValueType()));
7169
7170 unsigned Opcode = 0;
7171 unsigned NumOperands = 0;
7172 switch (Op.getNode()->getOpcode()) {
7173 case ISD::ADD:
7174 // Due to an isel shortcoming, be conservative if this add is likely to be
7175 // selected as part of a load-modify-store instruction. When the root node
7176 // in a match is a store, isel doesn't know how to remap non-chain non-flag
7177 // uses of other nodes in the match, such as the ADD in this case. This
7178 // leads to the ADD being left around and reselected, with the result being
7179 // two adds in the output. Alas, even if none our users are stores, that
7180 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
7181 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
7182 // climbing the DAG back to the root, and it doesn't seem to be worth the
7183 // effort.
7184 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00007185 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007186 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
7187 goto default_case;
7188
7189 if (ConstantSDNode *C =
7190 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
7191 // An add of one will be selected as an INC.
7192 if (C->getAPIntValue() == 1) {
7193 Opcode = X86ISD::INC;
7194 NumOperands = 1;
7195 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00007196 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007197
7198 // An add of negative one (subtract of one) will be selected as a DEC.
7199 if (C->getAPIntValue().isAllOnesValue()) {
7200 Opcode = X86ISD::DEC;
7201 NumOperands = 1;
7202 break;
7203 }
Dan Gohman076aee32009-03-04 19:44:21 +00007204 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007205
7206 // Otherwise use a regular EFLAGS-setting add.
7207 Opcode = X86ISD::ADD;
7208 NumOperands = 2;
7209 break;
7210 case ISD::AND: {
7211 // If the primary and result isn't used, don't bother using X86ISD::AND,
7212 // because a TEST instruction will be better.
7213 bool NonFlagUse = false;
7214 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7215 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
7216 SDNode *User = *UI;
7217 unsigned UOpNo = UI.getOperandNo();
7218 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
7219 // Look pass truncate.
7220 UOpNo = User->use_begin().getOperandNo();
7221 User = *User->use_begin();
7222 }
7223
7224 if (User->getOpcode() != ISD::BRCOND &&
7225 User->getOpcode() != ISD::SETCC &&
7226 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
7227 NonFlagUse = true;
7228 break;
7229 }
Dan Gohman076aee32009-03-04 19:44:21 +00007230 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007231
7232 if (!NonFlagUse)
7233 break;
7234 }
7235 // FALL THROUGH
7236 case ISD::SUB:
7237 case ISD::OR:
7238 case ISD::XOR:
7239 // Due to the ISEL shortcoming noted above, be conservative if this op is
7240 // likely to be selected as part of a load-modify-store instruction.
7241 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7242 UE = Op.getNode()->use_end(); UI != UE; ++UI)
7243 if (UI->getOpcode() == ISD::STORE)
7244 goto default_case;
7245
7246 // Otherwise use a regular EFLAGS-setting instruction.
7247 switch (Op.getNode()->getOpcode()) {
7248 default: llvm_unreachable("unexpected operator!");
7249 case ISD::SUB: Opcode = X86ISD::SUB; break;
7250 case ISD::OR: Opcode = X86ISD::OR; break;
7251 case ISD::XOR: Opcode = X86ISD::XOR; break;
7252 case ISD::AND: Opcode = X86ISD::AND; break;
7253 }
7254
7255 NumOperands = 2;
7256 break;
7257 case X86ISD::ADD:
7258 case X86ISD::SUB:
7259 case X86ISD::INC:
7260 case X86ISD::DEC:
7261 case X86ISD::OR:
7262 case X86ISD::XOR:
7263 case X86ISD::AND:
7264 return SDValue(Op.getNode(), 1);
7265 default:
7266 default_case:
7267 break;
Dan Gohman076aee32009-03-04 19:44:21 +00007268 }
7269
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007270 if (Opcode == 0)
7271 // Emit a CMP with 0, which is the TEST pattern.
7272 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7273 DAG.getConstant(0, Op.getValueType()));
7274
7275 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
7276 SmallVector<SDValue, 4> Ops;
7277 for (unsigned i = 0; i != NumOperands; ++i)
7278 Ops.push_back(Op.getOperand(i));
7279
7280 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
7281 DAG.ReplaceAllUsesWith(Op, New);
7282 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00007283}
7284
7285/// Emit nodes that will be selected as "cmp Op0,Op1", or something
7286/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007287SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007288 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007289 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
7290 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00007291 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00007292
7293 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00007294 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00007295}
7296
Evan Chengd40d03e2010-01-06 19:38:29 +00007297/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
7298/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00007299SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
7300 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007301 SDValue Op0 = And.getOperand(0);
7302 SDValue Op1 = And.getOperand(1);
7303 if (Op0.getOpcode() == ISD::TRUNCATE)
7304 Op0 = Op0.getOperand(0);
7305 if (Op1.getOpcode() == ISD::TRUNCATE)
7306 Op1 = Op1.getOperand(0);
7307
Evan Chengd40d03e2010-01-06 19:38:29 +00007308 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007309 if (Op1.getOpcode() == ISD::SHL)
7310 std::swap(Op0, Op1);
7311 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007312 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
7313 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007314 // If we looked past a truncate, check that it's only truncating away
7315 // known zeros.
7316 unsigned BitWidth = Op0.getValueSizeInBits();
7317 unsigned AndBitWidth = And.getValueSizeInBits();
7318 if (BitWidth > AndBitWidth) {
7319 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
7320 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
7321 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
7322 return SDValue();
7323 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007324 LHS = Op1;
7325 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00007326 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007327 } else if (Op1.getOpcode() == ISD::Constant) {
7328 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
7329 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00007330 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
7331 LHS = AndLHS.getOperand(0);
7332 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007333 }
Evan Chengd40d03e2010-01-06 19:38:29 +00007334 }
Evan Cheng0488db92007-09-25 01:57:46 +00007335
Evan Chengd40d03e2010-01-06 19:38:29 +00007336 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00007337 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00007338 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00007339 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00007340 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00007341 // Also promote i16 to i32 for performance / code size reason.
7342 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00007343 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00007344 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00007345
Evan Chengd40d03e2010-01-06 19:38:29 +00007346 // If the operand types disagree, extend the shift amount to match. Since
7347 // BT ignores high bits (like shifts) we can use anyextend.
7348 if (LHS.getValueType() != RHS.getValueType())
7349 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007350
Evan Chengd40d03e2010-01-06 19:38:29 +00007351 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
7352 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
7353 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7354 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00007355 }
7356
Evan Cheng54de3ea2010-01-05 06:52:31 +00007357 return SDValue();
7358}
7359
Dan Gohmand858e902010-04-17 15:26:15 +00007360SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00007361 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7362 SDValue Op0 = Op.getOperand(0);
7363 SDValue Op1 = Op.getOperand(1);
7364 DebugLoc dl = Op.getDebugLoc();
7365 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7366
7367 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007368 // Lower (X & (1 << N)) == 0 to BT(X, N).
7369 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7370 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Chris Lattner481eebc2010-12-19 21:23:48 +00007371 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007372 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007373 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007374 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7375 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7376 if (NewSetCC.getNode())
7377 return NewSetCC;
7378 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007379
Chris Lattner481eebc2010-12-19 21:23:48 +00007380 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
7381 // these.
7382 if (Op1.getOpcode() == ISD::Constant &&
Evan Cheng2c755ba2010-02-27 07:36:59 +00007383 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
7384 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7385 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007386
Chris Lattner481eebc2010-12-19 21:23:48 +00007387 // If the input is a setcc, then reuse the input setcc or use a new one with
7388 // the inverted condition.
7389 if (Op0.getOpcode() == X86ISD::SETCC) {
7390 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7391 bool Invert = (CC == ISD::SETNE) ^
7392 cast<ConstantSDNode>(Op1)->isNullValue();
7393 if (!Invert) return Op0;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007394
Evan Cheng2c755ba2010-02-27 07:36:59 +00007395 CCode = X86::GetOppositeBranchCondition(CCode);
Chris Lattner481eebc2010-12-19 21:23:48 +00007396 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7397 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7398 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007399 }
7400
Evan Chenge5b51ac2010-04-17 06:13:15 +00007401 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007402 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007403 if (X86CC == X86::COND_INVALID)
7404 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007405
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007406 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00007407 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007408 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
Evan Cheng0488db92007-09-25 01:57:46 +00007409}
7410
Dan Gohmand858e902010-04-17 15:26:15 +00007411SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007412 SDValue Cond;
7413 SDValue Op0 = Op.getOperand(0);
7414 SDValue Op1 = Op.getOperand(1);
7415 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007416 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007417 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7418 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007419 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007420
7421 if (isFP) {
7422 unsigned SSECC = 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007423 EVT VT0 = Op0.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00007424 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
7425 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007426 bool Swap = false;
7427
7428 switch (SetCCOpcode) {
7429 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007430 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007431 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007432 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007433 case ISD::SETGT: Swap = true; // Fallthrough
7434 case ISD::SETLT:
7435 case ISD::SETOLT: SSECC = 1; break;
7436 case ISD::SETOGE:
7437 case ISD::SETGE: Swap = true; // Fallthrough
7438 case ISD::SETLE:
7439 case ISD::SETOLE: SSECC = 2; break;
7440 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007441 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007442 case ISD::SETNE: SSECC = 4; break;
7443 case ISD::SETULE: Swap = true;
7444 case ISD::SETUGE: SSECC = 5; break;
7445 case ISD::SETULT: Swap = true;
7446 case ISD::SETUGT: SSECC = 6; break;
7447 case ISD::SETO: SSECC = 7; break;
7448 }
7449 if (Swap)
7450 std::swap(Op0, Op1);
7451
Nate Begemanfb8ead02008-07-25 19:05:58 +00007452 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007453 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007454 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007455 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007456 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7457 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007458 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007459 }
7460 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007461 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007462 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7463 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007464 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007465 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007466 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007467 }
7468 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007469 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007470 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007471
Nate Begeman30a0de92008-07-17 16:51:19 +00007472 // We are handling one of the integer comparisons here. Since SSE only has
7473 // GT and EQ comparisons for integer, swapping operands and multiple
7474 // operations may be required for some comparisons.
7475 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7476 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007477
Owen Anderson825b72b2009-08-11 20:47:22 +00007478 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007479 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007480 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007481 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007482 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7483 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00007484 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007485
Nate Begeman30a0de92008-07-17 16:51:19 +00007486 switch (SetCCOpcode) {
7487 default: break;
7488 case ISD::SETNE: Invert = true;
7489 case ISD::SETEQ: Opc = EQOpc; break;
7490 case ISD::SETLT: Swap = true;
7491 case ISD::SETGT: Opc = GTOpc; break;
7492 case ISD::SETGE: Swap = true;
7493 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
7494 case ISD::SETULT: Swap = true;
7495 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
7496 case ISD::SETUGE: Swap = true;
7497 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
7498 }
7499 if (Swap)
7500 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007501
Nate Begeman30a0de92008-07-17 16:51:19 +00007502 // Since SSE has no unsigned integer comparisons, we need to flip the sign
7503 // bits of the inputs before performing those operations.
7504 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00007505 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00007506 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
7507 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00007508 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00007509 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
7510 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00007511 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
7512 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00007513 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007514
Dale Johannesenace16102009-02-03 19:33:06 +00007515 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00007516
7517 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00007518 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00007519 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00007520
Nate Begeman30a0de92008-07-17 16:51:19 +00007521 return Result;
7522}
Evan Cheng0488db92007-09-25 01:57:46 +00007523
Evan Cheng370e5342008-12-03 08:38:43 +00007524// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00007525static bool isX86LogicalCmp(SDValue Op) {
7526 unsigned Opc = Op.getNode()->getOpcode();
7527 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
7528 return true;
7529 if (Op.getResNo() == 1 &&
7530 (Opc == X86ISD::ADD ||
7531 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00007532 Opc == X86ISD::ADC ||
7533 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00007534 Opc == X86ISD::SMUL ||
7535 Opc == X86ISD::UMUL ||
7536 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00007537 Opc == X86ISD::DEC ||
7538 Opc == X86ISD::OR ||
7539 Opc == X86ISD::XOR ||
7540 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00007541 return true;
7542
Chris Lattner9637d5b2010-12-05 07:49:54 +00007543 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
7544 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007545
Dan Gohman076aee32009-03-04 19:44:21 +00007546 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00007547}
7548
Chris Lattnera2b56002010-12-05 01:23:24 +00007549static bool isZero(SDValue V) {
7550 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
7551 return C && C->isNullValue();
7552}
7553
Chris Lattner96908b12010-12-05 02:00:51 +00007554static bool isAllOnes(SDValue V) {
7555 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
7556 return C && C->isAllOnesValue();
7557}
7558
Dan Gohmand858e902010-04-17 15:26:15 +00007559SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007560 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007561 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00007562 SDValue Op1 = Op.getOperand(1);
7563 SDValue Op2 = Op.getOperand(2);
7564 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007565 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00007566
Dan Gohman1a492952009-10-20 16:22:37 +00007567 if (Cond.getOpcode() == ISD::SETCC) {
7568 SDValue NewCond = LowerSETCC(Cond, DAG);
7569 if (NewCond.getNode())
7570 Cond = NewCond;
7571 }
Evan Cheng734503b2006-09-11 02:19:56 +00007572
Chris Lattnera2b56002010-12-05 01:23:24 +00007573 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00007574 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00007575 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00007576 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007577 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00007578 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
7579 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007580 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007581
Chris Lattnera2b56002010-12-05 01:23:24 +00007582 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007583
7584 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00007585 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
7586 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00007587
7588 SDValue CmpOp0 = Cmp.getOperand(0);
7589 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
7590 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007591
Chris Lattner96908b12010-12-05 02:00:51 +00007592 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00007593 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
7594 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007595
Chris Lattner96908b12010-12-05 02:00:51 +00007596 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
7597 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007598
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007599 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00007600 if (N2C == 0 || !N2C->isNullValue())
7601 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
7602 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007603 }
7604 }
7605
Chris Lattnera2b56002010-12-05 01:23:24 +00007606 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00007607 if (Cond.getOpcode() == ISD::AND &&
7608 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7609 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007610 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007611 Cond = Cond.getOperand(0);
7612 }
7613
Evan Cheng3f41d662007-10-08 22:16:29 +00007614 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7615 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007616 if (Cond.getOpcode() == X86ISD::SETCC ||
7617 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007618 CC = Cond.getOperand(0);
7619
Dan Gohman475871a2008-07-27 21:46:04 +00007620 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007621 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00007622 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00007623
Evan Cheng3f41d662007-10-08 22:16:29 +00007624 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007625 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00007626 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00007627 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00007628
Chris Lattnerd1980a52009-03-12 06:52:53 +00007629 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
7630 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00007631 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007632 addTest = false;
7633 }
7634 }
7635
7636 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007637 // Look pass the truncate.
7638 if (Cond.getOpcode() == ISD::TRUNCATE)
7639 Cond = Cond.getOperand(0);
7640
7641 // We know the result of AND is compared against zero. Try to match
7642 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007643 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00007644 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00007645 if (NewSetCC.getNode()) {
7646 CC = NewSetCC.getOperand(0);
7647 Cond = NewSetCC.getOperand(1);
7648 addTest = false;
7649 }
7650 }
7651 }
7652
7653 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007654 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007655 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007656 }
7657
Benjamin Kramere915ff32010-12-22 23:09:28 +00007658 // a < b ? -1 : 0 -> RES = ~setcc_carry
7659 // a < b ? 0 : -1 -> RES = setcc_carry
7660 // a >= b ? -1 : 0 -> RES = setcc_carry
7661 // a >= b ? 0 : -1 -> RES = ~setcc_carry
7662 if (Cond.getOpcode() == X86ISD::CMP) {
7663 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
7664
7665 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
7666 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
7667 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
7668 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
7669 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
7670 return DAG.getNOT(DL, Res, Res.getValueType());
7671 return Res;
7672 }
7673 }
7674
Evan Cheng0488db92007-09-25 01:57:46 +00007675 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
7676 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007677 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007678 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00007679 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00007680}
7681
Evan Cheng370e5342008-12-03 08:38:43 +00007682// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
7683// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
7684// from the AND / OR.
7685static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
7686 Opc = Op.getOpcode();
7687 if (Opc != ISD::OR && Opc != ISD::AND)
7688 return false;
7689 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7690 Op.getOperand(0).hasOneUse() &&
7691 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
7692 Op.getOperand(1).hasOneUse());
7693}
7694
Evan Cheng961d6d42009-02-02 08:19:07 +00007695// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
7696// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00007697static bool isXor1OfSetCC(SDValue Op) {
7698 if (Op.getOpcode() != ISD::XOR)
7699 return false;
7700 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7701 if (N1C && N1C->getAPIntValue() == 1) {
7702 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7703 Op.getOperand(0).hasOneUse();
7704 }
7705 return false;
7706}
7707
Dan Gohmand858e902010-04-17 15:26:15 +00007708SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007709 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007710 SDValue Chain = Op.getOperand(0);
7711 SDValue Cond = Op.getOperand(1);
7712 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007713 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007714 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00007715
Dan Gohman1a492952009-10-20 16:22:37 +00007716 if (Cond.getOpcode() == ISD::SETCC) {
7717 SDValue NewCond = LowerSETCC(Cond, DAG);
7718 if (NewCond.getNode())
7719 Cond = NewCond;
7720 }
Chris Lattnere55484e2008-12-25 05:34:37 +00007721#if 0
7722 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00007723 else if (Cond.getOpcode() == X86ISD::ADD ||
7724 Cond.getOpcode() == X86ISD::SUB ||
7725 Cond.getOpcode() == X86ISD::SMUL ||
7726 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00007727 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00007728#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00007729
Evan Chengad9c0a32009-12-15 00:53:42 +00007730 // Look pass (and (setcc_carry (cmp ...)), 1).
7731 if (Cond.getOpcode() == ISD::AND &&
7732 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7733 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007734 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007735 Cond = Cond.getOperand(0);
7736 }
7737
Evan Cheng3f41d662007-10-08 22:16:29 +00007738 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7739 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007740 if (Cond.getOpcode() == X86ISD::SETCC ||
7741 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007742 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007743
Dan Gohman475871a2008-07-27 21:46:04 +00007744 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007745 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00007746 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00007747 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00007748 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007749 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00007750 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00007751 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007752 default: break;
7753 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00007754 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00007755 // These can only come from an arithmetic instruction with overflow,
7756 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007757 Cond = Cond.getNode()->getOperand(1);
7758 addTest = false;
7759 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00007760 }
Evan Cheng0488db92007-09-25 01:57:46 +00007761 }
Evan Cheng370e5342008-12-03 08:38:43 +00007762 } else {
7763 unsigned CondOpc;
7764 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
7765 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00007766 if (CondOpc == ISD::OR) {
7767 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
7768 // two branches instead of an explicit OR instruction with a
7769 // separate test.
7770 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007771 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00007772 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007773 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007774 Chain, Dest, CC, Cmp);
7775 CC = Cond.getOperand(1).getOperand(0);
7776 Cond = Cmp;
7777 addTest = false;
7778 }
7779 } else { // ISD::AND
7780 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
7781 // two branches instead of an explicit AND instruction with a
7782 // separate test. However, we only do this if this block doesn't
7783 // have a fall-through edge, because this requires an explicit
7784 // jmp when the condition is false.
7785 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007786 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00007787 Op.getNode()->hasOneUse()) {
7788 X86::CondCode CCode =
7789 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7790 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007791 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00007792 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00007793 // Look for an unconditional branch following this conditional branch.
7794 // We need this because we need to reverse the successors in order
7795 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00007796 if (User->getOpcode() == ISD::BR) {
7797 SDValue FalseBB = User->getOperand(1);
7798 SDNode *NewBR =
7799 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00007800 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00007801 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00007802 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00007803
Dale Johannesene4d209d2009-02-03 20:21:25 +00007804 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007805 Chain, Dest, CC, Cmp);
7806 X86::CondCode CCode =
7807 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
7808 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007809 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00007810 Cond = Cmp;
7811 addTest = false;
7812 }
7813 }
Dan Gohman279c22e2008-10-21 03:29:32 +00007814 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00007815 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
7816 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
7817 // It should be transformed during dag combiner except when the condition
7818 // is set by a arithmetics with overflow node.
7819 X86::CondCode CCode =
7820 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7821 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007822 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00007823 Cond = Cond.getOperand(0).getOperand(1);
7824 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00007825 }
Evan Cheng0488db92007-09-25 01:57:46 +00007826 }
7827
7828 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007829 // Look pass the truncate.
7830 if (Cond.getOpcode() == ISD::TRUNCATE)
7831 Cond = Cond.getOperand(0);
7832
7833 // We know the result of AND is compared against zero. Try to match
7834 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007835 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007836 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7837 if (NewSetCC.getNode()) {
7838 CC = NewSetCC.getOperand(0);
7839 Cond = NewSetCC.getOperand(1);
7840 addTest = false;
7841 }
7842 }
7843 }
7844
7845 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007846 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007847 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007848 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00007849 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00007850 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007851}
7852
Anton Korobeynikove060b532007-04-17 19:34:00 +00007853
7854// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
7855// Calls to _alloca is needed to probe the stack when allocating more than 4k
7856// bytes in one go. Touching the stack at 4K increments is necessary to ensure
7857// that the guard pages used by the OS virtual memory manager are allocated in
7858// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00007859SDValue
7860X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007861 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00007862 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007863 "This should be used only on Windows targets");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007864 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007865
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007866 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007867 SDValue Chain = Op.getOperand(0);
7868 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007869 // FIXME: Ensure alignment here
7870
Dan Gohman475871a2008-07-27 21:46:04 +00007871 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007872
Owen Anderson825b72b2009-08-11 20:47:22 +00007873 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007874
Dale Johannesendd64c412009-02-04 00:33:20 +00007875 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007876 Flag = Chain.getValue(1);
7877
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007878 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007879
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007880 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007881 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007882
Dale Johannesendd64c412009-02-04 00:33:20 +00007883 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007884
Dan Gohman475871a2008-07-27 21:46:04 +00007885 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00007886 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007887}
7888
Dan Gohmand858e902010-04-17 15:26:15 +00007889SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00007890 MachineFunction &MF = DAG.getMachineFunction();
7891 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
7892
Dan Gohman69de1932008-02-06 22:27:42 +00007893 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00007894 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00007895
Anton Korobeynikove7beda12010-10-03 22:52:07 +00007896 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00007897 // vastart just stores the address of the VarArgsFrameIndex slot into the
7898 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00007899 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7900 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007901 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
7902 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007903 }
7904
7905 // __va_list_tag:
7906 // gp_offset (0 - 6 * 8)
7907 // fp_offset (48 - 48 + 8 * 16)
7908 // overflow_arg_area (point to parameters coming in memory).
7909 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00007910 SmallVector<SDValue, 8> MemOps;
7911 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00007912 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007913 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007914 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
7915 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007916 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007917 MemOps.push_back(Store);
7918
7919 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007920 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007921 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00007922 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007923 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
7924 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007925 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007926 MemOps.push_back(Store);
7927
7928 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00007929 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007930 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00007931 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7932 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007933 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
7934 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00007935 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007936 MemOps.push_back(Store);
7937
7938 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00007939 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007940 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00007941 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
7942 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007943 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
7944 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007945 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00007946 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00007947 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00007948}
7949
Dan Gohmand858e902010-04-17 15:26:15 +00007950SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00007951 assert(Subtarget->is64Bit() &&
7952 "LowerVAARG only handles 64-bit va_arg!");
7953 assert((Subtarget->isTargetLinux() ||
7954 Subtarget->isTargetDarwin()) &&
7955 "Unhandled target in LowerVAARG");
7956 assert(Op.getNode()->getNumOperands() == 4);
7957 SDValue Chain = Op.getOperand(0);
7958 SDValue SrcPtr = Op.getOperand(1);
7959 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
7960 unsigned Align = Op.getConstantOperandVal(3);
7961 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00007962
Dan Gohman320afb82010-10-12 18:00:49 +00007963 EVT ArgVT = Op.getNode()->getValueType(0);
7964 const Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
7965 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
7966 uint8_t ArgMode;
7967
7968 // Decide which area this value should be read from.
7969 // TODO: Implement the AMD64 ABI in its entirety. This simple
7970 // selection mechanism works only for the basic types.
7971 if (ArgVT == MVT::f80) {
7972 llvm_unreachable("va_arg for f80 not yet implemented");
7973 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
7974 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
7975 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
7976 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
7977 } else {
7978 llvm_unreachable("Unhandled argument type in LowerVAARG");
7979 }
7980
7981 if (ArgMode == 2) {
7982 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00007983 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00007984 !(DAG.getMachineFunction()
7985 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00007986 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00007987 }
7988
7989 // Insert VAARG_64 node into the DAG
7990 // VAARG_64 returns two values: Variable Argument Address, Chain
7991 SmallVector<SDValue, 11> InstOps;
7992 InstOps.push_back(Chain);
7993 InstOps.push_back(SrcPtr);
7994 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
7995 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
7996 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
7997 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
7998 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
7999 VTs, &InstOps[0], InstOps.size(),
8000 MVT::i64,
8001 MachinePointerInfo(SV),
8002 /*Align=*/0,
8003 /*Volatile=*/false,
8004 /*ReadMem=*/true,
8005 /*WriteMem=*/true);
8006 Chain = VAARG.getValue(1);
8007
8008 // Load the next argument and return it
8009 return DAG.getLoad(ArgVT, dl,
8010 Chain,
8011 VAARG,
8012 MachinePointerInfo(),
8013 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00008014}
8015
Dan Gohmand858e902010-04-17 15:26:15 +00008016SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00008017 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00008018 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00008019 SDValue Chain = Op.getOperand(0);
8020 SDValue DstPtr = Op.getOperand(1);
8021 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00008022 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
8023 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00008024 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00008025
Chris Lattnere72f2022010-09-21 05:40:29 +00008026 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00008027 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008028 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00008029 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00008030}
8031
Dan Gohman475871a2008-07-27 21:46:04 +00008032SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008033X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008034 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008035 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00008036 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00008037 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00008038 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00008039 case Intrinsic::x86_sse_comieq_ss:
8040 case Intrinsic::x86_sse_comilt_ss:
8041 case Intrinsic::x86_sse_comile_ss:
8042 case Intrinsic::x86_sse_comigt_ss:
8043 case Intrinsic::x86_sse_comige_ss:
8044 case Intrinsic::x86_sse_comineq_ss:
8045 case Intrinsic::x86_sse_ucomieq_ss:
8046 case Intrinsic::x86_sse_ucomilt_ss:
8047 case Intrinsic::x86_sse_ucomile_ss:
8048 case Intrinsic::x86_sse_ucomigt_ss:
8049 case Intrinsic::x86_sse_ucomige_ss:
8050 case Intrinsic::x86_sse_ucomineq_ss:
8051 case Intrinsic::x86_sse2_comieq_sd:
8052 case Intrinsic::x86_sse2_comilt_sd:
8053 case Intrinsic::x86_sse2_comile_sd:
8054 case Intrinsic::x86_sse2_comigt_sd:
8055 case Intrinsic::x86_sse2_comige_sd:
8056 case Intrinsic::x86_sse2_comineq_sd:
8057 case Intrinsic::x86_sse2_ucomieq_sd:
8058 case Intrinsic::x86_sse2_ucomilt_sd:
8059 case Intrinsic::x86_sse2_ucomile_sd:
8060 case Intrinsic::x86_sse2_ucomigt_sd:
8061 case Intrinsic::x86_sse2_ucomige_sd:
8062 case Intrinsic::x86_sse2_ucomineq_sd: {
8063 unsigned Opc = 0;
8064 ISD::CondCode CC = ISD::SETCC_INVALID;
8065 switch (IntNo) {
8066 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008067 case Intrinsic::x86_sse_comieq_ss:
8068 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008069 Opc = X86ISD::COMI;
8070 CC = ISD::SETEQ;
8071 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008072 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008073 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008074 Opc = X86ISD::COMI;
8075 CC = ISD::SETLT;
8076 break;
8077 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008078 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008079 Opc = X86ISD::COMI;
8080 CC = ISD::SETLE;
8081 break;
8082 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008083 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008084 Opc = X86ISD::COMI;
8085 CC = ISD::SETGT;
8086 break;
8087 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008088 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008089 Opc = X86ISD::COMI;
8090 CC = ISD::SETGE;
8091 break;
8092 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008093 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008094 Opc = X86ISD::COMI;
8095 CC = ISD::SETNE;
8096 break;
8097 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008098 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008099 Opc = X86ISD::UCOMI;
8100 CC = ISD::SETEQ;
8101 break;
8102 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008103 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008104 Opc = X86ISD::UCOMI;
8105 CC = ISD::SETLT;
8106 break;
8107 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008108 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008109 Opc = X86ISD::UCOMI;
8110 CC = ISD::SETLE;
8111 break;
8112 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008113 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008114 Opc = X86ISD::UCOMI;
8115 CC = ISD::SETGT;
8116 break;
8117 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008118 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008119 Opc = X86ISD::UCOMI;
8120 CC = ISD::SETGE;
8121 break;
8122 case Intrinsic::x86_sse_ucomineq_ss:
8123 case Intrinsic::x86_sse2_ucomineq_sd:
8124 Opc = X86ISD::UCOMI;
8125 CC = ISD::SETNE;
8126 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008127 }
Evan Cheng734503b2006-09-11 02:19:56 +00008128
Dan Gohman475871a2008-07-27 21:46:04 +00008129 SDValue LHS = Op.getOperand(1);
8130 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00008131 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008132 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008133 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
8134 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8135 DAG.getConstant(X86CC, MVT::i8), Cond);
8136 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00008137 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008138 // ptest and testp intrinsics. The intrinsic these come from are designed to
8139 // return an integer value, not just an instruction so lower it to the ptest
8140 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00008141 case Intrinsic::x86_sse41_ptestz:
8142 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008143 case Intrinsic::x86_sse41_ptestnzc:
8144 case Intrinsic::x86_avx_ptestz_256:
8145 case Intrinsic::x86_avx_ptestc_256:
8146 case Intrinsic::x86_avx_ptestnzc_256:
8147 case Intrinsic::x86_avx_vtestz_ps:
8148 case Intrinsic::x86_avx_vtestc_ps:
8149 case Intrinsic::x86_avx_vtestnzc_ps:
8150 case Intrinsic::x86_avx_vtestz_pd:
8151 case Intrinsic::x86_avx_vtestc_pd:
8152 case Intrinsic::x86_avx_vtestnzc_pd:
8153 case Intrinsic::x86_avx_vtestz_ps_256:
8154 case Intrinsic::x86_avx_vtestc_ps_256:
8155 case Intrinsic::x86_avx_vtestnzc_ps_256:
8156 case Intrinsic::x86_avx_vtestz_pd_256:
8157 case Intrinsic::x86_avx_vtestc_pd_256:
8158 case Intrinsic::x86_avx_vtestnzc_pd_256: {
8159 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00008160 unsigned X86CC = 0;
8161 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00008162 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008163 case Intrinsic::x86_avx_vtestz_ps:
8164 case Intrinsic::x86_avx_vtestz_pd:
8165 case Intrinsic::x86_avx_vtestz_ps_256:
8166 case Intrinsic::x86_avx_vtestz_pd_256:
8167 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008168 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008169 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008170 // ZF = 1
8171 X86CC = X86::COND_E;
8172 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008173 case Intrinsic::x86_avx_vtestc_ps:
8174 case Intrinsic::x86_avx_vtestc_pd:
8175 case Intrinsic::x86_avx_vtestc_ps_256:
8176 case Intrinsic::x86_avx_vtestc_pd_256:
8177 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008178 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008179 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008180 // CF = 1
8181 X86CC = X86::COND_B;
8182 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008183 case Intrinsic::x86_avx_vtestnzc_ps:
8184 case Intrinsic::x86_avx_vtestnzc_pd:
8185 case Intrinsic::x86_avx_vtestnzc_ps_256:
8186 case Intrinsic::x86_avx_vtestnzc_pd_256:
8187 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00008188 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008189 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008190 // ZF and CF = 0
8191 X86CC = X86::COND_A;
8192 break;
8193 }
Eric Christopherfd179292009-08-27 18:07:15 +00008194
Eric Christopher71c67532009-07-29 00:28:05 +00008195 SDValue LHS = Op.getOperand(1);
8196 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008197 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
8198 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00008199 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
8200 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
8201 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00008202 }
Evan Cheng5759f972008-05-04 09:15:50 +00008203
8204 // Fix vector shift instructions where the last operand is a non-immediate
8205 // i32 value.
8206 case Intrinsic::x86_sse2_pslli_w:
8207 case Intrinsic::x86_sse2_pslli_d:
8208 case Intrinsic::x86_sse2_pslli_q:
8209 case Intrinsic::x86_sse2_psrli_w:
8210 case Intrinsic::x86_sse2_psrli_d:
8211 case Intrinsic::x86_sse2_psrli_q:
8212 case Intrinsic::x86_sse2_psrai_w:
8213 case Intrinsic::x86_sse2_psrai_d:
8214 case Intrinsic::x86_mmx_pslli_w:
8215 case Intrinsic::x86_mmx_pslli_d:
8216 case Intrinsic::x86_mmx_pslli_q:
8217 case Intrinsic::x86_mmx_psrli_w:
8218 case Intrinsic::x86_mmx_psrli_d:
8219 case Intrinsic::x86_mmx_psrli_q:
8220 case Intrinsic::x86_mmx_psrai_w:
8221 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00008222 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00008223 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00008224 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00008225
8226 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008227 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008228 switch (IntNo) {
8229 case Intrinsic::x86_sse2_pslli_w:
8230 NewIntNo = Intrinsic::x86_sse2_psll_w;
8231 break;
8232 case Intrinsic::x86_sse2_pslli_d:
8233 NewIntNo = Intrinsic::x86_sse2_psll_d;
8234 break;
8235 case Intrinsic::x86_sse2_pslli_q:
8236 NewIntNo = Intrinsic::x86_sse2_psll_q;
8237 break;
8238 case Intrinsic::x86_sse2_psrli_w:
8239 NewIntNo = Intrinsic::x86_sse2_psrl_w;
8240 break;
8241 case Intrinsic::x86_sse2_psrli_d:
8242 NewIntNo = Intrinsic::x86_sse2_psrl_d;
8243 break;
8244 case Intrinsic::x86_sse2_psrli_q:
8245 NewIntNo = Intrinsic::x86_sse2_psrl_q;
8246 break;
8247 case Intrinsic::x86_sse2_psrai_w:
8248 NewIntNo = Intrinsic::x86_sse2_psra_w;
8249 break;
8250 case Intrinsic::x86_sse2_psrai_d:
8251 NewIntNo = Intrinsic::x86_sse2_psra_d;
8252 break;
8253 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008254 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008255 switch (IntNo) {
8256 case Intrinsic::x86_mmx_pslli_w:
8257 NewIntNo = Intrinsic::x86_mmx_psll_w;
8258 break;
8259 case Intrinsic::x86_mmx_pslli_d:
8260 NewIntNo = Intrinsic::x86_mmx_psll_d;
8261 break;
8262 case Intrinsic::x86_mmx_pslli_q:
8263 NewIntNo = Intrinsic::x86_mmx_psll_q;
8264 break;
8265 case Intrinsic::x86_mmx_psrli_w:
8266 NewIntNo = Intrinsic::x86_mmx_psrl_w;
8267 break;
8268 case Intrinsic::x86_mmx_psrli_d:
8269 NewIntNo = Intrinsic::x86_mmx_psrl_d;
8270 break;
8271 case Intrinsic::x86_mmx_psrli_q:
8272 NewIntNo = Intrinsic::x86_mmx_psrl_q;
8273 break;
8274 case Intrinsic::x86_mmx_psrai_w:
8275 NewIntNo = Intrinsic::x86_mmx_psra_w;
8276 break;
8277 case Intrinsic::x86_mmx_psrai_d:
8278 NewIntNo = Intrinsic::x86_mmx_psra_d;
8279 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00008280 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00008281 }
8282 break;
8283 }
8284 }
Mon P Wangefa42202009-09-03 19:56:25 +00008285
8286 // The vector shift intrinsics with scalars uses 32b shift amounts but
8287 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
8288 // to be zero.
8289 SDValue ShOps[4];
8290 ShOps[0] = ShAmt;
8291 ShOps[1] = DAG.getConstant(0, MVT::i32);
8292 if (ShAmtVT == MVT::v4i32) {
8293 ShOps[2] = DAG.getUNDEF(MVT::i32);
8294 ShOps[3] = DAG.getUNDEF(MVT::i32);
8295 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
8296 } else {
8297 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00008298// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00008299 }
8300
Owen Andersone50ed302009-08-10 22:56:29 +00008301 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008302 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008303 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008304 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00008305 Op.getOperand(1), ShAmt);
8306 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00008307 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008308}
Evan Cheng72261582005-12-20 06:22:03 +00008309
Dan Gohmand858e902010-04-17 15:26:15 +00008310SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
8311 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00008312 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8313 MFI->setReturnAddressIsTaken(true);
8314
Bill Wendling64e87322009-01-16 19:25:27 +00008315 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008316 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00008317
8318 if (Depth > 0) {
8319 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
8320 SDValue Offset =
8321 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00008322 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008323 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008324 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008325 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00008326 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00008327 }
8328
8329 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00008330 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00008331 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008332 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008333}
8334
Dan Gohmand858e902010-04-17 15:26:15 +00008335SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00008336 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8337 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00008338
Owen Andersone50ed302009-08-10 22:56:29 +00008339 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008340 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00008341 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
8342 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00008343 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00008344 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00008345 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
8346 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00008347 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00008348 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00008349}
8350
Dan Gohman475871a2008-07-27 21:46:04 +00008351SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008352 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008353 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008354}
8355
Dan Gohmand858e902010-04-17 15:26:15 +00008356SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008357 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00008358 SDValue Chain = Op.getOperand(0);
8359 SDValue Offset = Op.getOperand(1);
8360 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008361 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008362
Dan Gohmand8816272010-08-11 18:14:00 +00008363 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
8364 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
8365 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008366 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008367
Dan Gohmand8816272010-08-11 18:14:00 +00008368 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
8369 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008370 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008371 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
8372 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00008373 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008374 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008375
Dale Johannesene4d209d2009-02-03 20:21:25 +00008376 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008377 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008378 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008379}
8380
Dan Gohman475871a2008-07-27 21:46:04 +00008381SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008382 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008383 SDValue Root = Op.getOperand(0);
8384 SDValue Trmp = Op.getOperand(1); // trampoline
8385 SDValue FPtr = Op.getOperand(2); // nested function
8386 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008387 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008388
Dan Gohman69de1932008-02-06 22:27:42 +00008389 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008390
8391 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008392 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00008393
8394 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00008395 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
8396 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00008397
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008398 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
8399 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00008400
8401 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
8402
8403 // Load the pointer to the nested function into R11.
8404 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00008405 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008406 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008407 Addr, MachinePointerInfo(TrmpAddr),
8408 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008409
Owen Anderson825b72b2009-08-11 20:47:22 +00008410 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8411 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008412 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8413 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00008414 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008415
8416 // Load the 'nest' parameter value into R10.
8417 // R10 is specified in X86CallingConv.td
8418 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00008419 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8420 DAG.getConstant(10, MVT::i64));
8421 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008422 Addr, MachinePointerInfo(TrmpAddr, 10),
8423 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008424
Owen Anderson825b72b2009-08-11 20:47:22 +00008425 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8426 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008427 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8428 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00008429 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008430
8431 // Jump to the nested function.
8432 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00008433 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8434 DAG.getConstant(20, MVT::i64));
8435 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008436 Addr, MachinePointerInfo(TrmpAddr, 20),
8437 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008438
8439 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008440 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8441 DAG.getConstant(22, MVT::i64));
8442 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008443 MachinePointerInfo(TrmpAddr, 22),
8444 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008445
Dan Gohman475871a2008-07-27 21:46:04 +00008446 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008447 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008448 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008449 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008450 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008451 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008452 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008453 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008454
8455 switch (CC) {
8456 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008457 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008458 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008459 case CallingConv::X86_StdCall: {
8460 // Pass 'nest' parameter in ECX.
8461 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008462 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008463
8464 // Check that ECX wasn't needed by an 'inreg' parameter.
8465 const FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008466 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008467
Chris Lattner58d74912008-03-12 17:45:29 +00008468 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008469 unsigned InRegCount = 0;
8470 unsigned Idx = 1;
8471
8472 for (FunctionType::param_iterator I = FTy->param_begin(),
8473 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008474 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008475 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008476 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008477
8478 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00008479 report_fatal_error("Nest register in use - reduce number of inreg"
8480 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008481 }
8482 }
8483 break;
8484 }
8485 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00008486 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00008487 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008488 // Pass 'nest' parameter in EAX.
8489 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008490 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008491 break;
8492 }
8493
Dan Gohman475871a2008-07-27 21:46:04 +00008494 SDValue OutChains[4];
8495 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008496
Owen Anderson825b72b2009-08-11 20:47:22 +00008497 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8498 DAG.getConstant(10, MVT::i32));
8499 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008500
Chris Lattnera62fe662010-02-05 19:20:30 +00008501 // This is storing the opcode for MOV32ri.
8502 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008503 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00008504 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008505 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008506 Trmp, MachinePointerInfo(TrmpAddr),
8507 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008508
Owen Anderson825b72b2009-08-11 20:47:22 +00008509 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8510 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008511 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
8512 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00008513 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008514
Chris Lattnera62fe662010-02-05 19:20:30 +00008515 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00008516 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8517 DAG.getConstant(5, MVT::i32));
8518 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008519 MachinePointerInfo(TrmpAddr, 5),
8520 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008521
Owen Anderson825b72b2009-08-11 20:47:22 +00008522 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8523 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008524 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
8525 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00008526 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008527
Dan Gohman475871a2008-07-27 21:46:04 +00008528 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008529 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008530 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008531 }
8532}
8533
Dan Gohmand858e902010-04-17 15:26:15 +00008534SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
8535 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008536 /*
8537 The rounding mode is in bits 11:10 of FPSR, and has the following
8538 settings:
8539 00 Round to nearest
8540 01 Round to -inf
8541 10 Round to +inf
8542 11 Round to 0
8543
8544 FLT_ROUNDS, on the other hand, expects the following:
8545 -1 Undefined
8546 0 Round to 0
8547 1 Round to nearest
8548 2 Round to +inf
8549 3 Round to -inf
8550
8551 To perform the conversion, we do:
8552 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
8553 */
8554
8555 MachineFunction &MF = DAG.getMachineFunction();
8556 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00008557 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008558 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008559 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00008560 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008561
8562 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00008563 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008564 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008565
Michael J. Spencerec38de22010-10-10 22:04:20 +00008566
Chris Lattner2156b792010-09-22 01:11:26 +00008567 MachineMemOperand *MMO =
8568 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8569 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008570
Chris Lattner2156b792010-09-22 01:11:26 +00008571 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
8572 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
8573 DAG.getVTList(MVT::Other),
8574 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008575
8576 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00008577 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00008578 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008579
8580 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00008581 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00008582 DAG.getNode(ISD::SRL, DL, MVT::i16,
8583 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008584 CWD, DAG.getConstant(0x800, MVT::i16)),
8585 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00008586 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00008587 DAG.getNode(ISD::SRL, DL, MVT::i16,
8588 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008589 CWD, DAG.getConstant(0x400, MVT::i16)),
8590 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008591
Dan Gohman475871a2008-07-27 21:46:04 +00008592 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00008593 DAG.getNode(ISD::AND, DL, MVT::i16,
8594 DAG.getNode(ISD::ADD, DL, MVT::i16,
8595 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00008596 DAG.getConstant(1, MVT::i16)),
8597 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008598
8599
Duncan Sands83ec4b62008-06-06 12:08:01 +00008600 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00008601 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008602}
8603
Dan Gohmand858e902010-04-17 15:26:15 +00008604SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008605 EVT VT = Op.getValueType();
8606 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008607 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008608 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008609
8610 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008611 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00008612 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00008613 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008614 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008615 }
Evan Cheng18efe262007-12-14 02:13:44 +00008616
Evan Cheng152804e2007-12-14 08:30:15 +00008617 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008618 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008619 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008620
8621 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008622 SDValue Ops[] = {
8623 Op,
8624 DAG.getConstant(NumBits+NumBits-1, OpVT),
8625 DAG.getConstant(X86::COND_E, MVT::i8),
8626 Op.getValue(1)
8627 };
8628 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008629
8630 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00008631 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00008632
Owen Anderson825b72b2009-08-11 20:47:22 +00008633 if (VT == MVT::i8)
8634 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008635 return Op;
8636}
8637
Dan Gohmand858e902010-04-17 15:26:15 +00008638SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008639 EVT VT = Op.getValueType();
8640 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008641 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008642 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008643
8644 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008645 if (VT == MVT::i8) {
8646 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008647 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008648 }
Evan Cheng152804e2007-12-14 08:30:15 +00008649
8650 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008651 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008652 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008653
8654 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008655 SDValue Ops[] = {
8656 Op,
8657 DAG.getConstant(NumBits, OpVT),
8658 DAG.getConstant(X86::COND_E, MVT::i8),
8659 Op.getValue(1)
8660 };
8661 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008662
Owen Anderson825b72b2009-08-11 20:47:22 +00008663 if (VT == MVT::i8)
8664 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008665 return Op;
8666}
8667
Dan Gohmand858e902010-04-17 15:26:15 +00008668SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008669 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00008670 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008671 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008672
Mon P Wangaf9b9522008-12-18 21:42:19 +00008673 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
8674 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
8675 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
8676 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
8677 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
8678 //
8679 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
8680 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
8681 // return AloBlo + AloBhi + AhiBlo;
8682
8683 SDValue A = Op.getOperand(0);
8684 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008685
Dale Johannesene4d209d2009-02-03 20:21:25 +00008686 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008687 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8688 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008689 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008690 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8691 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008692 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008693 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008694 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008695 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008696 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008697 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008698 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008699 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008700 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008701 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008702 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8703 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008704 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008705 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8706 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008707 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
8708 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008709 return Res;
8710}
8711
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008712SDValue X86TargetLowering::LowerSHL(SDValue Op, SelectionDAG &DAG) const {
8713 EVT VT = Op.getValueType();
8714 DebugLoc dl = Op.getDebugLoc();
8715 SDValue R = Op.getOperand(0);
8716
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008717 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008718
Nate Begeman51409212010-07-28 00:21:48 +00008719 assert(Subtarget->hasSSE41() && "Cannot lower SHL without SSE4.1 or later");
8720
8721 if (VT == MVT::v4i32) {
8722 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8723 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8724 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
8725
8726 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008727
Nate Begeman51409212010-07-28 00:21:48 +00008728 std::vector<Constant*> CV(4, CI);
8729 Constant *C = ConstantVector::get(CV);
8730 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8731 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008732 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008733 false, false, 16);
8734
8735 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008736 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00008737 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
8738 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
8739 }
8740 if (VT == MVT::v16i8) {
8741 // a = a << 5;
8742 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8743 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8744 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
8745
8746 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
8747 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
8748
8749 std::vector<Constant*> CVM1(16, CM1);
8750 std::vector<Constant*> CVM2(16, CM2);
8751 Constant *C = ConstantVector::get(CVM1);
8752 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8753 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008754 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008755 false, false, 16);
8756
8757 // r = pblendv(r, psllw(r & (char16)15, 4), a);
8758 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8759 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8760 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8761 DAG.getConstant(4, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00008762 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00008763 // a += a
8764 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008765
Nate Begeman51409212010-07-28 00:21:48 +00008766 C = ConstantVector::get(CVM2);
8767 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8768 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008769 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008770 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008771
Nate Begeman51409212010-07-28 00:21:48 +00008772 // r = pblendv(r, psllw(r & (char16)63, 2), a);
8773 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8774 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8775 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8776 DAG.getConstant(2, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00008777 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00008778 // a += a
8779 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008780
Nate Begeman51409212010-07-28 00:21:48 +00008781 // return pblendv(r, r+r, a);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008782 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT,
Nate Begeman51409212010-07-28 00:21:48 +00008783 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
8784 return R;
8785 }
8786 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008787}
Mon P Wangaf9b9522008-12-18 21:42:19 +00008788
Dan Gohmand858e902010-04-17 15:26:15 +00008789SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00008790 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
8791 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00008792 // looks for this combo and may remove the "setcc" instruction if the "setcc"
8793 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00008794 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00008795 SDValue LHS = N->getOperand(0);
8796 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00008797 unsigned BaseOp = 0;
8798 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008799 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00008800 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008801 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00008802 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00008803 // A subtract of one will be selected as a INC. Note that INC doesn't
8804 // set CF, so we can't do this for UADDO.
8805 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8806 if (C->getAPIntValue() == 1) {
8807 BaseOp = X86ISD::INC;
8808 Cond = X86::COND_O;
8809 break;
8810 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008811 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00008812 Cond = X86::COND_O;
8813 break;
8814 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008815 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00008816 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008817 break;
8818 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00008819 // A subtract of one will be selected as a DEC. Note that DEC doesn't
8820 // set CF, so we can't do this for USUBO.
8821 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8822 if (C->getAPIntValue() == 1) {
8823 BaseOp = X86ISD::DEC;
8824 Cond = X86::COND_O;
8825 break;
8826 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008827 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00008828 Cond = X86::COND_O;
8829 break;
8830 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008831 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00008832 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008833 break;
8834 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008835 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00008836 Cond = X86::COND_O;
8837 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008838 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
8839 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
8840 MVT::i32);
8841 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008842
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008843 SDValue SetCC =
8844 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
8845 DAG.getConstant(X86::COND_O, MVT::i32),
8846 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008847
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008848 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
8849 return Sum;
8850 }
Bill Wendling74c37652008-12-09 22:08:41 +00008851 }
Bill Wendling3fafd932008-11-26 22:37:40 +00008852
Bill Wendling61edeb52008-12-02 01:06:39 +00008853 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008854 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008855 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00008856
Bill Wendling61edeb52008-12-02 01:06:39 +00008857 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008858 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
8859 DAG.getConstant(Cond, MVT::i32),
8860 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00008861
Bill Wendling61edeb52008-12-02 01:06:39 +00008862 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
8863 return Sum;
Bill Wendling41ea7e72008-11-24 19:21:46 +00008864}
8865
Eric Christopher9a9d2752010-07-22 02:48:34 +00008866SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
8867 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008868
Eric Christopherb6729dc2010-08-04 23:03:04 +00008869 if (!Subtarget->hasSSE2()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00008870 SDValue Chain = Op.getOperand(0);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008871 SDValue Zero = DAG.getConstant(0,
Eric Christopherb6729dc2010-08-04 23:03:04 +00008872 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00008873 SDValue Ops[] = {
8874 DAG.getRegister(X86::ESP, MVT::i32), // Base
8875 DAG.getTargetConstant(1, MVT::i8), // Scale
8876 DAG.getRegister(0, MVT::i32), // Index
8877 DAG.getTargetConstant(0, MVT::i32), // Disp
8878 DAG.getRegister(0, MVT::i32), // Segment.
8879 Zero,
8880 Chain
8881 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008882 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00008883 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
8884 array_lengthof(Ops));
8885 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00008886 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008887
Eric Christopher9a9d2752010-07-22 02:48:34 +00008888 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00008889 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00008890 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008891
Chris Lattner132929a2010-08-14 17:26:09 +00008892 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
8893 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
8894 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
8895 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008896
Chris Lattner132929a2010-08-14 17:26:09 +00008897 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
8898 if (!Op1 && !Op2 && !Op3 && Op4)
8899 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008900
Chris Lattner132929a2010-08-14 17:26:09 +00008901 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
8902 if (Op1 && !Op2 && !Op3 && !Op4)
8903 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008904
8905 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00008906 // (MFENCE)>;
8907 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00008908}
8909
Dan Gohmand858e902010-04-17 15:26:15 +00008910SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008911 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008912 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00008913 unsigned Reg = 0;
8914 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008915 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008916 default:
8917 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008918 case MVT::i8: Reg = X86::AL; size = 1; break;
8919 case MVT::i16: Reg = X86::AX; size = 2; break;
8920 case MVT::i32: Reg = X86::EAX; size = 4; break;
8921 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00008922 assert(Subtarget->is64Bit() && "Node not type legal!");
8923 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00008924 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008925 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008926 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00008927 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00008928 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008929 Op.getOperand(1),
8930 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00008931 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008932 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008933 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008934 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
8935 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
8936 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00008937 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008938 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00008939 return cpOut;
8940}
8941
Duncan Sands1607f052008-12-01 11:39:25 +00008942SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008943 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00008944 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008945 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00008946 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008947 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008948 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008949 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
8950 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00008951 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00008952 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
8953 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00008954 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00008955 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00008956 rdx.getValue(1)
8957 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008958 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008959}
8960
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008961SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +00008962 SelectionDAG &DAG) const {
8963 EVT SrcVT = Op.getOperand(0).getValueType();
8964 EVT DstVT = Op.getValueType();
Chris Lattner2a786eb2010-12-19 20:19:20 +00008965 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
8966 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +00008967 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00008968 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008969 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +00008970 // i64 <=> MMX conversions are Legal.
8971 if (SrcVT==MVT::i64 && DstVT.isVector())
8972 return Op;
8973 if (DstVT==MVT::i64 && SrcVT.isVector())
8974 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00008975 // MMX <=> MMX conversions are Legal.
8976 if (SrcVT.isVector() && DstVT.isVector())
8977 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00008978 // All other conversions need to be expanded.
8979 return SDValue();
8980}
Chris Lattner5b856542010-12-20 00:59:46 +00008981
Dan Gohmand858e902010-04-17 15:26:15 +00008982SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008983 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008984 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008985 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008986 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00008987 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008988 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008989 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008990 Node->getOperand(0),
8991 Node->getOperand(1), negOp,
8992 cast<AtomicSDNode>(Node)->getSrcValue(),
8993 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00008994}
8995
Chris Lattner5b856542010-12-20 00:59:46 +00008996static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
8997 EVT VT = Op.getNode()->getValueType(0);
8998
8999 // Let legalize expand this if it isn't a legal type yet.
9000 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
9001 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009002
Chris Lattner5b856542010-12-20 00:59:46 +00009003 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009004
Chris Lattner5b856542010-12-20 00:59:46 +00009005 unsigned Opc;
9006 bool ExtraOp = false;
9007 switch (Op.getOpcode()) {
9008 default: assert(0 && "Invalid code");
9009 case ISD::ADDC: Opc = X86ISD::ADD; break;
9010 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
9011 case ISD::SUBC: Opc = X86ISD::SUB; break;
9012 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
9013 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009014
Chris Lattner5b856542010-12-20 00:59:46 +00009015 if (!ExtraOp)
9016 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9017 Op.getOperand(1));
9018 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9019 Op.getOperand(1), Op.getOperand(2));
9020}
9021
Evan Cheng0db9fe62006-04-25 20:13:52 +00009022/// LowerOperation - Provide custom lowering hooks for some operations.
9023///
Dan Gohmand858e902010-04-17 15:26:15 +00009024SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00009025 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009026 default: llvm_unreachable("Should not custom lower this!");
Eric Christopher9a9d2752010-07-22 02:48:34 +00009027 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009028 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
9029 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009030 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00009031 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009032 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
9033 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
9034 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
David Greene91585092011-01-26 15:38:49 +00009035 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
David Greenecfe33c42011-01-26 19:13:22 +00009036 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009037 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
9038 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
9039 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009040 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00009041 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00009042 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009043 case ISD::SHL_PARTS:
9044 case ISD::SRA_PARTS:
9045 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
9046 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00009047 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009048 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00009049 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009050 case ISD::FABS: return LowerFABS(Op, DAG);
9051 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009052 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009053 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00009054 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009055 case ISD::SELECT: return LowerSELECT(Op, DAG);
9056 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009057 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009058 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00009059 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00009060 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009061 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00009062 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
9063 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009064 case ISD::FRAME_TO_ARGS_OFFSET:
9065 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00009066 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009067 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009068 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00009069 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00009070 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
9071 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009072 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009073 case ISD::SHL: return LowerSHL(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00009074 case ISD::SADDO:
9075 case ISD::UADDO:
9076 case ISD::SSUBO:
9077 case ISD::USUBO:
9078 case ISD::SMULO:
9079 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00009080 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009081 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +00009082 case ISD::ADDC:
9083 case ISD::ADDE:
9084 case ISD::SUBC:
9085 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009086 }
Chris Lattner27a6c732007-11-24 07:07:01 +00009087}
9088
Duncan Sands1607f052008-12-01 11:39:25 +00009089void X86TargetLowering::
9090ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009091 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009092 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009093 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00009094 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00009095
9096 SDValue Chain = Node->getOperand(0);
9097 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009098 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009099 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00009100 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009101 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00009102 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00009103 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00009104 SDValue Result =
9105 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
9106 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00009107 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009108 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009109 Results.push_back(Result.getValue(2));
9110}
9111
Duncan Sands126d9072008-07-04 11:47:58 +00009112/// ReplaceNodeResults - Replace a node with an illegal result type
9113/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00009114void X86TargetLowering::ReplaceNodeResults(SDNode *N,
9115 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009116 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009117 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00009118 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00009119 default:
Duncan Sands1607f052008-12-01 11:39:25 +00009120 assert(false && "Do not know how to custom type legalize this operation!");
9121 return;
Chris Lattner5b856542010-12-20 00:59:46 +00009122 case ISD::ADDC:
9123 case ISD::ADDE:
9124 case ISD::SUBC:
9125 case ISD::SUBE:
9126 // We don't want to expand or promote these.
9127 return;
Duncan Sands1607f052008-12-01 11:39:25 +00009128 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00009129 std::pair<SDValue,SDValue> Vals =
9130 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00009131 SDValue FIST = Vals.first, StackSlot = Vals.second;
9132 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00009133 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00009134 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00009135 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
9136 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00009137 }
9138 return;
9139 }
9140 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009141 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009142 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009143 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009144 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00009145 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00009146 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009147 eax.getValue(2));
9148 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
9149 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00009150 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009151 Results.push_back(edx.getValue(1));
9152 return;
9153 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009154 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00009155 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009156 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00009157 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009158 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9159 DAG.getConstant(0, MVT::i32));
9160 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9161 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009162 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
9163 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009164 cpInL.getValue(1));
9165 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009166 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9167 DAG.getConstant(0, MVT::i32));
9168 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9169 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009170 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00009171 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009172 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009173 swapInL.getValue(1));
9174 SDValue Ops[] = { swapInH.getValue(0),
9175 N->getOperand(1),
9176 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009177 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +00009178 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
9179 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
9180 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +00009181 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009182 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009183 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009184 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00009185 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009186 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009187 Results.push_back(cpOutH.getValue(1));
9188 return;
9189 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009190 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00009191 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
9192 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009193 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00009194 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
9195 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009196 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00009197 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
9198 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009199 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00009200 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
9201 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009202 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00009203 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
9204 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009205 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00009206 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
9207 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009208 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00009209 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
9210 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00009211 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00009212}
9213
Evan Cheng72261582005-12-20 06:22:03 +00009214const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
9215 switch (Opcode) {
9216 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00009217 case X86ISD::BSF: return "X86ISD::BSF";
9218 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00009219 case X86ISD::SHLD: return "X86ISD::SHLD";
9220 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00009221 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009222 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00009223 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009224 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00009225 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00009226 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00009227 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
9228 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
9229 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00009230 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00009231 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00009232 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00009233 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00009234 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00009235 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00009236 case X86ISD::COMI: return "X86ISD::COMI";
9237 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00009238 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00009239 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Evan Cheng72261582005-12-20 06:22:03 +00009240 case X86ISD::CMOV: return "X86ISD::CMOV";
9241 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00009242 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00009243 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
9244 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00009245 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00009246 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00009247 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009248 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00009249 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009250 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
9251 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00009252 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00009253 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Nate Begemanb65c1752010-12-17 22:55:37 +00009254 case X86ISD::PANDN: return "X86ISD::PANDN";
9255 case X86ISD::PSIGNB: return "X86ISD::PSIGNB";
9256 case X86ISD::PSIGNW: return "X86ISD::PSIGNW";
9257 case X86ISD::PSIGND: return "X86ISD::PSIGND";
Nate Begeman672fb622010-12-20 22:04:24 +00009258 case X86ISD::PBLENDVB: return "X86ISD::PBLENDVB";
Evan Cheng8ca29322006-11-10 21:43:37 +00009259 case X86ISD::FMAX: return "X86ISD::FMAX";
9260 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00009261 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
9262 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009263 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00009264 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009265 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00009266 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009267 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00009268 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
9269 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009270 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
9271 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
9272 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
9273 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
9274 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
9275 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00009276 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
9277 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00009278 case X86ISD::VSHL: return "X86ISD::VSHL";
9279 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00009280 case X86ISD::CMPPD: return "X86ISD::CMPPD";
9281 case X86ISD::CMPPS: return "X86ISD::CMPPS";
9282 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
9283 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
9284 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
9285 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
9286 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
9287 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
9288 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
9289 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009290 case X86ISD::ADD: return "X86ISD::ADD";
9291 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +00009292 case X86ISD::ADC: return "X86ISD::ADC";
9293 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +00009294 case X86ISD::SMUL: return "X86ISD::SMUL";
9295 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00009296 case X86ISD::INC: return "X86ISD::INC";
9297 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +00009298 case X86ISD::OR: return "X86ISD::OR";
9299 case X86ISD::XOR: return "X86ISD::XOR";
9300 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +00009301 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +00009302 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009303 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009304 case X86ISD::PALIGN: return "X86ISD::PALIGN";
9305 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
9306 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
9307 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
9308 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
9309 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
9310 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
9311 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
9312 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009313 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00009314 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009315 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00009316 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
9317 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009318 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
9319 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
9320 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
9321 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
9322 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
9323 case X86ISD::MOVSD: return "X86ISD::MOVSD";
9324 case X86ISD::MOVSS: return "X86ISD::MOVSS";
9325 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
9326 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
9327 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
9328 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
9329 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
9330 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
9331 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
9332 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
9333 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
9334 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
9335 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
9336 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +00009337 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +00009338 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009339 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Evan Cheng72261582005-12-20 06:22:03 +00009340 }
9341}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00009342
Chris Lattnerc9addb72007-03-30 23:15:24 +00009343// isLegalAddressingMode - Return true if the addressing mode represented
9344// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00009345bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerc9addb72007-03-30 23:15:24 +00009346 const Type *Ty) const {
9347 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009348 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +00009349 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +00009350
Chris Lattnerc9addb72007-03-30 23:15:24 +00009351 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009352 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +00009353 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00009354
Chris Lattnerc9addb72007-03-30 23:15:24 +00009355 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +00009356 unsigned GVFlags =
9357 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009358
Chris Lattnerdfed4132009-07-10 07:38:24 +00009359 // If a reference to this global requires an extra load, we can't fold it.
9360 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +00009361 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009362
Chris Lattnerdfed4132009-07-10 07:38:24 +00009363 // If BaseGV requires a register for the PIC base, we cannot also have a
9364 // BaseReg specified.
9365 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +00009366 return false;
Evan Cheng52787842007-08-01 23:46:47 +00009367
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009368 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +00009369 if ((M != CodeModel::Small || R != Reloc::Static) &&
9370 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009371 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00009372 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009373
Chris Lattnerc9addb72007-03-30 23:15:24 +00009374 switch (AM.Scale) {
9375 case 0:
9376 case 1:
9377 case 2:
9378 case 4:
9379 case 8:
9380 // These scales always work.
9381 break;
9382 case 3:
9383 case 5:
9384 case 9:
9385 // These scales are formed with basereg+scalereg. Only accept if there is
9386 // no basereg yet.
9387 if (AM.HasBaseReg)
9388 return false;
9389 break;
9390 default: // Other stuff never works.
9391 return false;
9392 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009393
Chris Lattnerc9addb72007-03-30 23:15:24 +00009394 return true;
9395}
9396
9397
Evan Cheng2bd122c2007-10-26 01:56:11 +00009398bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00009399 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +00009400 return false;
Evan Chenge127a732007-10-29 07:57:50 +00009401 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
9402 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00009403 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00009404 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00009405 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +00009406}
9407
Owen Andersone50ed302009-08-10 22:56:29 +00009408bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009409 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009410 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009411 unsigned NumBits1 = VT1.getSizeInBits();
9412 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00009413 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009414 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00009415 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009416}
Evan Cheng2bd122c2007-10-26 01:56:11 +00009417
Dan Gohman97121ba2009-04-08 00:15:30 +00009418bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00009419 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00009420 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00009421}
9422
Owen Andersone50ed302009-08-10 22:56:29 +00009423bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00009424 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00009425 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00009426}
9427
Owen Andersone50ed302009-08-10 22:56:29 +00009428bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +00009429 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +00009430 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +00009431}
9432
Evan Cheng60c07e12006-07-05 22:17:51 +00009433/// isShuffleMaskLegal - Targets can use this to indicate that they only
9434/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
9435/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
9436/// are assumed to be legal.
9437bool
Eric Christopherfd179292009-08-27 18:07:15 +00009438X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +00009439 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +00009440 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +00009441 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +00009442 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +00009443
Nate Begemana09008b2009-10-19 02:17:23 +00009444 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +00009445 return (VT.getVectorNumElements() == 2 ||
9446 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
9447 isMOVLMask(M, VT) ||
9448 isSHUFPMask(M, VT) ||
9449 isPSHUFDMask(M, VT) ||
9450 isPSHUFHWMask(M, VT) ||
9451 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +00009452 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +00009453 isUNPCKLMask(M, VT) ||
9454 isUNPCKHMask(M, VT) ||
9455 isUNPCKL_v_undef_Mask(M, VT) ||
9456 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009457}
9458
Dan Gohman7d8143f2008-04-09 20:09:42 +00009459bool
Nate Begeman5a5ca152009-04-29 05:20:52 +00009460X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +00009461 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00009462 unsigned NumElts = VT.getVectorNumElements();
9463 // FIXME: This collection of masks seems suspect.
9464 if (NumElts == 2)
9465 return true;
9466 if (NumElts == 4 && VT.getSizeInBits() == 128) {
9467 return (isMOVLMask(Mask, VT) ||
9468 isCommutedMOVLMask(Mask, VT, true) ||
9469 isSHUFPMask(Mask, VT) ||
9470 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009471 }
9472 return false;
9473}
9474
9475//===----------------------------------------------------------------------===//
9476// X86 Scheduler Hooks
9477//===----------------------------------------------------------------------===//
9478
Mon P Wang63307c32008-05-05 19:05:59 +00009479// private utility function
9480MachineBasicBlock *
9481X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
9482 MachineBasicBlock *MBB,
9483 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009484 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009485 unsigned LoadOpc,
9486 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009487 unsigned notOpc,
9488 unsigned EAXreg,
9489 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009490 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009491 // For the atomic bitwise operator, we generate
9492 // thisMBB:
9493 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009494 // ld t1 = [bitinstr.addr]
9495 // op t2 = t1, [bitinstr.val]
9496 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009497 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9498 // bz newMBB
9499 // fallthrough -->nextMBB
9500 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9501 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009502 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009503 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009504
Mon P Wang63307c32008-05-05 19:05:59 +00009505 /// First build the CFG
9506 MachineFunction *F = MBB->getParent();
9507 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009508 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9509 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9510 F->insert(MBBIter, newMBB);
9511 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009512
Dan Gohman14152b42010-07-06 20:24:04 +00009513 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9514 nextMBB->splice(nextMBB->begin(), thisMBB,
9515 llvm::next(MachineBasicBlock::iterator(bInstr)),
9516 thisMBB->end());
9517 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009518
Mon P Wang63307c32008-05-05 19:05:59 +00009519 // Update thisMBB to fall through to newMBB
9520 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009521
Mon P Wang63307c32008-05-05 19:05:59 +00009522 // newMBB jumps to itself and fall through to nextMBB
9523 newMBB->addSuccessor(nextMBB);
9524 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009525
Mon P Wang63307c32008-05-05 19:05:59 +00009526 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009527 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009528 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +00009529 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009530 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009531 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009532 int numArgs = bInstr->getNumOperands() - 1;
9533 for (int i=0; i < numArgs; ++i)
9534 argOpers[i] = &bInstr->getOperand(i+1);
9535
9536 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009537 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009538 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009539
Dale Johannesen140be2d2008-08-19 18:47:28 +00009540 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009541 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009542 for (int i=0; i <= lastAddrIndx; ++i)
9543 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009544
Dale Johannesen140be2d2008-08-19 18:47:28 +00009545 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009546 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009547 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009548 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009549 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009550 tt = t1;
9551
Dale Johannesen140be2d2008-08-19 18:47:28 +00009552 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00009553 assert((argOpers[valArgIndx]->isReg() ||
9554 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009555 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00009556 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009557 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009558 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009559 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009560 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00009561 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009562
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009563 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00009564 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009565
Dale Johannesene4d209d2009-02-03 20:21:25 +00009566 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00009567 for (int i=0; i <= lastAddrIndx; ++i)
9568 (*MIB).addOperand(*argOpers[i]);
9569 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00009570 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009571 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9572 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +00009573
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009574 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +00009575 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009576
Mon P Wang63307c32008-05-05 19:05:59 +00009577 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009578 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009579
Dan Gohman14152b42010-07-06 20:24:04 +00009580 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009581 return nextMBB;
9582}
9583
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00009584// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +00009585MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009586X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
9587 MachineBasicBlock *MBB,
9588 unsigned regOpcL,
9589 unsigned regOpcH,
9590 unsigned immOpcL,
9591 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009592 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009593 // For the atomic bitwise operator, we generate
9594 // thisMBB (instructions are in pairs, except cmpxchg8b)
9595 // ld t1,t2 = [bitinstr.addr]
9596 // newMBB:
9597 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
9598 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +00009599 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009600 // mov ECX, EBX <- t5, t6
9601 // mov EAX, EDX <- t1, t2
9602 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
9603 // mov t3, t4 <- EAX, EDX
9604 // bz newMBB
9605 // result in out1, out2
9606 // fallthrough -->nextMBB
9607
9608 const TargetRegisterClass *RC = X86::GR32RegisterClass;
9609 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009610 const unsigned NotOpc = X86::NOT32r;
9611 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9612 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9613 MachineFunction::iterator MBBIter = MBB;
9614 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009615
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009616 /// First build the CFG
9617 MachineFunction *F = MBB->getParent();
9618 MachineBasicBlock *thisMBB = MBB;
9619 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9620 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9621 F->insert(MBBIter, newMBB);
9622 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009623
Dan Gohman14152b42010-07-06 20:24:04 +00009624 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9625 nextMBB->splice(nextMBB->begin(), thisMBB,
9626 llvm::next(MachineBasicBlock::iterator(bInstr)),
9627 thisMBB->end());
9628 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009629
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009630 // Update thisMBB to fall through to newMBB
9631 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009632
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009633 // newMBB jumps to itself and fall through to nextMBB
9634 newMBB->addSuccessor(nextMBB);
9635 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009636
Dale Johannesene4d209d2009-02-03 20:21:25 +00009637 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009638 // Insert instructions into newMBB based on incoming instruction
9639 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009640 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009641 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009642 MachineOperand& dest1Oper = bInstr->getOperand(0);
9643 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009644 MachineOperand* argOpers[2 + X86::AddrNumOperands];
9645 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009646 argOpers[i] = &bInstr->getOperand(i+2);
9647
Dan Gohman71ea4e52010-05-14 21:01:44 +00009648 // We use some of the operands multiple times, so conservatively just
9649 // clear any kill flags that might be present.
9650 if (argOpers[i]->isReg() && argOpers[i]->isUse())
9651 argOpers[i]->setIsKill(false);
9652 }
9653
Evan Chengad5b52f2010-01-08 19:14:57 +00009654 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009655 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +00009656
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009657 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009658 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009659 for (int i=0; i <= lastAddrIndx; ++i)
9660 (*MIB).addOperand(*argOpers[i]);
9661 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009662 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +00009663 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +00009664 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009665 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +00009666 MachineOperand newOp3 = *(argOpers[3]);
9667 if (newOp3.isImm())
9668 newOp3.setImm(newOp3.getImm()+4);
9669 else
9670 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009671 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +00009672 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009673
9674 // t3/4 are defined later, at the bottom of the loop
9675 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
9676 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009677 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009678 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009679 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009680 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
9681
Evan Cheng306b4ca2010-01-08 23:41:50 +00009682 // The subsequent operations should be using the destination registers of
9683 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +00009684 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009685 t1 = F->getRegInfo().createVirtualRegister(RC);
9686 t2 = F->getRegInfo().createVirtualRegister(RC);
9687 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
9688 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009689 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009690 t1 = dest1Oper.getReg();
9691 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009692 }
9693
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009694 int valArgIndx = lastAddrIndx + 1;
9695 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +00009696 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009697 "invalid operand");
9698 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
9699 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009700 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009701 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009702 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009703 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +00009704 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009705 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009706 (*MIB).addOperand(*argOpers[valArgIndx]);
9707 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009708 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009709 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009710 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009711 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009712 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009713 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009714 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +00009715 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009716 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009717 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009718
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009719 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009720 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009721 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009722 MIB.addReg(t2);
9723
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009724 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009725 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009726 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009727 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +00009728
Dale Johannesene4d209d2009-02-03 20:21:25 +00009729 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009730 for (int i=0; i <= lastAddrIndx; ++i)
9731 (*MIB).addOperand(*argOpers[i]);
9732
9733 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009734 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9735 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009736
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009737 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009738 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009739 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009740 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009741
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009742 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009743 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009744
Dan Gohman14152b42010-07-06 20:24:04 +00009745 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009746 return nextMBB;
9747}
9748
9749// private utility function
9750MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +00009751X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
9752 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009753 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009754 // For the atomic min/max operator, we generate
9755 // thisMBB:
9756 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009757 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +00009758 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +00009759 // cmp t1, t2
9760 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +00009761 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009762 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9763 // bz newMBB
9764 // fallthrough -->nextMBB
9765 //
9766 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9767 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009768 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009769 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009770
Mon P Wang63307c32008-05-05 19:05:59 +00009771 /// First build the CFG
9772 MachineFunction *F = MBB->getParent();
9773 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009774 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9775 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9776 F->insert(MBBIter, newMBB);
9777 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009778
Dan Gohman14152b42010-07-06 20:24:04 +00009779 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9780 nextMBB->splice(nextMBB->begin(), thisMBB,
9781 llvm::next(MachineBasicBlock::iterator(mInstr)),
9782 thisMBB->end());
9783 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009784
Mon P Wang63307c32008-05-05 19:05:59 +00009785 // Update thisMBB to fall through to newMBB
9786 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009787
Mon P Wang63307c32008-05-05 19:05:59 +00009788 // newMBB jumps to newMBB and fall through to nextMBB
9789 newMBB->addSuccessor(nextMBB);
9790 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009791
Dale Johannesene4d209d2009-02-03 20:21:25 +00009792 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009793 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009794 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009795 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +00009796 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009797 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009798 int numArgs = mInstr->getNumOperands() - 1;
9799 for (int i=0; i < numArgs; ++i)
9800 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009801
Mon P Wang63307c32008-05-05 19:05:59 +00009802 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009803 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009804 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009805
Mon P Wangab3e7472008-05-05 22:56:23 +00009806 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009807 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009808 for (int i=0; i <= lastAddrIndx; ++i)
9809 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +00009810
Mon P Wang63307c32008-05-05 19:05:59 +00009811 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +00009812 assert((argOpers[valArgIndx]->isReg() ||
9813 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009814 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +00009815
9816 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +00009817 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009818 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +00009819 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009820 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009821 (*MIB).addOperand(*argOpers[valArgIndx]);
9822
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009823 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +00009824 MIB.addReg(t1);
9825
Dale Johannesene4d209d2009-02-03 20:21:25 +00009826 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +00009827 MIB.addReg(t1);
9828 MIB.addReg(t2);
9829
9830 // Generate movc
9831 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009832 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +00009833 MIB.addReg(t2);
9834 MIB.addReg(t1);
9835
9836 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +00009837 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +00009838 for (int i=0; i <= lastAddrIndx; ++i)
9839 (*MIB).addOperand(*argOpers[i]);
9840 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +00009841 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009842 (*MIB).setMemRefs(mInstr->memoperands_begin(),
9843 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00009844
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009845 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +00009846 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009847
Mon P Wang63307c32008-05-05 19:05:59 +00009848 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009849 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009850
Dan Gohman14152b42010-07-06 20:24:04 +00009851 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009852 return nextMBB;
9853}
9854
Eric Christopherf83a5de2009-08-27 18:08:16 +00009855// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009856// or XMM0_V32I8 in AVX all of this code can be replaced with that
9857// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009858MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +00009859X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +00009860 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009861 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
9862 "Target must have SSE4.2 or AVX features enabled");
9863
Eric Christopherb120ab42009-08-18 22:50:32 +00009864 DebugLoc dl = MI->getDebugLoc();
9865 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +00009866 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009867 if (!Subtarget->hasAVX()) {
9868 if (memArg)
9869 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
9870 else
9871 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
9872 } else {
9873 if (memArg)
9874 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
9875 else
9876 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
9877 }
Eric Christopherb120ab42009-08-18 22:50:32 +00009878
Eric Christopher41c902f2010-11-30 08:20:21 +00009879 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +00009880 for (unsigned i = 0; i < numArgs; ++i) {
9881 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +00009882 if (!(Op.isReg() && Op.isImplicit()))
9883 MIB.addOperand(Op);
9884 }
Eric Christopher41c902f2010-11-30 08:20:21 +00009885 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +00009886 .addReg(X86::XMM0);
9887
Dan Gohman14152b42010-07-06 20:24:04 +00009888 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +00009889 return BB;
9890}
9891
9892MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +00009893X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +00009894 DebugLoc dl = MI->getDebugLoc();
9895 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009896
Eric Christopher228232b2010-11-30 07:20:12 +00009897 // Address into RAX/EAX, other two args into ECX, EDX.
9898 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
9899 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
9900 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
9901 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +00009902 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009903
Eric Christopher228232b2010-11-30 07:20:12 +00009904 unsigned ValOps = X86::AddrNumOperands;
9905 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
9906 .addReg(MI->getOperand(ValOps).getReg());
9907 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
9908 .addReg(MI->getOperand(ValOps+1).getReg());
9909
9910 // The instruction doesn't actually take any operands though.
9911 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009912
Eric Christopher228232b2010-11-30 07:20:12 +00009913 MI->eraseFromParent(); // The pseudo is gone now.
9914 return BB;
9915}
9916
9917MachineBasicBlock *
9918X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +00009919 DebugLoc dl = MI->getDebugLoc();
9920 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009921
Eric Christopher228232b2010-11-30 07:20:12 +00009922 // First arg in ECX, the second in EAX.
9923 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
9924 .addReg(MI->getOperand(0).getReg());
9925 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
9926 .addReg(MI->getOperand(1).getReg());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009927
Eric Christopher228232b2010-11-30 07:20:12 +00009928 // The instruction doesn't actually take any operands though.
9929 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009930
Eric Christopher228232b2010-11-30 07:20:12 +00009931 MI->eraseFromParent(); // The pseudo is gone now.
9932 return BB;
9933}
9934
9935MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +00009936X86TargetLowering::EmitVAARG64WithCustomInserter(
9937 MachineInstr *MI,
9938 MachineBasicBlock *MBB) const {
9939 // Emit va_arg instruction on X86-64.
9940
9941 // Operands to this pseudo-instruction:
9942 // 0 ) Output : destination address (reg)
9943 // 1-5) Input : va_list address (addr, i64mem)
9944 // 6 ) ArgSize : Size (in bytes) of vararg type
9945 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
9946 // 8 ) Align : Alignment of type
9947 // 9 ) EFLAGS (implicit-def)
9948
9949 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
9950 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
9951
9952 unsigned DestReg = MI->getOperand(0).getReg();
9953 MachineOperand &Base = MI->getOperand(1);
9954 MachineOperand &Scale = MI->getOperand(2);
9955 MachineOperand &Index = MI->getOperand(3);
9956 MachineOperand &Disp = MI->getOperand(4);
9957 MachineOperand &Segment = MI->getOperand(5);
9958 unsigned ArgSize = MI->getOperand(6).getImm();
9959 unsigned ArgMode = MI->getOperand(7).getImm();
9960 unsigned Align = MI->getOperand(8).getImm();
9961
9962 // Memory Reference
9963 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
9964 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
9965 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
9966
9967 // Machine Information
9968 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9969 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
9970 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
9971 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
9972 DebugLoc DL = MI->getDebugLoc();
9973
9974 // struct va_list {
9975 // i32 gp_offset
9976 // i32 fp_offset
9977 // i64 overflow_area (address)
9978 // i64 reg_save_area (address)
9979 // }
9980 // sizeof(va_list) = 24
9981 // alignment(va_list) = 8
9982
9983 unsigned TotalNumIntRegs = 6;
9984 unsigned TotalNumXMMRegs = 8;
9985 bool UseGPOffset = (ArgMode == 1);
9986 bool UseFPOffset = (ArgMode == 2);
9987 unsigned MaxOffset = TotalNumIntRegs * 8 +
9988 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
9989
9990 /* Align ArgSize to a multiple of 8 */
9991 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
9992 bool NeedsAlign = (Align > 8);
9993
9994 MachineBasicBlock *thisMBB = MBB;
9995 MachineBasicBlock *overflowMBB;
9996 MachineBasicBlock *offsetMBB;
9997 MachineBasicBlock *endMBB;
9998
9999 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
10000 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
10001 unsigned OffsetReg = 0;
10002
10003 if (!UseGPOffset && !UseFPOffset) {
10004 // If we only pull from the overflow region, we don't create a branch.
10005 // We don't need to alter control flow.
10006 OffsetDestReg = 0; // unused
10007 OverflowDestReg = DestReg;
10008
10009 offsetMBB = NULL;
10010 overflowMBB = thisMBB;
10011 endMBB = thisMBB;
10012 } else {
10013 // First emit code to check if gp_offset (or fp_offset) is below the bound.
10014 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
10015 // If not, pull from overflow_area. (branch to overflowMBB)
10016 //
10017 // thisMBB
10018 // | .
10019 // | .
10020 // offsetMBB overflowMBB
10021 // | .
10022 // | .
10023 // endMBB
10024
10025 // Registers for the PHI in endMBB
10026 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
10027 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
10028
10029 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10030 MachineFunction *MF = MBB->getParent();
10031 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10032 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10033 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10034
10035 MachineFunction::iterator MBBIter = MBB;
10036 ++MBBIter;
10037
10038 // Insert the new basic blocks
10039 MF->insert(MBBIter, offsetMBB);
10040 MF->insert(MBBIter, overflowMBB);
10041 MF->insert(MBBIter, endMBB);
10042
10043 // Transfer the remainder of MBB and its successor edges to endMBB.
10044 endMBB->splice(endMBB->begin(), thisMBB,
10045 llvm::next(MachineBasicBlock::iterator(MI)),
10046 thisMBB->end());
10047 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
10048
10049 // Make offsetMBB and overflowMBB successors of thisMBB
10050 thisMBB->addSuccessor(offsetMBB);
10051 thisMBB->addSuccessor(overflowMBB);
10052
10053 // endMBB is a successor of both offsetMBB and overflowMBB
10054 offsetMBB->addSuccessor(endMBB);
10055 overflowMBB->addSuccessor(endMBB);
10056
10057 // Load the offset value into a register
10058 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10059 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
10060 .addOperand(Base)
10061 .addOperand(Scale)
10062 .addOperand(Index)
10063 .addDisp(Disp, UseFPOffset ? 4 : 0)
10064 .addOperand(Segment)
10065 .setMemRefs(MMOBegin, MMOEnd);
10066
10067 // Check if there is enough room left to pull this argument.
10068 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
10069 .addReg(OffsetReg)
10070 .addImm(MaxOffset + 8 - ArgSizeA8);
10071
10072 // Branch to "overflowMBB" if offset >= max
10073 // Fall through to "offsetMBB" otherwise
10074 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
10075 .addMBB(overflowMBB);
10076 }
10077
10078 // In offsetMBB, emit code to use the reg_save_area.
10079 if (offsetMBB) {
10080 assert(OffsetReg != 0);
10081
10082 // Read the reg_save_area address.
10083 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
10084 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
10085 .addOperand(Base)
10086 .addOperand(Scale)
10087 .addOperand(Index)
10088 .addDisp(Disp, 16)
10089 .addOperand(Segment)
10090 .setMemRefs(MMOBegin, MMOEnd);
10091
10092 // Zero-extend the offset
10093 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
10094 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
10095 .addImm(0)
10096 .addReg(OffsetReg)
10097 .addImm(X86::sub_32bit);
10098
10099 // Add the offset to the reg_save_area to get the final address.
10100 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
10101 .addReg(OffsetReg64)
10102 .addReg(RegSaveReg);
10103
10104 // Compute the offset for the next argument
10105 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10106 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
10107 .addReg(OffsetReg)
10108 .addImm(UseFPOffset ? 16 : 8);
10109
10110 // Store it back into the va_list.
10111 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
10112 .addOperand(Base)
10113 .addOperand(Scale)
10114 .addOperand(Index)
10115 .addDisp(Disp, UseFPOffset ? 4 : 0)
10116 .addOperand(Segment)
10117 .addReg(NextOffsetReg)
10118 .setMemRefs(MMOBegin, MMOEnd);
10119
10120 // Jump to endMBB
10121 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
10122 .addMBB(endMBB);
10123 }
10124
10125 //
10126 // Emit code to use overflow area
10127 //
10128
10129 // Load the overflow_area address into a register.
10130 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
10131 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
10132 .addOperand(Base)
10133 .addOperand(Scale)
10134 .addOperand(Index)
10135 .addDisp(Disp, 8)
10136 .addOperand(Segment)
10137 .setMemRefs(MMOBegin, MMOEnd);
10138
10139 // If we need to align it, do so. Otherwise, just copy the address
10140 // to OverflowDestReg.
10141 if (NeedsAlign) {
10142 // Align the overflow address
10143 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
10144 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
10145
10146 // aligned_addr = (addr + (align-1)) & ~(align-1)
10147 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
10148 .addReg(OverflowAddrReg)
10149 .addImm(Align-1);
10150
10151 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
10152 .addReg(TmpReg)
10153 .addImm(~(uint64_t)(Align-1));
10154 } else {
10155 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
10156 .addReg(OverflowAddrReg);
10157 }
10158
10159 // Compute the next overflow address after this argument.
10160 // (the overflow address should be kept 8-byte aligned)
10161 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
10162 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
10163 .addReg(OverflowDestReg)
10164 .addImm(ArgSizeA8);
10165
10166 // Store the new overflow address.
10167 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
10168 .addOperand(Base)
10169 .addOperand(Scale)
10170 .addOperand(Index)
10171 .addDisp(Disp, 8)
10172 .addOperand(Segment)
10173 .addReg(NextAddrReg)
10174 .setMemRefs(MMOBegin, MMOEnd);
10175
10176 // If we branched, emit the PHI to the front of endMBB.
10177 if (offsetMBB) {
10178 BuildMI(*endMBB, endMBB->begin(), DL,
10179 TII->get(X86::PHI), DestReg)
10180 .addReg(OffsetDestReg).addMBB(offsetMBB)
10181 .addReg(OverflowDestReg).addMBB(overflowMBB);
10182 }
10183
10184 // Erase the pseudo instruction
10185 MI->eraseFromParent();
10186
10187 return endMBB;
10188}
10189
10190MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000010191X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
10192 MachineInstr *MI,
10193 MachineBasicBlock *MBB) const {
10194 // Emit code to save XMM registers to the stack. The ABI says that the
10195 // number of registers to save is given in %al, so it's theoretically
10196 // possible to do an indirect jump trick to avoid saving all of them,
10197 // however this code takes a simpler approach and just executes all
10198 // of the stores if %al is non-zero. It's less code, and it's probably
10199 // easier on the hardware branch predictor, and stores aren't all that
10200 // expensive anyway.
10201
10202 // Create the new basic blocks. One block contains all the XMM stores,
10203 // and one block is the final destination regardless of whether any
10204 // stores were performed.
10205 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10206 MachineFunction *F = MBB->getParent();
10207 MachineFunction::iterator MBBIter = MBB;
10208 ++MBBIter;
10209 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
10210 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
10211 F->insert(MBBIter, XMMSaveMBB);
10212 F->insert(MBBIter, EndMBB);
10213
Dan Gohman14152b42010-07-06 20:24:04 +000010214 // Transfer the remainder of MBB and its successor edges to EndMBB.
10215 EndMBB->splice(EndMBB->begin(), MBB,
10216 llvm::next(MachineBasicBlock::iterator(MI)),
10217 MBB->end());
10218 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
10219
Dan Gohmand6708ea2009-08-15 01:38:56 +000010220 // The original block will now fall through to the XMM save block.
10221 MBB->addSuccessor(XMMSaveMBB);
10222 // The XMMSaveMBB will fall through to the end block.
10223 XMMSaveMBB->addSuccessor(EndMBB);
10224
10225 // Now add the instructions.
10226 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10227 DebugLoc DL = MI->getDebugLoc();
10228
10229 unsigned CountReg = MI->getOperand(0).getReg();
10230 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
10231 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
10232
10233 if (!Subtarget->isTargetWin64()) {
10234 // If %al is 0, branch around the XMM save block.
10235 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010236 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010237 MBB->addSuccessor(EndMBB);
10238 }
10239
10240 // In the XMM save block, save all the XMM argument registers.
10241 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
10242 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000010243 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000010244 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000010245 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000010246 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000010247 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010248 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
10249 .addFrameIndex(RegSaveFrameIndex)
10250 .addImm(/*Scale=*/1)
10251 .addReg(/*IndexReg=*/0)
10252 .addImm(/*Disp=*/Offset)
10253 .addReg(/*Segment=*/0)
10254 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000010255 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010256 }
10257
Dan Gohman14152b42010-07-06 20:24:04 +000010258 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010259
10260 return EndMBB;
10261}
Mon P Wang63307c32008-05-05 19:05:59 +000010262
Evan Cheng60c07e12006-07-05 22:17:51 +000010263MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000010264X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010265 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000010266 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10267 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000010268
Chris Lattner52600972009-09-02 05:57:00 +000010269 // To "insert" a SELECT_CC instruction, we actually have to insert the
10270 // diamond control-flow pattern. The incoming instruction knows the
10271 // destination vreg to set, the condition code register to branch on, the
10272 // true/false values to select between, and a branch opcode to use.
10273 const BasicBlock *LLVM_BB = BB->getBasicBlock();
10274 MachineFunction::iterator It = BB;
10275 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000010276
Chris Lattner52600972009-09-02 05:57:00 +000010277 // thisMBB:
10278 // ...
10279 // TrueVal = ...
10280 // cmpTY ccX, r1, r2
10281 // bCC copy1MBB
10282 // fallthrough --> copy0MBB
10283 MachineBasicBlock *thisMBB = BB;
10284 MachineFunction *F = BB->getParent();
10285 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
10286 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000010287 F->insert(It, copy0MBB);
10288 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000010289
Bill Wendling730c07e2010-06-25 20:48:10 +000010290 // If the EFLAGS register isn't dead in the terminator, then claim that it's
10291 // live into the sink and copy blocks.
10292 const MachineFunction *MF = BB->getParent();
10293 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
10294 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +000010295
Dan Gohman14152b42010-07-06 20:24:04 +000010296 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
10297 const MachineOperand &MO = MI->getOperand(I);
10298 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +000010299 unsigned Reg = MO.getReg();
10300 if (Reg != X86::EFLAGS) continue;
10301 copy0MBB->addLiveIn(Reg);
10302 sinkMBB->addLiveIn(Reg);
10303 }
10304
Dan Gohman14152b42010-07-06 20:24:04 +000010305 // Transfer the remainder of BB and its successor edges to sinkMBB.
10306 sinkMBB->splice(sinkMBB->begin(), BB,
10307 llvm::next(MachineBasicBlock::iterator(MI)),
10308 BB->end());
10309 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
10310
10311 // Add the true and fallthrough blocks as its successors.
10312 BB->addSuccessor(copy0MBB);
10313 BB->addSuccessor(sinkMBB);
10314
10315 // Create the conditional branch instruction.
10316 unsigned Opc =
10317 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
10318 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
10319
Chris Lattner52600972009-09-02 05:57:00 +000010320 // copy0MBB:
10321 // %FalseValue = ...
10322 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000010323 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000010324
Chris Lattner52600972009-09-02 05:57:00 +000010325 // sinkMBB:
10326 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
10327 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000010328 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
10329 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000010330 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
10331 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
10332
Dan Gohman14152b42010-07-06 20:24:04 +000010333 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000010334 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000010335}
10336
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010337MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010338X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010339 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010340 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10341 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010342
10343 // The lowering is pretty easy: we're just emitting the call to _alloca. The
10344 // non-trivial part is impdef of ESP.
10345 // FIXME: The code should be tweaked as soon as we'll try to do codegen for
10346 // mingw-w64.
10347
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010348 const char *StackProbeSymbol =
10349 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
10350
Dan Gohman14152b42010-07-06 20:24:04 +000010351 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010352 .addExternalSymbol(StackProbeSymbol)
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010353 .addReg(X86::EAX, RegState::Implicit)
10354 .addReg(X86::ESP, RegState::Implicit)
10355 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
Anton Korobeynikov9f7f83b2010-08-25 07:50:11 +000010356 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
10357 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010358
Dan Gohman14152b42010-07-06 20:24:04 +000010359 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010360 return BB;
10361}
Chris Lattner52600972009-09-02 05:57:00 +000010362
10363MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000010364X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
10365 MachineBasicBlock *BB) const {
10366 // This is pretty easy. We're taking the value that we received from
10367 // our load from the relocation, sticking it in either RDI (x86-64)
10368 // or EAX and doing an indirect call. The return value will then
10369 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010370 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000010371 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000010372 DebugLoc DL = MI->getDebugLoc();
10373 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000010374
10375 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000010376 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000010377
Eric Christopher30ef0e52010-06-03 04:07:48 +000010378 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000010379 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10380 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000010381 .addReg(X86::RIP)
10382 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010383 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000010384 MI->getOperand(3).getTargetFlags())
10385 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000010386 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000010387 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000010388 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000010389 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10390 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000010391 .addReg(0)
10392 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010393 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000010394 MI->getOperand(3).getTargetFlags())
10395 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000010396 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000010397 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010398 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000010399 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10400 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000010401 .addReg(TII->getGlobalBaseReg(F))
10402 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010403 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000010404 MI->getOperand(3).getTargetFlags())
10405 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000010406 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000010407 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010408 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000010409
Dan Gohman14152b42010-07-06 20:24:04 +000010410 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000010411 return BB;
10412}
10413
10414MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000010415X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010416 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000010417 switch (MI->getOpcode()) {
10418 default: assert(false && "Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000010419 case X86::TAILJMPd64:
10420 case X86::TAILJMPr64:
10421 case X86::TAILJMPm64:
10422 assert(!"TAILJMP64 would not be touched here.");
10423 case X86::TCRETURNdi64:
10424 case X86::TCRETURNri64:
10425 case X86::TCRETURNmi64:
10426 // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
10427 // On AMD64, additional defs should be added before register allocation.
10428 if (!Subtarget->isTargetWin64()) {
10429 MI->addRegisterDefined(X86::RSI);
10430 MI->addRegisterDefined(X86::RDI);
10431 MI->addRegisterDefined(X86::XMM6);
10432 MI->addRegisterDefined(X86::XMM7);
10433 MI->addRegisterDefined(X86::XMM8);
10434 MI->addRegisterDefined(X86::XMM9);
10435 MI->addRegisterDefined(X86::XMM10);
10436 MI->addRegisterDefined(X86::XMM11);
10437 MI->addRegisterDefined(X86::XMM12);
10438 MI->addRegisterDefined(X86::XMM13);
10439 MI->addRegisterDefined(X86::XMM14);
10440 MI->addRegisterDefined(X86::XMM15);
10441 }
10442 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010443 case X86::WIN_ALLOCA:
10444 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010445 case X86::TLSCall_32:
10446 case X86::TLSCall_64:
10447 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000010448 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000010449 case X86::CMOV_FR32:
10450 case X86::CMOV_FR64:
10451 case X86::CMOV_V4F32:
10452 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000010453 case X86::CMOV_V2I64:
Chris Lattner314a1132010-03-14 18:31:44 +000010454 case X86::CMOV_GR16:
10455 case X86::CMOV_GR32:
10456 case X86::CMOV_RFP32:
10457 case X86::CMOV_RFP64:
10458 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010459 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010460
Dale Johannesen849f2142007-07-03 00:53:03 +000010461 case X86::FP32_TO_INT16_IN_MEM:
10462 case X86::FP32_TO_INT32_IN_MEM:
10463 case X86::FP32_TO_INT64_IN_MEM:
10464 case X86::FP64_TO_INT16_IN_MEM:
10465 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000010466 case X86::FP64_TO_INT64_IN_MEM:
10467 case X86::FP80_TO_INT16_IN_MEM:
10468 case X86::FP80_TO_INT32_IN_MEM:
10469 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000010470 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10471 DebugLoc DL = MI->getDebugLoc();
10472
Evan Cheng60c07e12006-07-05 22:17:51 +000010473 // Change the floating point control register to use "round towards zero"
10474 // mode when truncating to an integer value.
10475 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000010476 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000010477 addFrameReference(BuildMI(*BB, MI, DL,
10478 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010479
10480 // Load the old value of the high byte of the control word...
10481 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000010482 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000010483 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010484 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010485
10486 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000010487 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010488 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000010489
10490 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000010491 addFrameReference(BuildMI(*BB, MI, DL,
10492 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010493
10494 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000010495 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010496 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000010497
10498 // Get the X86 opcode to use.
10499 unsigned Opc;
10500 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010501 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000010502 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
10503 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
10504 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
10505 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
10506 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
10507 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000010508 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
10509 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
10510 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000010511 }
10512
10513 X86AddressMode AM;
10514 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000010515 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010516 AM.BaseType = X86AddressMode::RegBase;
10517 AM.Base.Reg = Op.getReg();
10518 } else {
10519 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000010520 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000010521 }
10522 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000010523 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010524 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010525 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000010526 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010527 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010528 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000010529 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010530 AM.GV = Op.getGlobal();
10531 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000010532 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010533 }
Dan Gohman14152b42010-07-06 20:24:04 +000010534 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010535 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000010536
10537 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000010538 addFrameReference(BuildMI(*BB, MI, DL,
10539 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010540
Dan Gohman14152b42010-07-06 20:24:04 +000010541 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000010542 return BB;
10543 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010544 // String/text processing lowering.
10545 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010546 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010547 return EmitPCMP(MI, BB, 3, false /* in-mem */);
10548 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010549 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010550 return EmitPCMP(MI, BB, 3, true /* in-mem */);
10551 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010552 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010553 return EmitPCMP(MI, BB, 5, false /* in mem */);
10554 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010555 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010556 return EmitPCMP(MI, BB, 5, true /* in mem */);
10557
Eric Christopher228232b2010-11-30 07:20:12 +000010558 // Thread synchronization.
10559 case X86::MONITOR:
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010560 return EmitMonitor(MI, BB);
Eric Christopher228232b2010-11-30 07:20:12 +000010561 case X86::MWAIT:
10562 return EmitMwait(MI, BB);
10563
Eric Christopherb120ab42009-08-18 22:50:32 +000010564 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000010565 case X86::ATOMAND32:
10566 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010567 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010568 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010569 X86::NOT32r, X86::EAX,
10570 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010571 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000010572 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
10573 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010574 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010575 X86::NOT32r, X86::EAX,
10576 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010577 case X86::ATOMXOR32:
10578 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010579 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010580 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010581 X86::NOT32r, X86::EAX,
10582 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010583 case X86::ATOMNAND32:
10584 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010585 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010586 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010587 X86::NOT32r, X86::EAX,
10588 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000010589 case X86::ATOMMIN32:
10590 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
10591 case X86::ATOMMAX32:
10592 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
10593 case X86::ATOMUMIN32:
10594 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
10595 case X86::ATOMUMAX32:
10596 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000010597
10598 case X86::ATOMAND16:
10599 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10600 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010601 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010602 X86::NOT16r, X86::AX,
10603 X86::GR16RegisterClass);
10604 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000010605 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010606 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010607 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010608 X86::NOT16r, X86::AX,
10609 X86::GR16RegisterClass);
10610 case X86::ATOMXOR16:
10611 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
10612 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010613 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010614 X86::NOT16r, X86::AX,
10615 X86::GR16RegisterClass);
10616 case X86::ATOMNAND16:
10617 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10618 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010619 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010620 X86::NOT16r, X86::AX,
10621 X86::GR16RegisterClass, true);
10622 case X86::ATOMMIN16:
10623 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
10624 case X86::ATOMMAX16:
10625 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
10626 case X86::ATOMUMIN16:
10627 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
10628 case X86::ATOMUMAX16:
10629 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
10630
10631 case X86::ATOMAND8:
10632 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10633 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010634 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010635 X86::NOT8r, X86::AL,
10636 X86::GR8RegisterClass);
10637 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000010638 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010639 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010640 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010641 X86::NOT8r, X86::AL,
10642 X86::GR8RegisterClass);
10643 case X86::ATOMXOR8:
10644 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
10645 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010646 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010647 X86::NOT8r, X86::AL,
10648 X86::GR8RegisterClass);
10649 case X86::ATOMNAND8:
10650 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10651 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010652 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010653 X86::NOT8r, X86::AL,
10654 X86::GR8RegisterClass, true);
10655 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010656 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000010657 case X86::ATOMAND64:
10658 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010659 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010660 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010661 X86::NOT64r, X86::RAX,
10662 X86::GR64RegisterClass);
10663 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000010664 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
10665 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010666 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010667 X86::NOT64r, X86::RAX,
10668 X86::GR64RegisterClass);
10669 case X86::ATOMXOR64:
10670 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010671 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010672 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010673 X86::NOT64r, X86::RAX,
10674 X86::GR64RegisterClass);
10675 case X86::ATOMNAND64:
10676 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
10677 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010678 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010679 X86::NOT64r, X86::RAX,
10680 X86::GR64RegisterClass, true);
10681 case X86::ATOMMIN64:
10682 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
10683 case X86::ATOMMAX64:
10684 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
10685 case X86::ATOMUMIN64:
10686 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
10687 case X86::ATOMUMAX64:
10688 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010689
10690 // This group does 64-bit operations on a 32-bit host.
10691 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010692 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010693 X86::AND32rr, X86::AND32rr,
10694 X86::AND32ri, X86::AND32ri,
10695 false);
10696 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010697 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010698 X86::OR32rr, X86::OR32rr,
10699 X86::OR32ri, X86::OR32ri,
10700 false);
10701 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010702 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010703 X86::XOR32rr, X86::XOR32rr,
10704 X86::XOR32ri, X86::XOR32ri,
10705 false);
10706 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010707 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010708 X86::AND32rr, X86::AND32rr,
10709 X86::AND32ri, X86::AND32ri,
10710 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010711 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010712 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010713 X86::ADD32rr, X86::ADC32rr,
10714 X86::ADD32ri, X86::ADC32ri,
10715 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010716 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010717 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010718 X86::SUB32rr, X86::SBB32rr,
10719 X86::SUB32ri, X86::SBB32ri,
10720 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000010721 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010722 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000010723 X86::MOV32rr, X86::MOV32rr,
10724 X86::MOV32ri, X86::MOV32ri,
10725 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010726 case X86::VASTART_SAVE_XMM_REGS:
10727 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000010728
10729 case X86::VAARG_64:
10730 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010731 }
10732}
10733
10734//===----------------------------------------------------------------------===//
10735// X86 Optimization Hooks
10736//===----------------------------------------------------------------------===//
10737
Dan Gohman475871a2008-07-27 21:46:04 +000010738void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000010739 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010740 APInt &KnownZero,
10741 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000010742 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000010743 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010744 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000010745 assert((Opc >= ISD::BUILTIN_OP_END ||
10746 Opc == ISD::INTRINSIC_WO_CHAIN ||
10747 Opc == ISD::INTRINSIC_W_CHAIN ||
10748 Opc == ISD::INTRINSIC_VOID) &&
10749 "Should use MaskedValueIsZero if you don't know whether Op"
10750 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010751
Dan Gohmanf4f92f52008-02-13 23:07:24 +000010752 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010753 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000010754 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010755 case X86ISD::ADD:
10756 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000010757 case X86ISD::ADC:
10758 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010759 case X86ISD::SMUL:
10760 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000010761 case X86ISD::INC:
10762 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000010763 case X86ISD::OR:
10764 case X86ISD::XOR:
10765 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010766 // These nodes' second result is a boolean.
10767 if (Op.getResNo() == 0)
10768 break;
10769 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010770 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010771 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
10772 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000010773 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010774 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010775}
Chris Lattner259e97c2006-01-31 19:43:35 +000010776
Owen Andersonbc146b02010-09-21 20:42:50 +000010777unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
10778 unsigned Depth) const {
10779 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
10780 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
10781 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010782
Owen Andersonbc146b02010-09-21 20:42:50 +000010783 // Fallback case.
10784 return 1;
10785}
10786
Evan Cheng206ee9d2006-07-07 08:33:52 +000010787/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000010788/// node is a GlobalAddress + offset.
10789bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000010790 const GlobalValue* &GA,
10791 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000010792 if (N->getOpcode() == X86ISD::Wrapper) {
10793 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000010794 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000010795 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000010796 return true;
10797 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000010798 }
Evan Chengad4196b2008-05-12 19:56:52 +000010799 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000010800}
10801
Evan Cheng206ee9d2006-07-07 08:33:52 +000010802/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
10803/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
10804/// if the load addresses are consecutive, non-overlapping, and in the right
Nate Begemanfdea31a2010-03-24 20:49:50 +000010805/// order.
Dan Gohman475871a2008-07-27 21:46:04 +000010806static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Mon P Wanga0fd0d52010-12-19 23:55:53 +000010807 TargetLowering::DAGCombinerInfo &DCI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010808 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000010809 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000010810
Eli Friedman7a5e5552009-06-07 06:52:44 +000010811 if (VT.getSizeInBits() != 128)
10812 return SDValue();
10813
Mon P Wanga0fd0d52010-12-19 23:55:53 +000010814 // Don't create instructions with illegal types after legalize types has run.
10815 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10816 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
10817 return SDValue();
10818
Nate Begemanfdea31a2010-03-24 20:49:50 +000010819 SmallVector<SDValue, 16> Elts;
10820 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000010821 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000010822
Nate Begemanfdea31a2010-03-24 20:49:50 +000010823 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000010824}
Evan Chengd880b972008-05-09 21:53:03 +000010825
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000010826/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
10827/// generation and convert it from being a bunch of shuffles and extracts
10828/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010829static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
10830 const TargetLowering &TLI) {
10831 SDValue InputVector = N->getOperand(0);
10832
10833 // Only operate on vectors of 4 elements, where the alternative shuffling
10834 // gets to be more expensive.
10835 if (InputVector.getValueType() != MVT::v4i32)
10836 return SDValue();
10837
10838 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
10839 // single use which is a sign-extend or zero-extend, and all elements are
10840 // used.
10841 SmallVector<SDNode *, 4> Uses;
10842 unsigned ExtractedElements = 0;
10843 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
10844 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
10845 if (UI.getUse().getResNo() != InputVector.getResNo())
10846 return SDValue();
10847
10848 SDNode *Extract = *UI;
10849 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
10850 return SDValue();
10851
10852 if (Extract->getValueType(0) != MVT::i32)
10853 return SDValue();
10854 if (!Extract->hasOneUse())
10855 return SDValue();
10856 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
10857 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
10858 return SDValue();
10859 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
10860 return SDValue();
10861
10862 // Record which element was extracted.
10863 ExtractedElements |=
10864 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
10865
10866 Uses.push_back(Extract);
10867 }
10868
10869 // If not all the elements were used, this may not be worthwhile.
10870 if (ExtractedElements != 15)
10871 return SDValue();
10872
10873 // Ok, we've now decided to do the transformation.
10874 DebugLoc dl = InputVector.getDebugLoc();
10875
10876 // Store the value to a temporary stack slot.
10877 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010878 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
10879 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010880
10881 // Replace each use (extract) with a load of the appropriate element.
10882 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
10883 UE = Uses.end(); UI != UE; ++UI) {
10884 SDNode *Extract = *UI;
10885
10886 // Compute the element's address.
10887 SDValue Idx = Extract->getOperand(1);
10888 unsigned EltSize =
10889 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
10890 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
10891 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
10892
Eric Christopher90eb4022010-07-22 00:26:08 +000010893 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(),
Chris Lattner51abfe42010-09-21 06:02:19 +000010894 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010895
10896 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000010897 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000010898 ScalarAddr, MachinePointerInfo(),
10899 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010900
10901 // Replace the exact with the load.
10902 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
10903 }
10904
10905 // The replacement was made in place; don't return anything.
10906 return SDValue();
10907}
10908
Chris Lattner83e6c992006-10-04 06:57:07 +000010909/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000010910static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000010911 const X86Subtarget *Subtarget) {
10912 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000010913 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000010914 // Get the LHS/RHS of the select.
10915 SDValue LHS = N->getOperand(1);
10916 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010917
Dan Gohman670e5392009-09-21 18:03:22 +000010918 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000010919 // instructions match the semantics of the common C idiom x<y?x:y but not
10920 // x<=y?x:y, because of how they handle negative zero (which can be
10921 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000010922 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000010923 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000010924 Cond.getOpcode() == ISD::SETCC) {
10925 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010926
Chris Lattner47b4ce82009-03-11 05:48:52 +000010927 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000010928 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000010929 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
10930 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010931 switch (CC) {
10932 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010933 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010934 // Converting this to a min would handle NaNs incorrectly, and swapping
10935 // the operands would cause it to handle comparisons between positive
10936 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010937 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010938 if (!UnsafeFPMath &&
10939 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10940 break;
10941 std::swap(LHS, RHS);
10942 }
Dan Gohman670e5392009-09-21 18:03:22 +000010943 Opcode = X86ISD::FMIN;
10944 break;
10945 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010946 // Converting this to a min would handle comparisons between positive
10947 // and negative zero incorrectly.
10948 if (!UnsafeFPMath &&
10949 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
10950 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010951 Opcode = X86ISD::FMIN;
10952 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010953 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010954 // Converting this to a min would handle both negative zeros and NaNs
10955 // incorrectly, but we can swap the operands to fix both.
10956 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010957 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010958 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010959 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010960 Opcode = X86ISD::FMIN;
10961 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010962
Dan Gohman670e5392009-09-21 18:03:22 +000010963 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010964 // Converting this to a max would handle comparisons between positive
10965 // and negative zero incorrectly.
10966 if (!UnsafeFPMath &&
10967 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS))
10968 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010969 Opcode = X86ISD::FMAX;
10970 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010971 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010972 // Converting this to a max would handle NaNs incorrectly, and swapping
10973 // the operands would cause it to handle comparisons between positive
10974 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010975 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010976 if (!UnsafeFPMath &&
10977 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10978 break;
10979 std::swap(LHS, RHS);
10980 }
Dan Gohman670e5392009-09-21 18:03:22 +000010981 Opcode = X86ISD::FMAX;
10982 break;
10983 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010984 // Converting this to a max would handle both negative zeros and NaNs
10985 // incorrectly, but we can swap the operands to fix both.
10986 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010987 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010988 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010989 case ISD::SETGE:
10990 Opcode = X86ISD::FMAX;
10991 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000010992 }
Dan Gohman670e5392009-09-21 18:03:22 +000010993 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000010994 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
10995 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010996 switch (CC) {
10997 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010998 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010999 // Converting this to a min would handle comparisons between positive
11000 // and negative zero incorrectly, and swapping the operands would
11001 // cause it to handle NaNs incorrectly.
11002 if (!UnsafeFPMath &&
11003 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000011004 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011005 break;
11006 std::swap(LHS, RHS);
11007 }
Dan Gohman670e5392009-09-21 18:03:22 +000011008 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000011009 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011010 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000011011 // Converting this to a min would handle NaNs incorrectly.
11012 if (!UnsafeFPMath &&
11013 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
11014 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011015 Opcode = X86ISD::FMIN;
11016 break;
11017 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011018 // Converting this to a min would handle both negative zeros and NaNs
11019 // incorrectly, but we can swap the operands to fix both.
11020 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011021 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011022 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011023 case ISD::SETGE:
11024 Opcode = X86ISD::FMIN;
11025 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011026
Dan Gohman670e5392009-09-21 18:03:22 +000011027 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011028 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011029 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011030 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011031 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000011032 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011033 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000011034 // Converting this to a max would handle comparisons between positive
11035 // and negative zero incorrectly, and swapping the operands would
11036 // cause it to handle NaNs incorrectly.
11037 if (!UnsafeFPMath &&
11038 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000011039 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011040 break;
11041 std::swap(LHS, RHS);
11042 }
Dan Gohman670e5392009-09-21 18:03:22 +000011043 Opcode = X86ISD::FMAX;
11044 break;
11045 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000011046 // Converting this to a max would handle both negative zeros and NaNs
11047 // incorrectly, but we can swap the operands to fix both.
11048 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011049 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011050 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000011051 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011052 Opcode = X86ISD::FMAX;
11053 break;
11054 }
Chris Lattner83e6c992006-10-04 06:57:07 +000011055 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011056
Chris Lattner47b4ce82009-03-11 05:48:52 +000011057 if (Opcode)
11058 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000011059 }
Eric Christopherfd179292009-08-27 18:07:15 +000011060
Chris Lattnerd1980a52009-03-12 06:52:53 +000011061 // If this is a select between two integer constants, try to do some
11062 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000011063 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
11064 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000011065 // Don't do this for crazy integer types.
11066 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
11067 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000011068 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011069 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000011070
Chris Lattnercee56e72009-03-13 05:53:31 +000011071 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000011072 // Efficiently invertible.
11073 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
11074 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
11075 isa<ConstantSDNode>(Cond.getOperand(1))))) {
11076 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000011077 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011078 }
Eric Christopherfd179292009-08-27 18:07:15 +000011079
Chris Lattnerd1980a52009-03-12 06:52:53 +000011080 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011081 if (FalseC->getAPIntValue() == 0 &&
11082 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000011083 if (NeedsCondInvert) // Invert the condition if needed.
11084 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11085 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011086
Chris Lattnerd1980a52009-03-12 06:52:53 +000011087 // Zero extend the condition if needed.
11088 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011089
Chris Lattnercee56e72009-03-13 05:53:31 +000011090 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000011091 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011092 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011093 }
Eric Christopherfd179292009-08-27 18:07:15 +000011094
Chris Lattner97a29a52009-03-13 05:22:11 +000011095 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000011096 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000011097 if (NeedsCondInvert) // Invert the condition if needed.
11098 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11099 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011100
Chris Lattner97a29a52009-03-13 05:22:11 +000011101 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000011102 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11103 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000011104 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000011105 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000011106 }
Eric Christopherfd179292009-08-27 18:07:15 +000011107
Chris Lattnercee56e72009-03-13 05:53:31 +000011108 // Optimize cases that will turn into an LEA instruction. This requires
11109 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000011110 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000011111 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011112 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000011113
Chris Lattnercee56e72009-03-13 05:53:31 +000011114 bool isFastMultiplier = false;
11115 if (Diff < 10) {
11116 switch ((unsigned char)Diff) {
11117 default: break;
11118 case 1: // result = add base, cond
11119 case 2: // result = lea base( , cond*2)
11120 case 3: // result = lea base(cond, cond*2)
11121 case 4: // result = lea base( , cond*4)
11122 case 5: // result = lea base(cond, cond*4)
11123 case 8: // result = lea base( , cond*8)
11124 case 9: // result = lea base(cond, cond*8)
11125 isFastMultiplier = true;
11126 break;
11127 }
11128 }
Eric Christopherfd179292009-08-27 18:07:15 +000011129
Chris Lattnercee56e72009-03-13 05:53:31 +000011130 if (isFastMultiplier) {
11131 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
11132 if (NeedsCondInvert) // Invert the condition if needed.
11133 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11134 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011135
Chris Lattnercee56e72009-03-13 05:53:31 +000011136 // Zero extend the condition if needed.
11137 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
11138 Cond);
11139 // Scale the condition by the difference.
11140 if (Diff != 1)
11141 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
11142 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011143
Chris Lattnercee56e72009-03-13 05:53:31 +000011144 // Add the base if non-zero.
11145 if (FalseC->getAPIntValue() != 0)
11146 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11147 SDValue(FalseC, 0));
11148 return Cond;
11149 }
Eric Christopherfd179292009-08-27 18:07:15 +000011150 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000011151 }
11152 }
Eric Christopherfd179292009-08-27 18:07:15 +000011153
Dan Gohman475871a2008-07-27 21:46:04 +000011154 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000011155}
11156
Chris Lattnerd1980a52009-03-12 06:52:53 +000011157/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
11158static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
11159 TargetLowering::DAGCombinerInfo &DCI) {
11160 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000011161
Chris Lattnerd1980a52009-03-12 06:52:53 +000011162 // If the flag operand isn't dead, don't touch this CMOV.
11163 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
11164 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000011165
Chris Lattnerd1980a52009-03-12 06:52:53 +000011166 // If this is a select between two integer constants, try to do some
11167 // optimizations. Note that the operands are ordered the opposite of SELECT
11168 // operands.
11169 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
11170 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
11171 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
11172 // larger than FalseC (the false value).
11173 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
Eric Christopherfd179292009-08-27 18:07:15 +000011174
Chris Lattnerd1980a52009-03-12 06:52:53 +000011175 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
11176 CC = X86::GetOppositeBranchCondition(CC);
11177 std::swap(TrueC, FalseC);
11178 }
Eric Christopherfd179292009-08-27 18:07:15 +000011179
Chris Lattnerd1980a52009-03-12 06:52:53 +000011180 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011181 // This is efficient for any integer data type (including i8/i16) and
11182 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011183 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
11184 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000011185 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11186 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011187
Chris Lattnerd1980a52009-03-12 06:52:53 +000011188 // Zero extend the condition if needed.
11189 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011190
Chris Lattnerd1980a52009-03-12 06:52:53 +000011191 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
11192 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011193 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011194 if (N->getNumValues() == 2) // Dead flag value?
11195 return DCI.CombineTo(N, Cond, SDValue());
11196 return Cond;
11197 }
Eric Christopherfd179292009-08-27 18:07:15 +000011198
Chris Lattnercee56e72009-03-13 05:53:31 +000011199 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
11200 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000011201 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
11202 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000011203 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11204 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011205
Chris Lattner97a29a52009-03-13 05:22:11 +000011206 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000011207 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11208 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000011209 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11210 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000011211
Chris Lattner97a29a52009-03-13 05:22:11 +000011212 if (N->getNumValues() == 2) // Dead flag value?
11213 return DCI.CombineTo(N, Cond, SDValue());
11214 return Cond;
11215 }
Eric Christopherfd179292009-08-27 18:07:15 +000011216
Chris Lattnercee56e72009-03-13 05:53:31 +000011217 // Optimize cases that will turn into an LEA instruction. This requires
11218 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000011219 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000011220 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011221 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000011222
Chris Lattnercee56e72009-03-13 05:53:31 +000011223 bool isFastMultiplier = false;
11224 if (Diff < 10) {
11225 switch ((unsigned char)Diff) {
11226 default: break;
11227 case 1: // result = add base, cond
11228 case 2: // result = lea base( , cond*2)
11229 case 3: // result = lea base(cond, cond*2)
11230 case 4: // result = lea base( , cond*4)
11231 case 5: // result = lea base(cond, cond*4)
11232 case 8: // result = lea base( , cond*8)
11233 case 9: // result = lea base(cond, cond*8)
11234 isFastMultiplier = true;
11235 break;
11236 }
11237 }
Eric Christopherfd179292009-08-27 18:07:15 +000011238
Chris Lattnercee56e72009-03-13 05:53:31 +000011239 if (isFastMultiplier) {
11240 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
11241 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000011242 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11243 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000011244 // Zero extend the condition if needed.
11245 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
11246 Cond);
11247 // Scale the condition by the difference.
11248 if (Diff != 1)
11249 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
11250 DAG.getConstant(Diff, Cond.getValueType()));
11251
11252 // Add the base if non-zero.
11253 if (FalseC->getAPIntValue() != 0)
11254 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11255 SDValue(FalseC, 0));
11256 if (N->getNumValues() == 2) // Dead flag value?
11257 return DCI.CombineTo(N, Cond, SDValue());
11258 return Cond;
11259 }
Eric Christopherfd179292009-08-27 18:07:15 +000011260 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000011261 }
11262 }
11263 return SDValue();
11264}
11265
11266
Evan Cheng0b0cd912009-03-28 05:57:29 +000011267/// PerformMulCombine - Optimize a single multiply with constant into two
11268/// in order to implement it with two cheaper instructions, e.g.
11269/// LEA + SHL, LEA + LEA.
11270static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
11271 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000011272 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
11273 return SDValue();
11274
Owen Andersone50ed302009-08-10 22:56:29 +000011275 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011276 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000011277 return SDValue();
11278
11279 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
11280 if (!C)
11281 return SDValue();
11282 uint64_t MulAmt = C->getZExtValue();
11283 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
11284 return SDValue();
11285
11286 uint64_t MulAmt1 = 0;
11287 uint64_t MulAmt2 = 0;
11288 if ((MulAmt % 9) == 0) {
11289 MulAmt1 = 9;
11290 MulAmt2 = MulAmt / 9;
11291 } else if ((MulAmt % 5) == 0) {
11292 MulAmt1 = 5;
11293 MulAmt2 = MulAmt / 5;
11294 } else if ((MulAmt % 3) == 0) {
11295 MulAmt1 = 3;
11296 MulAmt2 = MulAmt / 3;
11297 }
11298 if (MulAmt2 &&
11299 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
11300 DebugLoc DL = N->getDebugLoc();
11301
11302 if (isPowerOf2_64(MulAmt2) &&
11303 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
11304 // If second multiplifer is pow2, issue it first. We want the multiply by
11305 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
11306 // is an add.
11307 std::swap(MulAmt1, MulAmt2);
11308
11309 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000011310 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000011311 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000011312 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000011313 else
Evan Cheng73f24c92009-03-30 21:36:47 +000011314 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000011315 DAG.getConstant(MulAmt1, VT));
11316
Eric Christopherfd179292009-08-27 18:07:15 +000011317 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000011318 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000011319 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000011320 else
Evan Cheng73f24c92009-03-30 21:36:47 +000011321 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000011322 DAG.getConstant(MulAmt2, VT));
11323
11324 // Do not add new nodes to DAG combiner worklist.
11325 DCI.CombineTo(N, NewMul, false);
11326 }
11327 return SDValue();
11328}
11329
Evan Chengad9c0a32009-12-15 00:53:42 +000011330static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
11331 SDValue N0 = N->getOperand(0);
11332 SDValue N1 = N->getOperand(1);
11333 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
11334 EVT VT = N0.getValueType();
11335
11336 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
11337 // since the result of setcc_c is all zero's or all ones.
11338 if (N1C && N0.getOpcode() == ISD::AND &&
11339 N0.getOperand(1).getOpcode() == ISD::Constant) {
11340 SDValue N00 = N0.getOperand(0);
11341 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
11342 ((N00.getOpcode() == ISD::ANY_EXTEND ||
11343 N00.getOpcode() == ISD::ZERO_EXTEND) &&
11344 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
11345 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
11346 APInt ShAmt = N1C->getAPIntValue();
11347 Mask = Mask.shl(ShAmt);
11348 if (Mask != 0)
11349 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
11350 N00, DAG.getConstant(Mask, VT));
11351 }
11352 }
11353
11354 return SDValue();
11355}
Evan Cheng0b0cd912009-03-28 05:57:29 +000011356
Nate Begeman740ab032009-01-26 00:52:55 +000011357/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
11358/// when possible.
11359static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
11360 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000011361 EVT VT = N->getValueType(0);
11362 if (!VT.isVector() && VT.isInteger() &&
11363 N->getOpcode() == ISD::SHL)
11364 return PerformSHLCombine(N, DAG);
11365
Nate Begeman740ab032009-01-26 00:52:55 +000011366 // On X86 with SSE2 support, we can transform this to a vector shift if
11367 // all elements are shifted by the same amount. We can't do this in legalize
11368 // because the a constant vector is typically transformed to a constant pool
11369 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011370 if (!Subtarget->hasSSE2())
11371 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000011372
Owen Anderson825b72b2009-08-11 20:47:22 +000011373 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011374 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000011375
Mon P Wang3becd092009-01-28 08:12:05 +000011376 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000011377 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000011378 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000011379 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000011380 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
11381 unsigned NumElts = VT.getVectorNumElements();
11382 unsigned i = 0;
11383 for (; i != NumElts; ++i) {
11384 SDValue Arg = ShAmtOp.getOperand(i);
11385 if (Arg.getOpcode() == ISD::UNDEF) continue;
11386 BaseShAmt = Arg;
11387 break;
11388 }
11389 for (; i != NumElts; ++i) {
11390 SDValue Arg = ShAmtOp.getOperand(i);
11391 if (Arg.getOpcode() == ISD::UNDEF) continue;
11392 if (Arg != BaseShAmt) {
11393 return SDValue();
11394 }
11395 }
11396 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000011397 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000011398 SDValue InVec = ShAmtOp.getOperand(0);
11399 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
11400 unsigned NumElts = InVec.getValueType().getVectorNumElements();
11401 unsigned i = 0;
11402 for (; i != NumElts; ++i) {
11403 SDValue Arg = InVec.getOperand(i);
11404 if (Arg.getOpcode() == ISD::UNDEF) continue;
11405 BaseShAmt = Arg;
11406 break;
11407 }
11408 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
11409 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000011410 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000011411 if (C->getZExtValue() == SplatIdx)
11412 BaseShAmt = InVec.getOperand(1);
11413 }
11414 }
11415 if (BaseShAmt.getNode() == 0)
11416 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
11417 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000011418 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011419 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000011420
Mon P Wangefa42202009-09-03 19:56:25 +000011421 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000011422 if (EltVT.bitsGT(MVT::i32))
11423 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
11424 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000011425 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000011426
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011427 // The shift amount is identical so we can do a vector shift.
11428 SDValue ValOp = N->getOperand(0);
11429 switch (N->getOpcode()) {
11430 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000011431 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011432 break;
11433 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000011434 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011435 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011436 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011437 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011438 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011439 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011440 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011441 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011442 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011443 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011444 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011445 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011446 break;
11447 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000011448 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011449 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011450 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011451 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011452 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011453 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011454 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011455 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011456 break;
11457 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000011458 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011459 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011460 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011461 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011462 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011463 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011464 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011465 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011466 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011467 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011468 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011469 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011470 break;
Nate Begeman740ab032009-01-26 00:52:55 +000011471 }
11472 return SDValue();
11473}
11474
Nate Begemanb65c1752010-12-17 22:55:37 +000011475
11476static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
11477 TargetLowering::DAGCombinerInfo &DCI,
11478 const X86Subtarget *Subtarget) {
11479 if (DCI.isBeforeLegalizeOps())
11480 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011481
Nate Begemanb65c1752010-12-17 22:55:37 +000011482 // Want to form PANDN nodes, in the hopes of then easily combining them with
11483 // OR and AND nodes to form PBLEND/PSIGN.
11484 EVT VT = N->getValueType(0);
11485 if (VT != MVT::v2i64)
11486 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011487
Nate Begemanb65c1752010-12-17 22:55:37 +000011488 SDValue N0 = N->getOperand(0);
11489 SDValue N1 = N->getOperand(1);
11490 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011491
Nate Begemanb65c1752010-12-17 22:55:37 +000011492 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011493 if (N0.getOpcode() == ISD::XOR &&
Nate Begemanb65c1752010-12-17 22:55:37 +000011494 ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
11495 return DAG.getNode(X86ISD::PANDN, DL, VT, N0.getOperand(0), N1);
11496
11497 // Check RHS for vnot
11498 if (N1.getOpcode() == ISD::XOR &&
11499 ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
11500 return DAG.getNode(X86ISD::PANDN, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011501
Nate Begemanb65c1752010-12-17 22:55:37 +000011502 return SDValue();
11503}
11504
Evan Cheng760d1942010-01-04 21:22:48 +000011505static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000011506 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000011507 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000011508 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000011509 return SDValue();
11510
Evan Cheng760d1942010-01-04 21:22:48 +000011511 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000011512 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64 && VT != MVT::v2i64)
Evan Cheng760d1942010-01-04 21:22:48 +000011513 return SDValue();
11514
Evan Cheng760d1942010-01-04 21:22:48 +000011515 SDValue N0 = N->getOperand(0);
11516 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011517
Nate Begemanb65c1752010-12-17 22:55:37 +000011518 // look for psign/blend
11519 if (Subtarget->hasSSSE3()) {
11520 if (VT == MVT::v2i64) {
11521 // Canonicalize pandn to RHS
11522 if (N0.getOpcode() == X86ISD::PANDN)
11523 std::swap(N0, N1);
11524 // or (and (m, x), (pandn m, y))
11525 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::PANDN) {
11526 SDValue Mask = N1.getOperand(0);
11527 SDValue X = N1.getOperand(1);
11528 SDValue Y;
11529 if (N0.getOperand(0) == Mask)
11530 Y = N0.getOperand(1);
11531 if (N0.getOperand(1) == Mask)
11532 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011533
Nate Begemanb65c1752010-12-17 22:55:37 +000011534 // Check to see if the mask appeared in both the AND and PANDN and
11535 if (!Y.getNode())
11536 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011537
Nate Begemanb65c1752010-12-17 22:55:37 +000011538 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
11539 if (Mask.getOpcode() != ISD::BITCAST ||
11540 X.getOpcode() != ISD::BITCAST ||
11541 Y.getOpcode() != ISD::BITCAST)
11542 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011543
Nate Begemanb65c1752010-12-17 22:55:37 +000011544 // Look through mask bitcast.
11545 Mask = Mask.getOperand(0);
11546 EVT MaskVT = Mask.getValueType();
11547
11548 // Validate that the Mask operand is a vector sra node. The sra node
11549 // will be an intrinsic.
11550 if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
11551 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011552
Nate Begemanb65c1752010-12-17 22:55:37 +000011553 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
11554 // there is no psrai.b
11555 switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
11556 case Intrinsic::x86_sse2_psrai_w:
11557 case Intrinsic::x86_sse2_psrai_d:
11558 break;
11559 default: return SDValue();
11560 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011561
Nate Begemanb65c1752010-12-17 22:55:37 +000011562 // Check that the SRA is all signbits.
11563 SDValue SraC = Mask.getOperand(2);
11564 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
11565 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
11566 if ((SraAmt + 1) != EltBits)
11567 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011568
Nate Begemanb65c1752010-12-17 22:55:37 +000011569 DebugLoc DL = N->getDebugLoc();
11570
11571 // Now we know we at least have a plendvb with the mask val. See if
11572 // we can form a psignb/w/d.
11573 // psign = x.type == y.type == mask.type && y = sub(0, x);
11574 X = X.getOperand(0);
11575 Y = Y.getOperand(0);
11576 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
11577 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
11578 X.getValueType() == MaskVT && X.getValueType() == Y.getValueType()){
11579 unsigned Opc = 0;
11580 switch (EltBits) {
11581 case 8: Opc = X86ISD::PSIGNB; break;
11582 case 16: Opc = X86ISD::PSIGNW; break;
11583 case 32: Opc = X86ISD::PSIGND; break;
11584 default: break;
11585 }
11586 if (Opc) {
11587 SDValue Sign = DAG.getNode(Opc, DL, MaskVT, X, Mask.getOperand(1));
11588 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Sign);
11589 }
11590 }
11591 // PBLENDVB only available on SSE 4.1
11592 if (!Subtarget->hasSSE41())
11593 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011594
Nate Begemanb65c1752010-12-17 22:55:37 +000011595 X = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, X);
11596 Y = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Y);
11597 Mask = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Mask);
Nate Begeman672fb622010-12-20 22:04:24 +000011598 Mask = DAG.getNode(X86ISD::PBLENDVB, DL, MVT::v16i8, X, Y, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000011599 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Mask);
11600 }
11601 }
11602 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011603
Nate Begemanb65c1752010-12-17 22:55:37 +000011604 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000011605 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
11606 std::swap(N0, N1);
11607 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
11608 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000011609 if (!N0.hasOneUse() || !N1.hasOneUse())
11610 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000011611
11612 SDValue ShAmt0 = N0.getOperand(1);
11613 if (ShAmt0.getValueType() != MVT::i8)
11614 return SDValue();
11615 SDValue ShAmt1 = N1.getOperand(1);
11616 if (ShAmt1.getValueType() != MVT::i8)
11617 return SDValue();
11618 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
11619 ShAmt0 = ShAmt0.getOperand(0);
11620 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
11621 ShAmt1 = ShAmt1.getOperand(0);
11622
11623 DebugLoc DL = N->getDebugLoc();
11624 unsigned Opc = X86ISD::SHLD;
11625 SDValue Op0 = N0.getOperand(0);
11626 SDValue Op1 = N1.getOperand(0);
11627 if (ShAmt0.getOpcode() == ISD::SUB) {
11628 Opc = X86ISD::SHRD;
11629 std::swap(Op0, Op1);
11630 std::swap(ShAmt0, ShAmt1);
11631 }
11632
Evan Cheng8b1190a2010-04-28 01:18:01 +000011633 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000011634 if (ShAmt1.getOpcode() == ISD::SUB) {
11635 SDValue Sum = ShAmt1.getOperand(0);
11636 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000011637 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
11638 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
11639 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
11640 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000011641 return DAG.getNode(Opc, DL, VT,
11642 Op0, Op1,
11643 DAG.getNode(ISD::TRUNCATE, DL,
11644 MVT::i8, ShAmt0));
11645 }
11646 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
11647 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
11648 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000011649 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000011650 return DAG.getNode(Opc, DL, VT,
11651 N0.getOperand(0), N1.getOperand(0),
11652 DAG.getNode(ISD::TRUNCATE, DL,
11653 MVT::i8, ShAmt0));
11654 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011655
Evan Cheng760d1942010-01-04 21:22:48 +000011656 return SDValue();
11657}
11658
Chris Lattner149a4e52008-02-22 02:09:43 +000011659/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011660static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000011661 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +000011662 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
11663 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000011664 // A preferable solution to the general problem is to figure out the right
11665 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000011666
11667 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +000011668 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +000011669 EVT VT = St->getValue().getValueType();
Evan Cheng536e6672009-03-12 05:59:15 +000011670 if (VT.getSizeInBits() != 64)
11671 return SDValue();
11672
Devang Patel578efa92009-06-05 21:57:13 +000011673 const Function *F = DAG.getMachineFunction().getFunction();
11674 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000011675 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000011676 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000011677 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000011678 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000011679 isa<LoadSDNode>(St->getValue()) &&
11680 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
11681 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011682 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011683 LoadSDNode *Ld = 0;
11684 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000011685 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000011686 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011687 // Must be a store of a load. We currently handle two cases: the load
11688 // is a direct child, and it's under an intervening TokenFactor. It is
11689 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000011690 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000011691 Ld = cast<LoadSDNode>(St->getChain());
11692 else if (St->getValue().hasOneUse() &&
11693 ChainVal->getOpcode() == ISD::TokenFactor) {
11694 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011695 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000011696 TokenFactorIndex = i;
11697 Ld = cast<LoadSDNode>(St->getValue());
11698 } else
11699 Ops.push_back(ChainVal->getOperand(i));
11700 }
11701 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000011702
Evan Cheng536e6672009-03-12 05:59:15 +000011703 if (!Ld || !ISD::isNormalLoad(Ld))
11704 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011705
Evan Cheng536e6672009-03-12 05:59:15 +000011706 // If this is not the MMX case, i.e. we are just turning i64 load/store
11707 // into f64 load/store, avoid the transformation if there are multiple
11708 // uses of the loaded value.
11709 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
11710 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011711
Evan Cheng536e6672009-03-12 05:59:15 +000011712 DebugLoc LdDL = Ld->getDebugLoc();
11713 DebugLoc StDL = N->getDebugLoc();
11714 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
11715 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
11716 // pair instead.
11717 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011718 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000011719 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
11720 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011721 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011722 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000011723 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000011724 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000011725 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000011726 Ops.size());
11727 }
Evan Cheng536e6672009-03-12 05:59:15 +000011728 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011729 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011730 St->isVolatile(), St->isNonTemporal(),
11731 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000011732 }
Evan Cheng536e6672009-03-12 05:59:15 +000011733
11734 // Otherwise, lower to two pairs of 32-bit loads / stores.
11735 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011736 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
11737 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011738
Owen Anderson825b72b2009-08-11 20:47:22 +000011739 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011740 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011741 Ld->isVolatile(), Ld->isNonTemporal(),
11742 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000011743 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011744 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000011745 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011746 MinAlign(Ld->getAlignment(), 4));
11747
11748 SDValue NewChain = LoLd.getValue(1);
11749 if (TokenFactorIndex != -1) {
11750 Ops.push_back(LoLd);
11751 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000011752 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000011753 Ops.size());
11754 }
11755
11756 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011757 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
11758 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011759
11760 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011761 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011762 St->isVolatile(), St->isNonTemporal(),
11763 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011764 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011765 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000011766 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011767 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011768 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000011769 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000011770 }
Dan Gohman475871a2008-07-27 21:46:04 +000011771 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000011772}
11773
Chris Lattner6cf73262008-01-25 06:14:17 +000011774/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
11775/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011776static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000011777 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
11778 // F[X]OR(0.0, x) -> x
11779 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000011780 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11781 if (C->getValueAPF().isPosZero())
11782 return N->getOperand(1);
11783 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11784 if (C->getValueAPF().isPosZero())
11785 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000011786 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011787}
11788
11789/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011790static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000011791 // FAND(0.0, x) -> 0.0
11792 // FAND(x, 0.0) -> 0.0
11793 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11794 if (C->getValueAPF().isPosZero())
11795 return N->getOperand(0);
11796 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11797 if (C->getValueAPF().isPosZero())
11798 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000011799 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011800}
11801
Dan Gohmane5af2d32009-01-29 01:59:02 +000011802static SDValue PerformBTCombine(SDNode *N,
11803 SelectionDAG &DAG,
11804 TargetLowering::DAGCombinerInfo &DCI) {
11805 // BT ignores high bits in the bit index operand.
11806 SDValue Op1 = N->getOperand(1);
11807 if (Op1.hasOneUse()) {
11808 unsigned BitWidth = Op1.getValueSizeInBits();
11809 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
11810 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011811 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
11812 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000011813 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000011814 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
11815 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
11816 DCI.CommitTargetLoweringOpt(TLO);
11817 }
11818 return SDValue();
11819}
Chris Lattner83e6c992006-10-04 06:57:07 +000011820
Eli Friedman7a5e5552009-06-07 06:52:44 +000011821static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
11822 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000011823 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000011824 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000011825 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000011826 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000011827 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000011828 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000011829 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000011830 }
11831 return SDValue();
11832}
11833
Evan Cheng2e489c42009-12-16 00:53:11 +000011834static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
11835 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
11836 // (and (i32 x86isd::setcc_carry), 1)
11837 // This eliminates the zext. This transformation is necessary because
11838 // ISD::SETCC is always legalized to i8.
11839 DebugLoc dl = N->getDebugLoc();
11840 SDValue N0 = N->getOperand(0);
11841 EVT VT = N->getValueType(0);
11842 if (N0.getOpcode() == ISD::AND &&
11843 N0.hasOneUse() &&
11844 N0.getOperand(0).hasOneUse()) {
11845 SDValue N00 = N0.getOperand(0);
11846 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
11847 return SDValue();
11848 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
11849 if (!C || C->getZExtValue() != 1)
11850 return SDValue();
11851 return DAG.getNode(ISD::AND, dl, VT,
11852 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
11853 N00.getOperand(0), N00.getOperand(1)),
11854 DAG.getConstant(1, VT));
11855 }
11856
11857 return SDValue();
11858}
11859
Chris Lattnerc19d1c32010-12-19 22:08:31 +000011860// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
11861static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
11862 unsigned X86CC = N->getConstantOperandVal(0);
11863 SDValue EFLAG = N->getOperand(1);
11864 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011865
Chris Lattnerc19d1c32010-12-19 22:08:31 +000011866 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
11867 // a zext and produces an all-ones bit which is more useful than 0/1 in some
11868 // cases.
11869 if (X86CC == X86::COND_B)
11870 return DAG.getNode(ISD::AND, DL, MVT::i8,
11871 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
11872 DAG.getConstant(X86CC, MVT::i8), EFLAG),
11873 DAG.getConstant(1, MVT::i8));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011874
Chris Lattnerc19d1c32010-12-19 22:08:31 +000011875 return SDValue();
11876}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011877
Chris Lattner23a01992010-12-20 01:37:09 +000011878// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
11879static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
11880 X86TargetLowering::DAGCombinerInfo &DCI) {
11881 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
11882 // the result is either zero or one (depending on the input carry bit).
11883 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
11884 if (X86::isZeroNode(N->getOperand(0)) &&
11885 X86::isZeroNode(N->getOperand(1)) &&
11886 // We don't have a good way to replace an EFLAGS use, so only do this when
11887 // dead right now.
11888 SDValue(N, 1).use_empty()) {
11889 DebugLoc DL = N->getDebugLoc();
11890 EVT VT = N->getValueType(0);
11891 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
11892 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
11893 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
11894 DAG.getConstant(X86::COND_B,MVT::i8),
11895 N->getOperand(2)),
11896 DAG.getConstant(1, VT));
11897 return DCI.CombineTo(N, Res1, CarryOut);
11898 }
11899
11900 return SDValue();
11901}
11902
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000011903// fold (add Y, (sete X, 0)) -> adc 0, Y
11904// (add Y, (setne X, 0)) -> sbb -1, Y
11905// (sub (sete X, 0), Y) -> sbb 0, Y
11906// (sub (setne X, 0), Y) -> adc -1, Y
11907static SDValue OptimizeConditonalInDecrement(SDNode *N, SelectionDAG &DAG) {
11908 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011909
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000011910 // Look through ZExts.
11911 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
11912 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
11913 return SDValue();
11914
11915 SDValue SetCC = Ext.getOperand(0);
11916 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
11917 return SDValue();
11918
11919 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
11920 if (CC != X86::COND_E && CC != X86::COND_NE)
11921 return SDValue();
11922
11923 SDValue Cmp = SetCC.getOperand(1);
11924 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000011925 !X86::isZeroNode(Cmp.getOperand(1)) ||
11926 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000011927 return SDValue();
11928
11929 SDValue CmpOp0 = Cmp.getOperand(0);
11930 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
11931 DAG.getConstant(1, CmpOp0.getValueType()));
11932
11933 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
11934 if (CC == X86::COND_NE)
11935 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
11936 DL, OtherVal.getValueType(), OtherVal,
11937 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
11938 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
11939 DL, OtherVal.getValueType(), OtherVal,
11940 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
11941}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000011942
Dan Gohman475871a2008-07-27 21:46:04 +000011943SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000011944 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011945 SelectionDAG &DAG = DCI.DAG;
11946 switch (N->getOpcode()) {
11947 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011948 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerc19d1c32010-12-19 22:08:31 +000011949 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000011950 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011951 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000011952 case ISD::ADD:
11953 case ISD::SUB: return OptimizeConditonalInDecrement(N, DAG);
Chris Lattner23a01992010-12-20 01:37:09 +000011954 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000011955 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000011956 case ISD::SHL:
11957 case ISD::SRA:
11958 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000011959 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000011960 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000011961 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000011962 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000011963 case X86ISD::FOR: return PerformFORCombine(N, DAG);
11964 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000011965 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000011966 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000011967 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Chris Lattnerc19d1c32010-12-19 22:08:31 +000011968 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011969 case X86ISD::SHUFPS: // Handle all target specific shuffles
11970 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000011971 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011972 case X86ISD::PUNPCKHBW:
11973 case X86ISD::PUNPCKHWD:
11974 case X86ISD::PUNPCKHDQ:
11975 case X86ISD::PUNPCKHQDQ:
11976 case X86ISD::UNPCKHPS:
11977 case X86ISD::UNPCKHPD:
11978 case X86ISD::PUNPCKLBW:
11979 case X86ISD::PUNPCKLWD:
11980 case X86ISD::PUNPCKLDQ:
11981 case X86ISD::PUNPCKLQDQ:
11982 case X86ISD::UNPCKLPS:
11983 case X86ISD::UNPCKLPD:
11984 case X86ISD::MOVHLPS:
11985 case X86ISD::MOVLHPS:
11986 case X86ISD::PSHUFD:
11987 case X86ISD::PSHUFHW:
11988 case X86ISD::PSHUFLW:
11989 case X86ISD::MOVSS:
11990 case X86ISD::MOVSD:
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011991 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011992 }
11993
Dan Gohman475871a2008-07-27 21:46:04 +000011994 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011995}
11996
Evan Chenge5b51ac2010-04-17 06:13:15 +000011997/// isTypeDesirableForOp - Return true if the target has native support for
11998/// the specified value type and it is 'desirable' to use the type for the
11999/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
12000/// instruction encodings are longer and some i16 instructions are slow.
12001bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
12002 if (!isTypeLegal(VT))
12003 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012004 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000012005 return true;
12006
12007 switch (Opc) {
12008 default:
12009 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000012010 case ISD::LOAD:
12011 case ISD::SIGN_EXTEND:
12012 case ISD::ZERO_EXTEND:
12013 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000012014 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000012015 case ISD::SRL:
12016 case ISD::SUB:
12017 case ISD::ADD:
12018 case ISD::MUL:
12019 case ISD::AND:
12020 case ISD::OR:
12021 case ISD::XOR:
12022 return false;
12023 }
12024}
12025
12026/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000012027/// beneficial for dag combiner to promote the specified node. If true, it
12028/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000012029bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000012030 EVT VT = Op.getValueType();
12031 if (VT != MVT::i16)
12032 return false;
12033
Evan Cheng4c26e932010-04-19 19:29:22 +000012034 bool Promote = false;
12035 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012036 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000012037 default: break;
12038 case ISD::LOAD: {
12039 LoadSDNode *LD = cast<LoadSDNode>(Op);
12040 // If the non-extending load has a single use and it's not live out, then it
12041 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012042 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
12043 Op.hasOneUse()*/) {
12044 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
12045 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
12046 // The only case where we'd want to promote LOAD (rather then it being
12047 // promoted as an operand is when it's only use is liveout.
12048 if (UI->getOpcode() != ISD::CopyToReg)
12049 return false;
12050 }
12051 }
Evan Cheng4c26e932010-04-19 19:29:22 +000012052 Promote = true;
12053 break;
12054 }
12055 case ISD::SIGN_EXTEND:
12056 case ISD::ZERO_EXTEND:
12057 case ISD::ANY_EXTEND:
12058 Promote = true;
12059 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012060 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012061 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000012062 SDValue N0 = Op.getOperand(0);
12063 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000012064 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000012065 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000012066 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012067 break;
12068 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000012069 case ISD::ADD:
12070 case ISD::MUL:
12071 case ISD::AND:
12072 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000012073 case ISD::XOR:
12074 Commute = true;
12075 // fallthrough
12076 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000012077 SDValue N0 = Op.getOperand(0);
12078 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000012079 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012080 return false;
12081 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000012082 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012083 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000012084 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012085 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000012086 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012087 }
12088 }
12089
12090 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000012091 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012092}
12093
Evan Cheng60c07e12006-07-05 22:17:51 +000012094//===----------------------------------------------------------------------===//
12095// X86 Inline Assembly Support
12096//===----------------------------------------------------------------------===//
12097
Chris Lattnerb8105652009-07-20 17:51:36 +000012098bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
12099 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000012100
12101 std::string AsmStr = IA->getAsmString();
12102
12103 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000012104 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000012105 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000012106
12107 switch (AsmPieces.size()) {
12108 default: return false;
12109 case 1:
12110 AsmStr = AsmPieces[0];
12111 AsmPieces.clear();
12112 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
12113
Evan Cheng55d42002011-01-08 01:24:27 +000012114 // FIXME: this should verify that we are targetting a 486 or better. If not,
12115 // we will turn this bswap into something that will be lowered to logical ops
12116 // instead of emitting the bswap asm. For now, we don't support 486 or lower
12117 // so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000012118 // bswap $0
12119 if (AsmPieces.size() == 2 &&
12120 (AsmPieces[0] == "bswap" ||
12121 AsmPieces[0] == "bswapq" ||
12122 AsmPieces[0] == "bswapl") &&
12123 (AsmPieces[1] == "$0" ||
12124 AsmPieces[1] == "${0:q}")) {
12125 // No need to check constraints, nothing other than the equivalent of
12126 // "=r,0" would be valid here.
Evan Cheng55d42002011-01-08 01:24:27 +000012127 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
12128 if (!Ty || Ty->getBitWidth() % 16 != 0)
12129 return false;
12130 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000012131 }
12132 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000012133 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000012134 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000012135 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000012136 AsmPieces[1] == "$$8," &&
12137 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000012138 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
12139 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000012140 const std::string &ConstraintsStr = IA->getConstraintString();
12141 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000012142 std::sort(AsmPieces.begin(), AsmPieces.end());
12143 if (AsmPieces.size() == 4 &&
12144 AsmPieces[0] == "~{cc}" &&
12145 AsmPieces[1] == "~{dirflag}" &&
12146 AsmPieces[2] == "~{flags}" &&
12147 AsmPieces[3] == "~{fpsr}") {
Evan Cheng55d42002011-01-08 01:24:27 +000012148 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
12149 if (!Ty || Ty->getBitWidth() % 16 != 0)
12150 return false;
12151 return IntrinsicLowering::LowerToByteSwap(CI);
Dan Gohman0ef701e2010-03-04 19:58:08 +000012152 }
Chris Lattnerb8105652009-07-20 17:51:36 +000012153 }
12154 break;
12155 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000012156 if (CI->getType()->isIntegerTy(32) &&
12157 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
12158 SmallVector<StringRef, 4> Words;
12159 SplitString(AsmPieces[0], Words, " \t,");
12160 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
12161 Words[2] == "${0:w}") {
12162 Words.clear();
12163 SplitString(AsmPieces[1], Words, " \t,");
12164 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
12165 Words[2] == "$0") {
12166 Words.clear();
12167 SplitString(AsmPieces[2], Words, " \t,");
12168 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
12169 Words[2] == "${0:w}") {
12170 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000012171 const std::string &ConstraintsStr = IA->getConstraintString();
12172 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Peter Collingbourne948cf022010-11-13 19:54:30 +000012173 std::sort(AsmPieces.begin(), AsmPieces.end());
12174 if (AsmPieces.size() == 4 &&
12175 AsmPieces[0] == "~{cc}" &&
12176 AsmPieces[1] == "~{dirflag}" &&
12177 AsmPieces[2] == "~{flags}" &&
12178 AsmPieces[3] == "~{fpsr}") {
Evan Cheng55d42002011-01-08 01:24:27 +000012179 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
12180 if (!Ty || Ty->getBitWidth() % 16 != 0)
12181 return false;
12182 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000012183 }
12184 }
12185 }
12186 }
12187 }
Evan Cheng55d42002011-01-08 01:24:27 +000012188
12189 if (CI->getType()->isIntegerTy(64)) {
12190 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
12191 if (Constraints.size() >= 2 &&
12192 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
12193 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
12194 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
12195 SmallVector<StringRef, 4> Words;
12196 SplitString(AsmPieces[0], Words, " \t");
12197 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
Chris Lattnerb8105652009-07-20 17:51:36 +000012198 Words.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000012199 SplitString(AsmPieces[1], Words, " \t");
12200 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
12201 Words.clear();
12202 SplitString(AsmPieces[2], Words, " \t,");
12203 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
12204 Words[2] == "%edx") {
12205 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
12206 if (!Ty || Ty->getBitWidth() % 16 != 0)
12207 return false;
12208 return IntrinsicLowering::LowerToByteSwap(CI);
12209 }
Chris Lattnerb8105652009-07-20 17:51:36 +000012210 }
12211 }
12212 }
12213 }
12214 break;
12215 }
12216 return false;
12217}
12218
12219
12220
Chris Lattnerf4dff842006-07-11 02:54:03 +000012221/// getConstraintType - Given a constraint letter, return the type of
12222/// constraint it is for this target.
12223X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000012224X86TargetLowering::getConstraintType(const std::string &Constraint) const {
12225 if (Constraint.size() == 1) {
12226 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000012227 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000012228 case 'q':
12229 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000012230 case 'f':
12231 case 't':
12232 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000012233 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000012234 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000012235 case 'Y':
12236 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000012237 case 'a':
12238 case 'b':
12239 case 'c':
12240 case 'd':
12241 case 'S':
12242 case 'D':
12243 case 'A':
12244 return C_Register;
12245 case 'I':
12246 case 'J':
12247 case 'K':
12248 case 'L':
12249 case 'M':
12250 case 'N':
12251 case 'G':
12252 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000012253 case 'e':
12254 case 'Z':
12255 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000012256 default:
12257 break;
12258 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000012259 }
Chris Lattner4234f572007-03-25 02:14:49 +000012260 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000012261}
12262
John Thompson44ab89e2010-10-29 17:29:13 +000012263/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000012264/// This object must already have been set up with the operand type
12265/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000012266TargetLowering::ConstraintWeight
12267 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000012268 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000012269 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012270 Value *CallOperandVal = info.CallOperandVal;
12271 // If we don't have a value, we can't do a match,
12272 // but allow it at the lowest weight.
12273 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000012274 return CW_Default;
12275 const Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000012276 // Look at the constraint type.
12277 switch (*constraint) {
12278 default:
John Thompson44ab89e2010-10-29 17:29:13 +000012279 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
12280 case 'R':
12281 case 'q':
12282 case 'Q':
12283 case 'a':
12284 case 'b':
12285 case 'c':
12286 case 'd':
12287 case 'S':
12288 case 'D':
12289 case 'A':
12290 if (CallOperandVal->getType()->isIntegerTy())
12291 weight = CW_SpecificReg;
12292 break;
12293 case 'f':
12294 case 't':
12295 case 'u':
12296 if (type->isFloatingPointTy())
12297 weight = CW_SpecificReg;
12298 break;
12299 case 'y':
Chris Lattner2a786eb2010-12-19 20:19:20 +000012300 if (type->isX86_MMXTy() && Subtarget->hasMMX())
John Thompson44ab89e2010-10-29 17:29:13 +000012301 weight = CW_SpecificReg;
12302 break;
12303 case 'x':
12304 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012305 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000012306 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012307 break;
12308 case 'I':
12309 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
12310 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000012311 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012312 }
12313 break;
John Thompson44ab89e2010-10-29 17:29:13 +000012314 case 'J':
12315 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12316 if (C->getZExtValue() <= 63)
12317 weight = CW_Constant;
12318 }
12319 break;
12320 case 'K':
12321 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12322 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
12323 weight = CW_Constant;
12324 }
12325 break;
12326 case 'L':
12327 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12328 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
12329 weight = CW_Constant;
12330 }
12331 break;
12332 case 'M':
12333 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12334 if (C->getZExtValue() <= 3)
12335 weight = CW_Constant;
12336 }
12337 break;
12338 case 'N':
12339 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12340 if (C->getZExtValue() <= 0xff)
12341 weight = CW_Constant;
12342 }
12343 break;
12344 case 'G':
12345 case 'C':
12346 if (dyn_cast<ConstantFP>(CallOperandVal)) {
12347 weight = CW_Constant;
12348 }
12349 break;
12350 case 'e':
12351 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12352 if ((C->getSExtValue() >= -0x80000000LL) &&
12353 (C->getSExtValue() <= 0x7fffffffLL))
12354 weight = CW_Constant;
12355 }
12356 break;
12357 case 'Z':
12358 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12359 if (C->getZExtValue() <= 0xffffffff)
12360 weight = CW_Constant;
12361 }
12362 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012363 }
12364 return weight;
12365}
12366
Dale Johannesenba2a0b92008-01-29 02:21:21 +000012367/// LowerXConstraint - try to replace an X constraint, which matches anything,
12368/// with another that has more specific requirements based on the type of the
12369/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000012370const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000012371LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000012372 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
12373 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000012374 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012375 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000012376 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012377 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000012378 return "x";
12379 }
Scott Michelfdc40a02009-02-17 22:15:04 +000012380
Chris Lattner5e764232008-04-26 23:02:14 +000012381 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000012382}
12383
Chris Lattner48884cd2007-08-25 00:47:38 +000012384/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
12385/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000012386void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattner48884cd2007-08-25 00:47:38 +000012387 char Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000012388 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000012389 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000012390 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000012391
Chris Lattner22aaf1d2006-10-31 20:13:11 +000012392 switch (Constraint) {
12393 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000012394 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000012395 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000012396 if (C->getZExtValue() <= 31) {
12397 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000012398 break;
12399 }
Devang Patel84f7fd22007-03-17 00:13:28 +000012400 }
Chris Lattner48884cd2007-08-25 00:47:38 +000012401 return;
Evan Cheng364091e2008-09-22 23:57:37 +000012402 case 'J':
12403 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000012404 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000012405 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
12406 break;
12407 }
12408 }
12409 return;
12410 case 'K':
12411 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000012412 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000012413 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
12414 break;
12415 }
12416 }
12417 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000012418 case 'N':
12419 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000012420 if (C->getZExtValue() <= 255) {
12421 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000012422 break;
12423 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000012424 }
Chris Lattner48884cd2007-08-25 00:47:38 +000012425 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000012426 case 'e': {
12427 // 32-bit signed value
12428 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000012429 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
12430 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000012431 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000012432 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000012433 break;
12434 }
12435 // FIXME gcc accepts some relocatable values here too, but only in certain
12436 // memory models; it's complicated.
12437 }
12438 return;
12439 }
12440 case 'Z': {
12441 // 32-bit unsigned value
12442 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000012443 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
12444 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000012445 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
12446 break;
12447 }
12448 }
12449 // FIXME gcc accepts some relocatable values here too, but only in certain
12450 // memory models; it's complicated.
12451 return;
12452 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000012453 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000012454 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000012455 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000012456 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000012457 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000012458 break;
12459 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012460
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000012461 // In any sort of PIC mode addresses need to be computed at runtime by
12462 // adding in a register or some sort of table lookup. These can't
12463 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000012464 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000012465 return;
12466
Chris Lattnerdc43a882007-05-03 16:52:29 +000012467 // If we are in non-pic codegen mode, we allow the address of a global (with
12468 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000012469 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000012470 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000012471
Chris Lattner49921962009-05-08 18:23:14 +000012472 // Match either (GA), (GA+C), (GA+C1+C2), etc.
12473 while (1) {
12474 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
12475 Offset += GA->getOffset();
12476 break;
12477 } else if (Op.getOpcode() == ISD::ADD) {
12478 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
12479 Offset += C->getZExtValue();
12480 Op = Op.getOperand(0);
12481 continue;
12482 }
12483 } else if (Op.getOpcode() == ISD::SUB) {
12484 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
12485 Offset += -C->getZExtValue();
12486 Op = Op.getOperand(0);
12487 continue;
12488 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000012489 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000012490
Chris Lattner49921962009-05-08 18:23:14 +000012491 // Otherwise, this isn't something we can handle, reject it.
12492 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000012493 }
Eric Christopherfd179292009-08-27 18:07:15 +000012494
Dan Gohman46510a72010-04-15 01:51:59 +000012495 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000012496 // If we require an extra load to get this address, as in PIC mode, we
12497 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000012498 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
12499 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000012500 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000012501
Devang Patel0d881da2010-07-06 22:08:15 +000012502 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
12503 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000012504 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000012505 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000012506 }
Scott Michelfdc40a02009-02-17 22:15:04 +000012507
Gabor Greifba36cb52008-08-28 21:40:38 +000012508 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000012509 Ops.push_back(Result);
12510 return;
12511 }
Dale Johannesen1784d162010-06-25 21:55:36 +000012512 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000012513}
12514
Chris Lattner259e97c2006-01-31 19:43:35 +000012515std::vector<unsigned> X86TargetLowering::
Chris Lattner1efa40f2006-02-22 00:56:39 +000012516getRegClassForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000012517 EVT VT) const {
Chris Lattner259e97c2006-01-31 19:43:35 +000012518 if (Constraint.size() == 1) {
12519 // FIXME: not handling fp-stack yet!
Chris Lattner259e97c2006-01-31 19:43:35 +000012520 switch (Constraint[0]) { // GCC X86 Constraint Letters
Chris Lattnerf4dff842006-07-11 02:54:03 +000012521 default: break; // Unknown constraint letter
Evan Cheng47e9fab2009-07-17 22:13:25 +000012522 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
12523 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012524 if (VT == MVT::i32)
Evan Cheng47e9fab2009-07-17 22:13:25 +000012525 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX,
12526 X86::ESI, X86::EDI, X86::R8D, X86::R9D,
12527 X86::R10D,X86::R11D,X86::R12D,
12528 X86::R13D,X86::R14D,X86::R15D,
12529 X86::EBP, X86::ESP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012530 else if (VT == MVT::i16)
Evan Cheng47e9fab2009-07-17 22:13:25 +000012531 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX,
12532 X86::SI, X86::DI, X86::R8W,X86::R9W,
12533 X86::R10W,X86::R11W,X86::R12W,
12534 X86::R13W,X86::R14W,X86::R15W,
12535 X86::BP, X86::SP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012536 else if (VT == MVT::i8)
Evan Cheng47e9fab2009-07-17 22:13:25 +000012537 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL,
12538 X86::SIL, X86::DIL, X86::R8B,X86::R9B,
12539 X86::R10B,X86::R11B,X86::R12B,
12540 X86::R13B,X86::R14B,X86::R15B,
12541 X86::BPL, X86::SPL, 0);
12542
Owen Anderson825b72b2009-08-11 20:47:22 +000012543 else if (VT == MVT::i64)
Evan Cheng47e9fab2009-07-17 22:13:25 +000012544 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX,
12545 X86::RSI, X86::RDI, X86::R8, X86::R9,
12546 X86::R10, X86::R11, X86::R12,
12547 X86::R13, X86::R14, X86::R15,
12548 X86::RBP, X86::RSP, 0);
12549
12550 break;
12551 }
Eric Christopherfd179292009-08-27 18:07:15 +000012552 // 32-bit fallthrough
Chris Lattner259e97c2006-01-31 19:43:35 +000012553 case 'Q': // Q_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000012554 if (VT == MVT::i32)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000012555 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012556 else if (VT == MVT::i16)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000012557 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012558 else if (VT == MVT::i8)
Evan Cheng12914382007-08-13 23:27:11 +000012559 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012560 else if (VT == MVT::i64)
Chris Lattner03e6c702007-11-04 06:51:12 +000012561 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
12562 break;
Chris Lattner259e97c2006-01-31 19:43:35 +000012563 }
12564 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012565
Chris Lattner1efa40f2006-02-22 00:56:39 +000012566 return std::vector<unsigned>();
Chris Lattner259e97c2006-01-31 19:43:35 +000012567}
Chris Lattnerf76d1802006-07-31 23:26:50 +000012568
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012569std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000012570X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000012571 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000012572 // First, see if this is a constraint that directly corresponds to an LLVM
12573 // register class.
12574 if (Constraint.size() == 1) {
12575 // GCC Constraint Letters
12576 switch (Constraint[0]) {
12577 default: break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000012578 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000012579 case 'l': // INDEX_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000012580 if (VT == MVT::i8)
Chris Lattner0f65cad2007-04-09 05:49:22 +000012581 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000012582 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000012583 return std::make_pair(0U, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000012584 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000012585 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000012586 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000012587 case 'R': // LEGACY_REGS
12588 if (VT == MVT::i8)
12589 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
12590 if (VT == MVT::i16)
12591 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
12592 if (VT == MVT::i32 || !Subtarget->is64Bit())
12593 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
12594 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000012595 case 'f': // FP Stack registers.
12596 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
12597 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000012598 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000012599 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000012600 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000012601 return std::make_pair(0U, X86::RFP64RegisterClass);
12602 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000012603 case 'y': // MMX_REGS if MMX allowed.
12604 if (!Subtarget->hasMMX()) break;
12605 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000012606 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012607 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000012608 // FALL THROUGH.
12609 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012610 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000012611
Owen Anderson825b72b2009-08-11 20:47:22 +000012612 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000012613 default: break;
12614 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000012615 case MVT::f32:
12616 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000012617 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000012618 case MVT::f64:
12619 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000012620 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000012621 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000012622 case MVT::v16i8:
12623 case MVT::v8i16:
12624 case MVT::v4i32:
12625 case MVT::v2i64:
12626 case MVT::v4f32:
12627 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000012628 return std::make_pair(0U, X86::VR128RegisterClass);
12629 }
Chris Lattnerad043e82007-04-09 05:11:28 +000012630 break;
12631 }
12632 }
Scott Michelfdc40a02009-02-17 22:15:04 +000012633
Chris Lattnerf76d1802006-07-31 23:26:50 +000012634 // Use the default implementation in TargetLowering to convert the register
12635 // constraint into a member of a register class.
12636 std::pair<unsigned, const TargetRegisterClass*> Res;
12637 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000012638
12639 // Not found as a standard register?
12640 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000012641 // Map st(0) -> st(7) -> ST0
12642 if (Constraint.size() == 7 && Constraint[0] == '{' &&
12643 tolower(Constraint[1]) == 's' &&
12644 tolower(Constraint[2]) == 't' &&
12645 Constraint[3] == '(' &&
12646 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
12647 Constraint[5] == ')' &&
12648 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000012649
Chris Lattner56d77c72009-09-13 22:41:48 +000012650 Res.first = X86::ST0+Constraint[4]-'0';
12651 Res.second = X86::RFP80RegisterClass;
12652 return Res;
12653 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000012654
Chris Lattner56d77c72009-09-13 22:41:48 +000012655 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000012656 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000012657 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000012658 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000012659 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000012660 }
Chris Lattner56d77c72009-09-13 22:41:48 +000012661
12662 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000012663 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000012664 Res.first = X86::EFLAGS;
12665 Res.second = X86::CCRRegisterClass;
12666 return Res;
12667 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000012668
Dale Johannesen330169f2008-11-13 21:52:36 +000012669 // 'A' means EAX + EDX.
12670 if (Constraint == "A") {
12671 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000012672 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000012673 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000012674 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000012675 return Res;
12676 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012677
Chris Lattnerf76d1802006-07-31 23:26:50 +000012678 // Otherwise, check to see if this is a register class of the wrong value
12679 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
12680 // turn into {ax},{dx}.
12681 if (Res.second->hasType(VT))
12682 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012683
Chris Lattnerf76d1802006-07-31 23:26:50 +000012684 // All of the single-register GCC register classes map their values onto
12685 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
12686 // really want an 8-bit or 32-bit register, map to the appropriate register
12687 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000012688 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012689 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012690 unsigned DestReg = 0;
12691 switch (Res.first) {
12692 default: break;
12693 case X86::AX: DestReg = X86::AL; break;
12694 case X86::DX: DestReg = X86::DL; break;
12695 case X86::CX: DestReg = X86::CL; break;
12696 case X86::BX: DestReg = X86::BL; break;
12697 }
12698 if (DestReg) {
12699 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012700 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012701 }
Owen Anderson825b72b2009-08-11 20:47:22 +000012702 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012703 unsigned DestReg = 0;
12704 switch (Res.first) {
12705 default: break;
12706 case X86::AX: DestReg = X86::EAX; break;
12707 case X86::DX: DestReg = X86::EDX; break;
12708 case X86::CX: DestReg = X86::ECX; break;
12709 case X86::BX: DestReg = X86::EBX; break;
12710 case X86::SI: DestReg = X86::ESI; break;
12711 case X86::DI: DestReg = X86::EDI; break;
12712 case X86::BP: DestReg = X86::EBP; break;
12713 case X86::SP: DestReg = X86::ESP; break;
12714 }
12715 if (DestReg) {
12716 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012717 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012718 }
Owen Anderson825b72b2009-08-11 20:47:22 +000012719 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012720 unsigned DestReg = 0;
12721 switch (Res.first) {
12722 default: break;
12723 case X86::AX: DestReg = X86::RAX; break;
12724 case X86::DX: DestReg = X86::RDX; break;
12725 case X86::CX: DestReg = X86::RCX; break;
12726 case X86::BX: DestReg = X86::RBX; break;
12727 case X86::SI: DestReg = X86::RSI; break;
12728 case X86::DI: DestReg = X86::RDI; break;
12729 case X86::BP: DestReg = X86::RBP; break;
12730 case X86::SP: DestReg = X86::RSP; break;
12731 }
12732 if (DestReg) {
12733 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012734 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012735 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000012736 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000012737 } else if (Res.second == X86::FR32RegisterClass ||
12738 Res.second == X86::FR64RegisterClass ||
12739 Res.second == X86::VR128RegisterClass) {
12740 // Handle references to XMM physical registers that got mapped into the
12741 // wrong class. This can happen with constraints like {xmm0} where the
12742 // target independent register mapper will just pick the first match it can
12743 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000012744 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012745 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000012746 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012747 Res.second = X86::FR64RegisterClass;
12748 else if (X86::VR128RegisterClass->hasType(VT))
12749 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000012750 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012751
Chris Lattnerf76d1802006-07-31 23:26:50 +000012752 return Res;
12753}