blob: b8197edb2b15eb64c42fa69384f0170a26a7e655 [file] [log] [blame]
Arnold Schwaighofer92226dd2007-10-12 21:53:12 +00001//===-- X86ISelLowering.cpp - X86 DAG Lowering Implementation -------------===//
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interfaces that X86 uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
Evan Chengb1712452010-01-27 06:25:16 +000015#define DEBUG_TYPE "x86-isel"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000016#include "X86.h"
Evan Cheng0cc39452006-01-16 21:21:29 +000017#include "X86InstrBuilder.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000018#include "X86ISelLowering.h"
19#include "X86TargetMachine.h"
Chris Lattner8c6ed052009-09-16 01:46:41 +000020#include "X86TargetObjectFile.h"
David Greene583b68f2011-02-17 19:18:59 +000021#include "Utils/X86ShuffleDecode.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000022#include "llvm/CallingConv.h"
Evan Cheng223547a2006-01-31 22:28:30 +000023#include "llvm/Constants.h"
Evan Cheng347d5f72006-04-28 21:29:37 +000024#include "llvm/DerivedTypes.h"
Chris Lattnerb903bed2009-06-26 21:20:29 +000025#include "llvm/GlobalAlias.h"
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000026#include "llvm/GlobalVariable.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000027#include "llvm/Function.h"
Chris Lattnerb8105652009-07-20 17:51:36 +000028#include "llvm/Instructions.h"
Evan Cheng6be2c582006-04-05 23:38:46 +000029#include "llvm/Intrinsics.h"
Owen Andersona90b3dc2009-07-15 21:51:10 +000030#include "llvm/LLVMContext.h"
Evan Cheng55d42002011-01-08 01:24:27 +000031#include "llvm/CodeGen/IntrinsicLowering.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000032#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Cheng4a460802006-01-11 00:33:36 +000033#include "llvm/CodeGen/MachineFunction.h"
34#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner5e1df8d2010-01-25 23:38:14 +000035#include "llvm/CodeGen/MachineJumpTableInfo.h"
Evan Chenga844bde2008-02-02 04:07:54 +000036#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000037#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000038#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner589c6f62010-01-26 06:28:43 +000039#include "llvm/MC/MCAsmInfo.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000040#include "llvm/MC/MCContext.h"
Daniel Dunbar4e815f82010-03-15 23:51:06 +000041#include "llvm/MC/MCExpr.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000042#include "llvm/MC/MCSymbol.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000043#include "llvm/ADT/BitVector.h"
Evan Cheng14b32e12007-12-11 01:46:18 +000044#include "llvm/ADT/SmallSet.h"
Evan Chengb1712452010-01-27 06:25:16 +000045#include "llvm/ADT/Statistic.h"
Chris Lattner1a60aa72006-10-31 19:42:44 +000046#include "llvm/ADT/StringExtras.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000047#include "llvm/ADT/VectorExtras.h"
Evan Cheng485fafc2011-03-21 01:19:09 +000048#include "llvm/Support/CallSite.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000049#include "llvm/Support/Debug.h"
Bill Wendlingec041eb2010-03-12 19:20:40 +000050#include "llvm/Support/Dwarf.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000051#include "llvm/Support/ErrorHandling.h"
52#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000053#include "llvm/Support/raw_ostream.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000054using namespace llvm;
Bill Wendlingec041eb2010-03-12 19:20:40 +000055using namespace dwarf;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000056
Evan Chengb1712452010-01-27 06:25:16 +000057STATISTIC(NumTailCalls, "Number of tail calls");
58
Evan Cheng10e86422008-04-25 19:11:04 +000059// Forward declarations.
Owen Andersone50ed302009-08-10 22:56:29 +000060static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +000061 SDValue V2);
Evan Cheng10e86422008-04-25 19:11:04 +000062
David Greenea5f26012011-02-07 19:36:54 +000063static SDValue Insert128BitVector(SDValue Result,
64 SDValue Vec,
65 SDValue Idx,
66 SelectionDAG &DAG,
67 DebugLoc dl);
David Greenef125a292011-02-08 19:04:41 +000068
David Greenea5f26012011-02-07 19:36:54 +000069static SDValue Extract128BitVector(SDValue Vec,
70 SDValue Idx,
71 SelectionDAG &DAG,
72 DebugLoc dl);
73
74/// Generate a DAG to grab 128-bits from a vector > 128 bits. This
75/// sets things up to match to an AVX VEXTRACTF128 instruction or a
David Greene74a579d2011-02-10 16:57:36 +000076/// simple subregister reference. Idx is an index in the 128 bits we
77/// want. It need not be aligned to a 128-bit bounday. That makes
78/// lowering EXTRACT_VECTOR_ELT operations easier.
David Greenea5f26012011-02-07 19:36:54 +000079static SDValue Extract128BitVector(SDValue Vec,
80 SDValue Idx,
81 SelectionDAG &DAG,
82 DebugLoc dl) {
83 EVT VT = Vec.getValueType();
84 assert(VT.getSizeInBits() == 256 && "Unexpected vector size!");
David Greenea5f26012011-02-07 19:36:54 +000085 EVT ElVT = VT.getVectorElementType();
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +000086 int Factor = VT.getSizeInBits()/128;
87 EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
88 VT.getVectorNumElements()/Factor);
David Greenea5f26012011-02-07 19:36:54 +000089
90 // Extract from UNDEF is UNDEF.
91 if (Vec.getOpcode() == ISD::UNDEF)
92 return DAG.getNode(ISD::UNDEF, dl, ResultVT);
93
94 if (isa<ConstantSDNode>(Idx)) {
95 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
96
97 // Extract the relevant 128 bits. Generate an EXTRACT_SUBVECTOR
98 // we can match to VEXTRACTF128.
99 unsigned ElemsPerChunk = 128 / ElVT.getSizeInBits();
100
101 // This is the index of the first element of the 128-bit chunk
102 // we want.
103 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / 128)
104 * ElemsPerChunk);
105
106 SDValue VecIdx = DAG.getConstant(NormalizedIdxVal, MVT::i32);
David Greenea5f26012011-02-07 19:36:54 +0000107 SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
108 VecIdx);
109
110 return Result;
111 }
112
113 return SDValue();
114}
115
116/// Generate a DAG to put 128-bits into a vector > 128 bits. This
117/// sets things up to match to an AVX VINSERTF128 instruction or a
David Greene6b381262011-02-09 15:32:06 +0000118/// simple superregister reference. Idx is an index in the 128 bits
119/// we want. It need not be aligned to a 128-bit bounday. That makes
120/// lowering INSERT_VECTOR_ELT operations easier.
David Greenea5f26012011-02-07 19:36:54 +0000121static SDValue Insert128BitVector(SDValue Result,
122 SDValue Vec,
123 SDValue Idx,
124 SelectionDAG &DAG,
125 DebugLoc dl) {
126 if (isa<ConstantSDNode>(Idx)) {
127 EVT VT = Vec.getValueType();
128 assert(VT.getSizeInBits() == 128 && "Unexpected vector size!");
129
130 EVT ElVT = VT.getVectorElementType();
David Greenea5f26012011-02-07 19:36:54 +0000131 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
David Greenea5f26012011-02-07 19:36:54 +0000132 EVT ResultVT = Result.getValueType();
133
134 // Insert the relevant 128 bits.
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +0000135 unsigned ElemsPerChunk = 128/ElVT.getSizeInBits();
David Greenea5f26012011-02-07 19:36:54 +0000136
137 // This is the index of the first element of the 128-bit chunk
138 // we want.
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +0000139 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/128)
David Greenea5f26012011-02-07 19:36:54 +0000140 * ElemsPerChunk);
141
142 SDValue VecIdx = DAG.getConstant(NormalizedIdxVal, MVT::i32);
David Greenea5f26012011-02-07 19:36:54 +0000143 Result = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
144 VecIdx);
145 return Result;
146 }
147
148 return SDValue();
149}
150
Chris Lattnerf0144122009-07-28 03:13:23 +0000151static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
Evan Cheng2bffee22011-02-01 01:14:13 +0000152 const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
153 bool is64Bit = Subtarget->is64Bit();
NAKAMURA Takumi27635382011-02-05 15:10:54 +0000154
Evan Cheng2bffee22011-02-01 01:14:13 +0000155 if (Subtarget->isTargetEnvMacho()) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000156 if (is64Bit)
157 return new X8664_MachoTargetObjectFile();
Anton Korobeynikov293d5922010-02-21 20:28:15 +0000158 return new TargetLoweringObjectFileMachO();
Michael J. Spencerec38de22010-10-10 22:04:20 +0000159 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000160
Evan Cheng203576a2011-07-20 19:50:42 +0000161 if (Subtarget->isTargetELF())
162 return new TargetLoweringObjectFileELF();
Evan Cheng2bffee22011-02-01 01:14:13 +0000163 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
Chris Lattnere019ec12010-12-19 20:07:10 +0000164 return new TargetLoweringObjectFileCOFF();
Eric Christopher62f35a22010-07-05 19:26:33 +0000165 llvm_unreachable("unknown subtarget type");
Chris Lattnerf0144122009-07-28 03:13:23 +0000166}
167
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +0000168X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +0000169 : TargetLowering(TM, createTLOF(TM)) {
Evan Cheng559806f2006-01-27 08:10:46 +0000170 Subtarget = &TM.getSubtarget<X86Subtarget>();
Bruno Cardoso Lopesaed890b2011-08-01 21:54:05 +0000171 X86ScalarSSEf64 = Subtarget->hasXMMInt() || Subtarget->hasAVX();
172 X86ScalarSSEf32 = Subtarget->hasXMM() || Subtarget->hasAVX();
Evan Cheng25ab6902006-09-08 06:48:29 +0000173 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000174
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000175 RegInfo = TM.getRegisterInfo();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000176 TD = getTargetData();
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000177
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000178 // Set up the TargetLowering object.
Chris Lattnera34b3cf2010-12-19 20:03:11 +0000179 static MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000180
181 // X86 is weird, it always uses i8 for shift amounts and setcc results.
Duncan Sands03228082008-11-23 15:47:28 +0000182 setBooleanContents(ZeroOrOneBooleanContent);
Eric Christopher471e4222011-06-08 23:55:35 +0000183
Eric Christopherde5e1012011-03-11 01:05:58 +0000184 // For 64-bit since we have so many registers use the ILP scheduler, for
185 // 32-bit code use the register pressure specific scheduling.
186 if (Subtarget->is64Bit())
187 setSchedulingPreference(Sched::ILP);
188 else
189 setSchedulingPreference(Sched::RegPressure);
Evan Cheng25ab6902006-09-08 06:48:29 +0000190 setStackPointerRegisterToSaveRestore(X86StackPtr);
Evan Cheng714554d2006-03-16 21:47:42 +0000191
Michael J. Spencer92bf38c2010-10-10 23:11:06 +0000192 if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000193 // Setup Windows compiler runtime calls.
194 setLibcallName(RTLIB::SDIV_I64, "_alldiv");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000195 setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
Julien Lerougef2960822011-07-08 21:40:25 +0000196 setLibcallName(RTLIB::SREM_I64, "_allrem");
197 setLibcallName(RTLIB::UREM_I64, "_aullrem");
198 setLibcallName(RTLIB::MUL_I64, "_allmul");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000199 setLibcallName(RTLIB::FPTOUINT_F64_I64, "_ftol2");
Michael J. Spencer94f7eeb2010-10-19 07:32:52 +0000200 setLibcallName(RTLIB::FPTOUINT_F32_I64, "_ftol2");
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000201 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer335b8062010-10-11 05:29:15 +0000202 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
Julien Lerougef2960822011-07-08 21:40:25 +0000203 setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
204 setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
205 setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
Michael J. Spencer6dad10e2010-10-27 18:52:38 +0000206 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::C);
207 setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::C);
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000208 }
209
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000210 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +0000211 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000212 setUseUnderscoreSetJmp(false);
213 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000214 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000215 // MS runtime is weird: it exports _setjmp, but longjmp!
216 setUseUnderscoreSetJmp(true);
217 setUseUnderscoreLongJmp(false);
218 } else {
219 setUseUnderscoreSetJmp(true);
220 setUseUnderscoreLongJmp(true);
221 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000222
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000223 // Set up the register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000224 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
Dan Gohman71edb242010-04-30 18:30:26 +0000225 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000226 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
Evan Cheng25ab6902006-09-08 06:48:29 +0000227 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000228 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000229
Owen Anderson825b72b2009-08-11 20:47:22 +0000230 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +0000231
Scott Michelfdc40a02009-02-17 22:15:04 +0000232 // We don't accept any truncstore of integer registers.
Owen Anderson825b72b2009-08-11 20:47:22 +0000233 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000234 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000235 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000236 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000237 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
238 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Evan Cheng7f042682008-10-15 02:05:31 +0000239
240 // SETOEQ and SETUNE require checking two conditions.
Owen Anderson825b72b2009-08-11 20:47:22 +0000241 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
242 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
243 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
244 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
245 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
246 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000247
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000248 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
249 // operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000250 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
251 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
252 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000253
Evan Cheng25ab6902006-09-08 06:48:29 +0000254 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000255 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
256 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Eli Friedman948e95a2009-05-23 09:59:16 +0000257 } else if (!UseSoftFloat) {
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000258 // We have an algorithm for SSE2->double, and we turn this into a
259 // 64-bit FILD followed by conditional FADD for other targets.
260 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Eli Friedman948e95a2009-05-23 09:59:16 +0000261 // We have an algorithm for SSE2, and we turn this into a 64-bit
262 // FILD for other targets.
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000263 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000264 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000265
266 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
267 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000268 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
269 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000270
Devang Patel6a784892009-06-05 18:48:29 +0000271 if (!UseSoftFloat) {
Bill Wendling105be5a2009-03-13 08:41:47 +0000272 // SSE has no i16 to fp conversion, only i32
273 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000274 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000275 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000276 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000277 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000278 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
279 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000280 }
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000281 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000282 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
283 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000284 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000285
Dale Johannesen73328d12007-09-19 23:55:34 +0000286 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
287 // are Legal, f80 is custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000288 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
289 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000290
Evan Cheng02568ff2006-01-30 22:13:22 +0000291 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
292 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000293 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
294 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
Evan Cheng02568ff2006-01-30 22:13:22 +0000295
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000296 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000297 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000298 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000299 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000300 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000301 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
302 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000303 }
304
305 // Handle FP_TO_UINT by promoting the destination to a larger signed
306 // conversion.
Owen Anderson825b72b2009-08-11 20:47:22 +0000307 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
308 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
309 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000310
Evan Cheng25ab6902006-09-08 06:48:29 +0000311 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000312 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
313 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Eli Friedman948e95a2009-05-23 09:59:16 +0000314 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000315 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000316 // Expand FP_TO_UINT into a select.
317 // FIXME: We would like to use a Custom expander here eventually to do
318 // the optimal thing for SSE vs. the default expansion in the legalizer.
Owen Anderson825b72b2009-08-11 20:47:22 +0000319 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000320 else
Eli Friedman948e95a2009-05-23 09:59:16 +0000321 // With SSE3 we can use fisttpll to convert to a signed i64; without
322 // SSE, we're stuck with a fistpll.
Owen Anderson825b72b2009-08-11 20:47:22 +0000323 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000324 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000325
Chris Lattner399610a2006-12-05 18:22:22 +0000326 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Michael J. Spencerec38de22010-10-10 22:04:20 +0000327 if (!X86ScalarSSEf64) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000328 setOperationAction(ISD::BITCAST , MVT::f32 , Expand);
329 setOperationAction(ISD::BITCAST , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000330 if (Subtarget->is64Bit()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000331 setOperationAction(ISD::BITCAST , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000332 // Without SSE, i64->f64 goes through memory.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000333 setOperationAction(ISD::BITCAST , MVT::i64 , Expand);
Dale Johannesen7d07b482010-05-21 00:52:33 +0000334 }
Chris Lattnerf3597a12006-12-05 18:45:06 +0000335 }
Chris Lattner21f66852005-12-23 05:15:23 +0000336
Dan Gohmanb00ee212008-02-18 19:34:53 +0000337 // Scalar integer divide and remainder are lowered to use operations that
338 // produce two results, to match the available instructions. This exposes
339 // the two-result form to trivial CSE, which is able to combine x/y and x%y
340 // into a single instruction.
341 //
342 // Scalar integer multiply-high is also lowered to use two-result
343 // operations, to match the available instructions. However, plain multiply
344 // (low) operations are left as Legal, as there are single-result
345 // instructions for this in x86. Using the two-result multiply instructions
346 // when both high and low results are needed must be arranged by dagcombine.
Chris Lattnere019ec12010-12-19 20:07:10 +0000347 for (unsigned i = 0, e = 4; i != e; ++i) {
348 MVT VT = IntVTs[i];
349 setOperationAction(ISD::MULHS, VT, Expand);
350 setOperationAction(ISD::MULHU, VT, Expand);
351 setOperationAction(ISD::SDIV, VT, Expand);
352 setOperationAction(ISD::UDIV, VT, Expand);
353 setOperationAction(ISD::SREM, VT, Expand);
354 setOperationAction(ISD::UREM, VT, Expand);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000355
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000356 // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
Chris Lattnerd8ff7ec2010-12-20 01:03:27 +0000357 setOperationAction(ISD::ADDC, VT, Custom);
358 setOperationAction(ISD::ADDE, VT, Custom);
359 setOperationAction(ISD::SUBC, VT, Custom);
360 setOperationAction(ISD::SUBE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000361 }
Dan Gohmana37c9f72007-09-25 18:23:27 +0000362
Owen Anderson825b72b2009-08-11 20:47:22 +0000363 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
364 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
365 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
366 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000367 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000368 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
369 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
370 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
371 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
372 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
373 setOperationAction(ISD::FREM , MVT::f32 , Expand);
374 setOperationAction(ISD::FREM , MVT::f64 , Expand);
375 setOperationAction(ISD::FREM , MVT::f80 , Expand);
376 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000377
Owen Anderson825b72b2009-08-11 20:47:22 +0000378 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
379 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000380 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
381 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000382 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
383 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000384 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000385 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
386 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000387 }
388
Benjamin Kramer1292c222010-12-04 20:32:23 +0000389 if (Subtarget->hasPOPCNT()) {
390 setOperationAction(ISD::CTPOP , MVT::i8 , Promote);
391 } else {
392 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
393 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
394 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
395 if (Subtarget->is64Bit())
396 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
397 }
398
Owen Anderson825b72b2009-08-11 20:47:22 +0000399 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
400 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000401
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000402 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000403 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000404 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000405 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000406 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000407 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
408 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
409 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
410 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
411 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000412 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000413 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
414 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
415 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
416 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000417 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000418 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
Andrew Trickf6c39412011-03-23 23:11:02 +0000419 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000420 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000421 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000422
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000423 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000424 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
425 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
426 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
427 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000428 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000429 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
430 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000431 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000432 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000433 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
434 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
435 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
436 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000437 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000438 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000439 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000440 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
441 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
442 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000443 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000444 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
445 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
446 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000447 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000448
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000449 if (Subtarget->hasXMM())
Owen Anderson825b72b2009-08-11 20:47:22 +0000450 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000451
Eric Christopher9a9d2752010-07-22 02:48:34 +0000452 setOperationAction(ISD::MEMBARRIER , MVT::Other, Custom);
Eli Friedman14648462011-07-27 22:21:52 +0000453 setOperationAction(ISD::ATOMIC_FENCE , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000454
Jim Grosbachf1ab49e2010-06-23 16:25:07 +0000455 // On X86 and X86-64, atomic operations are lowered to locked instructions.
456 // Locked instructions, in turn, have implicit fence semantics (all memory
457 // operations are flushed before issuing the locked instruction, and they
458 // are not buffered), so we can fold away the common pattern of
459 // fence-atomic-fence.
460 setShouldFoldAtomicFences(true);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000461
Mon P Wang63307c32008-05-05 19:05:59 +0000462 // Expand certain atomics
Chris Lattnere019ec12010-12-19 20:07:10 +0000463 for (unsigned i = 0, e = 4; i != e; ++i) {
464 MVT VT = IntVTs[i];
465 setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
466 setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
467 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000468
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000469 if (!Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000470 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
471 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
472 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
473 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
474 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
475 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
476 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000477 }
478
Evan Cheng3c992d22006-03-07 02:02:57 +0000479 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000480 if (!Subtarget->isTargetDarwin() &&
481 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000482 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000483 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000484 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000485
Owen Anderson825b72b2009-08-11 20:47:22 +0000486 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
487 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
488 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
489 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000490 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000491 setExceptionPointerRegister(X86::RAX);
492 setExceptionSelectorRegister(X86::RDX);
493 } else {
494 setExceptionPointerRegister(X86::EAX);
495 setExceptionSelectorRegister(X86::EDX);
496 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000497 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
498 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000499
Owen Anderson825b72b2009-08-11 20:47:22 +0000500 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000501
Owen Anderson825b72b2009-08-11 20:47:22 +0000502 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000503
Nate Begemanacc398c2006-01-25 18:21:52 +0000504 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000505 setOperationAction(ISD::VASTART , MVT::Other, Custom);
506 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000507 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000508 setOperationAction(ISD::VAARG , MVT::Other, Custom);
509 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000510 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000511 setOperationAction(ISD::VAARG , MVT::Other, Expand);
512 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000513 }
Evan Chengae642192007-03-02 23:16:35 +0000514
Owen Anderson825b72b2009-08-11 20:47:22 +0000515 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
516 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
NAKAMURA Takumia2e07622011-03-24 07:07:00 +0000517 setOperationAction(ISD::DYNAMIC_STACKALLOC,
518 (Subtarget->is64Bit() ? MVT::i64 : MVT::i32),
519 (Subtarget->isTargetCOFF()
520 && !Subtarget->isTargetEnvMacho()
521 ? Custom : Expand));
Chris Lattnerb99329e2006-01-13 02:42:53 +0000522
Evan Chengc7ce29b2009-02-13 22:36:38 +0000523 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000524 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000525 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000526 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
527 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000528
Evan Cheng223547a2006-01-31 22:28:30 +0000529 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000530 setOperationAction(ISD::FABS , MVT::f64, Custom);
531 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000532
533 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000534 setOperationAction(ISD::FNEG , MVT::f64, Custom);
535 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000536
Evan Cheng68c47cb2007-01-05 07:55:56 +0000537 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000538 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
539 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000540
Stuart Hastings4fd0dee2011-06-01 04:39:42 +0000541 // Lower this to FGETSIGNx86 plus an AND.
542 setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
543 setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
544
Evan Chengd25e9e82006-02-02 00:28:23 +0000545 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000546 setOperationAction(ISD::FSIN , MVT::f64, Expand);
547 setOperationAction(ISD::FCOS , MVT::f64, Expand);
548 setOperationAction(ISD::FSIN , MVT::f32, Expand);
549 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000550
Chris Lattnera54aa942006-01-29 06:26:08 +0000551 // Expand FP immediates into loads from the stack, except for the special
552 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000553 addLegalFPImmediate(APFloat(+0.0)); // xorpd
554 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000555 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000556 // Use SSE for f32, x87 for f64.
557 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000558 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
559 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000560
561 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000562 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000563
564 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000565 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000566
Owen Anderson825b72b2009-08-11 20:47:22 +0000567 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000568
569 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000570 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
571 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000572
573 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000574 setOperationAction(ISD::FSIN , MVT::f32, Expand);
575 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000576
Nate Begemane1795842008-02-14 08:57:00 +0000577 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000578 addLegalFPImmediate(APFloat(+0.0f)); // xorps
579 addLegalFPImmediate(APFloat(+0.0)); // FLD0
580 addLegalFPImmediate(APFloat(+1.0)); // FLD1
581 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
582 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
583
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000584 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000585 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
586 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000587 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000588 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000589 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000590 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000591 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
592 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000593
Owen Anderson825b72b2009-08-11 20:47:22 +0000594 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
595 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
596 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
597 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000598
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000599 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000600 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
601 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000602 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000603 addLegalFPImmediate(APFloat(+0.0)); // FLD0
604 addLegalFPImmediate(APFloat(+1.0)); // FLD1
605 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
606 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000607 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
608 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
609 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
610 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000611 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000612
Cameron Zwarich33390842011-07-08 21:39:21 +0000613 // We don't support FMA.
614 setOperationAction(ISD::FMA, MVT::f64, Expand);
615 setOperationAction(ISD::FMA, MVT::f32, Expand);
616
Dale Johannesen59a58732007-08-05 18:49:15 +0000617 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000618 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000619 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
620 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
621 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000622 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000623 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000624 addLegalFPImmediate(TmpFlt); // FLD0
625 TmpFlt.changeSign();
626 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000627
628 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000629 APFloat TmpFlt2(+1.0);
630 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
631 &ignored);
632 addLegalFPImmediate(TmpFlt2); // FLD1
633 TmpFlt2.changeSign();
634 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
635 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000636
Evan Chengc7ce29b2009-02-13 22:36:38 +0000637 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000638 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
639 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000640 }
Cameron Zwarich33390842011-07-08 21:39:21 +0000641
642 setOperationAction(ISD::FMA, MVT::f80, Expand);
Dale Johannesen2f429012007-09-26 21:10:55 +0000643 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000644
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000645 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000646 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
647 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
648 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000649
Owen Anderson825b72b2009-08-11 20:47:22 +0000650 setOperationAction(ISD::FLOG, MVT::f80, Expand);
651 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
652 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
653 setOperationAction(ISD::FEXP, MVT::f80, Expand);
654 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000655
Mon P Wangf007a8b2008-11-06 05:31:54 +0000656 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000657 // (for widening) or expand (for scalarization). Then we will selectively
658 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000659 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
660 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
661 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
662 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
663 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
664 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
665 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
666 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
667 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
668 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
669 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
670 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
671 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
672 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
673 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
674 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
675 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000676 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
David Greenecfe33c42011-01-26 19:13:22 +0000677 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
678 setOperationAction(ISD::INSERT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000679 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
680 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
681 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
682 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
683 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
684 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
685 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
686 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
687 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
688 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
689 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
690 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
691 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
692 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
693 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
694 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
695 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
696 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
697 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
698 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
699 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
700 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
701 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
702 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
703 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
704 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
705 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
706 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
707 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
708 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
709 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000710 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000711 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
712 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
713 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
714 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
715 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
716 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
717 setTruncStoreAction((MVT::SimpleValueType)VT,
718 (MVT::SimpleValueType)InnerVT, Expand);
719 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
720 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
721 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000722 }
723
Evan Chengc7ce29b2009-02-13 22:36:38 +0000724 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
725 // with -msoft-float, disable use of MMX as well.
Chris Lattner2a786eb2010-12-19 20:19:20 +0000726 if (!UseSoftFloat && Subtarget->hasMMX()) {
Dale Johannesene93d99c2010-10-20 21:32:10 +0000727 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000728 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000729 }
730
Dale Johannesen0488fb62010-09-30 23:57:10 +0000731 // MMX-sized vectors (other than x86mmx) are expected to be expanded
732 // into smaller operations.
733 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
734 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
735 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
736 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
737 setOperationAction(ISD::AND, MVT::v8i8, Expand);
738 setOperationAction(ISD::AND, MVT::v4i16, Expand);
739 setOperationAction(ISD::AND, MVT::v2i32, Expand);
740 setOperationAction(ISD::AND, MVT::v1i64, Expand);
741 setOperationAction(ISD::OR, MVT::v8i8, Expand);
742 setOperationAction(ISD::OR, MVT::v4i16, Expand);
743 setOperationAction(ISD::OR, MVT::v2i32, Expand);
744 setOperationAction(ISD::OR, MVT::v1i64, Expand);
745 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
746 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
747 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
748 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
749 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
750 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
751 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
752 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
753 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
754 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
755 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
756 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
757 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000758 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
759 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
760 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
761 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000762
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000763 if (!UseSoftFloat && Subtarget->hasXMM()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000764 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000765
Owen Anderson825b72b2009-08-11 20:47:22 +0000766 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
767 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
768 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
769 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
770 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
771 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
772 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
773 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
774 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
775 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
776 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
777 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000778 }
779
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000780 if (!UseSoftFloat && Subtarget->hasXMMInt()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000781 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000782
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000783 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
784 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000785 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
786 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
787 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
788 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000789
Owen Anderson825b72b2009-08-11 20:47:22 +0000790 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
791 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
792 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
793 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
794 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
795 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
796 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
797 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
798 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
799 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
800 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
801 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
802 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
803 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
804 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
805 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000806
Owen Anderson825b72b2009-08-11 20:47:22 +0000807 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
808 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
809 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
810 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000811
Owen Anderson825b72b2009-08-11 20:47:22 +0000812 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
813 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
814 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
815 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
816 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000817
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000818 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
819 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
820 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
821 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
822 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
823
Evan Cheng2c3ae372006-04-12 21:21:57 +0000824 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000825 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
826 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000827 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000828 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000829 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000830 // Do not attempt to custom lower non-128-bit vectors
831 if (!VT.is128BitVector())
832 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000833 setOperationAction(ISD::BUILD_VECTOR,
834 VT.getSimpleVT().SimpleTy, Custom);
835 setOperationAction(ISD::VECTOR_SHUFFLE,
836 VT.getSimpleVT().SimpleTy, Custom);
837 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
838 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000839 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000840
Owen Anderson825b72b2009-08-11 20:47:22 +0000841 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
842 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
843 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
844 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
845 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
846 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000847
Nate Begemancdd1eec2008-02-12 22:51:28 +0000848 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000849 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
850 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000851 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000852
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000853 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000854 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
855 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000856 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000857
858 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000859 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000860 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000861
Owen Andersond6662ad2009-08-10 20:46:15 +0000862 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000863 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000864 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000865 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000866 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000867 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000868 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000869 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000870 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000871 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000872 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000873
Owen Anderson825b72b2009-08-11 20:47:22 +0000874 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000875
Evan Cheng2c3ae372006-04-12 21:21:57 +0000876 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000877 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
878 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
879 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
880 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000881
Owen Anderson825b72b2009-08-11 20:47:22 +0000882 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
883 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000884 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000885
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000886 if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
Dale Johannesen54feef22010-05-27 20:12:41 +0000887 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
888 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
889 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
890 setOperationAction(ISD::FRINT, MVT::f32, Legal);
891 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
892 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
893 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
894 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
895 setOperationAction(ISD::FRINT, MVT::f64, Legal);
896 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
897
Nate Begeman14d12ca2008-02-11 04:19:36 +0000898 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000899 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000900
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000901 // Can turn SHL into an integer multiply.
902 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Nate Begeman51409212010-07-28 00:21:48 +0000903 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000904
Nate Begeman14d12ca2008-02-11 04:19:36 +0000905 // i8 and i16 vectors are custom , because the source register and source
906 // source memory operand types are not the same width. f32 vectors are
907 // custom since the immediate controlling the insert encodes additional
908 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000909 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
910 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
911 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
912 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000913
Owen Anderson825b72b2009-08-11 20:47:22 +0000914 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
915 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
916 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
917 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000918
919 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000920 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
921 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000922 }
923 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000924
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000925 if (Subtarget->hasSSE2() || Subtarget->hasAVX()) {
Nadav Rotem43012222011-05-11 08:12:09 +0000926 setOperationAction(ISD::SRL, MVT::v2i64, Custom);
927 setOperationAction(ISD::SRL, MVT::v4i32, Custom);
928 setOperationAction(ISD::SRL, MVT::v16i8, Custom);
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000929 setOperationAction(ISD::SRL, MVT::v8i16, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +0000930
931 setOperationAction(ISD::SHL, MVT::v2i64, Custom);
932 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
933 setOperationAction(ISD::SHL, MVT::v8i16, Custom);
934
935 setOperationAction(ISD::SRA, MVT::v4i32, Custom);
936 setOperationAction(ISD::SRA, MVT::v8i16, Custom);
937 }
938
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000939 if (Subtarget->hasSSE42() || Subtarget->hasAVX())
Owen Anderson825b72b2009-08-11 20:47:22 +0000940 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000941
David Greene9b9838d2009-06-29 16:47:10 +0000942 if (!UseSoftFloat && Subtarget->hasAVX()) {
Bruno Cardoso Lopesdbd4fe22011-07-21 02:24:08 +0000943 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
944 addRegisterClass(MVT::v16i16, X86::VR256RegisterClass);
945 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
946 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
947 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
948 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000949
Owen Anderson825b72b2009-08-11 20:47:22 +0000950 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +0000951 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
952 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +0000953
Owen Anderson825b72b2009-08-11 20:47:22 +0000954 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
955 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
956 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
957 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
958 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
959 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000960
Owen Anderson825b72b2009-08-11 20:47:22 +0000961 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
962 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
963 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
964 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
965 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
966 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000967
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +0000968 setOperationAction(ISD::FP_TO_SINT, MVT::v8i32, Legal);
969 setOperationAction(ISD::SINT_TO_FP, MVT::v8i32, Legal);
Bruno Cardoso Lopes55244ce2011-08-01 21:54:09 +0000970 setOperationAction(ISD::FP_ROUND, MVT::v4f32, Legal);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +0000971
Bruno Cardoso Lopese321d7f2011-08-09 05:48:01 +0000972 // sint_to_fp between different vector types needs custom handling
973 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Custom);
974
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +0000975 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4f64, Custom);
976 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i64, Custom);
977 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f32, Custom);
978 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i32, Custom);
979 setOperationAction(ISD::CONCAT_VECTORS, MVT::v32i8, Custom);
980 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i16, Custom);
981
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000982 setOperationAction(ISD::SRL, MVT::v4i64, Custom);
983 setOperationAction(ISD::SRL, MVT::v8i32, Custom);
984 setOperationAction(ISD::SRL, MVT::v16i16, Custom);
985 setOperationAction(ISD::SRL, MVT::v32i8, Custom);
986
987 setOperationAction(ISD::SHL, MVT::v4i64, Custom);
988 setOperationAction(ISD::SHL, MVT::v8i32, Custom);
989 setOperationAction(ISD::SHL, MVT::v16i16, Custom);
990 setOperationAction(ISD::SHL, MVT::v32i8, Custom);
991
992 setOperationAction(ISD::SRA, MVT::v8i32, Custom);
993 setOperationAction(ISD::SRA, MVT::v16i16, Custom);
994
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +0000995 setOperationAction(ISD::VSETCC, MVT::v8i32, Custom);
996 setOperationAction(ISD::VSETCC, MVT::v4i64, Custom);
997
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000998 // Custom lower several nodes for 256-bit types.
David Greene54d8eba2011-01-27 22:38:56 +0000999 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001000 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
1001 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1002 EVT VT = SVT;
1003
1004 // Extract subvector is special because the value type
1005 // (result) is 128-bit but the source is 256-bit wide.
1006 if (VT.is128BitVector())
1007 setOperationAction(ISD::EXTRACT_SUBVECTOR, SVT, Custom);
1008
1009 // Do not attempt to custom lower other non-256-bit vectors
1010 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +00001011 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001012
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001013 setOperationAction(ISD::BUILD_VECTOR, SVT, Custom);
1014 setOperationAction(ISD::VECTOR_SHUFFLE, SVT, Custom);
1015 setOperationAction(ISD::INSERT_VECTOR_ELT, SVT, Custom);
1016 setOperationAction(ISD::EXTRACT_VECTOR_ELT, SVT, Custom);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00001017 setOperationAction(ISD::SCALAR_TO_VECTOR, SVT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001018 setOperationAction(ISD::INSERT_SUBVECTOR, SVT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001019 }
1020
David Greene54d8eba2011-01-27 22:38:56 +00001021 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001022 for (unsigned i = (unsigned)MVT::v32i8; i != (unsigned)MVT::v4i64; ++i) {
1023 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1024 EVT VT = SVT;
David Greene54d8eba2011-01-27 22:38:56 +00001025
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001026 // Do not attempt to promote non-256-bit vectors
1027 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +00001028 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001029
1030 setOperationAction(ISD::AND, SVT, Promote);
1031 AddPromotedToType (ISD::AND, SVT, MVT::v4i64);
1032 setOperationAction(ISD::OR, SVT, Promote);
1033 AddPromotedToType (ISD::OR, SVT, MVT::v4i64);
1034 setOperationAction(ISD::XOR, SVT, Promote);
1035 AddPromotedToType (ISD::XOR, SVT, MVT::v4i64);
1036 setOperationAction(ISD::LOAD, SVT, Promote);
1037 AddPromotedToType (ISD::LOAD, SVT, MVT::v4i64);
1038 setOperationAction(ISD::SELECT, SVT, Promote);
1039 AddPromotedToType (ISD::SELECT, SVT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001040 }
David Greene9b9838d2009-06-29 16:47:10 +00001041 }
1042
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001043 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1044 // of this type with custom code.
1045 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1046 VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE; VT++) {
1047 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT, Custom);
1048 }
1049
Evan Cheng6be2c582006-04-05 23:38:46 +00001050 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001051 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001052
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001053
Eli Friedman962f5492010-06-02 19:35:46 +00001054 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1055 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001056 //
Eli Friedman962f5492010-06-02 19:35:46 +00001057 // FIXME: We really should do custom legalization for addition and
1058 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1059 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001060 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1061 // Add/Sub/Mul with overflow operations are custom lowered.
1062 MVT VT = IntVTs[i];
1063 setOperationAction(ISD::SADDO, VT, Custom);
1064 setOperationAction(ISD::UADDO, VT, Custom);
1065 setOperationAction(ISD::SSUBO, VT, Custom);
1066 setOperationAction(ISD::USUBO, VT, Custom);
1067 setOperationAction(ISD::SMULO, VT, Custom);
1068 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001069 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001070
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001071 // There are no 8-bit 3-address imul/mul instructions
1072 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1073 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001074
Evan Chengd54f2d52009-03-31 19:38:51 +00001075 if (!Subtarget->is64Bit()) {
1076 // These libcalls are not available in 32-bit.
1077 setLibcallName(RTLIB::SHL_I128, 0);
1078 setLibcallName(RTLIB::SRL_I128, 0);
1079 setLibcallName(RTLIB::SRA_I128, 0);
1080 }
1081
Evan Cheng206ee9d2006-07-07 08:33:52 +00001082 // We have target-specific dag combine patterns for the following nodes:
1083 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001084 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +00001085 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +00001086 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001087 setTargetDAGCombine(ISD::SHL);
1088 setTargetDAGCombine(ISD::SRA);
1089 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001090 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001091 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001092 setTargetDAGCombine(ISD::ADD);
1093 setTargetDAGCombine(ISD::SUB);
Chris Lattner149a4e52008-02-22 02:09:43 +00001094 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001095 setTargetDAGCombine(ISD::ZERO_EXTEND);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001096 setTargetDAGCombine(ISD::SINT_TO_FP);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001097 if (Subtarget->is64Bit())
1098 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001099
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001100 computeRegisterProperties();
1101
Evan Cheng05219282011-01-06 06:52:41 +00001102 // On Darwin, -Os means optimize for size without hurting performance,
1103 // do not reduce the limit.
Dan Gohman87060f52008-06-30 21:00:56 +00001104 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001105 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
Evan Cheng255f20f2010-04-01 06:04:33 +00001106 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001107 maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1108 maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1109 maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Evan Chengfb8075d2008-02-28 00:43:03 +00001110 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +00001111 benefitFromCodePlacementOpt = true;
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001112
1113 setPrefFunctionAlignment(4);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001114}
1115
Scott Michel5b8f82e2008-03-10 15:42:14 +00001116
Owen Anderson825b72b2009-08-11 20:47:22 +00001117MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1118 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +00001119}
1120
1121
Evan Cheng29286502008-01-23 23:17:41 +00001122/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1123/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001124static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001125 if (MaxAlign == 16)
1126 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001127 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001128 if (VTy->getBitWidth() == 128)
1129 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001130 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001131 unsigned EltAlign = 0;
1132 getMaxByValAlign(ATy->getElementType(), EltAlign);
1133 if (EltAlign > MaxAlign)
1134 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001135 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001136 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1137 unsigned EltAlign = 0;
1138 getMaxByValAlign(STy->getElementType(i), EltAlign);
1139 if (EltAlign > MaxAlign)
1140 MaxAlign = EltAlign;
1141 if (MaxAlign == 16)
1142 break;
1143 }
1144 }
1145 return;
1146}
1147
1148/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1149/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001150/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1151/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001152unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001153 if (Subtarget->is64Bit()) {
1154 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001155 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001156 if (TyAlign > 8)
1157 return TyAlign;
1158 return 8;
1159 }
1160
Evan Cheng29286502008-01-23 23:17:41 +00001161 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001162 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001163 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001164 return Align;
1165}
Chris Lattner2b02a442007-02-25 08:29:00 +00001166
Evan Chengf0df0312008-05-15 08:39:06 +00001167/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001168/// and store operations as a result of memset, memcpy, and memmove
1169/// lowering. If DstAlign is zero that means it's safe to destination
1170/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1171/// means there isn't a need to check it against alignment requirement,
1172/// probably because the source does not need to be loaded. If
1173/// 'NonScalarIntSafe' is true, that means it's safe to return a
1174/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1175/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1176/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001177/// It returns EVT::Other if the type should be determined using generic
1178/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001179EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001180X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1181 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001182 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001183 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001184 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001185 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1186 // linux. This is because the stack realignment code can't handle certain
1187 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001188 const Function *F = MF.getFunction();
Evan Chenga5e13622011-01-07 19:35:30 +00001189 if (NonScalarIntSafe &&
1190 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001191 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001192 (Subtarget->isUnalignedMemAccessFast() ||
1193 ((DstAlign == 0 || DstAlign >= 16) &&
1194 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001195 Subtarget->getStackAlignment() >= 16) {
1196 if (Subtarget->hasSSE2())
1197 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001198 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001199 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001200 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001201 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001202 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001203 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001204 // Do not use f64 to lower memcpy if source is string constant. It's
1205 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001206 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001207 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001208 }
Evan Chengf0df0312008-05-15 08:39:06 +00001209 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001210 return MVT::i64;
1211 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001212}
1213
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001214/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1215/// current function. The returned value is a member of the
1216/// MachineJumpTableInfo::JTEntryKind enum.
1217unsigned X86TargetLowering::getJumpTableEncoding() const {
1218 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1219 // symbol.
1220 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1221 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001222 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001223
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001224 // Otherwise, use the normal jump table encoding heuristics.
1225 return TargetLowering::getJumpTableEncoding();
1226}
1227
Chris Lattnerc64daab2010-01-26 05:02:42 +00001228const MCExpr *
1229X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1230 const MachineBasicBlock *MBB,
1231 unsigned uid,MCContext &Ctx) const{
1232 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1233 Subtarget->isPICStyleGOT());
1234 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1235 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001236 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1237 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001238}
1239
Evan Chengcc415862007-11-09 01:32:10 +00001240/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1241/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001242SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001243 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001244 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001245 // This doesn't have DebugLoc associated with it, but is not really the
1246 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001247 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001248 return Table;
1249}
1250
Chris Lattner589c6f62010-01-26 06:28:43 +00001251/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1252/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1253/// MCExpr.
1254const MCExpr *X86TargetLowering::
1255getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1256 MCContext &Ctx) const {
1257 // X86-64 uses RIP relative addressing based on the jump table label.
1258 if (Subtarget->isPICStyleRIPRel())
1259 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1260
1261 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001262 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001263}
1264
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001265// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001266std::pair<const TargetRegisterClass*, uint8_t>
1267X86TargetLowering::findRepresentativeClass(EVT VT) const{
1268 const TargetRegisterClass *RRC = 0;
1269 uint8_t Cost = 1;
1270 switch (VT.getSimpleVT().SimpleTy) {
1271 default:
1272 return TargetLowering::findRepresentativeClass(VT);
1273 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1274 RRC = (Subtarget->is64Bit()
1275 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1276 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001277 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001278 RRC = X86::VR64RegisterClass;
1279 break;
1280 case MVT::f32: case MVT::f64:
1281 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1282 case MVT::v4f32: case MVT::v2f64:
1283 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1284 case MVT::v4f64:
1285 RRC = X86::VR128RegisterClass;
1286 break;
1287 }
1288 return std::make_pair(RRC, Cost);
1289}
1290
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001291bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1292 unsigned &Offset) const {
1293 if (!Subtarget->isTargetLinux())
1294 return false;
1295
1296 if (Subtarget->is64Bit()) {
1297 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1298 Offset = 0x28;
1299 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1300 AddressSpace = 256;
1301 else
1302 AddressSpace = 257;
1303 } else {
1304 // %gs:0x14 on i386
1305 Offset = 0x14;
1306 AddressSpace = 256;
1307 }
1308 return true;
1309}
1310
1311
Chris Lattner2b02a442007-02-25 08:29:00 +00001312//===----------------------------------------------------------------------===//
1313// Return Value Calling Convention Implementation
1314//===----------------------------------------------------------------------===//
1315
Chris Lattner59ed56b2007-02-28 04:55:35 +00001316#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001317
Michael J. Spencerec38de22010-10-10 22:04:20 +00001318bool
Eric Christopher471e4222011-06-08 23:55:35 +00001319X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1320 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001321 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001322 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001323 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001324 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001325 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001326 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001327}
1328
Dan Gohman98ca4f22009-08-05 01:29:28 +00001329SDValue
1330X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001331 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001332 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001333 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001334 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001335 MachineFunction &MF = DAG.getMachineFunction();
1336 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001337
Chris Lattner9774c912007-02-27 05:28:59 +00001338 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001339 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001340 RVLocs, *DAG.getContext());
1341 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001342
Evan Chengdcea1632010-02-04 02:40:39 +00001343 // Add the regs to the liveout set for the function.
1344 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1345 for (unsigned i = 0; i != RVLocs.size(); ++i)
1346 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1347 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001348
Dan Gohman475871a2008-07-27 21:46:04 +00001349 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001350
Dan Gohman475871a2008-07-27 21:46:04 +00001351 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001352 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1353 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001354 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1355 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001356
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001357 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001358 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1359 CCValAssign &VA = RVLocs[i];
1360 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001361 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001362 EVT ValVT = ValToCopy.getValueType();
1363
Dale Johannesenc4510512010-09-24 19:05:48 +00001364 // If this is x86-64, and we disabled SSE, we can't return FP values,
1365 // or SSE or MMX vectors.
1366 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1367 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001368 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001369 report_fatal_error("SSE register return with SSE disabled");
1370 }
1371 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1372 // llvm-gcc has never done it right and no one has noticed, so this
1373 // should be OK for now.
1374 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001375 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001376 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001377
Chris Lattner447ff682008-03-11 03:23:40 +00001378 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1379 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001380 if (VA.getLocReg() == X86::ST0 ||
1381 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001382 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1383 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001384 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001385 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001386 RetOps.push_back(ValToCopy);
1387 // Don't emit a copytoreg.
1388 continue;
1389 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001390
Evan Cheng242b38b2009-02-23 09:03:22 +00001391 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1392 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001393 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001394 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001395 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001396 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001397 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1398 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001399 // If we don't have SSE2 available, convert to v4f32 so the generated
1400 // register is legal.
1401 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001402 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001403 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001404 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001405 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001406
Dale Johannesendd64c412009-02-04 00:33:20 +00001407 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001408 Flag = Chain.getValue(1);
1409 }
Dan Gohman61a92132008-04-21 23:59:07 +00001410
1411 // The x86-64 ABI for returning structs by value requires that we copy
1412 // the sret argument into %rax for the return. We saved the argument into
1413 // a virtual register in the entry block, so now we copy the value out
1414 // and into %rax.
1415 if (Subtarget->is64Bit() &&
1416 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1417 MachineFunction &MF = DAG.getMachineFunction();
1418 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1419 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001420 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001421 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001422 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001423
Dale Johannesendd64c412009-02-04 00:33:20 +00001424 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001425 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001426
1427 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001428 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001429 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001430
Chris Lattner447ff682008-03-11 03:23:40 +00001431 RetOps[0] = Chain; // Update chain.
1432
1433 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001434 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001435 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001436
1437 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001438 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001439}
1440
Evan Cheng3d2125c2010-11-30 23:55:39 +00001441bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1442 if (N->getNumValues() != 1)
1443 return false;
1444 if (!N->hasNUsesOfValue(1, 0))
1445 return false;
1446
1447 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001448 if (Copy->getOpcode() != ISD::CopyToReg &&
1449 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001450 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001451
1452 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001453 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001454 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001455 if (UI->getOpcode() != X86ISD::RET_FLAG)
1456 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001457 HasRet = true;
1458 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001459
Evan Cheng1bf891a2010-12-01 22:59:46 +00001460 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001461}
1462
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001463EVT
1464X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001465 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001466 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001467 // TODO: Is this also valid on 32-bit?
1468 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001469 ReturnMVT = MVT::i8;
1470 else
1471 ReturnMVT = MVT::i32;
1472
1473 EVT MinVT = getRegisterType(Context, ReturnMVT);
1474 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001475}
1476
Dan Gohman98ca4f22009-08-05 01:29:28 +00001477/// LowerCallResult - Lower the result values of a call into the
1478/// appropriate copies out of appropriate physical registers.
1479///
1480SDValue
1481X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001482 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001483 const SmallVectorImpl<ISD::InputArg> &Ins,
1484 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001485 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001486
Chris Lattnere32bbf62007-02-28 07:09:55 +00001487 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001488 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001489 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001490 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1491 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001492 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001493
Chris Lattner3085e152007-02-25 08:59:22 +00001494 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001495 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001496 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001497 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001498
Torok Edwin3f142c32009-02-01 18:15:56 +00001499 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001500 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001501 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001502 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001503 }
1504
Evan Cheng79fb3b42009-02-20 20:43:02 +00001505 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001506
1507 // If this is a call to a function that returns an fp value on the floating
1508 // point stack, we must guarantee the the value is popped from the stack, so
1509 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001510 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001511 // instead.
1512 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1513 // If we prefer to use the value in xmm registers, copy it out as f80 and
1514 // use a truncate to move it from fp stack reg to xmm reg.
1515 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001516 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001517 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1518 MVT::Other, MVT::Glue, Ops, 2), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001519 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));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001527 } else {
1528 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1529 CopyVT, InFlag).getValue(1);
1530 Val = Chain.getValue(0);
1531 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001532 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001533 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001534 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001535
Dan Gohman98ca4f22009-08-05 01:29:28 +00001536 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001537}
1538
1539
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001540//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001541// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001542//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001543// StdCall calling convention seems to be standard for many Windows' API
1544// routines and around. It differs from C calling convention just a little:
1545// callee should clean up the stack, not caller. Symbols should be also
1546// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001547// For info on fast calling convention see Fast Calling Convention (tail call)
1548// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001549
Dan Gohman98ca4f22009-08-05 01:29:28 +00001550/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001551/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001552static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1553 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001554 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001555
Dan Gohman98ca4f22009-08-05 01:29:28 +00001556 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001557}
1558
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001559/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001560/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001561static bool
1562ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1563 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001564 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001565
Dan Gohman98ca4f22009-08-05 01:29:28 +00001566 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001567}
1568
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001569/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1570/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001571/// the specific parameter attribute. The copy will be passed as a byval
1572/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001573static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001574CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001575 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1576 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001577 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001578
Dale Johannesendd64c412009-02-04 00:33:20 +00001579 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00001580 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001581 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001582}
1583
Chris Lattner29689432010-03-11 00:22:57 +00001584/// IsTailCallConvention - Return true if the calling convention is one that
1585/// supports tail call optimization.
1586static bool IsTailCallConvention(CallingConv::ID CC) {
1587 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1588}
1589
Evan Cheng485fafc2011-03-21 01:19:09 +00001590bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1591 if (!CI->isTailCall())
1592 return false;
1593
1594 CallSite CS(CI);
1595 CallingConv::ID CalleeCC = CS.getCallingConv();
1596 if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1597 return false;
1598
1599 return true;
1600}
1601
Evan Cheng0c439eb2010-01-27 00:07:07 +00001602/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1603/// a tailcall target by changing its ABI.
1604static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001605 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001606}
1607
Dan Gohman98ca4f22009-08-05 01:29:28 +00001608SDValue
1609X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001610 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001611 const SmallVectorImpl<ISD::InputArg> &Ins,
1612 DebugLoc dl, SelectionDAG &DAG,
1613 const CCValAssign &VA,
1614 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001615 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001616 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001617 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001618 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001619 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001620 EVT ValVT;
1621
1622 // If value is passed by pointer we have address passed instead of the value
1623 // itself.
1624 if (VA.getLocInfo() == CCValAssign::Indirect)
1625 ValVT = VA.getLocVT();
1626 else
1627 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001628
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001629 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001630 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001631 // In case of tail call optimization mark all arguments mutable. Since they
1632 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001633 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00001634 unsigned Bytes = Flags.getByValSize();
1635 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1636 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001637 return DAG.getFrameIndex(FI, getPointerTy());
1638 } else {
1639 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001640 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001641 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1642 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001643 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001644 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001645 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001646}
1647
Dan Gohman475871a2008-07-27 21:46:04 +00001648SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001649X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001650 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001651 bool isVarArg,
1652 const SmallVectorImpl<ISD::InputArg> &Ins,
1653 DebugLoc dl,
1654 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001655 SmallVectorImpl<SDValue> &InVals)
1656 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001657 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001658 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001659
Gordon Henriksen86737662008-01-05 16:56:59 +00001660 const Function* Fn = MF.getFunction();
1661 if (Fn->hasExternalLinkage() &&
1662 Subtarget->isTargetCygMing() &&
1663 Fn->getName() == "main")
1664 FuncInfo->setForceFramePointer(true);
1665
Evan Cheng1bc78042006-04-26 01:20:17 +00001666 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001667 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001668 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001669
Chris Lattner29689432010-03-11 00:22:57 +00001670 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1671 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001672
Chris Lattner638402b2007-02-28 07:00:42 +00001673 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001674 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001675 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001676 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001677
1678 // Allocate shadow area for Win64
1679 if (IsWin64) {
1680 CCInfo.AllocateStack(32, 8);
1681 }
1682
Duncan Sands45907662010-10-31 13:21:44 +00001683 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001684
Chris Lattnerf39f7712007-02-28 05:46:49 +00001685 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001686 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001687 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1688 CCValAssign &VA = ArgLocs[i];
1689 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1690 // places.
1691 assert(VA.getValNo() != LastVal &&
1692 "Don't support value assigned to multiple locs yet");
1693 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001694
Chris Lattnerf39f7712007-02-28 05:46:49 +00001695 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001696 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001697 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001698 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001699 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001700 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001701 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001702 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001703 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001704 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001705 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001706 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1707 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001708 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001709 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001710 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001711 RC = X86::VR64RegisterClass;
1712 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001713 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001714
Devang Patel68e6bee2011-02-21 23:21:26 +00001715 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001716 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001717
Chris Lattnerf39f7712007-02-28 05:46:49 +00001718 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1719 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1720 // right size.
1721 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001722 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001723 DAG.getValueType(VA.getValVT()));
1724 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001725 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001726 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001727 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001728 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001729
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001730 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001731 // Handle MMX values passed in XMM regs.
1732 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001733 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1734 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001735 } else
1736 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001737 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001738 } else {
1739 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001740 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001741 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001742
1743 // If value is passed via pointer - do a load.
1744 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001745 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1746 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001747
Dan Gohman98ca4f22009-08-05 01:29:28 +00001748 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001749 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001750
Dan Gohman61a92132008-04-21 23:59:07 +00001751 // The x86-64 ABI for returning structs by value requires that we copy
1752 // the sret argument into %rax for the return. Save the argument into
1753 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001754 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001755 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1756 unsigned Reg = FuncInfo->getSRetReturnReg();
1757 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001758 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001759 FuncInfo->setSRetReturnReg(Reg);
1760 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001761 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001762 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001763 }
1764
Chris Lattnerf39f7712007-02-28 05:46:49 +00001765 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001766 // Align stack specially for tail calls.
1767 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001768 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001769
Evan Cheng1bc78042006-04-26 01:20:17 +00001770 // If the function takes variable number of arguments, make a frame index for
1771 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001772 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001773 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1774 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001775 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001776 }
1777 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001778 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1779
1780 // FIXME: We should really autogenerate these arrays
1781 static const unsigned GPR64ArgRegsWin64[] = {
1782 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001783 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001784 static const unsigned GPR64ArgRegs64Bit[] = {
1785 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1786 };
1787 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001788 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1789 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1790 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001791 const unsigned *GPR64ArgRegs;
1792 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001793
1794 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001795 // The XMM registers which might contain var arg parameters are shadowed
1796 // in their paired GPR. So we only need to save the GPR to their home
1797 // slots.
1798 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001799 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001800 } else {
1801 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1802 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001803
1804 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001805 }
1806 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1807 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001808
Devang Patel578efa92009-06-05 21:57:13 +00001809 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001810 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001811 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001812 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001813 "SSE register cannot be used when SSE is disabled!");
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001814 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001815 // Kernel mode asks for SSE to be disabled, so don't push them
1816 // on the stack.
1817 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001818
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001819 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001820 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001821 // Get to the caller-allocated home save location. Add 8 to account
1822 // for the return address.
1823 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001824 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001825 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001826 // Fixup to set vararg frame on shadow area (4 x i64).
1827 if (NumIntRegs < 4)
1828 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001829 } else {
1830 // For X86-64, if there are vararg parameters that are passed via
1831 // registers, then we must store them to their spots on the stack so they
1832 // may be loaded by deferencing the result of va_next.
1833 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1834 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1835 FuncInfo->setRegSaveFrameIndex(
1836 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001837 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001838 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001839
Gordon Henriksen86737662008-01-05 16:56:59 +00001840 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001841 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001842 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1843 getPointerTy());
1844 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001845 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001846 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1847 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001848 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001849 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001850 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001851 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001852 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001853 MachinePointerInfo::getFixedStack(
1854 FuncInfo->getRegSaveFrameIndex(), Offset),
1855 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001856 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001857 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001858 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001859
Dan Gohmanface41a2009-08-16 21:24:25 +00001860 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1861 // Now store the XMM (fp + vector) parameter registers.
1862 SmallVector<SDValue, 11> SaveXMMOps;
1863 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001864
Devang Patel68e6bee2011-02-21 23:21:26 +00001865 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001866 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1867 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001868
Dan Gohman1e93df62010-04-17 14:41:14 +00001869 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1870 FuncInfo->getRegSaveFrameIndex()));
1871 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1872 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001873
Dan Gohmanface41a2009-08-16 21:24:25 +00001874 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001875 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001876 X86::VR128RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001877 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1878 SaveXMMOps.push_back(Val);
1879 }
1880 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1881 MVT::Other,
1882 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001883 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001884
1885 if (!MemOps.empty())
1886 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1887 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001888 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001889 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001890
Gordon Henriksen86737662008-01-05 16:56:59 +00001891 // Some CCs need callee pop.
Evan Chengef41ff62011-06-23 17:54:54 +00001892 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001893 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001894 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001895 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001896 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001897 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001898 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001899 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001900
Gordon Henriksen86737662008-01-05 16:56:59 +00001901 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001902 // RegSaveFrameIndex is X86-64 only.
1903 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001904 if (CallConv == CallingConv::X86_FastCall ||
1905 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001906 // fastcc functions can't have varargs.
1907 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001908 }
Evan Cheng25caf632006-05-23 21:06:34 +00001909
Dan Gohman98ca4f22009-08-05 01:29:28 +00001910 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001911}
1912
Dan Gohman475871a2008-07-27 21:46:04 +00001913SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001914X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1915 SDValue StackPtr, SDValue Arg,
1916 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001917 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001918 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001919 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001920 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001921 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001922 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001923 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001924
1925 return DAG.getStore(Chain, dl, Arg, PtrOff,
1926 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001927 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001928}
1929
Bill Wendling64e87322009-01-16 19:25:27 +00001930/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001931/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001932SDValue
1933X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001934 SDValue &OutRetAddr, SDValue Chain,
1935 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001936 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001937 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001938 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001939 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001940
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001941 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001942 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1943 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001944 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001945}
1946
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001947/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001948/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001949static SDValue
1950EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001951 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001952 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001953 // Store the return address to the appropriate stack slot.
1954 if (!FPDiff) return Chain;
1955 // Calculate the new stack slot for the return address.
1956 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001957 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001958 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001959 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001960 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001961 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001962 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001963 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001964 return Chain;
1965}
1966
Dan Gohman98ca4f22009-08-05 01:29:28 +00001967SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001968X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001969 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001970 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001971 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001972 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001973 const SmallVectorImpl<ISD::InputArg> &Ins,
1974 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001975 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001976 MachineFunction &MF = DAG.getMachineFunction();
1977 bool Is64Bit = Subtarget->is64Bit();
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00001978 bool IsWin64 = Subtarget->isTargetWin64();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001979 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001980 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001981
Evan Cheng5f941932010-02-05 02:21:12 +00001982 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001983 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001984 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1985 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001986 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001987
1988 // Sibcalls are automatically detected tailcalls which do not require
1989 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001990 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001991 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001992
1993 if (isTailCall)
1994 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001995 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001996
Chris Lattner29689432010-03-11 00:22:57 +00001997 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1998 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001999
Chris Lattner638402b2007-02-28 07:00:42 +00002000 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002001 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002002 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002003 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002004
2005 // Allocate shadow area for Win64
2006 if (IsWin64) {
2007 CCInfo.AllocateStack(32, 8);
2008 }
2009
Duncan Sands45907662010-10-31 13:21:44 +00002010 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002011
Chris Lattner423c5f42007-02-28 05:31:48 +00002012 // Get a count of how many bytes are to be pushed on the stack.
2013 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002014 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002015 // This is a sibcall. The memory operands are available in caller's
2016 // own caller's stack.
2017 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00002018 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002019 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002020
Gordon Henriksen86737662008-01-05 16:56:59 +00002021 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002022 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002023 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00002024 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00002025 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
2026 FPDiff = NumBytesCallerPushed - NumBytes;
2027
2028 // Set the delta of movement of the returnaddr stackslot.
2029 // But only set if delta is greater than previous delta.
2030 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2031 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2032 }
2033
Evan Chengf22f9b32010-02-06 03:28:46 +00002034 if (!IsSibcall)
2035 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002036
Dan Gohman475871a2008-07-27 21:46:04 +00002037 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002038 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002039 if (isTailCall && FPDiff)
2040 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2041 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002042
Dan Gohman475871a2008-07-27 21:46:04 +00002043 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2044 SmallVector<SDValue, 8> MemOpChains;
2045 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002046
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002047 // Walk the register/memloc assignments, inserting copies/loads. In the case
2048 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00002049 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2050 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002051 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002052 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002053 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002054 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002055
Chris Lattner423c5f42007-02-28 05:31:48 +00002056 // Promote the value if needed.
2057 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002058 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002059 case CCValAssign::Full: break;
2060 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002061 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002062 break;
2063 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002064 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002065 break;
2066 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002067 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2068 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002069 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002070 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2071 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002072 } else
2073 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2074 break;
2075 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002076 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002077 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002078 case CCValAssign::Indirect: {
2079 // Store the argument.
2080 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002081 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002082 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002083 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002084 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002085 Arg = SpillSlot;
2086 break;
2087 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002088 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002089
Chris Lattner423c5f42007-02-28 05:31:48 +00002090 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002091 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2092 if (isVarArg && IsWin64) {
2093 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2094 // shadow reg if callee is a varargs function.
2095 unsigned ShadowReg = 0;
2096 switch (VA.getLocReg()) {
2097 case X86::XMM0: ShadowReg = X86::RCX; break;
2098 case X86::XMM1: ShadowReg = X86::RDX; break;
2099 case X86::XMM2: ShadowReg = X86::R8; break;
2100 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002101 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002102 if (ShadowReg)
2103 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002104 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002105 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002106 assert(VA.isMemLoc());
2107 if (StackPtr.getNode() == 0)
2108 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2109 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2110 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002111 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002112 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002113
Evan Cheng32fe1032006-05-25 00:59:30 +00002114 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002115 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002116 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002117
Evan Cheng347d5f72006-04-28 21:29:37 +00002118 // Build a sequence of copy-to-reg nodes chained together with token chain
2119 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002120 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002121 // Tail call byval lowering might overwrite argument registers so in case of
2122 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002123 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002124 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002125 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002126 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002127 InFlag = Chain.getValue(1);
2128 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002129
Chris Lattner88e1fd52009-07-09 04:24:46 +00002130 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002131 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2132 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002133 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002134 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2135 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002136 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002137 InFlag);
2138 InFlag = Chain.getValue(1);
2139 } else {
2140 // If we are tail calling and generating PIC/GOT style code load the
2141 // address of the callee into ECX. The value in ecx is used as target of
2142 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2143 // for tail calls on PIC/GOT architectures. Normally we would just put the
2144 // address of GOT into ebx and then call target@PLT. But for tail calls
2145 // ebx would be restored (since ebx is callee saved) before jumping to the
2146 // target@PLT.
2147
2148 // Note: The actual moving to ECX is done further down.
2149 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2150 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2151 !G->getGlobal()->hasProtectedVisibility())
2152 Callee = LowerGlobalAddress(Callee, DAG);
2153 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002154 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002155 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002156 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002157
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002158 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002159 // From AMD64 ABI document:
2160 // For calls that may call functions that use varargs or stdargs
2161 // (prototype-less calls or calls to functions containing ellipsis (...) in
2162 // the declaration) %al is used as hidden argument to specify the number
2163 // of SSE registers used. The contents of %al do not need to match exactly
2164 // the number of registers, but must be an ubound on the number of SSE
2165 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002166
Gordon Henriksen86737662008-01-05 16:56:59 +00002167 // Count the number of XMM registers allocated.
2168 static const unsigned XMMArgRegs[] = {
2169 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2170 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2171 };
2172 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002173 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002174 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002175
Dale Johannesendd64c412009-02-04 00:33:20 +00002176 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002177 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002178 InFlag = Chain.getValue(1);
2179 }
2180
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002181
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002182 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002183 if (isTailCall) {
2184 // Force all the incoming stack arguments to be loaded from the stack
2185 // before any new outgoing arguments are stored to the stack, because the
2186 // outgoing stack slots may alias the incoming argument stack slots, and
2187 // the alias isn't otherwise explicit. This is slightly more conservative
2188 // than necessary, because it means that each store effectively depends
2189 // on every argument instead of just those arguments it would clobber.
2190 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2191
Dan Gohman475871a2008-07-27 21:46:04 +00002192 SmallVector<SDValue, 8> MemOpChains2;
2193 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002194 int FI = 0;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002195 // Do not flag preceding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002196 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002197 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002198 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2199 CCValAssign &VA = ArgLocs[i];
2200 if (VA.isRegLoc())
2201 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002202 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002203 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002204 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002205 // Create frame index.
2206 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002207 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002208 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002209 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002210
Duncan Sands276dcbd2008-03-21 09:14:45 +00002211 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002212 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002213 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002214 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002215 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002216 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002217 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002218
Dan Gohman98ca4f22009-08-05 01:29:28 +00002219 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2220 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002221 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002222 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002223 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002224 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002225 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002226 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002227 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002228 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002229 }
2230 }
2231
2232 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002233 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002234 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002235
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002236 // Copy arguments to their registers.
2237 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002238 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002239 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002240 InFlag = Chain.getValue(1);
2241 }
Dan Gohman475871a2008-07-27 21:46:04 +00002242 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002243
Gordon Henriksen86737662008-01-05 16:56:59 +00002244 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002245 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002246 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002247 }
2248
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002249 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2250 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2251 // In the 64-bit large code model, we have to make all calls
2252 // through a register, since the call instruction's 32-bit
2253 // pc-relative offset may not be large enough to hold the whole
2254 // address.
2255 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002256 // If the callee is a GlobalAddress node (quite common, every direct call
2257 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2258 // it.
2259
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002260 // We should use extra load for direct calls to dllimported functions in
2261 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002262 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002263 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002264 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002265 bool ExtraLoad = false;
2266 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002267
Chris Lattner48a7d022009-07-09 05:02:21 +00002268 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2269 // external symbols most go through the PLT in PIC mode. If the symbol
2270 // has hidden or protected visibility, or if it is static or local, then
2271 // we don't need to use the PLT - we can directly call it.
2272 if (Subtarget->isTargetELF() &&
2273 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002274 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002275 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002276 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002277 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002278 (!Subtarget->getTargetTriple().isMacOSX() ||
2279 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002280 // PC-relative references to external symbols should go through $stub,
2281 // unless we're building with the leopard linker or later, which
2282 // automatically synthesizes these stubs.
2283 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002284 } else if (Subtarget->isPICStyleRIPRel() &&
2285 isa<Function>(GV) &&
2286 cast<Function>(GV)->hasFnAttr(Attribute::NonLazyBind)) {
2287 // If the function is marked as non-lazy, generate an indirect call
2288 // which loads from the GOT directly. This avoids runtime overhead
2289 // at the cost of eager binding (and one extra byte of encoding).
2290 OpFlags = X86II::MO_GOTPCREL;
2291 WrapperKind = X86ISD::WrapperRIP;
2292 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002293 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002294
Devang Patel0d881da2010-07-06 22:08:15 +00002295 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002296 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002297
2298 // Add a wrapper if needed.
2299 if (WrapperKind != ISD::DELETED_NODE)
2300 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2301 // Add extra indirection if needed.
2302 if (ExtraLoad)
2303 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2304 MachinePointerInfo::getGOT(),
2305 false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002306 }
Bill Wendling056292f2008-09-16 21:48:12 +00002307 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002308 unsigned char OpFlags = 0;
2309
Evan Cheng1bf891a2010-12-01 22:59:46 +00002310 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2311 // external symbols should go through the PLT.
2312 if (Subtarget->isTargetELF() &&
2313 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2314 OpFlags = X86II::MO_PLT;
2315 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002316 (!Subtarget->getTargetTriple().isMacOSX() ||
2317 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002318 // PC-relative references to external symbols should go through $stub,
2319 // unless we're building with the leopard linker or later, which
2320 // automatically synthesizes these stubs.
2321 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002322 }
Eric Christopherfd179292009-08-27 18:07:15 +00002323
Chris Lattner48a7d022009-07-09 05:02:21 +00002324 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2325 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002326 }
2327
Chris Lattnerd96d0722007-02-25 06:40:16 +00002328 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002329 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002330 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002331
Evan Chengf22f9b32010-02-06 03:28:46 +00002332 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002333 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2334 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002335 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002336 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002337
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002338 Ops.push_back(Chain);
2339 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002340
Dan Gohman98ca4f22009-08-05 01:29:28 +00002341 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002342 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002343
Gordon Henriksen86737662008-01-05 16:56:59 +00002344 // Add argument registers to the end of the list so that they are known live
2345 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002346 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2347 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2348 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002349
Evan Cheng586ccac2008-03-18 23:36:35 +00002350 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002351 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002352 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2353
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002354 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002355 if (Is64Bit && isVarArg && !IsWin64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002356 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002357
Gabor Greifba36cb52008-08-28 21:40:38 +00002358 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002359 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002360
Dan Gohman98ca4f22009-08-05 01:29:28 +00002361 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002362 // We used to do:
2363 //// If this is the first return lowered for this function, add the regs
2364 //// to the liveout set for the function.
2365 // This isn't right, although it's probably harmless on x86; liveouts
2366 // should be computed from returns not tail calls. Consider a void
2367 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002368 return DAG.getNode(X86ISD::TC_RETURN, dl,
2369 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002370 }
2371
Dale Johannesenace16102009-02-03 19:33:06 +00002372 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002373 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002374
Chris Lattner2d297092006-05-23 18:50:38 +00002375 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002376 unsigned NumBytesForCalleeToPush;
Evan Chengef41ff62011-06-23 17:54:54 +00002377 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002378 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002379 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002380 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002381 // pops the hidden struct pointer, so we have to push it back.
2382 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002383 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002384 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002385 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002386
Gordon Henriksenae636f82008-01-03 16:47:34 +00002387 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002388 if (!IsSibcall) {
2389 Chain = DAG.getCALLSEQ_END(Chain,
2390 DAG.getIntPtrConstant(NumBytes, true),
2391 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2392 true),
2393 InFlag);
2394 InFlag = Chain.getValue(1);
2395 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002396
Chris Lattner3085e152007-02-25 08:59:22 +00002397 // Handle result values, copying them out of physregs into vregs that we
2398 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002399 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2400 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002401}
2402
Evan Cheng25ab6902006-09-08 06:48:29 +00002403
2404//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002405// Fast Calling Convention (tail call) implementation
2406//===----------------------------------------------------------------------===//
2407
2408// Like std call, callee cleans arguments, convention except that ECX is
2409// reserved for storing the tail called function address. Only 2 registers are
2410// free for argument passing (inreg). Tail call optimization is performed
2411// provided:
2412// * tailcallopt is enabled
2413// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002414// On X86_64 architecture with GOT-style position independent code only local
2415// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002416// To keep the stack aligned according to platform abi the function
2417// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2418// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002419// If a tail called function callee has more arguments than the caller the
2420// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002421// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002422// original REtADDR, but before the saved framepointer or the spilled registers
2423// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2424// stack layout:
2425// arg1
2426// arg2
2427// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002428// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002429// move area ]
2430// (possible EBP)
2431// ESI
2432// EDI
2433// local1 ..
2434
2435/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2436/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002437unsigned
2438X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2439 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002440 MachineFunction &MF = DAG.getMachineFunction();
2441 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002442 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002443 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002444 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002445 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002446 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002447 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2448 // Number smaller than 12 so just add the difference.
2449 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2450 } else {
2451 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002452 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002453 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002454 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002455 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002456}
2457
Evan Cheng5f941932010-02-05 02:21:12 +00002458/// MatchingStackOffset - Return true if the given stack call argument is
2459/// already available in the same position (relatively) of the caller's
2460/// incoming argument stack.
2461static
2462bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2463 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2464 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002465 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2466 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002467 if (Arg.getOpcode() == ISD::CopyFromReg) {
2468 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002469 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002470 return false;
2471 MachineInstr *Def = MRI->getVRegDef(VR);
2472 if (!Def)
2473 return false;
2474 if (!Flags.isByVal()) {
2475 if (!TII->isLoadFromStackSlot(Def, FI))
2476 return false;
2477 } else {
2478 unsigned Opcode = Def->getOpcode();
2479 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2480 Def->getOperand(1).isFI()) {
2481 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002482 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002483 } else
2484 return false;
2485 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002486 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2487 if (Flags.isByVal())
2488 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002489 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002490 // define @foo(%struct.X* %A) {
2491 // tail call @bar(%struct.X* byval %A)
2492 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002493 return false;
2494 SDValue Ptr = Ld->getBasePtr();
2495 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2496 if (!FINode)
2497 return false;
2498 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002499 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00002500 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002501 FI = FINode->getIndex();
2502 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00002503 } else
2504 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002505
Evan Cheng4cae1332010-03-05 08:38:04 +00002506 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002507 if (!MFI->isFixedObjectIndex(FI))
2508 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002509 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002510}
2511
Dan Gohman98ca4f22009-08-05 01:29:28 +00002512/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2513/// for tail call optimization. Targets which want to do tail call
2514/// optimization should implement this function.
2515bool
2516X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002517 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002518 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002519 bool isCalleeStructRet,
2520 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002521 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002522 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002523 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002524 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002525 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002526 CalleeCC != CallingConv::C)
2527 return false;
2528
Evan Cheng7096ae42010-01-29 06:45:59 +00002529 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002530 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002531 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002532 CallingConv::ID CallerCC = CallerF->getCallingConv();
2533 bool CCMatch = CallerCC == CalleeCC;
2534
Dan Gohman1797ed52010-02-08 20:27:50 +00002535 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002536 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002537 return true;
2538 return false;
2539 }
2540
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002541 // Look for obvious safe cases to perform tail call optimization that do not
2542 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002543
Evan Cheng2c12cb42010-03-26 16:26:03 +00002544 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2545 // emit a special epilogue.
2546 if (RegInfo->needsStackRealignment(MF))
2547 return false;
2548
Evan Chenga375d472010-03-15 18:54:48 +00002549 // Also avoid sibcall optimization if either caller or callee uses struct
2550 // return semantics.
2551 if (isCalleeStructRet || isCallerStructRet)
2552 return false;
2553
Chad Rosier2416da32011-06-24 21:15:36 +00002554 // An stdcall caller is expected to clean up its arguments; the callee
2555 // isn't going to do that.
2556 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2557 return false;
2558
Chad Rosier871f6642011-05-18 19:59:50 +00002559 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00002560 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00002561 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00002562
2563 // Optimizing for varargs on Win64 is unlikely to be safe without
2564 // additional testing.
2565 if (Subtarget->isTargetWin64())
2566 return false;
2567
Chad Rosier871f6642011-05-18 19:59:50 +00002568 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002569 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2570 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00002571
Chad Rosier871f6642011-05-18 19:59:50 +00002572 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2573 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2574 if (!ArgLocs[i].isRegLoc())
2575 return false;
2576 }
2577
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002578 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2579 // Therefore if it's not used by the call it is not safe to optimize this into
2580 // a sibcall.
2581 bool Unused = false;
2582 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2583 if (!Ins[i].Used) {
2584 Unused = true;
2585 break;
2586 }
2587 }
2588 if (Unused) {
2589 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002590 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
2591 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002592 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002593 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002594 CCValAssign &VA = RVLocs[i];
2595 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2596 return false;
2597 }
2598 }
2599
Evan Cheng13617962010-04-30 01:12:32 +00002600 // If the calling conventions do not match, then we'd better make sure the
2601 // results are returned in the same way as what the caller expects.
2602 if (!CCMatch) {
2603 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00002604 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2605 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002606 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2607
2608 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00002609 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2610 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002611 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2612
2613 if (RVLocs1.size() != RVLocs2.size())
2614 return false;
2615 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2616 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2617 return false;
2618 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2619 return false;
2620 if (RVLocs1[i].isRegLoc()) {
2621 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2622 return false;
2623 } else {
2624 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2625 return false;
2626 }
2627 }
2628 }
2629
Evan Chenga6bff982010-01-30 01:22:00 +00002630 // If the callee takes no arguments then go on to check the results of the
2631 // call.
2632 if (!Outs.empty()) {
2633 // Check if stack adjustment is needed. For now, do not do this if any
2634 // argument is passed on the stack.
2635 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002636 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2637 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002638
2639 // Allocate shadow area for Win64
2640 if (Subtarget->isTargetWin64()) {
2641 CCInfo.AllocateStack(32, 8);
2642 }
2643
Duncan Sands45907662010-10-31 13:21:44 +00002644 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00002645 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00002646 MachineFunction &MF = DAG.getMachineFunction();
2647 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2648 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00002649
2650 // Check if the arguments are already laid out in the right way as
2651 // the caller's fixed stack objects.
2652 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002653 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2654 const X86InstrInfo *TII =
2655 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002656 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2657 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002658 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002659 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002660 if (VA.getLocInfo() == CCValAssign::Indirect)
2661 return false;
2662 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002663 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2664 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002665 return false;
2666 }
2667 }
2668 }
Evan Cheng9c044672010-05-29 01:35:22 +00002669
2670 // If the tailcall address may be in a register, then make sure it's
2671 // possible to register allocate for it. In 32-bit, the call address can
2672 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002673 // callee-saved registers are restored. These happen to be the same
2674 // registers used to pass 'inreg' arguments so watch out for those.
2675 if (!Subtarget->is64Bit() &&
2676 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002677 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002678 unsigned NumInRegs = 0;
2679 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2680 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002681 if (!VA.isRegLoc())
2682 continue;
2683 unsigned Reg = VA.getLocReg();
2684 switch (Reg) {
2685 default: break;
2686 case X86::EAX: case X86::EDX: case X86::ECX:
2687 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002688 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002689 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002690 }
2691 }
2692 }
Evan Chenga6bff982010-01-30 01:22:00 +00002693 }
Evan Chengb1712452010-01-27 06:25:16 +00002694
Evan Cheng86809cc2010-02-03 03:28:02 +00002695 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002696}
2697
Dan Gohman3df24e62008-09-03 23:12:08 +00002698FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002699X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2700 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002701}
2702
2703
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002704//===----------------------------------------------------------------------===//
2705// Other Lowering Hooks
2706//===----------------------------------------------------------------------===//
2707
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002708static bool MayFoldLoad(SDValue Op) {
2709 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2710}
2711
2712static bool MayFoldIntoStore(SDValue Op) {
2713 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2714}
2715
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002716static bool isTargetShuffle(unsigned Opcode) {
2717 switch(Opcode) {
2718 default: return false;
2719 case X86ISD::PSHUFD:
2720 case X86ISD::PSHUFHW:
2721 case X86ISD::PSHUFLW:
2722 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002723 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002724 case X86ISD::SHUFPS:
2725 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002726 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002727 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002728 case X86ISD::MOVLPS:
2729 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002730 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002731 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002732 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002733 case X86ISD::MOVSS:
2734 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002735 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002736 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002737 case X86ISD::VUNPCKLPSY:
2738 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002739 case X86ISD::PUNPCKLWD:
2740 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002741 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002742 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002743 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002744 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002745 case X86ISD::VUNPCKHPSY:
2746 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002747 case X86ISD::PUNPCKHWD:
2748 case X86ISD::PUNPCKHBW:
2749 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002750 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002751 case X86ISD::VPERMILPS:
2752 case X86ISD::VPERMILPSY:
2753 case X86ISD::VPERMILPD:
2754 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002755 return true;
2756 }
2757 return false;
2758}
2759
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002760static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002761 SDValue V1, SelectionDAG &DAG) {
2762 switch(Opc) {
2763 default: llvm_unreachable("Unknown x86 shuffle node");
2764 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002765 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002766 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002767 return DAG.getNode(Opc, dl, VT, V1);
2768 }
2769
2770 return SDValue();
2771}
2772
2773static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002774 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002775 switch(Opc) {
2776 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002777 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002778 case X86ISD::PSHUFHW:
2779 case X86ISD::PSHUFLW:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002780 case X86ISD::VPERMILPS:
2781 case X86ISD::VPERMILPSY:
2782 case X86ISD::VPERMILPD:
2783 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002784 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2785 }
2786
2787 return SDValue();
2788}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002789
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002790static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2791 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2792 switch(Opc) {
2793 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002794 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002795 case X86ISD::SHUFPD:
2796 case X86ISD::SHUFPS:
2797 return DAG.getNode(Opc, dl, VT, V1, V2,
2798 DAG.getConstant(TargetMask, MVT::i8));
2799 }
2800 return SDValue();
2801}
2802
2803static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2804 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2805 switch(Opc) {
2806 default: llvm_unreachable("Unknown x86 shuffle node");
2807 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002808 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002809 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002810 case X86ISD::MOVLPS:
2811 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002812 case X86ISD::MOVSS:
2813 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002814 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002815 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002816 case X86ISD::VUNPCKLPSY:
2817 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002818 case X86ISD::PUNPCKLWD:
2819 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002820 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002821 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002822 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002823 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002824 case X86ISD::VUNPCKHPSY:
2825 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002826 case X86ISD::PUNPCKHWD:
2827 case X86ISD::PUNPCKHBW:
2828 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002829 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002830 return DAG.getNode(Opc, dl, VT, V1, V2);
2831 }
2832 return SDValue();
2833}
2834
Dan Gohmand858e902010-04-17 15:26:15 +00002835SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002836 MachineFunction &MF = DAG.getMachineFunction();
2837 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2838 int ReturnAddrIndex = FuncInfo->getRAIndex();
2839
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002840 if (ReturnAddrIndex == 0) {
2841 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002842 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002843 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002844 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002845 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002846 }
2847
Evan Cheng25ab6902006-09-08 06:48:29 +00002848 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002849}
2850
2851
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002852bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2853 bool hasSymbolicDisplacement) {
2854 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002855 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002856 return false;
2857
2858 // If we don't have a symbolic displacement - we don't have any extra
2859 // restrictions.
2860 if (!hasSymbolicDisplacement)
2861 return true;
2862
2863 // FIXME: Some tweaks might be needed for medium code model.
2864 if (M != CodeModel::Small && M != CodeModel::Kernel)
2865 return false;
2866
2867 // For small code model we assume that latest object is 16MB before end of 31
2868 // bits boundary. We may also accept pretty large negative constants knowing
2869 // that all objects are in the positive half of address space.
2870 if (M == CodeModel::Small && Offset < 16*1024*1024)
2871 return true;
2872
2873 // For kernel code model we know that all object resist in the negative half
2874 // of 32bits address space. We may not accept negative offsets, since they may
2875 // be just off and we may accept pretty large positive ones.
2876 if (M == CodeModel::Kernel && Offset > 0)
2877 return true;
2878
2879 return false;
2880}
2881
Evan Chengef41ff62011-06-23 17:54:54 +00002882/// isCalleePop - Determines whether the callee is required to pop its
2883/// own arguments. Callee pop is necessary to support tail calls.
2884bool X86::isCalleePop(CallingConv::ID CallingConv,
2885 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
2886 if (IsVarArg)
2887 return false;
2888
2889 switch (CallingConv) {
2890 default:
2891 return false;
2892 case CallingConv::X86_StdCall:
2893 return !is64Bit;
2894 case CallingConv::X86_FastCall:
2895 return !is64Bit;
2896 case CallingConv::X86_ThisCall:
2897 return !is64Bit;
2898 case CallingConv::Fast:
2899 return TailCallOpt;
2900 case CallingConv::GHC:
2901 return TailCallOpt;
2902 }
2903}
2904
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002905/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2906/// specific condition code, returning the condition code and the LHS/RHS of the
2907/// comparison to make.
2908static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2909 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002910 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002911 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2912 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2913 // X > -1 -> X == 0, jump !sign.
2914 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002915 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002916 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2917 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002918 return X86::COND_S;
Andrew Trickf6c39412011-03-23 23:11:02 +00002919 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002920 // X < 1 -> X <= 0
2921 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002922 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002923 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002924 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002925
Evan Chengd9558e02006-01-06 00:43:03 +00002926 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002927 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002928 case ISD::SETEQ: return X86::COND_E;
2929 case ISD::SETGT: return X86::COND_G;
2930 case ISD::SETGE: return X86::COND_GE;
2931 case ISD::SETLT: return X86::COND_L;
2932 case ISD::SETLE: return X86::COND_LE;
2933 case ISD::SETNE: return X86::COND_NE;
2934 case ISD::SETULT: return X86::COND_B;
2935 case ISD::SETUGT: return X86::COND_A;
2936 case ISD::SETULE: return X86::COND_BE;
2937 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002938 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002939 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002940
Chris Lattner4c78e022008-12-23 23:42:27 +00002941 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002942
Chris Lattner4c78e022008-12-23 23:42:27 +00002943 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00002944 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
2945 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00002946 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2947 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002948 }
2949
Chris Lattner4c78e022008-12-23 23:42:27 +00002950 switch (SetCCOpcode) {
2951 default: break;
2952 case ISD::SETOLT:
2953 case ISD::SETOLE:
2954 case ISD::SETUGT:
2955 case ISD::SETUGE:
2956 std::swap(LHS, RHS);
2957 break;
2958 }
2959
2960 // On a floating point condition, the flags are set as follows:
2961 // ZF PF CF op
2962 // 0 | 0 | 0 | X > Y
2963 // 0 | 0 | 1 | X < Y
2964 // 1 | 0 | 0 | X == Y
2965 // 1 | 1 | 1 | unordered
2966 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002967 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002968 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002969 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002970 case ISD::SETOLT: // flipped
2971 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002972 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002973 case ISD::SETOLE: // flipped
2974 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002975 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002976 case ISD::SETUGT: // flipped
2977 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002978 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002979 case ISD::SETUGE: // flipped
2980 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002981 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002982 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002983 case ISD::SETNE: return X86::COND_NE;
2984 case ISD::SETUO: return X86::COND_P;
2985 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002986 case ISD::SETOEQ:
2987 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002988 }
Evan Chengd9558e02006-01-06 00:43:03 +00002989}
2990
Evan Cheng4a460802006-01-11 00:33:36 +00002991/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2992/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002993/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002994static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002995 switch (X86CC) {
2996 default:
2997 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002998 case X86::COND_B:
2999 case X86::COND_BE:
3000 case X86::COND_E:
3001 case X86::COND_P:
3002 case X86::COND_A:
3003 case X86::COND_AE:
3004 case X86::COND_NE:
3005 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003006 return true;
3007 }
3008}
3009
Evan Chengeb2f9692009-10-27 19:56:55 +00003010/// isFPImmLegal - Returns true if the target can instruction select the
3011/// specified FP immediate natively. If false, the legalizer will
3012/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003013bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003014 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3015 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3016 return true;
3017 }
3018 return false;
3019}
3020
Nate Begeman9008ca62009-04-27 18:41:29 +00003021/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3022/// the specified range (L, H].
3023static bool isUndefOrInRange(int Val, int Low, int Hi) {
3024 return (Val < 0) || (Val >= Low && Val < Hi);
3025}
3026
3027/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3028/// specified value.
3029static bool isUndefOrEqual(int Val, int CmpVal) {
3030 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003031 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00003032 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00003033}
3034
Nate Begeman9008ca62009-04-27 18:41:29 +00003035/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3036/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3037/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00003038static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003039 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003040 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003041 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003042 return (Mask[0] < 2 && Mask[1] < 2);
3043 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003044}
3045
Nate Begeman9008ca62009-04-27 18:41:29 +00003046bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003047 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003048 N->getMask(M);
3049 return ::isPSHUFDMask(M, N->getValueType(0));
3050}
Evan Cheng0188ecb2006-03-22 18:59:22 +00003051
Nate Begeman9008ca62009-04-27 18:41:29 +00003052/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3053/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00003054static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003055 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00003056 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003057
Nate Begeman9008ca62009-04-27 18:41:29 +00003058 // Lower quadword copied in order or undef.
3059 for (int i = 0; i != 4; ++i)
3060 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00003061 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003062
Evan Cheng506d3df2006-03-29 23:07:14 +00003063 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003064 for (int i = 4; i != 8; ++i)
3065 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00003066 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003067
Evan Cheng506d3df2006-03-29 23:07:14 +00003068 return true;
3069}
3070
Nate Begeman9008ca62009-04-27 18:41:29 +00003071bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003072 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003073 N->getMask(M);
3074 return ::isPSHUFHWMask(M, N->getValueType(0));
3075}
Evan Cheng506d3df2006-03-29 23:07:14 +00003076
Nate Begeman9008ca62009-04-27 18:41:29 +00003077/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3078/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00003079static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003080 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00003081 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003082
Rafael Espindola15684b22009-04-24 12:40:33 +00003083 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00003084 for (int i = 4; i != 8; ++i)
3085 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00003086 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003087
Rafael Espindola15684b22009-04-24 12:40:33 +00003088 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003089 for (int i = 0; i != 4; ++i)
3090 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00003091 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003092
Rafael Espindola15684b22009-04-24 12:40:33 +00003093 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003094}
3095
Nate Begeman9008ca62009-04-27 18:41:29 +00003096bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003097 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003098 N->getMask(M);
3099 return ::isPSHUFLWMask(M, N->getValueType(0));
3100}
3101
Nate Begemana09008b2009-10-19 02:17:23 +00003102/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3103/// is suitable for input to PALIGNR.
3104static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
3105 bool hasSSSE3) {
3106 int i, e = VT.getVectorNumElements();
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003107 if (VT.getSizeInBits() != 128 && VT.getSizeInBits() != 64)
3108 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003109
Nate Begemana09008b2009-10-19 02:17:23 +00003110 // Do not handle v2i64 / v2f64 shuffles with palignr.
3111 if (e < 4 || !hasSSSE3)
3112 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003113
Nate Begemana09008b2009-10-19 02:17:23 +00003114 for (i = 0; i != e; ++i)
3115 if (Mask[i] >= 0)
3116 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003117
Nate Begemana09008b2009-10-19 02:17:23 +00003118 // All undef, not a palignr.
3119 if (i == e)
3120 return false;
3121
Eli Friedman63f8dde2011-07-25 21:36:45 +00003122 // Make sure we're shifting in the right direction.
3123 if (Mask[i] <= i)
3124 return false;
Nate Begemana09008b2009-10-19 02:17:23 +00003125
3126 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003127
Nate Begemana09008b2009-10-19 02:17:23 +00003128 // Check the rest of the elements to see if they are consecutive.
3129 for (++i; i != e; ++i) {
3130 int m = Mask[i];
Eli Friedman63f8dde2011-07-25 21:36:45 +00003131 if (m >= 0 && m != s+i)
Nate Begemana09008b2009-10-19 02:17:23 +00003132 return false;
3133 }
3134 return true;
3135}
3136
Evan Cheng14aed5e2006-03-24 01:18:28 +00003137/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3138/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00003139static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003140 int NumElems = VT.getVectorNumElements();
3141 if (NumElems != 2 && NumElems != 4)
3142 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003143
Nate Begeman9008ca62009-04-27 18:41:29 +00003144 int Half = NumElems / 2;
3145 for (int i = 0; i < Half; ++i)
3146 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003147 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003148 for (int i = Half; i < NumElems; ++i)
3149 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003150 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003151
Evan Cheng14aed5e2006-03-24 01:18:28 +00003152 return true;
3153}
3154
Nate Begeman9008ca62009-04-27 18:41:29 +00003155bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3156 SmallVector<int, 8> M;
3157 N->getMask(M);
3158 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003159}
3160
Evan Cheng213d2cf2007-05-17 18:45:50 +00003161/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00003162/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
3163/// half elements to come from vector 1 (which would equal the dest.) and
3164/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00003165static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003166 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003167
3168 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00003169 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003170
Nate Begeman9008ca62009-04-27 18:41:29 +00003171 int Half = NumElems / 2;
3172 for (int i = 0; i < Half; ++i)
3173 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003174 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003175 for (int i = Half; i < NumElems; ++i)
3176 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003177 return false;
3178 return true;
3179}
3180
Nate Begeman9008ca62009-04-27 18:41:29 +00003181static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3182 SmallVector<int, 8> M;
3183 N->getMask(M);
3184 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003185}
3186
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003187/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3188/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003189bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003190 EVT VT = N->getValueType(0);
3191 unsigned NumElems = VT.getVectorNumElements();
3192
3193 if (VT.getSizeInBits() != 128)
3194 return false;
3195
3196 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003197 return false;
3198
Evan Cheng2064a2b2006-03-28 06:50:32 +00003199 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003200 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3201 isUndefOrEqual(N->getMaskElt(1), 7) &&
3202 isUndefOrEqual(N->getMaskElt(2), 2) &&
3203 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003204}
3205
Nate Begeman0b10b912009-11-07 23:17:15 +00003206/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3207/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3208/// <2, 3, 2, 3>
3209bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003210 EVT VT = N->getValueType(0);
3211 unsigned NumElems = VT.getVectorNumElements();
3212
3213 if (VT.getSizeInBits() != 128)
3214 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003215
Nate Begeman0b10b912009-11-07 23:17:15 +00003216 if (NumElems != 4)
3217 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003218
Nate Begeman0b10b912009-11-07 23:17:15 +00003219 return isUndefOrEqual(N->getMaskElt(0), 2) &&
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003220 isUndefOrEqual(N->getMaskElt(1), 3) &&
3221 isUndefOrEqual(N->getMaskElt(2), 2) &&
3222 isUndefOrEqual(N->getMaskElt(3), 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003223}
3224
Evan Cheng5ced1d82006-04-06 23:23:56 +00003225/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3226/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003227bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3228 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003229
Evan Cheng5ced1d82006-04-06 23:23:56 +00003230 if (NumElems != 2 && NumElems != 4)
3231 return false;
3232
Evan Chengc5cdff22006-04-07 21:53:05 +00003233 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003234 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003235 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003236
Evan Chengc5cdff22006-04-07 21:53:05 +00003237 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003238 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003239 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003240
3241 return true;
3242}
3243
Nate Begeman0b10b912009-11-07 23:17:15 +00003244/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3245/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3246bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003247 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003248
David Greenea20244d2011-03-02 17:23:43 +00003249 if ((NumElems != 2 && NumElems != 4)
3250 || N->getValueType(0).getSizeInBits() > 128)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003251 return false;
3252
Evan Chengc5cdff22006-04-07 21:53:05 +00003253 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003254 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003255 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003256
Nate Begeman9008ca62009-04-27 18:41:29 +00003257 for (unsigned i = 0; i < NumElems/2; ++i)
3258 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003259 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003260
3261 return true;
3262}
3263
Evan Cheng0038e592006-03-28 00:39:58 +00003264/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3265/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003266static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003267 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003268 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003269
3270 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3271 "Unsupported vector type for unpckh");
3272
3273 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng0038e592006-03-28 00:39:58 +00003274 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003275
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003276 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3277 // independently on 128-bit lanes.
3278 unsigned NumLanes = VT.getSizeInBits()/128;
3279 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003280
3281 unsigned Start = 0;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003282 unsigned End = NumLaneElts;
3283 for (unsigned s = 0; s < NumLanes; ++s) {
3284 for (unsigned i = Start, j = s * NumLaneElts;
David Greenea20244d2011-03-02 17:23:43 +00003285 i != End;
3286 i += 2, ++j) {
3287 int BitI = Mask[i];
3288 int BitI1 = Mask[i+1];
3289 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003290 return false;
David Greenea20244d2011-03-02 17:23:43 +00003291 if (V2IsSplat) {
3292 if (!isUndefOrEqual(BitI1, NumElts))
3293 return false;
3294 } else {
3295 if (!isUndefOrEqual(BitI1, j + NumElts))
3296 return false;
3297 }
Evan Cheng39623da2006-04-20 08:58:49 +00003298 }
David Greenea20244d2011-03-02 17:23:43 +00003299 // Process the next 128 bits.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003300 Start += NumLaneElts;
3301 End += NumLaneElts;
Evan Cheng0038e592006-03-28 00:39:58 +00003302 }
David Greenea20244d2011-03-02 17:23:43 +00003303
Evan Cheng0038e592006-03-28 00:39:58 +00003304 return true;
3305}
3306
Nate Begeman9008ca62009-04-27 18:41:29 +00003307bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3308 SmallVector<int, 8> M;
3309 N->getMask(M);
3310 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003311}
3312
Evan Cheng4fcb9222006-03-28 02:43:26 +00003313/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3314/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003315static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003316 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003317 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003318
3319 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3320 "Unsupported vector type for unpckh");
3321
3322 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003323 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003324
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003325 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3326 // independently on 128-bit lanes.
3327 unsigned NumLanes = VT.getSizeInBits()/128;
3328 unsigned NumLaneElts = NumElts/NumLanes;
3329
3330 unsigned Start = 0;
3331 unsigned End = NumLaneElts;
3332 for (unsigned l = 0; l != NumLanes; ++l) {
3333 for (unsigned i = Start, j = (l*NumLaneElts)+NumLaneElts/2;
3334 i != End; i += 2, ++j) {
3335 int BitI = Mask[i];
3336 int BitI1 = Mask[i+1];
3337 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003338 return false;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003339 if (V2IsSplat) {
3340 if (isUndefOrEqual(BitI1, NumElts))
3341 return false;
3342 } else {
3343 if (!isUndefOrEqual(BitI1, j+NumElts))
3344 return false;
3345 }
Evan Cheng39623da2006-04-20 08:58:49 +00003346 }
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003347 // Process the next 128 bits.
3348 Start += NumLaneElts;
3349 End += NumLaneElts;
Evan Cheng4fcb9222006-03-28 02:43:26 +00003350 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003351 return true;
3352}
3353
Nate Begeman9008ca62009-04-27 18:41:29 +00003354bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3355 SmallVector<int, 8> M;
3356 N->getMask(M);
3357 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003358}
3359
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003360/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3361/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3362/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003363static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003364 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003365 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003366 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003367
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003368 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3369 // independently on 128-bit lanes.
3370 unsigned NumLanes = VT.getSizeInBits() / 128;
3371 unsigned NumLaneElts = NumElems / NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003372
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003373 for (unsigned s = 0; s < NumLanes; ++s) {
3374 for (unsigned i = s * NumLaneElts, j = s * NumLaneElts;
3375 i != NumLaneElts * (s + 1);
David Greenea20244d2011-03-02 17:23:43 +00003376 i += 2, ++j) {
3377 int BitI = Mask[i];
3378 int BitI1 = Mask[i+1];
3379
3380 if (!isUndefOrEqual(BitI, j))
3381 return false;
3382 if (!isUndefOrEqual(BitI1, j))
3383 return false;
3384 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003385 }
David Greenea20244d2011-03-02 17:23:43 +00003386
Rafael Espindola15684b22009-04-24 12:40:33 +00003387 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003388}
3389
Nate Begeman9008ca62009-04-27 18:41:29 +00003390bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3391 SmallVector<int, 8> M;
3392 N->getMask(M);
3393 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3394}
3395
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003396/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3397/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3398/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003399static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003400 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003401 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3402 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003403
Nate Begeman9008ca62009-04-27 18:41:29 +00003404 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3405 int BitI = Mask[i];
3406 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003407 if (!isUndefOrEqual(BitI, j))
3408 return false;
3409 if (!isUndefOrEqual(BitI1, j))
3410 return false;
3411 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003412 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003413}
3414
Nate Begeman9008ca62009-04-27 18:41:29 +00003415bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3416 SmallVector<int, 8> M;
3417 N->getMask(M);
3418 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3419}
3420
Evan Cheng017dcc62006-04-21 01:05:10 +00003421/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3422/// specifies a shuffle of elements that is suitable for input to MOVSS,
3423/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003424static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003425 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003426 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003427
3428 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003429
Nate Begeman9008ca62009-04-27 18:41:29 +00003430 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003431 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003432
Nate Begeman9008ca62009-04-27 18:41:29 +00003433 for (int i = 1; i < NumElts; ++i)
3434 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003435 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003436
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003437 return true;
3438}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003439
Nate Begeman9008ca62009-04-27 18:41:29 +00003440bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3441 SmallVector<int, 8> M;
3442 N->getMask(M);
3443 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003444}
3445
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003446/// isVPERMILPDMask - Return true if the specified VECTOR_SHUFFLE operand
3447/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
3448/// Note that VPERMIL mask matching is different depending whether theunderlying
3449/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3450/// to the same elements of the low, but to the higher half of the source.
3451/// In VPERMILPD the two lanes could be shuffled independently of each other
3452/// with the same restriction that lanes can't be crossed.
3453static bool isVPERMILPDMask(const SmallVectorImpl<int> &Mask, EVT VT,
3454 const X86Subtarget *Subtarget) {
3455 int NumElts = VT.getVectorNumElements();
3456 int NumLanes = VT.getSizeInBits()/128;
3457
3458 if (!Subtarget->hasAVX())
3459 return false;
3460
3461 // Match any permutation of 128-bit vector with 64-bit types
3462 if (NumLanes == 1 && NumElts != 2)
3463 return false;
3464
3465 // Only match 256-bit with 32 types
3466 if (VT.getSizeInBits() == 256 && NumElts != 4)
3467 return false;
3468
3469 // The mask on the high lane is independent of the low. Both can match
3470 // any element in inside its own lane, but can't cross.
3471 int LaneSize = NumElts/NumLanes;
3472 for (int l = 0; l < NumLanes; ++l)
3473 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3474 int LaneStart = l*LaneSize;
3475 if (!isUndefOrInRange(Mask[i], LaneStart, LaneStart+LaneSize))
3476 return false;
3477 }
3478
3479 return true;
3480}
3481
3482/// isVPERMILPSMask - Return true if the specified VECTOR_SHUFFLE operand
3483/// specifies a shuffle of elements that is suitable for input to VPERMILPS*.
3484/// Note that VPERMIL mask matching is different depending whether theunderlying
3485/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3486/// to the same elements of the low, but to the higher half of the source.
3487/// In VPERMILPD the two lanes could be shuffled independently of each other
3488/// with the same restriction that lanes can't be crossed.
3489static bool isVPERMILPSMask(const SmallVectorImpl<int> &Mask, EVT VT,
3490 const X86Subtarget *Subtarget) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003491 unsigned NumElts = VT.getVectorNumElements();
3492 unsigned NumLanes = VT.getSizeInBits()/128;
3493
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003494 if (!Subtarget->hasAVX())
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003495 return false;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003496
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003497 // Match any permutation of 128-bit vector with 32-bit types
3498 if (NumLanes == 1 && NumElts != 4)
3499 return false;
3500
3501 // Only match 256-bit with 32 types
3502 if (VT.getSizeInBits() == 256 && NumElts != 8)
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003503 return false;
3504
3505 // The mask on the high lane should be the same as the low. Actually,
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003506 // they can differ if any of the corresponding index in a lane is undef
3507 // and the other stays in range.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003508 int LaneSize = NumElts/NumLanes;
3509 for (int i = 0; i < LaneSize; ++i) {
3510 int HighElt = i+LaneSize;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003511 if (Mask[i] < 0 && (isUndefOrInRange(Mask[HighElt], LaneSize, NumElts)))
3512 continue;
3513 if (Mask[HighElt] < 0 && (isUndefOrInRange(Mask[i], 0, LaneSize)))
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003514 continue;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003515 if (Mask[HighElt]-Mask[i] != LaneSize)
3516 return false;
3517 }
3518
3519 return true;
3520}
3521
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003522/// getShuffleVPERMILPSImmediate - Return the appropriate immediate to shuffle
3523/// the specified VECTOR_MASK mask with VPERMILPS* instructions.
3524static unsigned getShuffleVPERMILPSImmediate(SDNode *N) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003525 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3526 EVT VT = SVOp->getValueType(0);
3527
3528 int NumElts = VT.getVectorNumElements();
3529 int NumLanes = VT.getSizeInBits()/128;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003530 int LaneSize = NumElts/NumLanes;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003531
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003532 // Although the mask is equal for both lanes do it twice to get the cases
3533 // where a mask will match because the same mask element is undef on the
3534 // first half but valid on the second. This would get pathological cases
3535 // such as: shuffle <u, 0, 1, 2, 4, 4, 5, 6>, which is completely valid.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003536 unsigned Mask = 0;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003537 for (int l = 0; l < NumLanes; ++l) {
3538 for (int i = 0; i < LaneSize; ++i) {
3539 int MaskElt = SVOp->getMaskElt(i+(l*LaneSize));
3540 if (MaskElt < 0)
3541 continue;
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003542 if (MaskElt >= LaneSize)
3543 MaskElt -= LaneSize;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003544 Mask |= MaskElt << (i*2);
3545 }
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003546 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003547
3548 return Mask;
3549}
3550
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003551/// getShuffleVPERMILPDImmediate - Return the appropriate immediate to shuffle
3552/// the specified VECTOR_MASK mask with VPERMILPD* instructions.
3553static unsigned getShuffleVPERMILPDImmediate(SDNode *N) {
3554 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3555 EVT VT = SVOp->getValueType(0);
3556
3557 int NumElts = VT.getVectorNumElements();
3558 int NumLanes = VT.getSizeInBits()/128;
3559
3560 unsigned Mask = 0;
3561 int LaneSize = NumElts/NumLanes;
3562 for (int l = 0; l < NumLanes; ++l)
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003563 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3564 int MaskElt = SVOp->getMaskElt(i);
3565 if (MaskElt < 0)
3566 continue;
3567 Mask |= (MaskElt-l*LaneSize) << i;
3568 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003569
3570 return Mask;
3571}
3572
Evan Cheng017dcc62006-04-21 01:05:10 +00003573/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3574/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003575/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003576static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003577 bool V2IsSplat = false, bool V2IsUndef = false) {
3578 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003579 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003580 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003581
Nate Begeman9008ca62009-04-27 18:41:29 +00003582 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003583 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003584
Nate Begeman9008ca62009-04-27 18:41:29 +00003585 for (int i = 1; i < NumOps; ++i)
3586 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3587 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3588 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003589 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003590
Evan Cheng39623da2006-04-20 08:58:49 +00003591 return true;
3592}
3593
Nate Begeman9008ca62009-04-27 18:41:29 +00003594static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003595 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003596 SmallVector<int, 8> M;
3597 N->getMask(M);
3598 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003599}
3600
Evan Chengd9539472006-04-14 21:59:03 +00003601/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3602/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003603/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
3604bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N,
3605 const X86Subtarget *Subtarget) {
3606 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003607 return false;
3608
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003609 // The second vector must be undef
3610 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3611 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003612
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003613 EVT VT = N->getValueType(0);
3614 unsigned NumElems = VT.getVectorNumElements();
3615
3616 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3617 (VT.getSizeInBits() == 256 && NumElems != 8))
3618 return false;
3619
3620 // "i+1" is the value the indexed mask element must have
3621 for (unsigned i = 0; i < NumElems; i += 2)
3622 if (!isUndefOrEqual(N->getMaskElt(i), i+1) ||
3623 !isUndefOrEqual(N->getMaskElt(i+1), i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00003624 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003625
3626 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003627}
3628
3629/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3630/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003631/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
3632bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N,
3633 const X86Subtarget *Subtarget) {
3634 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003635 return false;
3636
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003637 // The second vector must be undef
3638 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3639 return false;
3640
3641 EVT VT = N->getValueType(0);
3642 unsigned NumElems = VT.getVectorNumElements();
3643
3644 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3645 (VT.getSizeInBits() == 256 && NumElems != 8))
3646 return false;
3647
3648 // "i" is the value the indexed mask element must have
3649 for (unsigned i = 0; i < NumElems; i += 2)
3650 if (!isUndefOrEqual(N->getMaskElt(i), i) ||
3651 !isUndefOrEqual(N->getMaskElt(i+1), i))
Nate Begeman9008ca62009-04-27 18:41:29 +00003652 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003653
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003654 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003655}
3656
Evan Cheng0b457f02008-09-25 20:50:48 +00003657/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3658/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003659bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3660 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003661
Nate Begeman9008ca62009-04-27 18:41:29 +00003662 for (int i = 0; i < e; ++i)
3663 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003664 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003665 for (int i = 0; i < e; ++i)
3666 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003667 return false;
3668 return true;
3669}
3670
David Greenec38a03e2011-02-03 15:50:00 +00003671/// isVEXTRACTF128Index - Return true if the specified
3672/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3673/// suitable for input to VEXTRACTF128.
3674bool X86::isVEXTRACTF128Index(SDNode *N) {
3675 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3676 return false;
3677
3678 // The index should be aligned on a 128-bit boundary.
3679 uint64_t Index =
3680 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3681
3682 unsigned VL = N->getValueType(0).getVectorNumElements();
3683 unsigned VBits = N->getValueType(0).getSizeInBits();
3684 unsigned ElSize = VBits / VL;
3685 bool Result = (Index * ElSize) % 128 == 0;
3686
3687 return Result;
3688}
3689
David Greeneccacdc12011-02-04 16:08:29 +00003690/// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
3691/// operand specifies a subvector insert that is suitable for input to
3692/// VINSERTF128.
3693bool X86::isVINSERTF128Index(SDNode *N) {
3694 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3695 return false;
3696
3697 // The index should be aligned on a 128-bit boundary.
3698 uint64_t Index =
3699 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3700
3701 unsigned VL = N->getValueType(0).getVectorNumElements();
3702 unsigned VBits = N->getValueType(0).getSizeInBits();
3703 unsigned ElSize = VBits / VL;
3704 bool Result = (Index * ElSize) % 128 == 0;
3705
3706 return Result;
3707}
3708
Evan Cheng63d33002006-03-22 08:01:21 +00003709/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003710/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003711unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003712 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3713 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3714
Evan Chengb9df0ca2006-03-22 02:53:00 +00003715 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3716 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003717 for (int i = 0; i < NumOperands; ++i) {
3718 int Val = SVOp->getMaskElt(NumOperands-i-1);
3719 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003720 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003721 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003722 if (i != NumOperands - 1)
3723 Mask <<= Shift;
3724 }
Evan Cheng63d33002006-03-22 08:01:21 +00003725 return Mask;
3726}
3727
Evan Cheng506d3df2006-03-29 23:07:14 +00003728/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003729/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003730unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003731 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003732 unsigned Mask = 0;
3733 // 8 nodes, but we only care about the last 4.
3734 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003735 int Val = SVOp->getMaskElt(i);
3736 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003737 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003738 if (i != 4)
3739 Mask <<= 2;
3740 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003741 return Mask;
3742}
3743
3744/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003745/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003746unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003747 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003748 unsigned Mask = 0;
3749 // 8 nodes, but we only care about the first 4.
3750 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003751 int Val = SVOp->getMaskElt(i);
3752 if (Val >= 0)
3753 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003754 if (i != 0)
3755 Mask <<= 2;
3756 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003757 return Mask;
3758}
3759
Nate Begemana09008b2009-10-19 02:17:23 +00003760/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3761/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3762unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3763 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3764 EVT VVT = N->getValueType(0);
3765 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3766 int Val = 0;
3767
3768 unsigned i, e;
3769 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3770 Val = SVOp->getMaskElt(i);
3771 if (Val >= 0)
3772 break;
3773 }
Eli Friedman63f8dde2011-07-25 21:36:45 +00003774 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00003775 return (Val - i) * EltSize;
3776}
3777
David Greenec38a03e2011-02-03 15:50:00 +00003778/// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
3779/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
3780/// instructions.
3781unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
3782 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3783 llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
3784
3785 uint64_t Index =
3786 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3787
3788 EVT VecVT = N->getOperand(0).getValueType();
3789 EVT ElVT = VecVT.getVectorElementType();
3790
3791 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00003792 return Index / NumElemsPerChunk;
3793}
3794
David Greeneccacdc12011-02-04 16:08:29 +00003795/// getInsertVINSERTF128Immediate - Return the appropriate immediate
3796/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
3797/// instructions.
3798unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
3799 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3800 llvm_unreachable("Illegal insert subvector for VINSERTF128");
3801
3802 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00003803 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00003804
3805 EVT VecVT = N->getValueType(0);
3806 EVT ElVT = VecVT.getVectorElementType();
3807
3808 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00003809 return Index / NumElemsPerChunk;
3810}
3811
Evan Cheng37b73872009-07-30 08:33:02 +00003812/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3813/// constant +0.0.
3814bool X86::isZeroNode(SDValue Elt) {
3815 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003816 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003817 (isa<ConstantFPSDNode>(Elt) &&
3818 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3819}
3820
Nate Begeman9008ca62009-04-27 18:41:29 +00003821/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3822/// their permute mask.
3823static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3824 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003825 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003826 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003827 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003828
Nate Begeman5a5ca152009-04-29 05:20:52 +00003829 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003830 int idx = SVOp->getMaskElt(i);
3831 if (idx < 0)
3832 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003833 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003834 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003835 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003836 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003837 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003838 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3839 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003840}
3841
Evan Cheng779ccea2007-12-07 21:30:01 +00003842/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3843/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003844static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003845 unsigned NumElems = VT.getVectorNumElements();
3846 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003847 int idx = Mask[i];
3848 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003849 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003850 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003851 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003852 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003853 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003854 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003855}
3856
Evan Cheng533a0aa2006-04-19 20:35:22 +00003857/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3858/// match movhlps. The lower half elements should come from upper half of
3859/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003860/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003861static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3862 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003863 return false;
3864 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003865 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003866 return false;
3867 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003868 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003869 return false;
3870 return true;
3871}
3872
Evan Cheng5ced1d82006-04-06 23:23:56 +00003873/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003874/// is promoted to a vector. It also returns the LoadSDNode by reference if
3875/// required.
3876static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003877 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3878 return false;
3879 N = N->getOperand(0).getNode();
3880 if (!ISD::isNON_EXTLoad(N))
3881 return false;
3882 if (LD)
3883 *LD = cast<LoadSDNode>(N);
3884 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003885}
3886
Evan Cheng533a0aa2006-04-19 20:35:22 +00003887/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3888/// match movlp{s|d}. The lower half elements should come from lower half of
3889/// V1 (and in order), and the upper half elements should come from the upper
3890/// half of V2 (and in order). And since V1 will become the source of the
3891/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003892static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3893 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003894 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003895 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003896 // Is V2 is a vector load, don't do this transformation. We will try to use
3897 // load folding shufps op.
3898 if (ISD::isNON_EXTLoad(V2))
3899 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003900
Nate Begeman5a5ca152009-04-29 05:20:52 +00003901 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003902
Evan Cheng533a0aa2006-04-19 20:35:22 +00003903 if (NumElems != 2 && NumElems != 4)
3904 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003905 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003906 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003907 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003908 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003909 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003910 return false;
3911 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003912}
3913
Evan Cheng39623da2006-04-20 08:58:49 +00003914/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3915/// all the same.
3916static bool isSplatVector(SDNode *N) {
3917 if (N->getOpcode() != ISD::BUILD_VECTOR)
3918 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003919
Dan Gohman475871a2008-07-27 21:46:04 +00003920 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003921 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3922 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003923 return false;
3924 return true;
3925}
3926
Evan Cheng213d2cf2007-05-17 18:45:50 +00003927/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003928/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003929/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003930static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003931 SDValue V1 = N->getOperand(0);
3932 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003933 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3934 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003935 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003936 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003937 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003938 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3939 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003940 if (Opc != ISD::BUILD_VECTOR ||
3941 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003942 return false;
3943 } else if (Idx >= 0) {
3944 unsigned Opc = V1.getOpcode();
3945 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3946 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003947 if (Opc != ISD::BUILD_VECTOR ||
3948 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003949 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003950 }
3951 }
3952 return true;
3953}
3954
3955/// getZeroVector - Returns a vector of specified type with all zero elements.
3956///
Owen Andersone50ed302009-08-10 22:56:29 +00003957static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003958 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003959 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003960
Dale Johannesen0488fb62010-09-30 23:57:10 +00003961 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003962 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003963 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003964 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003965 if (HasSSE2) { // SSE2
3966 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3967 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3968 } else { // SSE1
3969 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3970 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3971 }
3972 } else if (VT.getSizeInBits() == 256) { // AVX
3973 // 256-bit logic and arithmetic instructions in AVX are
3974 // all floating-point, no support for integer ops. Default
3975 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003976 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003977 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3978 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003979 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003980 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003981}
3982
Chris Lattner8a594482007-11-25 00:24:49 +00003983/// getOnesVector - Returns a vector of specified type with all bits set.
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00003984/// Always build ones vectors as <4 x i32>. For 256-bit types, use two
3985/// <4 x i32> inserted in a <8 x i32> appropriately. Then bitcast to their
3986/// original type, ensuring they get CSE'd.
Owen Andersone50ed302009-08-10 22:56:29 +00003987static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003988 assert(VT.isVector() && "Expected a vector type");
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003989 assert((VT.is128BitVector() || VT.is256BitVector())
3990 && "Expected a 128-bit or 256-bit vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003991
Owen Anderson825b72b2009-08-11 20:47:22 +00003992 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00003993 SDValue Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
3994 Cst, Cst, Cst, Cst);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003995
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003996 if (VT.is256BitVector()) {
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00003997 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, MVT::v8i32),
3998 Vec, DAG.getConstant(0, MVT::i32), DAG, dl);
3999 Vec = Insert128BitVector(InsV, Vec,
4000 DAG.getConstant(4 /* NumElems/2 */, MVT::i32), DAG, dl);
4001 }
4002
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004003 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004004}
4005
Evan Cheng39623da2006-04-20 08:58:49 +00004006/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4007/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00004008static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004009 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004010 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004011
Evan Cheng39623da2006-04-20 08:58:49 +00004012 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00004013 SmallVector<int, 8> MaskVec;
4014 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00004015
Nate Begeman5a5ca152009-04-29 05:20:52 +00004016 for (unsigned i = 0; i != NumElems; ++i) {
4017 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004018 MaskVec[i] = NumElems;
4019 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00004020 }
Evan Cheng39623da2006-04-20 08:58:49 +00004021 }
Evan Cheng39623da2006-04-20 08:58:49 +00004022 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00004023 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
4024 SVOp->getOperand(1), &MaskVec[0]);
4025 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00004026}
4027
Evan Cheng017dcc62006-04-21 01:05:10 +00004028/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4029/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00004030static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004031 SDValue V2) {
4032 unsigned NumElems = VT.getVectorNumElements();
4033 SmallVector<int, 8> Mask;
4034 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004035 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004036 Mask.push_back(i);
4037 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004038}
4039
Nate Begeman9008ca62009-04-27 18:41:29 +00004040/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004041static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004042 SDValue V2) {
4043 unsigned NumElems = VT.getVectorNumElements();
4044 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004045 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004046 Mask.push_back(i);
4047 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004048 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004049 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004050}
4051
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004052/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004053static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004054 SDValue V2) {
4055 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00004056 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00004057 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00004058 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004059 Mask.push_back(i + Half);
4060 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004061 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004062 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004063}
4064
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004065// PromoteSplatv8v16 - All i16 and i8 vector types can't be used directly by
4066// a generic shuffle instruction because the target has no such instructions.
4067// Generate shuffles which repeat i16 and i8 several times until they can be
4068// represented by v4f32 and then be manipulated by target suported shuffles.
4069static SDValue PromoteSplatv8v16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4070 EVT VT = V.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004071 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004072 DebugLoc dl = V.getDebugLoc();
Rafael Espindola15684b22009-04-24 12:40:33 +00004073
Nate Begeman9008ca62009-04-27 18:41:29 +00004074 while (NumElems > 4) {
4075 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004076 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004077 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004078 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004079 EltNo -= NumElems/2;
4080 }
4081 NumElems >>= 1;
4082 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004083 return V;
4084}
Eric Christopherfd179292009-08-27 18:07:15 +00004085
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004086/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4087static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4088 EVT VT = V.getValueType();
4089 DebugLoc dl = V.getDebugLoc();
4090 assert((VT.getSizeInBits() == 128 || VT.getSizeInBits() == 256)
4091 && "Vector size not supported");
4092
4093 bool Is128 = VT.getSizeInBits() == 128;
4094 EVT NVT = Is128 ? MVT::v4f32 : MVT::v8f32;
4095 V = DAG.getNode(ISD::BITCAST, dl, NVT, V);
4096
4097 if (Is128) {
4098 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4099 V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
4100 } else {
4101 // The second half of indicies refer to the higher part, which is a
4102 // duplication of the lower one. This makes this shuffle a perfect match
4103 // for the VPERM instruction.
4104 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4105 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4106 V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
4107 }
4108
4109 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4110}
4111
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00004112/// PromoteVectorToScalarSplat - Since there's no native support for
4113/// scalar_to_vector for 256-bit AVX, a 128-bit scalar_to_vector +
4114/// INSERT_SUBVECTOR is generated. Recognize this idiom and do the
4115/// shuffle before the insertion, this yields less instructions in the end.
4116static SDValue PromoteVectorToScalarSplat(ShuffleVectorSDNode *SV,
4117 SelectionDAG &DAG) {
4118 EVT SrcVT = SV->getValueType(0);
4119 SDValue V1 = SV->getOperand(0);
4120 DebugLoc dl = SV->getDebugLoc();
4121 int NumElems = SrcVT.getVectorNumElements();
4122
4123 assert(SrcVT.is256BitVector() && "unknown howto handle vector type");
4124
4125 SmallVector<int, 4> Mask;
4126 for (int i = 0; i < NumElems/2; ++i)
4127 Mask.push_back(SV->getMaskElt(i));
4128
4129 EVT SVT = EVT::getVectorVT(*DAG.getContext(), SrcVT.getVectorElementType(),
4130 NumElems/2);
4131 SDValue SV1 = DAG.getVectorShuffle(SVT, dl, V1.getOperand(1),
4132 DAG.getUNDEF(SVT), &Mask[0]);
4133 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), SV1,
4134 DAG.getConstant(0, MVT::i32), DAG, dl);
4135
4136 return Insert128BitVector(InsV, SV1,
4137 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4138}
4139
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004140/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32 and
4141/// v8i32, v16i16 or v32i8 to v8f32.
4142static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4143 EVT SrcVT = SV->getValueType(0);
4144 SDValue V1 = SV->getOperand(0);
4145 DebugLoc dl = SV->getDebugLoc();
4146
4147 int EltNo = SV->getSplatIndex();
4148 int NumElems = SrcVT.getVectorNumElements();
4149 unsigned Size = SrcVT.getSizeInBits();
4150
4151 // Extract the 128-bit part containing the splat element and update
4152 // the splat element index when it refers to the higher register.
4153 if (Size == 256) {
4154 unsigned Idx = (EltNo > NumElems/2) ? NumElems/2 : 0;
4155 V1 = Extract128BitVector(V1, DAG.getConstant(Idx, MVT::i32), DAG, dl);
4156 if (Idx > 0)
4157 EltNo -= NumElems/2;
4158 }
4159
4160 // Make this 128-bit vector duplicate i8 and i16 elements
4161 if (NumElems > 4)
4162 V1 = PromoteSplatv8v16(V1, DAG, EltNo);
4163
4164 // Recreate the 256-bit vector and place the same 128-bit vector
4165 // into the low and high part. This is necessary because we want
4166 // to use VPERM to shuffle the v8f32 vector, and VPERM only shuffles
4167 // inside each separate v4f32 lane.
4168 if (Size == 256) {
4169 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), V1,
4170 DAG.getConstant(0, MVT::i32), DAG, dl);
4171 V1 = Insert128BitVector(InsV, V1,
4172 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4173 }
4174
4175 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004176}
4177
Evan Chengba05f722006-04-21 23:03:30 +00004178/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004179/// vector of zero or undef vector. This produces a shuffle where the low
4180/// element of V2 is swizzled into the zero/undef vector, landing at element
4181/// 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 +00004182static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00004183 bool isZero, bool HasSSE2,
4184 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004185 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00004186 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00004187 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
4188 unsigned NumElems = VT.getVectorNumElements();
4189 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004190 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004191 // If this is the insertion idx, put the low elt of V2 here.
4192 MaskVec.push_back(i == Idx ? NumElems : i);
4193 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004194}
4195
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004196/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4197/// element of the result of the vector shuffle.
Benjamin Kramer050db522011-03-26 12:38:19 +00004198static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
4199 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004200 if (Depth == 6)
4201 return SDValue(); // Limit search depth.
4202
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004203 SDValue V = SDValue(N, 0);
4204 EVT VT = V.getValueType();
4205 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004206
4207 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4208 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4209 Index = SV->getMaskElt(Index);
4210
4211 if (Index < 0)
4212 return DAG.getUNDEF(VT.getVectorElementType());
4213
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004214 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004215 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004216 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00004217 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004218
4219 // Recurse into target specific vector shuffles to find scalars.
4220 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004221 int NumElems = VT.getVectorNumElements();
4222 SmallVector<unsigned, 16> ShuffleMask;
4223 SDValue ImmN;
4224
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004225 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004226 case X86ISD::SHUFPS:
4227 case X86ISD::SHUFPD:
4228 ImmN = N->getOperand(N->getNumOperands()-1);
4229 DecodeSHUFPSMask(NumElems,
4230 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4231 ShuffleMask);
4232 break;
4233 case X86ISD::PUNPCKHBW:
4234 case X86ISD::PUNPCKHWD:
4235 case X86ISD::PUNPCKHDQ:
4236 case X86ISD::PUNPCKHQDQ:
4237 DecodePUNPCKHMask(NumElems, ShuffleMask);
4238 break;
4239 case X86ISD::UNPCKHPS:
4240 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00004241 case X86ISD::VUNPCKHPSY:
4242 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004243 DecodeUNPCKHPMask(NumElems, ShuffleMask);
4244 break;
4245 case X86ISD::PUNPCKLBW:
4246 case X86ISD::PUNPCKLWD:
4247 case X86ISD::PUNPCKLDQ:
4248 case X86ISD::PUNPCKLQDQ:
David Greenec4db4e52011-02-28 19:06:56 +00004249 DecodePUNPCKLMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004250 break;
4251 case X86ISD::UNPCKLPS:
4252 case X86ISD::UNPCKLPD:
David Greenec4db4e52011-02-28 19:06:56 +00004253 case X86ISD::VUNPCKLPSY:
4254 case X86ISD::VUNPCKLPDY:
4255 DecodeUNPCKLPMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004256 break;
4257 case X86ISD::MOVHLPS:
4258 DecodeMOVHLPSMask(NumElems, ShuffleMask);
4259 break;
4260 case X86ISD::MOVLHPS:
4261 DecodeMOVLHPSMask(NumElems, ShuffleMask);
4262 break;
4263 case X86ISD::PSHUFD:
4264 ImmN = N->getOperand(N->getNumOperands()-1);
4265 DecodePSHUFMask(NumElems,
4266 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4267 ShuffleMask);
4268 break;
4269 case X86ISD::PSHUFHW:
4270 ImmN = N->getOperand(N->getNumOperands()-1);
4271 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4272 ShuffleMask);
4273 break;
4274 case X86ISD::PSHUFLW:
4275 ImmN = N->getOperand(N->getNumOperands()-1);
4276 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4277 ShuffleMask);
4278 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004279 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004280 case X86ISD::MOVSD: {
4281 // The index 0 always comes from the first element of the second source,
4282 // this is why MOVSS and MOVSD are used in the first place. The other
4283 // elements come from the other positions of the first source vector.
4284 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004285 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
4286 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004287 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004288 case X86ISD::VPERMILPS:
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004289 ImmN = N->getOperand(N->getNumOperands()-1);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004290 DecodeVPERMILPSMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004291 ShuffleMask);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004292 break;
4293 case X86ISD::VPERMILPSY:
4294 ImmN = N->getOperand(N->getNumOperands()-1);
4295 DecodeVPERMILPSMask(8, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4296 ShuffleMask);
4297 break;
4298 case X86ISD::VPERMILPD:
4299 ImmN = N->getOperand(N->getNumOperands()-1);
4300 DecodeVPERMILPDMask(2, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4301 ShuffleMask);
4302 break;
4303 case X86ISD::VPERMILPDY:
4304 ImmN = N->getOperand(N->getNumOperands()-1);
4305 DecodeVPERMILPDMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4306 ShuffleMask);
4307 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004308 default:
4309 assert("not implemented for target shuffle node");
4310 return SDValue();
4311 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004312
4313 Index = ShuffleMask[Index];
4314 if (Index < 0)
4315 return DAG.getUNDEF(VT.getVectorElementType());
4316
4317 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
4318 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
4319 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004320 }
4321
4322 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004323 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004324 V = V.getOperand(0);
4325 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004326 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004327
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004328 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004329 return SDValue();
4330 }
4331
4332 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4333 return (Index == 0) ? V.getOperand(0)
4334 : DAG.getUNDEF(VT.getVectorElementType());
4335
4336 if (V.getOpcode() == ISD::BUILD_VECTOR)
4337 return V.getOperand(Index);
4338
4339 return SDValue();
4340}
4341
4342/// getNumOfConsecutiveZeros - Return the number of elements of a vector
4343/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00004344/// search can start in two different directions, from left or right.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004345static
4346unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
4347 bool ZerosFromLeft, SelectionDAG &DAG) {
4348 int i = 0;
4349
4350 while (i < NumElems) {
4351 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004352 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004353 if (!(Elt.getNode() &&
4354 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4355 break;
4356 ++i;
4357 }
4358
4359 return i;
4360}
4361
4362/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
4363/// MaskE correspond consecutively to elements from one of the vector operands,
4364/// starting from its index OpIdx. Also tell OpNum which source vector operand.
4365static
4366bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
4367 int OpIdx, int NumElems, unsigned &OpNum) {
4368 bool SeenV1 = false;
4369 bool SeenV2 = false;
4370
4371 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
4372 int Idx = SVOp->getMaskElt(i);
4373 // Ignore undef indicies
4374 if (Idx < 0)
4375 continue;
4376
4377 if (Idx < NumElems)
4378 SeenV1 = true;
4379 else
4380 SeenV2 = true;
4381
4382 // Only accept consecutive elements from the same vector
4383 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4384 return false;
4385 }
4386
4387 OpNum = SeenV1 ? 0 : 1;
4388 return true;
4389}
4390
4391/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4392/// logical left shift of a vector.
4393static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4394 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4395 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4396 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4397 false /* check zeros from right */, DAG);
4398 unsigned OpSrc;
4399
4400 if (!NumZeros)
4401 return false;
4402
4403 // Considering the elements in the mask that are not consecutive zeros,
4404 // check if they consecutively come from only one of the source vectors.
4405 //
4406 // V1 = {X, A, B, C} 0
4407 // \ \ \ /
4408 // vector_shuffle V1, V2 <1, 2, 3, X>
4409 //
4410 if (!isShuffleMaskConsecutive(SVOp,
4411 0, // Mask Start Index
4412 NumElems-NumZeros-1, // Mask End Index
4413 NumZeros, // Where to start looking in the src vector
4414 NumElems, // Number of elements in vector
4415 OpSrc)) // Which source operand ?
4416 return false;
4417
4418 isLeft = false;
4419 ShAmt = NumZeros;
4420 ShVal = SVOp->getOperand(OpSrc);
4421 return true;
4422}
4423
4424/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4425/// logical left shift of a vector.
4426static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4427 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4428 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4429 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4430 true /* check zeros from left */, DAG);
4431 unsigned OpSrc;
4432
4433 if (!NumZeros)
4434 return false;
4435
4436 // Considering the elements in the mask that are not consecutive zeros,
4437 // check if they consecutively come from only one of the source vectors.
4438 //
4439 // 0 { A, B, X, X } = V2
4440 // / \ / /
4441 // vector_shuffle V1, V2 <X, X, 4, 5>
4442 //
4443 if (!isShuffleMaskConsecutive(SVOp,
4444 NumZeros, // Mask Start Index
4445 NumElems-1, // Mask End Index
4446 0, // Where to start looking in the src vector
4447 NumElems, // Number of elements in vector
4448 OpSrc)) // Which source operand ?
4449 return false;
4450
4451 isLeft = true;
4452 ShAmt = NumZeros;
4453 ShVal = SVOp->getOperand(OpSrc);
4454 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004455}
4456
4457/// isVectorShift - Returns true if the shuffle can be implemented as a
4458/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004459static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004460 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004461 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4462 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4463 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004464
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004465 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00004466}
4467
Evan Chengc78d3b42006-04-24 18:01:45 +00004468/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4469///
Dan Gohman475871a2008-07-27 21:46:04 +00004470static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00004471 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00004472 SelectionDAG &DAG,
4473 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004474 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00004475 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004476
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004477 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004478 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004479 bool First = true;
4480 for (unsigned i = 0; i < 16; ++i) {
4481 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4482 if (ThisIsNonZero && First) {
4483 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004484 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004485 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004486 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004487 First = false;
4488 }
4489
4490 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00004491 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004492 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4493 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004494 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004495 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00004496 }
4497 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004498 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4499 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4500 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00004501 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004502 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00004503 } else
4504 ThisElt = LastElt;
4505
Gabor Greifba36cb52008-08-28 21:40:38 +00004506 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00004507 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00004508 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00004509 }
4510 }
4511
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004512 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00004513}
4514
Bill Wendlinga348c562007-03-22 18:42:45 +00004515/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00004516///
Dan Gohman475871a2008-07-27 21:46:04 +00004517static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00004518 unsigned NumNonZero, unsigned NumZero,
4519 SelectionDAG &DAG,
4520 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004521 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00004522 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004523
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004524 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004525 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004526 bool First = true;
4527 for (unsigned i = 0; i < 8; ++i) {
4528 bool isNonZero = (NonZeros & (1 << i)) != 0;
4529 if (isNonZero) {
4530 if (First) {
4531 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004532 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004533 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004534 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004535 First = false;
4536 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004537 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004538 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00004539 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00004540 }
4541 }
4542
4543 return V;
4544}
4545
Evan Chengf26ffe92008-05-29 08:22:04 +00004546/// getVShift - Return a vector logical shift node.
4547///
Owen Andersone50ed302009-08-10 22:56:29 +00004548static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00004549 unsigned NumBits, SelectionDAG &DAG,
4550 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004551 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00004552 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004553 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4554 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004555 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00004556 DAG.getConstant(NumBits,
4557 TLI.getShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00004558}
4559
Dan Gohman475871a2008-07-27 21:46:04 +00004560SDValue
Evan Chengc3630942009-12-09 21:00:30 +00004561X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00004562 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00004563
Evan Chengc3630942009-12-09 21:00:30 +00004564 // Check if the scalar load can be widened into a vector load. And if
4565 // the address is "base + cst" see if the cst can be "absorbed" into
4566 // the shuffle mask.
4567 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4568 SDValue Ptr = LD->getBasePtr();
4569 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4570 return SDValue();
4571 EVT PVT = LD->getValueType(0);
4572 if (PVT != MVT::i32 && PVT != MVT::f32)
4573 return SDValue();
4574
4575 int FI = -1;
4576 int64_t Offset = 0;
4577 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4578 FI = FINode->getIndex();
4579 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00004580 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00004581 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4582 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4583 Offset = Ptr.getConstantOperandVal(1);
4584 Ptr = Ptr.getOperand(0);
4585 } else {
4586 return SDValue();
4587 }
4588
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004589 // FIXME: 256-bit vector instructions don't require a strict alignment,
4590 // improve this code to support it better.
4591 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00004592 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004593 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00004594 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004595 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00004596 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004597 // Can't change the alignment. FIXME: It's possible to compute
4598 // the exact stack offset and reference FI + adjust offset instead.
4599 // If someone *really* cares about this. That's the way to implement it.
4600 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004601 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004602 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00004603 }
4604 }
4605
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004606 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00004607 // Ptr + (Offset & ~15).
4608 if (Offset < 0)
4609 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004610 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00004611 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004612 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00004613 if (StartOffset)
4614 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4615 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4616
4617 int EltNo = (Offset - StartOffset) >> 2;
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004618 int NumElems = VT.getVectorNumElements();
4619
4620 EVT CanonVT = VT.getSizeInBits() == 128 ? MVT::v4i32 : MVT::v8i32;
4621 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
4622 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00004623 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004624 false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004625
4626 // Canonicalize it to a v4i32 or v8i32 shuffle.
4627 SmallVector<int, 8> Mask;
4628 for (int i = 0; i < NumElems; ++i)
4629 Mask.push_back(EltNo);
4630
4631 V1 = DAG.getNode(ISD::BITCAST, dl, CanonVT, V1);
4632 return DAG.getNode(ISD::BITCAST, dl, NVT,
4633 DAG.getVectorShuffle(CanonVT, dl, V1,
4634 DAG.getUNDEF(CanonVT),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004635 }
4636
4637 return SDValue();
4638}
4639
Michael J. Spencerec38de22010-10-10 22:04:20 +00004640/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4641/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004642/// load which has the same value as a build_vector whose operands are 'elts'.
4643///
4644/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004645///
Nate Begeman1449f292010-03-24 22:19:06 +00004646/// FIXME: we'd also like to handle the case where the last elements are zero
4647/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4648/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004649static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004650 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004651 EVT EltVT = VT.getVectorElementType();
4652 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004653
Nate Begemanfdea31a2010-03-24 20:49:50 +00004654 LoadSDNode *LDBase = NULL;
4655 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004656
Nate Begeman1449f292010-03-24 22:19:06 +00004657 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004658 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004659 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004660 for (unsigned i = 0; i < NumElems; ++i) {
4661 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004662
Nate Begemanfdea31a2010-03-24 20:49:50 +00004663 if (!Elt.getNode() ||
4664 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4665 return SDValue();
4666 if (!LDBase) {
4667 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4668 return SDValue();
4669 LDBase = cast<LoadSDNode>(Elt.getNode());
4670 LastLoadedElt = i;
4671 continue;
4672 }
4673 if (Elt.getOpcode() == ISD::UNDEF)
4674 continue;
4675
4676 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4677 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4678 return SDValue();
4679 LastLoadedElt = i;
4680 }
Nate Begeman1449f292010-03-24 22:19:06 +00004681
4682 // If we have found an entire vector of loads and undefs, then return a large
4683 // load of the entire vector width starting at the base pointer. If we found
4684 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004685 if (LastLoadedElt == NumElems - 1) {
4686 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004687 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004688 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004689 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004690 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004691 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004692 LDBase->isVolatile(), LDBase->isNonTemporal(),
4693 LDBase->getAlignment());
Eli Friedman61cc47e2011-07-26 21:02:58 +00004694 } else if (NumElems == 4 && LastLoadedElt == 1 &&
4695 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004696 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4697 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004698 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4699 Ops, 2, MVT::i32,
4700 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004701 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004702 }
4703 return SDValue();
4704}
4705
Evan Chengc3630942009-12-09 21:00:30 +00004706SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004707X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004708 DebugLoc dl = Op.getDebugLoc();
David Greenea5f26012011-02-07 19:36:54 +00004709
David Greenef125a292011-02-08 19:04:41 +00004710 EVT VT = Op.getValueType();
4711 EVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00004712 unsigned NumElems = Op.getNumOperands();
4713
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00004714 // Vectors containing all zeros can be matched by pxor and xorps later
4715 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
4716 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
4717 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004718 if (Op.getValueType() == MVT::v4i32 ||
4719 Op.getValueType() == MVT::v8i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004720 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004721
Dale Johannesenace16102009-02-03 19:33:06 +00004722 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004723 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004724
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00004725 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
4726 // vectors or broken into v4i32 operations on 256-bit vectors.
4727 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
4728 if (Op.getValueType() == MVT::v4i32)
4729 return Op;
4730
4731 return getOnesVector(Op.getValueType(), DAG, dl);
4732 }
4733
Owen Andersone50ed302009-08-10 22:56:29 +00004734 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004735
Evan Cheng0db9fe62006-04-25 20:13:52 +00004736 unsigned NumZero = 0;
4737 unsigned NumNonZero = 0;
4738 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004739 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004740 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004741 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004742 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004743 if (Elt.getOpcode() == ISD::UNDEF)
4744 continue;
4745 Values.insert(Elt);
4746 if (Elt.getOpcode() != ISD::Constant &&
4747 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004748 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004749 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004750 NumZero++;
4751 else {
4752 NonZeros |= (1 << i);
4753 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004754 }
4755 }
4756
Chris Lattner97a2a562010-08-26 05:24:29 +00004757 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4758 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004759 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004760
Chris Lattner67f453a2008-03-09 05:42:06 +00004761 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004762 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004763 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004764 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004765
Chris Lattner62098042008-03-09 01:05:04 +00004766 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4767 // the value are obviously zero, truncate the value to i32 and do the
4768 // insertion that way. Only do this if the value is non-constant or if the
4769 // value is a constant being inserted into element 0. It is cheaper to do
4770 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004771 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004772 (!IsAllConstants || Idx == 0)) {
4773 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004774 // Handle SSE only.
4775 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4776 EVT VecVT = MVT::v4i32;
4777 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004778
Chris Lattner62098042008-03-09 01:05:04 +00004779 // Truncate the value (which may itself be a constant) to i32, and
4780 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004781 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004782 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004783 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4784 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004785
Chris Lattner62098042008-03-09 01:05:04 +00004786 // Now we have our 32-bit value zero extended in the low element of
4787 // a vector. If Idx != 0, swizzle it into place.
4788 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004789 SmallVector<int, 4> Mask;
4790 Mask.push_back(Idx);
4791 for (unsigned i = 1; i != VecElts; ++i)
4792 Mask.push_back(i);
4793 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004794 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004795 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004796 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004797 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004798 }
4799 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004800
Chris Lattner19f79692008-03-08 22:59:52 +00004801 // If we have a constant or non-constant insertion into the low element of
4802 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4803 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004804 // depending on what the source datatype is.
4805 if (Idx == 0) {
4806 if (NumZero == 0) {
4807 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004808 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4809 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004810 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4811 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4812 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4813 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004814 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4815 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004816 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4817 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004818 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4819 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4820 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004821 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00004822 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004823 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004824
4825 // Is it a vector logical left shift?
4826 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004827 X86::isZeroNode(Op.getOperand(0)) &&
4828 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004829 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004830 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004831 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004832 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004833 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004834 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004835
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004836 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004837 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004838
Chris Lattner19f79692008-03-08 22:59:52 +00004839 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4840 // is a non-constant being inserted into an element other than the low one,
4841 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4842 // movd/movss) to move this into the low element, then shuffle it into
4843 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004844 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004845 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004846
Evan Cheng0db9fe62006-04-25 20:13:52 +00004847 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004848 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4849 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004850 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004851 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004852 MaskVec.push_back(i == Idx ? 0 : 1);
4853 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004854 }
4855 }
4856
Chris Lattner67f453a2008-03-09 05:42:06 +00004857 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004858 if (Values.size() == 1) {
4859 if (EVTBits == 32) {
4860 // Instead of a shuffle like this:
4861 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4862 // Check if it's possible to issue this instead.
4863 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4864 unsigned Idx = CountTrailingZeros_32(NonZeros);
4865 SDValue Item = Op.getOperand(Idx);
4866 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4867 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4868 }
Dan Gohman475871a2008-07-27 21:46:04 +00004869 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004870 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004871
Dan Gohmana3941172007-07-24 22:55:08 +00004872 // A vector full of immediates; various special cases are already
4873 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004874 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004875 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004876
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00004877 // For AVX-length vectors, build the individual 128-bit pieces and use
4878 // shuffles to put them in place.
4879 if (VT.getSizeInBits() == 256 && !ISD::isBuildVectorAllZeros(Op.getNode())) {
4880 SmallVector<SDValue, 32> V;
4881 for (unsigned i = 0; i < NumElems; ++i)
4882 V.push_back(Op.getOperand(i));
4883
4884 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
4885
4886 // Build both the lower and upper subvector.
4887 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
4888 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
4889 NumElems/2);
4890
4891 // Recreate the wider vector with the lower and upper part.
Bruno Cardoso Lopes15d03fb2011-07-28 01:26:53 +00004892 SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Lower,
4893 DAG.getConstant(0, MVT::i32), DAG, dl);
4894 return Insert128BitVector(Vec, Upper, DAG.getConstant(NumElems/2, MVT::i32),
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00004895 DAG, dl);
4896 }
4897
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004898 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004899 if (EVTBits == 64) {
4900 if (NumNonZero == 1) {
4901 // One half is zero or undef.
4902 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004903 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004904 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004905 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4906 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004907 }
Dan Gohman475871a2008-07-27 21:46:04 +00004908 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004909 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004910
4911 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004912 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004913 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004914 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004915 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004916 }
4917
Bill Wendling826f36f2007-03-28 00:57:11 +00004918 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004919 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004920 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004921 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004922 }
4923
4924 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004925 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004926 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004927 if (NumElems == 4 && NumZero > 0) {
4928 for (unsigned i = 0; i < 4; ++i) {
4929 bool isZero = !(NonZeros & (1 << i));
4930 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004931 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004932 else
Dale Johannesenace16102009-02-03 19:33:06 +00004933 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004934 }
4935
4936 for (unsigned i = 0; i < 2; ++i) {
4937 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4938 default: break;
4939 case 0:
4940 V[i] = V[i*2]; // Must be a zero vector.
4941 break;
4942 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004943 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004944 break;
4945 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004946 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004947 break;
4948 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004949 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004950 break;
4951 }
4952 }
4953
Nate Begeman9008ca62009-04-27 18:41:29 +00004954 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004955 bool Reverse = (NonZeros & 0x3) == 2;
4956 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004957 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004958 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4959 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004960 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4961 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004962 }
4963
Nate Begemanfdea31a2010-03-24 20:49:50 +00004964 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4965 // Check for a build vector of consecutive loads.
4966 for (unsigned i = 0; i < NumElems; ++i)
4967 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004968
Nate Begemanfdea31a2010-03-24 20:49:50 +00004969 // Check for elements which are consecutive loads.
4970 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4971 if (LD.getNode())
4972 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004973
4974 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004975 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004976 SDValue Result;
4977 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4978 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4979 else
4980 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004981
Chris Lattner24faf612010-08-28 17:59:08 +00004982 for (unsigned i = 1; i < NumElems; ++i) {
4983 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4984 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004985 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004986 }
4987 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004988 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004989
Chris Lattner6e80e442010-08-28 17:15:43 +00004990 // Otherwise, expand into a number of unpckl*, start by extending each of
4991 // our (non-undef) elements to the full vector width with the element in the
4992 // bottom slot of the vector (which generates no code for SSE).
4993 for (unsigned i = 0; i < NumElems; ++i) {
4994 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4995 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4996 else
4997 V[i] = DAG.getUNDEF(VT);
4998 }
4999
5000 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005001 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
5002 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
5003 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00005004 unsigned EltStride = NumElems >> 1;
5005 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00005006 for (unsigned i = 0; i < EltStride; ++i) {
5007 // If V[i+EltStride] is undef and this is the first round of mixing,
5008 // then it is safe to just drop this shuffle: V[i] is already in the
5009 // right place, the one element (since it's the first round) being
5010 // inserted as undef can be dropped. This isn't safe for successive
5011 // rounds because they will permute elements within both vectors.
5012 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
5013 EltStride == NumElems/2)
5014 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005015
Chris Lattner6e80e442010-08-28 17:15:43 +00005016 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00005017 }
Chris Lattner6e80e442010-08-28 17:15:43 +00005018 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005019 }
5020 return V[0];
5021 }
Dan Gohman475871a2008-07-27 21:46:04 +00005022 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005023}
5024
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005025// LowerMMXCONCAT_VECTORS - We support concatenate two MMX registers and place
5026// them in a MMX register. This is better than doing a stack convert.
5027static SDValue LowerMMXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005028 DebugLoc dl = Op.getDebugLoc();
5029 EVT ResVT = Op.getValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005030
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005031 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
5032 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
5033 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005034 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005035 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5036 InVec = Op.getOperand(1);
5037 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
5038 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005039 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005040 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
5041 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
5042 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005043 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005044 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5045 Mask[0] = 0; Mask[1] = 2;
5046 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
5047 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005048 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005049}
5050
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005051// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
5052// to create 256-bit vectors from two other 128-bit ones.
5053static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5054 DebugLoc dl = Op.getDebugLoc();
5055 EVT ResVT = Op.getValueType();
5056
5057 assert(ResVT.getSizeInBits() == 256 && "Value type must be 256-bit wide");
5058
5059 SDValue V1 = Op.getOperand(0);
5060 SDValue V2 = Op.getOperand(1);
5061 unsigned NumElems = ResVT.getVectorNumElements();
5062
5063 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, ResVT), V1,
5064 DAG.getConstant(0, MVT::i32), DAG, dl);
5065 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5066 DAG, dl);
5067}
5068
5069SDValue
5070X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005071 EVT ResVT = Op.getValueType();
5072
5073 assert(Op.getNumOperands() == 2);
5074 assert((ResVT.getSizeInBits() == 128 || ResVT.getSizeInBits() == 256) &&
5075 "Unsupported CONCAT_VECTORS for value type");
5076
5077 // We support concatenate two MMX registers and place them in a MMX register.
5078 // This is better than doing a stack convert.
5079 if (ResVT.is128BitVector())
5080 return LowerMMXCONCAT_VECTORS(Op, DAG);
5081
5082 // 256-bit AVX can use the vinsertf128 instruction to create 256-bit vectors
5083 // from two other 128-bit ones.
5084 return LowerAVXCONCAT_VECTORS(Op, DAG);
5085}
5086
Nate Begemanb9a47b82009-02-23 08:49:38 +00005087// v8i16 shuffles - Prefer shuffles in the following order:
5088// 1. [all] pshuflw, pshufhw, optional move
5089// 2. [ssse3] 1 x pshufb
5090// 3. [ssse3] 2 x pshufb + 1 x por
5091// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005092SDValue
5093X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
5094 SelectionDAG &DAG) const {
5095 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00005096 SDValue V1 = SVOp->getOperand(0);
5097 SDValue V2 = SVOp->getOperand(1);
5098 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005099 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00005100
Nate Begemanb9a47b82009-02-23 08:49:38 +00005101 // Determine if more than 1 of the words in each of the low and high quadwords
5102 // of the result come from the same quadword of one of the two inputs. Undef
5103 // mask values count as coming from any quadword, for better codegen.
5104 SmallVector<unsigned, 4> LoQuad(4);
5105 SmallVector<unsigned, 4> HiQuad(4);
5106 BitVector InputQuads(4);
5107 for (unsigned i = 0; i < 8; ++i) {
5108 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00005109 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005110 MaskVals.push_back(EltIdx);
5111 if (EltIdx < 0) {
5112 ++Quad[0];
5113 ++Quad[1];
5114 ++Quad[2];
5115 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00005116 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005117 }
5118 ++Quad[EltIdx / 4];
5119 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00005120 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005121
Nate Begemanb9a47b82009-02-23 08:49:38 +00005122 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005123 unsigned MaxQuad = 1;
5124 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005125 if (LoQuad[i] > MaxQuad) {
5126 BestLoQuad = i;
5127 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005128 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005129 }
5130
Nate Begemanb9a47b82009-02-23 08:49:38 +00005131 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005132 MaxQuad = 1;
5133 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005134 if (HiQuad[i] > MaxQuad) {
5135 BestHiQuad = i;
5136 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005137 }
5138 }
5139
Nate Begemanb9a47b82009-02-23 08:49:38 +00005140 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00005141 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00005142 // single pshufb instruction is necessary. If There are more than 2 input
5143 // quads, disable the next transformation since it does not help SSSE3.
5144 bool V1Used = InputQuads[0] || InputQuads[1];
5145 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005146 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005147 if (InputQuads.count() == 2 && V1Used && V2Used) {
5148 BestLoQuad = InputQuads.find_first();
5149 BestHiQuad = InputQuads.find_next(BestLoQuad);
5150 }
5151 if (InputQuads.count() > 2) {
5152 BestLoQuad = -1;
5153 BestHiQuad = -1;
5154 }
5155 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005156
Nate Begemanb9a47b82009-02-23 08:49:38 +00005157 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
5158 // the shuffle mask. If a quad is scored as -1, that means that it contains
5159 // words from all 4 input quadwords.
5160 SDValue NewV;
5161 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005162 SmallVector<int, 8> MaskV;
5163 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
5164 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00005165 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005166 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
5167 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
5168 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005169
Nate Begemanb9a47b82009-02-23 08:49:38 +00005170 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
5171 // source words for the shuffle, to aid later transformations.
5172 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00005173 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00005174 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005175 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00005176 if (idx != (int)i)
5177 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005178 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00005179 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005180 AllWordsInNewV = false;
5181 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00005182 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005183
Nate Begemanb9a47b82009-02-23 08:49:38 +00005184 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
5185 if (AllWordsInNewV) {
5186 for (int i = 0; i != 8; ++i) {
5187 int idx = MaskVals[i];
5188 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005189 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005190 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005191 if ((idx != i) && idx < 4)
5192 pshufhw = false;
5193 if ((idx != i) && idx > 3)
5194 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00005195 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00005196 V1 = NewV;
5197 V2Used = false;
5198 BestLoQuad = 0;
5199 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005200 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005201
Nate Begemanb9a47b82009-02-23 08:49:38 +00005202 // If we've eliminated the use of V2, and the new mask is a pshuflw or
5203 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00005204 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005205 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
5206 unsigned TargetMask = 0;
5207 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00005208 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005209 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
5210 X86::getShufflePSHUFLWImmediate(NewV.getNode());
5211 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005212 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00005213 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005214 }
Eric Christopherfd179292009-08-27 18:07:15 +00005215
Nate Begemanb9a47b82009-02-23 08:49:38 +00005216 // If we have SSSE3, and all words of the result are from 1 input vector,
5217 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
5218 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005219 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005220 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005221
Nate Begemanb9a47b82009-02-23 08:49:38 +00005222 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00005223 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00005224 // mask, and elements that come from V1 in the V2 mask, so that the two
5225 // results can be OR'd together.
5226 bool TwoInputs = V1Used && V2Used;
5227 for (unsigned i = 0; i != 8; ++i) {
5228 int EltIdx = MaskVals[i] * 2;
5229 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005230 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5231 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005232 continue;
5233 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005234 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5235 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005236 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005237 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005238 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005239 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005240 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005241 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005242 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005243
Nate Begemanb9a47b82009-02-23 08:49:38 +00005244 // Calculate the shuffle mask for the second input, shuffle it, and
5245 // OR it with the first shuffled input.
5246 pshufbMask.clear();
5247 for (unsigned i = 0; i != 8; ++i) {
5248 int EltIdx = MaskVals[i] * 2;
5249 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005250 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5251 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005252 continue;
5253 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005254 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
5255 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005256 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005257 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00005258 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005259 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005260 MVT::v16i8, &pshufbMask[0], 16));
5261 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005262 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005263 }
5264
5265 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5266 // and update MaskVals with new element order.
5267 BitVector InOrder(8);
5268 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005269 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005270 for (int i = 0; i != 4; ++i) {
5271 int idx = MaskVals[i];
5272 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005273 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005274 InOrder.set(i);
5275 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005276 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005277 InOrder.set(i);
5278 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005279 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005280 }
5281 }
5282 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005283 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00005284 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005285 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005286
5287 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5288 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
5289 NewV.getOperand(0),
5290 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
5291 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005292 }
Eric Christopherfd179292009-08-27 18:07:15 +00005293
Nate Begemanb9a47b82009-02-23 08:49:38 +00005294 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5295 // and update MaskVals with the new element order.
5296 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005297 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005298 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005299 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005300 for (unsigned i = 4; i != 8; ++i) {
5301 int idx = MaskVals[i];
5302 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005303 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005304 InOrder.set(i);
5305 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005306 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005307 InOrder.set(i);
5308 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005309 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005310 }
5311 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005312 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005313 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005314
5315 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5316 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5317 NewV.getOperand(0),
5318 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
5319 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005320 }
Eric Christopherfd179292009-08-27 18:07:15 +00005321
Nate Begemanb9a47b82009-02-23 08:49:38 +00005322 // In case BestHi & BestLo were both -1, which means each quadword has a word
5323 // from each of the four input quadwords, calculate the InOrder bitvector now
5324 // before falling through to the insert/extract cleanup.
5325 if (BestLoQuad == -1 && BestHiQuad == -1) {
5326 NewV = V1;
5327 for (int i = 0; i != 8; ++i)
5328 if (MaskVals[i] < 0 || MaskVals[i] == i)
5329 InOrder.set(i);
5330 }
Eric Christopherfd179292009-08-27 18:07:15 +00005331
Nate Begemanb9a47b82009-02-23 08:49:38 +00005332 // The other elements are put in the right place using pextrw and pinsrw.
5333 for (unsigned i = 0; i != 8; ++i) {
5334 if (InOrder[i])
5335 continue;
5336 int EltIdx = MaskVals[i];
5337 if (EltIdx < 0)
5338 continue;
5339 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005340 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005341 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00005342 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005343 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00005344 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005345 DAG.getIntPtrConstant(i));
5346 }
5347 return NewV;
5348}
5349
5350// v16i8 shuffles - Prefer shuffles in the following order:
5351// 1. [ssse3] 1 x pshufb
5352// 2. [ssse3] 2 x pshufb + 1 x por
5353// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
5354static
Nate Begeman9008ca62009-04-27 18:41:29 +00005355SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00005356 SelectionDAG &DAG,
5357 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005358 SDValue V1 = SVOp->getOperand(0);
5359 SDValue V2 = SVOp->getOperand(1);
5360 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005361 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00005362 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00005363
Nate Begemanb9a47b82009-02-23 08:49:38 +00005364 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00005365 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00005366 // present, fall back to case 3.
5367 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
5368 bool V1Only = true;
5369 bool V2Only = true;
5370 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005371 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00005372 if (EltIdx < 0)
5373 continue;
5374 if (EltIdx < 16)
5375 V2Only = false;
5376 else
5377 V1Only = false;
5378 }
Eric Christopherfd179292009-08-27 18:07:15 +00005379
Nate Begemanb9a47b82009-02-23 08:49:38 +00005380 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
5381 if (TLI.getSubtarget()->hasSSSE3()) {
5382 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005383
Nate Begemanb9a47b82009-02-23 08:49:38 +00005384 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00005385 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005386 //
5387 // Otherwise, we have elements from both input vectors, and must zero out
5388 // elements that come from V2 in the first mask, and V1 in the second mask
5389 // so that we can OR them together.
5390 bool TwoInputs = !(V1Only || V2Only);
5391 for (unsigned i = 0; i != 16; ++i) {
5392 int EltIdx = MaskVals[i];
5393 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005394 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005395 continue;
5396 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005397 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005398 }
5399 // If all the elements are from V2, assign it to V1 and return after
5400 // building the first pshufb.
5401 if (V2Only)
5402 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00005403 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005404 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005405 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005406 if (!TwoInputs)
5407 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00005408
Nate Begemanb9a47b82009-02-23 08:49:38 +00005409 // Calculate the shuffle mask for the second input, shuffle it, and
5410 // OR it with the first shuffled input.
5411 pshufbMask.clear();
5412 for (unsigned i = 0; i != 16; ++i) {
5413 int EltIdx = MaskVals[i];
5414 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005415 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005416 continue;
5417 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005418 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005419 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005420 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005421 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005422 MVT::v16i8, &pshufbMask[0], 16));
5423 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005424 }
Eric Christopherfd179292009-08-27 18:07:15 +00005425
Nate Begemanb9a47b82009-02-23 08:49:38 +00005426 // No SSSE3 - Calculate in place words and then fix all out of place words
5427 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
5428 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005429 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5430 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005431 SDValue NewV = V2Only ? V2 : V1;
5432 for (int i = 0; i != 8; ++i) {
5433 int Elt0 = MaskVals[i*2];
5434 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00005435
Nate Begemanb9a47b82009-02-23 08:49:38 +00005436 // This word of the result is all undef, skip it.
5437 if (Elt0 < 0 && Elt1 < 0)
5438 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005439
Nate Begemanb9a47b82009-02-23 08:49:38 +00005440 // This word of the result is already in the correct place, skip it.
5441 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5442 continue;
5443 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
5444 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005445
Nate Begemanb9a47b82009-02-23 08:49:38 +00005446 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5447 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5448 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00005449
5450 // If Elt0 and Elt1 are defined, are consecutive, and can be load
5451 // using a single extract together, load it and store it.
5452 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005453 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005454 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00005455 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005456 DAG.getIntPtrConstant(i));
5457 continue;
5458 }
5459
Nate Begemanb9a47b82009-02-23 08:49:38 +00005460 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00005461 // source byte is not also odd, shift the extracted word left 8 bits
5462 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005463 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005464 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005465 DAG.getIntPtrConstant(Elt1 / 2));
5466 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005467 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00005468 DAG.getConstant(8,
5469 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005470 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005471 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5472 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005473 }
5474 // If Elt0 is defined, extract it from the appropriate source. If the
5475 // source byte is not also even, shift the extracted word right 8 bits. If
5476 // Elt1 was also defined, OR the extracted values together before
5477 // inserting them in the result.
5478 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005479 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005480 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5481 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005482 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00005483 DAG.getConstant(8,
5484 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005485 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005486 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5487 DAG.getConstant(0x00FF, MVT::i16));
5488 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00005489 : InsElt0;
5490 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005491 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005492 DAG.getIntPtrConstant(i));
5493 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005494 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005495}
5496
Evan Cheng7a831ce2007-12-15 03:00:47 +00005497/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005498/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00005499/// done when every pair / quad of shuffle mask elements point to elements in
5500/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005501/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00005502static
Nate Begeman9008ca62009-04-27 18:41:29 +00005503SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005504 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00005505 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00005506 SDValue V1 = SVOp->getOperand(0);
5507 SDValue V2 = SVOp->getOperand(1);
5508 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00005509 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005510 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00005511 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005512 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00005513 case MVT::v4f32: NewVT = MVT::v2f64; break;
5514 case MVT::v4i32: NewVT = MVT::v2i64; break;
5515 case MVT::v8i16: NewVT = MVT::v4i32; break;
5516 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00005517 }
5518
Nate Begeman9008ca62009-04-27 18:41:29 +00005519 int Scale = NumElems / NewWidth;
5520 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00005521 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005522 int StartIdx = -1;
5523 for (int j = 0; j < Scale; ++j) {
5524 int EltIdx = SVOp->getMaskElt(i+j);
5525 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005526 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00005527 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00005528 StartIdx = EltIdx - (EltIdx % Scale);
5529 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00005530 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005531 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005532 if (StartIdx == -1)
5533 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00005534 else
Nate Begeman9008ca62009-04-27 18:41:29 +00005535 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005536 }
5537
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005538 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
5539 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005540 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005541}
5542
Evan Chengd880b972008-05-09 21:53:03 +00005543/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005544///
Owen Andersone50ed302009-08-10 22:56:29 +00005545static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00005546 SDValue SrcOp, SelectionDAG &DAG,
5547 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005548 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005549 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00005550 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00005551 LD = dyn_cast<LoadSDNode>(SrcOp);
5552 if (!LD) {
5553 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
5554 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00005555 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00005556 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00005557 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005558 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00005559 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005560 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00005561 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005562 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005563 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5564 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5565 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00005566 SrcOp.getOperand(0)
5567 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005568 }
5569 }
5570 }
5571
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005572 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005573 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005574 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00005575 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005576}
5577
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005578/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
5579/// which could not be matched by any known target speficic shuffle
5580static SDValue
5581LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
5582 return SDValue();
5583}
5584
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005585/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
5586/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00005587static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005588LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005589 SDValue V1 = SVOp->getOperand(0);
5590 SDValue V2 = SVOp->getOperand(1);
5591 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00005592 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00005593
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005594 assert(VT.getSizeInBits() == 128 && "Unsupported vector size");
5595
Evan Chengace3c172008-07-22 21:13:36 +00005596 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00005597 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005598 SmallVector<int, 8> Mask1(4U, -1);
5599 SmallVector<int, 8> PermMask;
5600 SVOp->getMask(PermMask);
5601
Evan Chengace3c172008-07-22 21:13:36 +00005602 unsigned NumHi = 0;
5603 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00005604 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005605 int Idx = PermMask[i];
5606 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005607 Locs[i] = std::make_pair(-1, -1);
5608 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005609 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
5610 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005611 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00005612 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005613 NumLo++;
5614 } else {
5615 Locs[i] = std::make_pair(1, NumHi);
5616 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005617 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005618 NumHi++;
5619 }
5620 }
5621 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005622
Evan Chengace3c172008-07-22 21:13:36 +00005623 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005624 // If no more than two elements come from either vector. This can be
5625 // implemented with two shuffles. First shuffle gather the elements.
5626 // The second shuffle, which takes the first shuffle as both of its
5627 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00005628 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005629
Nate Begeman9008ca62009-04-27 18:41:29 +00005630 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00005631
Evan Chengace3c172008-07-22 21:13:36 +00005632 for (unsigned i = 0; i != 4; ++i) {
5633 if (Locs[i].first == -1)
5634 continue;
5635 else {
5636 unsigned Idx = (i < 2) ? 0 : 4;
5637 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005638 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005639 }
5640 }
5641
Nate Begeman9008ca62009-04-27 18:41:29 +00005642 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005643 } else if (NumLo == 3 || NumHi == 3) {
5644 // Otherwise, we must have three elements from one vector, call it X, and
5645 // one element from the other, call it Y. First, use a shufps to build an
5646 // intermediate vector with the one element from Y and the element from X
5647 // that will be in the same half in the final destination (the indexes don't
5648 // matter). Then, use a shufps to build the final vector, taking the half
5649 // containing the element from Y from the intermediate, and the other half
5650 // from X.
5651 if (NumHi == 3) {
5652 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00005653 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005654 std::swap(V1, V2);
5655 }
5656
5657 // Find the element from V2.
5658 unsigned HiIndex;
5659 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005660 int Val = PermMask[HiIndex];
5661 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005662 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005663 if (Val >= 4)
5664 break;
5665 }
5666
Nate Begeman9008ca62009-04-27 18:41:29 +00005667 Mask1[0] = PermMask[HiIndex];
5668 Mask1[1] = -1;
5669 Mask1[2] = PermMask[HiIndex^1];
5670 Mask1[3] = -1;
5671 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005672
5673 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005674 Mask1[0] = PermMask[0];
5675 Mask1[1] = PermMask[1];
5676 Mask1[2] = HiIndex & 1 ? 6 : 4;
5677 Mask1[3] = HiIndex & 1 ? 4 : 6;
5678 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005679 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005680 Mask1[0] = HiIndex & 1 ? 2 : 0;
5681 Mask1[1] = HiIndex & 1 ? 0 : 2;
5682 Mask1[2] = PermMask[2];
5683 Mask1[3] = PermMask[3];
5684 if (Mask1[2] >= 0)
5685 Mask1[2] += 4;
5686 if (Mask1[3] >= 0)
5687 Mask1[3] += 4;
5688 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005689 }
Evan Chengace3c172008-07-22 21:13:36 +00005690 }
5691
5692 // Break it into (shuffle shuffle_hi, shuffle_lo).
5693 Locs.clear();
David Greenec4db4e52011-02-28 19:06:56 +00005694 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005695 SmallVector<int,8> LoMask(4U, -1);
5696 SmallVector<int,8> HiMask(4U, -1);
5697
5698 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005699 unsigned MaskIdx = 0;
5700 unsigned LoIdx = 0;
5701 unsigned HiIdx = 2;
5702 for (unsigned i = 0; i != 4; ++i) {
5703 if (i == 2) {
5704 MaskPtr = &HiMask;
5705 MaskIdx = 1;
5706 LoIdx = 0;
5707 HiIdx = 2;
5708 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005709 int Idx = PermMask[i];
5710 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005711 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005712 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005713 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005714 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005715 LoIdx++;
5716 } else {
5717 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005718 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005719 HiIdx++;
5720 }
5721 }
5722
Nate Begeman9008ca62009-04-27 18:41:29 +00005723 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5724 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5725 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005726 for (unsigned i = 0; i != 4; ++i) {
5727 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005728 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005729 } else {
5730 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005731 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005732 }
5733 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005734 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005735}
5736
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005737static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005738 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005739 V = V.getOperand(0);
5740 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5741 V = V.getOperand(0);
5742 if (MayFoldLoad(V))
5743 return true;
5744 return false;
5745}
5746
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005747// FIXME: the version above should always be used. Since there's
5748// a bug where several vector shuffles can't be folded because the
5749// DAG is not updated during lowering and a node claims to have two
5750// uses while it only has one, use this version, and let isel match
5751// another instruction if the load really happens to have more than
5752// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005753// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005754static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005755 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005756 V = V.getOperand(0);
5757 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5758 V = V.getOperand(0);
5759 if (ISD::isNormalLoad(V.getNode()))
5760 return true;
5761 return false;
5762}
5763
5764/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5765/// a vector extract, and if both can be later optimized into a single load.
5766/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5767/// here because otherwise a target specific shuffle node is going to be
5768/// emitted for this shuffle, and the optimization not done.
5769/// FIXME: This is probably not the best approach, but fix the problem
5770/// until the right path is decided.
5771static
5772bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5773 const TargetLowering &TLI) {
5774 EVT VT = V.getValueType();
5775 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5776
5777 // Be sure that the vector shuffle is present in a pattern like this:
5778 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5779 if (!V.hasOneUse())
5780 return false;
5781
5782 SDNode *N = *V.getNode()->use_begin();
5783 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5784 return false;
5785
5786 SDValue EltNo = N->getOperand(1);
5787 if (!isa<ConstantSDNode>(EltNo))
5788 return false;
5789
5790 // If the bit convert changed the number of elements, it is unsafe
5791 // to examine the mask.
5792 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005793 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005794 EVT SrcVT = V.getOperand(0).getValueType();
5795 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5796 return false;
5797 V = V.getOperand(0);
5798 HasShuffleIntoBitcast = true;
5799 }
5800
5801 // Select the input vector, guarding against out of range extract vector.
5802 unsigned NumElems = VT.getVectorNumElements();
5803 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5804 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5805 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5806
5807 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005808 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005809 V = V.getOperand(0);
5810
5811 if (ISD::isNormalLoad(V.getNode())) {
5812 // Is the original load suitable?
5813 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5814
5815 // FIXME: avoid the multi-use bug that is preventing lots of
5816 // of foldings to be detected, this is still wrong of course, but
5817 // give the temporary desired behavior, and if it happens that
5818 // the load has real more uses, during isel it will not fold, and
5819 // will generate poor code.
5820 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5821 return false;
5822
5823 if (!HasShuffleIntoBitcast)
5824 return true;
5825
5826 // If there's a bitcast before the shuffle, check if the load type and
5827 // alignment is valid.
5828 unsigned Align = LN0->getAlignment();
5829 unsigned NewAlign =
5830 TLI.getTargetData()->getABITypeAlignment(
5831 VT.getTypeForEVT(*DAG.getContext()));
5832
5833 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5834 return false;
5835 }
5836
5837 return true;
5838}
5839
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005840static
Evan Cheng835580f2010-10-07 20:50:20 +00005841SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5842 EVT VT = Op.getValueType();
5843
5844 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005845 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
5846 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00005847 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5848 V1, DAG));
5849}
5850
5851static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005852SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5853 bool HasSSE2) {
5854 SDValue V1 = Op.getOperand(0);
5855 SDValue V2 = Op.getOperand(1);
5856 EVT VT = Op.getValueType();
5857
5858 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5859
5860 if (HasSSE2 && VT == MVT::v2f64)
5861 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5862
5863 // v4f32 or v4i32
5864 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5865}
5866
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005867static
5868SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5869 SDValue V1 = Op.getOperand(0);
5870 SDValue V2 = Op.getOperand(1);
5871 EVT VT = Op.getValueType();
5872
5873 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5874 "unsupported shuffle type");
5875
5876 if (V2.getOpcode() == ISD::UNDEF)
5877 V2 = V1;
5878
5879 // v4i32 or v4f32
5880 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5881}
5882
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005883static
5884SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5885 SDValue V1 = Op.getOperand(0);
5886 SDValue V2 = Op.getOperand(1);
5887 EVT VT = Op.getValueType();
5888 unsigned NumElems = VT.getVectorNumElements();
5889
5890 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5891 // operand of these instructions is only memory, so check if there's a
5892 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5893 // same masks.
5894 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005895
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005896 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005897 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005898 CanFoldLoad = true;
5899
5900 // When V1 is a load, it can be folded later into a store in isel, example:
5901 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5902 // turns into:
5903 // (MOVLPSmr addr:$src1, VR128:$src2)
5904 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005905 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005906 CanFoldLoad = true;
5907
Eric Christopher893a8822011-02-20 05:04:42 +00005908 // Both of them can't be memory operations though.
5909 if (MayFoldVectorLoad(V1) && MayFoldVectorLoad(V2))
5910 CanFoldLoad = false;
Owen Anderson95771af2011-02-25 21:41:48 +00005911
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005912 if (CanFoldLoad) {
5913 if (HasSSE2 && NumElems == 2)
5914 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5915
5916 if (NumElems == 4)
5917 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5918 }
5919
5920 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5921 // movl and movlp will both match v2i64, but v2i64 is never matched by
5922 // movl earlier because we make it strict to avoid messing with the movlp load
5923 // folding logic (see the code above getMOVLP call). Match it here then,
5924 // this is horrible, but will stay like this until we move all shuffle
5925 // matching to x86 specific nodes. Note that for the 1st condition all
5926 // types are matched with movsd.
5927 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5928 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5929 else if (HasSSE2)
5930 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5931
5932
5933 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5934
5935 // Invert the operand order and use SHUFPS to match it.
5936 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5937 X86::getShuffleSHUFImmediate(SVOp), DAG);
5938}
5939
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00005940static inline unsigned getUNPCKLOpcode(EVT VT) {
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005941 switch(VT.getSimpleVT().SimpleTy) {
5942 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5943 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005944 case MVT::v4f32: return X86ISD::UNPCKLPS;
5945 case MVT::v2f64: return X86ISD::UNPCKLPD;
David Greenec4db4e52011-02-28 19:06:56 +00005946 case MVT::v8f32: return X86ISD::VUNPCKLPSY;
5947 case MVT::v4f64: return X86ISD::VUNPCKLPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005948 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5949 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5950 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00005951 llvm_unreachable("Unknown type for unpckl");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005952 }
5953 return 0;
5954}
5955
5956static inline unsigned getUNPCKHOpcode(EVT VT) {
5957 switch(VT.getSimpleVT().SimpleTy) {
5958 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5959 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5960 case MVT::v4f32: return X86ISD::UNPCKHPS;
5961 case MVT::v2f64: return X86ISD::UNPCKHPD;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00005962 case MVT::v8f32: return X86ISD::VUNPCKHPSY;
5963 case MVT::v4f64: return X86ISD::VUNPCKHPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005964 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5965 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5966 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00005967 llvm_unreachable("Unknown type for unpckh");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005968 }
5969 return 0;
5970}
5971
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00005972static inline unsigned getVPERMILOpcode(EVT VT) {
5973 switch(VT.getSimpleVT().SimpleTy) {
5974 case MVT::v4i32:
5975 case MVT::v4f32: return X86ISD::VPERMILPS;
5976 case MVT::v2i64:
5977 case MVT::v2f64: return X86ISD::VPERMILPD;
5978 case MVT::v8i32:
5979 case MVT::v8f32: return X86ISD::VPERMILPSY;
5980 case MVT::v4i64:
5981 case MVT::v4f64: return X86ISD::VPERMILPDY;
5982 default:
5983 llvm_unreachable("Unknown type for vpermil");
5984 }
5985 return 0;
5986}
5987
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005988static
5989SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005990 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005991 const X86Subtarget *Subtarget) {
5992 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5993 EVT VT = Op.getValueType();
5994 DebugLoc dl = Op.getDebugLoc();
5995 SDValue V1 = Op.getOperand(0);
5996 SDValue V2 = Op.getOperand(1);
5997
5998 if (isZeroShuffle(SVOp))
5999 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
6000
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006001 // Handle splat operations
6002 if (SVOp->isSplat()) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006003 unsigned NumElem = VT.getVectorNumElements();
6004 // Special case, this is the only place now where it's allowed to return
6005 // a vector_shuffle operation without using a target specific node, because
6006 // *hopefully* it will be optimized away by the dag combiner. FIXME: should
6007 // this be moved to DAGCombine instead?
6008 if (NumElem <= 4 && CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006009 return Op;
6010
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00006011 // Since there's no native support for scalar_to_vector for 256-bit AVX, a
6012 // 128-bit scalar_to_vector + INSERT_SUBVECTOR is generated. Recognize this
6013 // idiom and do the shuffle before the insertion, this yields less
6014 // instructions in the end.
6015 if (VT.is256BitVector() &&
6016 V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
6017 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
6018 V1.getOperand(1).getOpcode() == ISD::SCALAR_TO_VECTOR)
6019 return PromoteVectorToScalarSplat(SVOp, DAG);
6020
6021 // Handle splats by matching through known shuffle masks
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006022 if ((VT.is128BitVector() && NumElem <= 4) ||
6023 (VT.is256BitVector() && NumElem <= 8))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006024 return SDValue();
6025
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006026 // All i16 and i8 vector types can't be used directly by a generic shuffle
6027 // instruction because the target has no such instruction. Generate shuffles
6028 // which repeat i16 and i8 several times until they fit in i32, and then can
6029 // be manipulated by target suported shuffles. After the insertion of the
6030 // necessary shuffles, the result is bitcasted back to v4f32 or v8f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006031 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006032 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006033
6034 // If the shuffle can be profitably rewritten as a narrower shuffle, then
6035 // do it!
6036 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
6037 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6038 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006039 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006040 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
6041 // FIXME: Figure out a cleaner way to do this.
6042 // Try to make use of movq to zero out the top part.
6043 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
6044 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6045 if (NewOp.getNode()) {
6046 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
6047 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
6048 DAG, Subtarget, dl);
6049 }
6050 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
6051 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6052 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
6053 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
6054 DAG, Subtarget, dl);
6055 }
6056 }
6057 return SDValue();
6058}
6059
Dan Gohman475871a2008-07-27 21:46:04 +00006060SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006061X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00006062 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00006063 SDValue V1 = Op.getOperand(0);
6064 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00006065 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006066 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00006067 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006068 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006069 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
6070 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00006071 bool V1IsSplat = false;
6072 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006073 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006074 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006075 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006076 MachineFunction &MF = DAG.getMachineFunction();
6077 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006078
Dale Johannesen0488fb62010-09-30 23:57:10 +00006079 // Shuffle operations on MMX not supported.
6080 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00006081 return Op;
6082
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006083 // Vector shuffle lowering takes 3 steps:
6084 //
6085 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
6086 // narrowing and commutation of operands should be handled.
6087 // 2) Matching of shuffles with known shuffle masks to x86 target specific
6088 // shuffle nodes.
6089 // 3) Rewriting of unmatched masks into new generic shuffle operations,
6090 // so the shuffle can be broken into other shuffles and the legalizer can
6091 // try the lowering again.
6092 //
6093 // The general ideia is that no vector_shuffle operation should be left to
6094 // be matched during isel, all of them must be converted to a target specific
6095 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00006096
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006097 // Normalize the input vectors. Here splats, zeroed vectors, profitable
6098 // narrowing and commutation of operands should be handled. The actual code
6099 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006100 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006101 if (NewOp.getNode())
6102 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00006103
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006104 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
6105 // unpckh_undef). Only use pshufd if speed is more important than size.
6106 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006107 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006108 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006109 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00006110
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006111 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00006112 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00006113 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006114
Dale Johannesen0488fb62010-09-30 23:57:10 +00006115 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006116 return getMOVHighToLow(Op, dl, DAG);
6117
6118 // Use to match splats
6119 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
6120 (VT == MVT::v2f64 || VT == MVT::v2i64))
6121 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
6122
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006123 if (X86::isPSHUFDMask(SVOp)) {
6124 // The actual implementation will match the mask in the if above and then
6125 // during isel it can match several different instructions, not only pshufd
6126 // as its name says, sad but true, emulate the behavior for now...
6127 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
6128 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
6129
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006130 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6131
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006132 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006133 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
6134
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006135 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006136 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
6137 TargetMask, DAG);
6138
6139 if (VT == MVT::v4f32)
6140 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
6141 TargetMask, DAG);
6142 }
Eric Christopherfd179292009-08-27 18:07:15 +00006143
Evan Chengf26ffe92008-05-29 08:22:04 +00006144 // Check if this can be converted into a logical shift.
6145 bool isLeft = false;
6146 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00006147 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00006148 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00006149 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00006150 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006151 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00006152 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006153 EVT EltVT = VT.getVectorElementType();
6154 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006155 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006156 }
Eric Christopherfd179292009-08-27 18:07:15 +00006157
Nate Begeman9008ca62009-04-27 18:41:29 +00006158 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006159 if (V1IsUndef)
6160 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00006161 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00006162 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00006163 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006164 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006165 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6166
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006167 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006168 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6169 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00006170 }
Eric Christopherfd179292009-08-27 18:07:15 +00006171
Nate Begeman9008ca62009-04-27 18:41:29 +00006172 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00006173 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
6174 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006175
Dale Johannesen0488fb62010-09-30 23:57:10 +00006176 if (X86::isMOVHLPSMask(SVOp))
6177 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006178
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006179 if (X86::isMOVSHDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006180 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006181
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006182 if (X86::isMOVSLDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006183 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00006184
Dale Johannesen0488fb62010-09-30 23:57:10 +00006185 if (X86::isMOVLPMask(SVOp))
6186 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006187
Nate Begeman9008ca62009-04-27 18:41:29 +00006188 if (ShouldXformToMOVHLPS(SVOp) ||
6189 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
6190 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006191
Evan Chengf26ffe92008-05-29 08:22:04 +00006192 if (isShift) {
6193 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006194 EVT EltVT = VT.getVectorElementType();
6195 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006196 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006197 }
Eric Christopherfd179292009-08-27 18:07:15 +00006198
Evan Cheng9eca5e82006-10-25 21:49:50 +00006199 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00006200 // FIXME: This should also accept a bitcast of a splat? Be careful, not
6201 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00006202 V1IsSplat = isSplatVector(V1.getNode());
6203 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00006204
Chris Lattner8a594482007-11-25 00:24:49 +00006205 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00006206 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006207 Op = CommuteVectorShuffle(SVOp, DAG);
6208 SVOp = cast<ShuffleVectorSDNode>(Op);
6209 V1 = SVOp->getOperand(0);
6210 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00006211 std::swap(V1IsSplat, V2IsSplat);
6212 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006213 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00006214 }
6215
Nate Begeman9008ca62009-04-27 18:41:29 +00006216 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
6217 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00006218 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00006219 return V1;
6220 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
6221 // the instruction selector will not match, so get a canonical MOVL with
6222 // swapped operands to undo the commute.
6223 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00006224 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006225
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006226 if (X86::isUNPCKLMask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006227 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006228
6229 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006230 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00006231
Evan Cheng9bbbb982006-10-25 20:48:19 +00006232 if (V2IsSplat) {
6233 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00006234 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00006235 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00006236 SDValue NewMask = NormalizeMask(SVOp, DAG);
6237 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
6238 if (NSVOp != SVOp) {
6239 if (X86::isUNPCKLMask(NSVOp, true)) {
6240 return NewMask;
6241 } else if (X86::isUNPCKHMask(NSVOp, true)) {
6242 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006243 }
6244 }
6245 }
6246
Evan Cheng9eca5e82006-10-25 21:49:50 +00006247 if (Commuted) {
6248 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00006249 // FIXME: this seems wrong.
6250 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
6251 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006252
6253 if (X86::isUNPCKLMask(NewSVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006254 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006255
6256 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006257 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006258 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006259
Nate Begeman9008ca62009-04-27 18:41:29 +00006260 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00006261 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00006262 return CommuteVectorShuffle(SVOp, DAG);
6263
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00006264 // The checks below are all present in isShuffleMaskLegal, but they are
6265 // inlined here right now to enable us to directly emit target specific
6266 // nodes, and remove one by one until they don't return Op anymore.
6267 SmallVector<int, 16> M;
6268 SVOp->getMask(M);
6269
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006270 if (isPALIGNRMask(M, VT, HasSSSE3))
6271 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
6272 X86::getShufflePALIGNRImmediate(SVOp),
6273 DAG);
6274
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006275 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6276 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006277 if (VT == MVT::v2f64)
6278 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006279 if (VT == MVT::v2i64)
6280 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
6281 }
6282
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00006283 if (isPSHUFHWMask(M, VT))
6284 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
6285 X86::getShufflePSHUFHWImmediate(SVOp),
6286 DAG);
6287
6288 if (isPSHUFLWMask(M, VT))
6289 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
6290 X86::getShufflePSHUFLWImmediate(SVOp),
6291 DAG);
6292
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00006293 if (isSHUFPMask(M, VT)) {
6294 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6295 if (VT == MVT::v4f32 || VT == MVT::v4i32)
6296 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
6297 TargetMask, DAG);
6298 if (VT == MVT::v2f64 || VT == MVT::v2i64)
6299 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
6300 TargetMask, DAG);
6301 }
6302
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006303 if (X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006304 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006305 if (X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006306 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006307
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006308 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006309 // Generate target specific nodes for 128 or 256-bit shuffles only
6310 // supported in the AVX instruction set.
6311 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006312
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006313 // Handle VPERMILPS* permutations
6314 if (isVPERMILPSMask(M, VT, Subtarget))
6315 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6316 getShuffleVPERMILPSImmediate(SVOp), DAG);
6317
6318 // Handle VPERMILPD* permutations
6319 if (isVPERMILPDMask(M, VT, Subtarget))
6320 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6321 getShuffleVPERMILPDImmediate(SVOp), DAG);
6322
6323 //===--------------------------------------------------------------------===//
6324 // Since no target specific shuffle was selected for this generic one,
6325 // lower it into other known shuffles. FIXME: this isn't true yet, but
6326 // this is the plan.
6327 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00006328
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00006329 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
6330 if (VT == MVT::v8i16) {
6331 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
6332 if (NewOp.getNode())
6333 return NewOp;
6334 }
6335
6336 if (VT == MVT::v16i8) {
6337 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
6338 if (NewOp.getNode())
6339 return NewOp;
6340 }
6341
6342 // Handle all 128-bit wide vectors with 4 elements, and match them with
6343 // several different shuffle types.
6344 if (NumElems == 4 && VT.getSizeInBits() == 128)
6345 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
6346
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006347 // Handle general 256-bit shuffles
6348 if (VT.is256BitVector())
6349 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
6350
Dan Gohman475871a2008-07-27 21:46:04 +00006351 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006352}
6353
Dan Gohman475871a2008-07-27 21:46:04 +00006354SDValue
6355X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00006356 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006357 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006358 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006359
6360 if (Op.getOperand(0).getValueType().getSizeInBits() != 128)
6361 return SDValue();
6362
Duncan Sands83ec4b62008-06-06 12:08:01 +00006363 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006364 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006365 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006366 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006367 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006368 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006369 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00006370 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6371 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
6372 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006373 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6374 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006375 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006376 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00006377 Op.getOperand(0)),
6378 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006379 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006380 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006381 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006382 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006383 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00006384 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00006385 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
6386 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006387 // result has a single use which is a store or a bitcast to i32. And in
6388 // the case of a store, it's not worth it if the index is a constant 0,
6389 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00006390 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00006391 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006392 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006393 if ((User->getOpcode() != ISD::STORE ||
6394 (isa<ConstantSDNode>(Op.getOperand(1)) &&
6395 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006396 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006397 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00006398 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00006399 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006400 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00006401 Op.getOperand(0)),
6402 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006403 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00006404 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00006405 // ExtractPS works with constant index.
6406 if (isa<ConstantSDNode>(Op.getOperand(1)))
6407 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006408 }
Dan Gohman475871a2008-07-27 21:46:04 +00006409 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006410}
6411
6412
Dan Gohman475871a2008-07-27 21:46:04 +00006413SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006414X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6415 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006416 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00006417 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006418
David Greene74a579d2011-02-10 16:57:36 +00006419 SDValue Vec = Op.getOperand(0);
6420 EVT VecVT = Vec.getValueType();
6421
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006422 // If this is a 256-bit vector result, first extract the 128-bit vector and
6423 // then extract the element from the 128-bit vector.
6424 if (VecVT.getSizeInBits() == 256) {
David Greene74a579d2011-02-10 16:57:36 +00006425 DebugLoc dl = Op.getNode()->getDebugLoc();
6426 unsigned NumElems = VecVT.getVectorNumElements();
6427 SDValue Idx = Op.getOperand(1);
David Greene74a579d2011-02-10 16:57:36 +00006428 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
6429
6430 // Get the 128-bit vector.
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006431 bool Upper = IdxVal >= NumElems/2;
6432 Vec = Extract128BitVector(Vec,
6433 DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32), DAG, dl);
David Greene74a579d2011-02-10 16:57:36 +00006434
David Greene74a579d2011-02-10 16:57:36 +00006435 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006436 Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : Idx);
David Greene74a579d2011-02-10 16:57:36 +00006437 }
6438
6439 assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
6440
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006441 if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006442 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006443 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00006444 return Res;
6445 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00006446
Owen Andersone50ed302009-08-10 22:56:29 +00006447 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006448 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006449 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006450 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006451 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006452 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006453 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006454 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6455 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006456 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006457 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00006458 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006459 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00006460 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00006461 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006462 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00006463 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006464 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006465 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006466 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006467 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006468 if (Idx == 0)
6469 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00006470
Evan Cheng0db9fe62006-04-25 20:13:52 +00006471 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00006472 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006473 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006474 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006475 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006476 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006477 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00006478 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006479 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
6480 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
6481 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006482 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006483 if (Idx == 0)
6484 return Op;
6485
6486 // UNPCKHPD the element to the lowest double word, then movsd.
6487 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6488 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00006489 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006490 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006491 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006492 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006493 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006494 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006495 }
6496
Dan Gohman475871a2008-07-27 21:46:04 +00006497 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006498}
6499
Dan Gohman475871a2008-07-27 21:46:04 +00006500SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006501X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6502 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006503 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006504 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006505 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006506
Dan Gohman475871a2008-07-27 21:46:04 +00006507 SDValue N0 = Op.getOperand(0);
6508 SDValue N1 = Op.getOperand(1);
6509 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00006510
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006511 if (VT.getSizeInBits() == 256)
6512 return SDValue();
6513
Dan Gohman8a55ce42009-09-23 21:02:20 +00006514 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00006515 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006516 unsigned Opc;
6517 if (VT == MVT::v8i16)
6518 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006519 else if (VT == MVT::v16i8)
6520 Opc = X86ISD::PINSRB;
6521 else
6522 Opc = X86ISD::PINSRB;
6523
Nate Begeman14d12ca2008-02-11 04:19:36 +00006524 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
6525 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006526 if (N1.getValueType() != MVT::i32)
6527 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6528 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006529 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00006530 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006531 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006532 // Bits [7:6] of the constant are the source select. This will always be
6533 // zero here. The DAG Combiner may combine an extract_elt index into these
6534 // bits. For example (insert (extract, 3), 2) could be matched by putting
6535 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00006536 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00006537 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00006538 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00006539 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006540 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00006541 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00006542 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00006543 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006544 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00006545 // PINSR* works with constant index.
6546 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006547 }
Dan Gohman475871a2008-07-27 21:46:04 +00006548 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006549}
6550
Dan Gohman475871a2008-07-27 21:46:04 +00006551SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006552X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006553 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006554 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006555
David Greene6b381262011-02-09 15:32:06 +00006556 DebugLoc dl = Op.getDebugLoc();
6557 SDValue N0 = Op.getOperand(0);
6558 SDValue N1 = Op.getOperand(1);
6559 SDValue N2 = Op.getOperand(2);
6560
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006561 // If this is a 256-bit vector result, first extract the 128-bit vector,
6562 // insert the element into the extracted half and then place it back.
6563 if (VT.getSizeInBits() == 256) {
David Greene6b381262011-02-09 15:32:06 +00006564 if (!isa<ConstantSDNode>(N2))
6565 return SDValue();
6566
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006567 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00006568 unsigned NumElems = VT.getVectorNumElements();
6569 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006570 bool Upper = IdxVal >= NumElems/2;
6571 SDValue Ins128Idx = DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32);
6572 SDValue V = Extract128BitVector(N0, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00006573
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006574 // Insert the element into the desired half.
6575 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V,
6576 N1, Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : N2);
David Greene6b381262011-02-09 15:32:06 +00006577
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006578 // Insert the changed part back to the 256-bit vector
6579 return Insert128BitVector(N0, V, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00006580 }
6581
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006582 if (Subtarget->hasSSE41() || Subtarget->hasAVX())
Nate Begeman14d12ca2008-02-11 04:19:36 +00006583 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
6584
Dan Gohman8a55ce42009-09-23 21:02:20 +00006585 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00006586 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00006587
Dan Gohman8a55ce42009-09-23 21:02:20 +00006588 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00006589 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
6590 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006591 if (N1.getValueType() != MVT::i32)
6592 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6593 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006594 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00006595 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006596 }
Dan Gohman475871a2008-07-27 21:46:04 +00006597 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006598}
6599
Dan Gohman475871a2008-07-27 21:46:04 +00006600SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006601X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006602 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006603 DebugLoc dl = Op.getDebugLoc();
David Greene2fcdfb42011-02-10 23:11:29 +00006604 EVT OpVT = Op.getValueType();
6605
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006606 // If this is a 256-bit vector result, first insert into a 128-bit
6607 // vector and then insert into the 256-bit vector.
6608 if (OpVT.getSizeInBits() > 128) {
6609 // Insert into a 128-bit vector.
6610 EVT VT128 = EVT::getVectorVT(*Context,
6611 OpVT.getVectorElementType(),
6612 OpVT.getVectorNumElements() / 2);
6613
6614 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
6615
6616 // Insert the 128-bit vector.
6617 return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op,
6618 DAG.getConstant(0, MVT::i32),
6619 DAG, dl);
6620 }
6621
Chris Lattnerf172ecd2010-07-04 23:07:25 +00006622 if (Op.getValueType() == MVT::v1i64 &&
6623 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00006624 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00006625
Owen Anderson825b72b2009-08-11 20:47:22 +00006626 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00006627 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
6628 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006629 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00006630 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006631}
6632
David Greene91585092011-01-26 15:38:49 +00006633// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
6634// a simple subregister reference or explicit instructions to grab
6635// upper bits of a vector.
6636SDValue
6637X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6638 if (Subtarget->hasAVX()) {
David Greenea5f26012011-02-07 19:36:54 +00006639 DebugLoc dl = Op.getNode()->getDebugLoc();
6640 SDValue Vec = Op.getNode()->getOperand(0);
6641 SDValue Idx = Op.getNode()->getOperand(1);
6642
6643 if (Op.getNode()->getValueType(0).getSizeInBits() == 128
6644 && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
6645 return Extract128BitVector(Vec, Idx, DAG, dl);
6646 }
David Greene91585092011-01-26 15:38:49 +00006647 }
6648 return SDValue();
6649}
6650
David Greenecfe33c42011-01-26 19:13:22 +00006651// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
6652// simple superregister reference or explicit instructions to insert
6653// the upper bits of a vector.
6654SDValue
6655X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6656 if (Subtarget->hasAVX()) {
6657 DebugLoc dl = Op.getNode()->getDebugLoc();
6658 SDValue Vec = Op.getNode()->getOperand(0);
6659 SDValue SubVec = Op.getNode()->getOperand(1);
6660 SDValue Idx = Op.getNode()->getOperand(2);
6661
6662 if (Op.getNode()->getValueType(0).getSizeInBits() == 256
6663 && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
David Greenea5f26012011-02-07 19:36:54 +00006664 return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00006665 }
6666 }
6667 return SDValue();
6668}
6669
Bill Wendling056292f2008-09-16 21:48:12 +00006670// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
6671// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
6672// one of the above mentioned nodes. It has to be wrapped because otherwise
6673// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
6674// be used to form addressing mode. These wrapped nodes will be selected
6675// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00006676SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006677X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006678 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006679
Chris Lattner41621a22009-06-26 19:22:52 +00006680 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6681 // global base reg.
6682 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006683 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006684 CodeModel::Model M = getTargetMachine().getCodeModel();
6685
Chris Lattner4f066492009-07-11 20:29:19 +00006686 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006687 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006688 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006689 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006690 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006691 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006692 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006693
Evan Cheng1606e8e2009-03-13 07:51:59 +00006694 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00006695 CP->getAlignment(),
6696 CP->getOffset(), OpFlag);
6697 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00006698 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006699 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00006700 if (OpFlag) {
6701 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00006702 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006703 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006704 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006705 }
6706
6707 return Result;
6708}
6709
Dan Gohmand858e902010-04-17 15:26:15 +00006710SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006711 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006712
Chris Lattner18c59872009-06-27 04:16:01 +00006713 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6714 // global base reg.
6715 unsigned char OpFlag = 0;
6716 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006717 CodeModel::Model M = getTargetMachine().getCodeModel();
6718
Chris Lattner4f066492009-07-11 20:29:19 +00006719 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006720 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006721 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006722 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006723 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006724 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006725 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006726
Chris Lattner18c59872009-06-27 04:16:01 +00006727 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
6728 OpFlag);
6729 DebugLoc DL = JT->getDebugLoc();
6730 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006731
Chris Lattner18c59872009-06-27 04:16:01 +00006732 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00006733 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00006734 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6735 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006736 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006737 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006738
Chris Lattner18c59872009-06-27 04:16:01 +00006739 return Result;
6740}
6741
6742SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006743X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006744 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00006745
Chris Lattner18c59872009-06-27 04:16:01 +00006746 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6747 // global base reg.
6748 unsigned char OpFlag = 0;
6749 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006750 CodeModel::Model M = getTargetMachine().getCodeModel();
6751
Chris Lattner4f066492009-07-11 20:29:19 +00006752 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006753 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006754 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006755 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006756 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006757 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006758 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006759
Chris Lattner18c59872009-06-27 04:16:01 +00006760 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00006761
Chris Lattner18c59872009-06-27 04:16:01 +00006762 DebugLoc DL = Op.getDebugLoc();
6763 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006764
6765
Chris Lattner18c59872009-06-27 04:16:01 +00006766 // With PIC, the address is actually $g + Offset.
6767 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00006768 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00006769 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6770 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006771 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006772 Result);
6773 }
Eric Christopherfd179292009-08-27 18:07:15 +00006774
Chris Lattner18c59872009-06-27 04:16:01 +00006775 return Result;
6776}
6777
Dan Gohman475871a2008-07-27 21:46:04 +00006778SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006779X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00006780 // Create the TargetBlockAddressAddress node.
6781 unsigned char OpFlags =
6782 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00006783 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00006784 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00006785 DebugLoc dl = Op.getDebugLoc();
6786 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
6787 /*isTarget=*/true, OpFlags);
6788
Dan Gohmanf705adb2009-10-30 01:28:02 +00006789 if (Subtarget->isPICStyleRIPRel() &&
6790 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00006791 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6792 else
6793 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00006794
Dan Gohman29cbade2009-11-20 23:18:13 +00006795 // With PIC, the address is actually $g + Offset.
6796 if (isGlobalRelativeToPICBase(OpFlags)) {
6797 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6798 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
6799 Result);
6800 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00006801
6802 return Result;
6803}
6804
6805SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00006806X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00006807 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00006808 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00006809 // Create the TargetGlobalAddress node, folding in the constant
6810 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00006811 unsigned char OpFlags =
6812 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006813 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00006814 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006815 if (OpFlags == X86II::MO_NO_FLAG &&
6816 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00006817 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00006818 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00006819 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006820 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00006821 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006822 }
Eric Christopherfd179292009-08-27 18:07:15 +00006823
Chris Lattner4f066492009-07-11 20:29:19 +00006824 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006825 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00006826 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6827 else
6828 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00006829
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006830 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00006831 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006832 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6833 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006834 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006835 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006836
Chris Lattner36c25012009-07-10 07:34:39 +00006837 // For globals that require a load from a stub to get the address, emit the
6838 // load.
6839 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00006840 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006841 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006842
Dan Gohman6520e202008-10-18 02:06:02 +00006843 // If there was a non-zero offset that we didn't fold, create an explicit
6844 // addition for it.
6845 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006846 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006847 DAG.getConstant(Offset, getPointerTy()));
6848
Evan Cheng0db9fe62006-04-25 20:13:52 +00006849 return Result;
6850}
6851
Evan Chengda43bcf2008-09-24 00:05:32 +00006852SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006853X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006854 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006855 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006856 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006857}
6858
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006859static SDValue
6860GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006861 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006862 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006863 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006864 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006865 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006866 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006867 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006868 GA->getOffset(),
6869 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006870 if (InFlag) {
6871 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006872 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006873 } else {
6874 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006875 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006876 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006877
6878 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006879 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006880
Rafael Espindola15f1b662009-04-24 12:59:40 +00006881 SDValue Flag = Chain.getValue(1);
6882 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006883}
6884
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006885// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006886static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006887LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006888 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006889 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006890 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6891 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006892 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006893 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006894 InFlag = Chain.getValue(1);
6895
Chris Lattnerb903bed2009-06-26 21:20:29 +00006896 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006897}
6898
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006899// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006900static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006901LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006902 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006903 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6904 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006905}
6906
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006907// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6908// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006909static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006910 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006911 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006912 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006913
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006914 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6915 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6916 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006917
Michael J. Spencerec38de22010-10-10 22:04:20 +00006918 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006919 DAG.getIntPtrConstant(0),
6920 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006921
Chris Lattnerb903bed2009-06-26 21:20:29 +00006922 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006923 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6924 // initialexec.
6925 unsigned WrapperKind = X86ISD::Wrapper;
6926 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006927 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006928 } else if (is64Bit) {
6929 assert(model == TLSModel::InitialExec);
6930 OperandFlags = X86II::MO_GOTTPOFF;
6931 WrapperKind = X86ISD::WrapperRIP;
6932 } else {
6933 assert(model == TLSModel::InitialExec);
6934 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006935 }
Eric Christopherfd179292009-08-27 18:07:15 +00006936
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006937 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6938 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006939 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006940 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006941 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006942 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006943
Rafael Espindola9a580232009-02-27 13:37:18 +00006944 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006945 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006946 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006947
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006948 // The address of the thread local variable is the add of the thread
6949 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006950 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006951}
6952
Dan Gohman475871a2008-07-27 21:46:04 +00006953SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006954X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006955
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006956 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006957 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006958
Eric Christopher30ef0e52010-06-03 04:07:48 +00006959 if (Subtarget->isTargetELF()) {
6960 // TODO: implement the "local dynamic" model
6961 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006962
Eric Christopher30ef0e52010-06-03 04:07:48 +00006963 // If GV is an alias then use the aliasee for determining
6964 // thread-localness.
6965 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6966 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006967
6968 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006969 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006970
Eric Christopher30ef0e52010-06-03 04:07:48 +00006971 switch (model) {
6972 case TLSModel::GeneralDynamic:
6973 case TLSModel::LocalDynamic: // not implemented
6974 if (Subtarget->is64Bit())
6975 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6976 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006977
Eric Christopher30ef0e52010-06-03 04:07:48 +00006978 case TLSModel::InitialExec:
6979 case TLSModel::LocalExec:
6980 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6981 Subtarget->is64Bit());
6982 }
6983 } else if (Subtarget->isTargetDarwin()) {
6984 // Darwin only has one model of TLS. Lower to that.
6985 unsigned char OpFlag = 0;
6986 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6987 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006988
Eric Christopher30ef0e52010-06-03 04:07:48 +00006989 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6990 // global base reg.
6991 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6992 !Subtarget->is64Bit();
6993 if (PIC32)
6994 OpFlag = X86II::MO_TLVP_PIC_BASE;
6995 else
6996 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006997 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006998 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00006999 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00007000 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00007001 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007002
Eric Christopher30ef0e52010-06-03 04:07:48 +00007003 // With PIC32, the address is actually $g + Offset.
7004 if (PIC32)
7005 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7006 DAG.getNode(X86ISD::GlobalBaseReg,
7007 DebugLoc(), getPointerTy()),
7008 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007009
Eric Christopher30ef0e52010-06-03 04:07:48 +00007010 // Lowering the machine isd will make sure everything is in the right
7011 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007012 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007013 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00007014 SDValue Args[] = { Chain, Offset };
7015 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007016
Eric Christopher30ef0e52010-06-03 04:07:48 +00007017 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
7018 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7019 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007020
Eric Christopher30ef0e52010-06-03 04:07:48 +00007021 // And our return value (tls address) is in the standard call return value
7022 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007023 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
7024 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007025 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007026
Eric Christopher30ef0e52010-06-03 04:07:48 +00007027 assert(false &&
7028 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00007029
Torok Edwinc23197a2009-07-14 16:55:14 +00007030 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00007031 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007032}
7033
Evan Cheng0db9fe62006-04-25 20:13:52 +00007034
Nadav Rotem43012222011-05-11 08:12:09 +00007035/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00007036/// take a 2 x i32 value to shift plus a shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00007037SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00007038 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00007039 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007040 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007041 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007042 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00007043 SDValue ShOpLo = Op.getOperand(0);
7044 SDValue ShOpHi = Op.getOperand(1);
7045 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00007046 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00007047 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00007048 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00007049
Dan Gohman475871a2008-07-27 21:46:04 +00007050 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007051 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007052 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
7053 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007054 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007055 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
7056 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007057 }
Evan Chenge3413162006-01-09 18:33:28 +00007058
Owen Anderson825b72b2009-08-11 20:47:22 +00007059 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
7060 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00007061 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00007062 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00007063
Dan Gohman475871a2008-07-27 21:46:04 +00007064 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00007065 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00007066 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
7067 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00007068
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007069 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007070 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7071 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007072 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007073 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7074 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007075 }
7076
Dan Gohman475871a2008-07-27 21:46:04 +00007077 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00007078 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007079}
Evan Chenga3195e82006-01-12 22:54:21 +00007080
Dan Gohmand858e902010-04-17 15:26:15 +00007081SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
7082 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00007083 EVT SrcVT = Op.getOperand(0).getValueType();
Bruno Cardoso Lopese321d7f2011-08-09 05:48:01 +00007084 EVT DstVT = Op.getValueType();
7085 DebugLoc dl = Op.getDebugLoc();
7086
7087 if (SrcVT.isVector() && DstVT.isVector()) {
7088 unsigned SrcVTSize = SrcVT.getSizeInBits();
7089 unsigned DstVTSize = DstVT.getSizeInBits();
7090
7091 // Support directly by the target
7092 if (SrcVTSize == DstVTSize)
7093 return Op;
7094
7095 // Handle v4f64 = sitofp v4i32
7096 if (DstVT != MVT::v4f64 && SrcVT != MVT::v4i32)
7097 return SDValue();
7098
7099 SDValue V = DAG.getNode(ISD::SINT_TO_FP, dl, MVT::v4f32, Op.getOperand(0));
7100 return DAG.getNode(ISD::FP_EXTEND, dl, DstVT, V);
7101 }
Eli Friedman23ef1052009-06-06 03:57:58 +00007102
Dale Johannesen0488fb62010-09-30 23:57:10 +00007103 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007104 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007105
Owen Anderson825b72b2009-08-11 20:47:22 +00007106 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00007107 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00007108
Eli Friedman36df4992009-05-27 00:47:34 +00007109 // These are really Legal; return the operand so the caller accepts it as
7110 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007111 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00007112 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00007113 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00007114 Subtarget->is64Bit()) {
7115 return Op;
7116 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007117
Duncan Sands83ec4b62008-06-06 12:08:01 +00007118 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007119 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00007120 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007121 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00007122 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00007123 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007124 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007125 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007126 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
7127}
Evan Cheng0db9fe62006-04-25 20:13:52 +00007128
Owen Andersone50ed302009-08-10 22:56:29 +00007129SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007130 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00007131 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007132 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00007133 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00007134 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00007135 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007136 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007137 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00007138 else
Owen Anderson825b72b2009-08-11 20:47:22 +00007139 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007140
Chris Lattner492a43e2010-09-22 01:28:21 +00007141 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007142
Stuart Hastings84be9582011-06-02 15:57:11 +00007143 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
7144 MachineMemOperand *MMO;
7145 if (FI) {
7146 int SSFI = FI->getIndex();
7147 MMO =
7148 DAG.getMachineFunction()
7149 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7150 MachineMemOperand::MOLoad, ByteSize, ByteSize);
7151 } else {
7152 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
7153 StackSlot = StackSlot.getOperand(1);
7154 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007155 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007156 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
7157 X86ISD::FILD, DL,
7158 Tys, Ops, array_lengthof(Ops),
7159 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007160
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007161 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007162 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00007163 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007164
7165 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
7166 // shouldn't be necessary except that RFP cannot be live across
7167 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007168 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007169 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
7170 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007171 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00007172 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007173 SDValue Ops[] = {
7174 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
7175 };
Chris Lattner492a43e2010-09-22 01:28:21 +00007176 MachineMemOperand *MMO =
7177 DAG.getMachineFunction()
7178 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007179 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007180
Chris Lattner492a43e2010-09-22 01:28:21 +00007181 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
7182 Ops, array_lengthof(Ops),
7183 Op.getValueType(), MMO);
7184 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007185 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007186 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007187 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007188
Evan Cheng0db9fe62006-04-25 20:13:52 +00007189 return Result;
7190}
7191
Bill Wendling8b8a6362009-01-17 03:56:04 +00007192// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007193SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
7194 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00007195 // This algorithm is not obvious. Here it is in C code, more or less:
7196 /*
7197 double uint64_to_double( uint32_t hi, uint32_t lo ) {
7198 static const __m128i exp = { 0x4330000045300000ULL, 0 };
7199 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00007200
Bill Wendling8b8a6362009-01-17 03:56:04 +00007201 // Copy ints to xmm registers.
7202 __m128i xh = _mm_cvtsi32_si128( hi );
7203 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00007204
Bill Wendling8b8a6362009-01-17 03:56:04 +00007205 // Combine into low half of a single xmm register.
7206 __m128i x = _mm_unpacklo_epi32( xh, xl );
7207 __m128d d;
7208 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00007209
Bill Wendling8b8a6362009-01-17 03:56:04 +00007210 // Merge in appropriate exponents to give the integer bits the right
7211 // magnitude.
7212 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00007213
Bill Wendling8b8a6362009-01-17 03:56:04 +00007214 // Subtract away the biases to deal with the IEEE-754 double precision
7215 // implicit 1.
7216 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00007217
Bill Wendling8b8a6362009-01-17 03:56:04 +00007218 // All conversions up to here are exact. The correctly rounded result is
7219 // calculated using the current rounding mode using the following
7220 // horizontal add.
7221 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
7222 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
7223 // store doesn't really need to be here (except
7224 // maybe to zero the other double)
7225 return sd;
7226 }
7227 */
Dale Johannesen040225f2008-10-21 23:07:49 +00007228
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007229 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00007230 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00007231
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007232 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00007233 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00007234 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
7235 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
7236 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
7237 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007238 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007239 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007240
Bill Wendling8b8a6362009-01-17 03:56:04 +00007241 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00007242 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007243 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00007244 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007245 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007246 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007247 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007248
Owen Anderson825b72b2009-08-11 20:47:22 +00007249 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7250 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007251 Op.getOperand(0),
7252 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007253 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7254 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007255 Op.getOperand(0),
7256 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007257 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
7258 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00007259 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007260 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007261 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007262 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00007263 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00007264 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007265 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007266 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007267
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007268 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00007269 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00007270 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
7271 DAG.getUNDEF(MVT::v2f64), ShufMask);
7272 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
7273 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007274 DAG.getIntPtrConstant(0));
7275}
7276
Bill Wendling8b8a6362009-01-17 03:56:04 +00007277// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007278SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
7279 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007280 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007281 // FP constant to bias correct the final result.
7282 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00007283 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007284
7285 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00007286 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00007287 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007288
Owen Anderson825b72b2009-08-11 20:47:22 +00007289 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007290 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007291 DAG.getIntPtrConstant(0));
7292
7293 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007294 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007295 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007296 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007297 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007298 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007299 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007300 MVT::v2f64, Bias)));
7301 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007302 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007303 DAG.getIntPtrConstant(0));
7304
7305 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007306 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007307
7308 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00007309 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00007310
Owen Anderson825b72b2009-08-11 20:47:22 +00007311 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007312 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00007313 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00007314 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007315 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00007316 }
7317
7318 // Handle final rounding.
7319 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00007320}
7321
Dan Gohmand858e902010-04-17 15:26:15 +00007322SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
7323 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00007324 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007325 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007326
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007327 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00007328 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
7329 // the optimization here.
7330 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00007331 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00007332
Owen Andersone50ed302009-08-10 22:56:29 +00007333 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007334 EVT DstVT = Op.getValueType();
7335 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007336 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007337 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007338 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00007339
7340 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00007341 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007342 if (SrcVT == MVT::i32) {
7343 SDValue WordOff = DAG.getConstant(4, getPointerTy());
7344 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
7345 getPointerTy(), StackSlot, WordOff);
7346 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007347 StackSlot, MachinePointerInfo(),
7348 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007349 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007350 OffsetSlot, MachinePointerInfo(),
7351 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007352 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
7353 return Fild;
7354 }
7355
7356 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
7357 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007358 StackSlot, MachinePointerInfo(),
7359 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007360 // For i64 source, we need to add the appropriate power of 2 if the input
7361 // was negative. This is the same as the optimization in
7362 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
7363 // we must be careful to do the computation in x87 extended precision, not
7364 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00007365 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
7366 MachineMemOperand *MMO =
7367 DAG.getMachineFunction()
7368 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7369 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007370
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007371 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
7372 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007373 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
7374 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007375
7376 APInt FF(32, 0x5F800000ULL);
7377
7378 // Check whether the sign bit is set.
7379 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
7380 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
7381 ISD::SETLT);
7382
7383 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
7384 SDValue FudgePtr = DAG.getConstantPool(
7385 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
7386 getPointerTy());
7387
7388 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
7389 SDValue Zero = DAG.getIntPtrConstant(0);
7390 SDValue Four = DAG.getIntPtrConstant(4);
7391 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
7392 Zero, Four);
7393 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
7394
7395 // Load the value out, extending it from f32 to f80.
7396 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00007397 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00007398 FudgePtr, MachinePointerInfo::getConstantPool(),
7399 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007400 // Extend everything to 80 bits to force it to be done on x87.
7401 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
7402 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007403}
7404
Dan Gohman475871a2008-07-27 21:46:04 +00007405std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00007406FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00007407 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00007408
Owen Andersone50ed302009-08-10 22:56:29 +00007409 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00007410
7411 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007412 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
7413 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00007414 }
7415
Owen Anderson825b72b2009-08-11 20:47:22 +00007416 assert(DstTy.getSimpleVT() <= MVT::i64 &&
7417 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00007418 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00007419
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007420 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007421 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00007422 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007423 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00007424 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007425 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00007426 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007427 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007428
Evan Cheng87c89352007-10-15 20:11:21 +00007429 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
7430 // stack slot.
7431 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00007432 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00007433 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007434 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00007435
Michael J. Spencerec38de22010-10-10 22:04:20 +00007436
7437
Evan Cheng0db9fe62006-04-25 20:13:52 +00007438 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00007439 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007440 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007441 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
7442 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
7443 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007444 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007445
Dan Gohman475871a2008-07-27 21:46:04 +00007446 SDValue Chain = DAG.getEntryNode();
7447 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00007448 EVT TheVT = Op.getOperand(0).getValueType();
7449 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007450 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00007451 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007452 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007453 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007454 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00007455 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00007456 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00007457 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00007458
Chris Lattner492a43e2010-09-22 01:28:21 +00007459 MachineMemOperand *MMO =
7460 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7461 MachineMemOperand::MOLoad, MemSize, MemSize);
7462 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
7463 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007464 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00007465 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007466 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7467 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007468
Chris Lattner07290932010-09-22 01:05:16 +00007469 MachineMemOperand *MMO =
7470 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7471 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007472
Evan Cheng0db9fe62006-04-25 20:13:52 +00007473 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00007474 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00007475 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
7476 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00007477
Chris Lattner27a6c732007-11-24 07:07:01 +00007478 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007479}
7480
Dan Gohmand858e902010-04-17 15:26:15 +00007481SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
7482 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00007483 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007484 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007485
Eli Friedman948e95a2009-05-23 09:59:16 +00007486 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00007487 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00007488 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
7489 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00007490
Chris Lattner27a6c732007-11-24 07:07:01 +00007491 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007492 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007493 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00007494}
7495
Dan Gohmand858e902010-04-17 15:26:15 +00007496SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
7497 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00007498 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
7499 SDValue FIST = Vals.first, StackSlot = Vals.second;
7500 assert(FIST.getNode() && "Unexpected failure");
7501
7502 // Load the result.
7503 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007504 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007505}
7506
Dan Gohmand858e902010-04-17 15:26:15 +00007507SDValue X86TargetLowering::LowerFABS(SDValue Op,
7508 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007509 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007510 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007511 EVT VT = Op.getValueType();
7512 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007513 if (VT.isVector())
7514 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007515 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007516 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007517 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00007518 CV.push_back(C);
7519 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007520 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007521 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00007522 CV.push_back(C);
7523 CV.push_back(C);
7524 CV.push_back(C);
7525 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007526 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007527 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007528 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007529 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007530 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007531 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007532 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007533}
7534
Dan Gohmand858e902010-04-17 15:26:15 +00007535SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007536 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007537 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007538 EVT VT = Op.getValueType();
7539 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00007540 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007541 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007542 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007543 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007544 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00007545 CV.push_back(C);
7546 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007547 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007548 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00007549 CV.push_back(C);
7550 CV.push_back(C);
7551 CV.push_back(C);
7552 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007553 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007554 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007555 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007556 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007557 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007558 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007559 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007560 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007561 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007562 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007563 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007564 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00007565 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007566 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00007567 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007568}
7569
Dan Gohmand858e902010-04-17 15:26:15 +00007570SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007571 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00007572 SDValue Op0 = Op.getOperand(0);
7573 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007574 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007575 EVT VT = Op.getValueType();
7576 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00007577
7578 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007579 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007580 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007581 SrcVT = VT;
7582 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007583 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007584 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007585 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007586 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007587 }
7588
7589 // At this point the operands and the result should have the same
7590 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00007591
Evan Cheng68c47cb2007-01-05 07:55:56 +00007592 // First get the sign bit of second operand.
7593 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007594 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007595 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
7596 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007597 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007598 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
7599 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7600 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7601 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007602 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007603 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007604 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007605 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007606 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007607 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007608 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007609
7610 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007611 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007612 // Op0 is MVT::f32, Op1 is MVT::f64.
7613 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
7614 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
7615 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007616 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00007617 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00007618 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007619 }
7620
Evan Cheng73d6cf12007-01-05 21:37:56 +00007621 // Clear first operand sign bit.
7622 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00007623 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007624 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
7625 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007626 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007627 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
7628 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7629 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7630 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007631 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007632 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007633 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007634 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007635 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007636 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007637 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007638
7639 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00007640 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007641}
7642
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00007643SDValue X86TargetLowering::LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) const {
7644 SDValue N0 = Op.getOperand(0);
7645 DebugLoc dl = Op.getDebugLoc();
7646 EVT VT = Op.getValueType();
7647
7648 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
7649 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
7650 DAG.getConstant(1, VT));
7651 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
7652}
7653
Dan Gohman076aee32009-03-04 19:44:21 +00007654/// Emit nodes that will be selected as "test Op0,Op0", or something
7655/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007656SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007657 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007658 DebugLoc dl = Op.getDebugLoc();
7659
Dan Gohman31125812009-03-07 01:58:32 +00007660 // CF and OF aren't always set the way we want. Determine which
7661 // of these we need.
7662 bool NeedCF = false;
7663 bool NeedOF = false;
7664 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007665 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00007666 case X86::COND_A: case X86::COND_AE:
7667 case X86::COND_B: case X86::COND_BE:
7668 NeedCF = true;
7669 break;
7670 case X86::COND_G: case X86::COND_GE:
7671 case X86::COND_L: case X86::COND_LE:
7672 case X86::COND_O: case X86::COND_NO:
7673 NeedOF = true;
7674 break;
Dan Gohman31125812009-03-07 01:58:32 +00007675 }
7676
Dan Gohman076aee32009-03-04 19:44:21 +00007677 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00007678 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
7679 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007680 if (Op.getResNo() != 0 || NeedOF || NeedCF)
7681 // Emit a CMP with 0, which is the TEST pattern.
7682 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7683 DAG.getConstant(0, Op.getValueType()));
7684
7685 unsigned Opcode = 0;
7686 unsigned NumOperands = 0;
7687 switch (Op.getNode()->getOpcode()) {
7688 case ISD::ADD:
7689 // Due to an isel shortcoming, be conservative if this add is likely to be
7690 // selected as part of a load-modify-store instruction. When the root node
7691 // in a match is a store, isel doesn't know how to remap non-chain non-flag
7692 // uses of other nodes in the match, such as the ADD in this case. This
7693 // leads to the ADD being left around and reselected, with the result being
7694 // two adds in the output. Alas, even if none our users are stores, that
7695 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
7696 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
7697 // climbing the DAG back to the root, and it doesn't seem to be worth the
7698 // effort.
7699 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00007700 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007701 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
7702 goto default_case;
7703
7704 if (ConstantSDNode *C =
7705 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
7706 // An add of one will be selected as an INC.
7707 if (C->getAPIntValue() == 1) {
7708 Opcode = X86ISD::INC;
7709 NumOperands = 1;
7710 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00007711 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007712
7713 // An add of negative one (subtract of one) will be selected as a DEC.
7714 if (C->getAPIntValue().isAllOnesValue()) {
7715 Opcode = X86ISD::DEC;
7716 NumOperands = 1;
7717 break;
7718 }
Dan Gohman076aee32009-03-04 19:44:21 +00007719 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007720
7721 // Otherwise use a regular EFLAGS-setting add.
7722 Opcode = X86ISD::ADD;
7723 NumOperands = 2;
7724 break;
7725 case ISD::AND: {
7726 // If the primary and result isn't used, don't bother using X86ISD::AND,
7727 // because a TEST instruction will be better.
7728 bool NonFlagUse = false;
7729 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7730 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
7731 SDNode *User = *UI;
7732 unsigned UOpNo = UI.getOperandNo();
7733 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
7734 // Look pass truncate.
7735 UOpNo = User->use_begin().getOperandNo();
7736 User = *User->use_begin();
7737 }
7738
7739 if (User->getOpcode() != ISD::BRCOND &&
7740 User->getOpcode() != ISD::SETCC &&
7741 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
7742 NonFlagUse = true;
7743 break;
7744 }
Dan Gohman076aee32009-03-04 19:44:21 +00007745 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007746
7747 if (!NonFlagUse)
7748 break;
7749 }
7750 // FALL THROUGH
7751 case ISD::SUB:
7752 case ISD::OR:
7753 case ISD::XOR:
7754 // Due to the ISEL shortcoming noted above, be conservative if this op is
7755 // likely to be selected as part of a load-modify-store instruction.
7756 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7757 UE = Op.getNode()->use_end(); UI != UE; ++UI)
7758 if (UI->getOpcode() == ISD::STORE)
7759 goto default_case;
7760
7761 // Otherwise use a regular EFLAGS-setting instruction.
7762 switch (Op.getNode()->getOpcode()) {
7763 default: llvm_unreachable("unexpected operator!");
7764 case ISD::SUB: Opcode = X86ISD::SUB; break;
7765 case ISD::OR: Opcode = X86ISD::OR; break;
7766 case ISD::XOR: Opcode = X86ISD::XOR; break;
7767 case ISD::AND: Opcode = X86ISD::AND; break;
7768 }
7769
7770 NumOperands = 2;
7771 break;
7772 case X86ISD::ADD:
7773 case X86ISD::SUB:
7774 case X86ISD::INC:
7775 case X86ISD::DEC:
7776 case X86ISD::OR:
7777 case X86ISD::XOR:
7778 case X86ISD::AND:
7779 return SDValue(Op.getNode(), 1);
7780 default:
7781 default_case:
7782 break;
Dan Gohman076aee32009-03-04 19:44:21 +00007783 }
7784
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007785 if (Opcode == 0)
7786 // Emit a CMP with 0, which is the TEST pattern.
7787 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7788 DAG.getConstant(0, Op.getValueType()));
7789
7790 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
7791 SmallVector<SDValue, 4> Ops;
7792 for (unsigned i = 0; i != NumOperands; ++i)
7793 Ops.push_back(Op.getOperand(i));
7794
7795 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
7796 DAG.ReplaceAllUsesWith(Op, New);
7797 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00007798}
7799
7800/// Emit nodes that will be selected as "cmp Op0,Op1", or something
7801/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007802SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007803 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007804 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
7805 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00007806 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00007807
7808 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00007809 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00007810}
7811
Evan Chengd40d03e2010-01-06 19:38:29 +00007812/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
7813/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00007814SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
7815 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007816 SDValue Op0 = And.getOperand(0);
7817 SDValue Op1 = And.getOperand(1);
7818 if (Op0.getOpcode() == ISD::TRUNCATE)
7819 Op0 = Op0.getOperand(0);
7820 if (Op1.getOpcode() == ISD::TRUNCATE)
7821 Op1 = Op1.getOperand(0);
7822
Evan Chengd40d03e2010-01-06 19:38:29 +00007823 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007824 if (Op1.getOpcode() == ISD::SHL)
7825 std::swap(Op0, Op1);
7826 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007827 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
7828 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007829 // If we looked past a truncate, check that it's only truncating away
7830 // known zeros.
7831 unsigned BitWidth = Op0.getValueSizeInBits();
7832 unsigned AndBitWidth = And.getValueSizeInBits();
7833 if (BitWidth > AndBitWidth) {
7834 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
7835 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
7836 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
7837 return SDValue();
7838 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007839 LHS = Op1;
7840 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00007841 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007842 } else if (Op1.getOpcode() == ISD::Constant) {
7843 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
7844 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00007845 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
7846 LHS = AndLHS.getOperand(0);
7847 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007848 }
Evan Chengd40d03e2010-01-06 19:38:29 +00007849 }
Evan Cheng0488db92007-09-25 01:57:46 +00007850
Evan Chengd40d03e2010-01-06 19:38:29 +00007851 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00007852 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00007853 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00007854 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00007855 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00007856 // Also promote i16 to i32 for performance / code size reason.
7857 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00007858 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00007859 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00007860
Evan Chengd40d03e2010-01-06 19:38:29 +00007861 // If the operand types disagree, extend the shift amount to match. Since
7862 // BT ignores high bits (like shifts) we can use anyextend.
7863 if (LHS.getValueType() != RHS.getValueType())
7864 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007865
Evan Chengd40d03e2010-01-06 19:38:29 +00007866 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
7867 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
7868 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7869 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00007870 }
7871
Evan Cheng54de3ea2010-01-05 06:52:31 +00007872 return SDValue();
7873}
7874
Dan Gohmand858e902010-04-17 15:26:15 +00007875SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00007876 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7877 SDValue Op0 = Op.getOperand(0);
7878 SDValue Op1 = Op.getOperand(1);
7879 DebugLoc dl = Op.getDebugLoc();
7880 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7881
7882 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007883 // Lower (X & (1 << N)) == 0 to BT(X, N).
7884 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7885 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Andrew Trickf6c39412011-03-23 23:11:02 +00007886 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007887 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007888 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007889 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7890 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7891 if (NewSetCC.getNode())
7892 return NewSetCC;
7893 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007894
Chris Lattner481eebc2010-12-19 21:23:48 +00007895 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
7896 // these.
7897 if (Op1.getOpcode() == ISD::Constant &&
Andrew Trickf6c39412011-03-23 23:11:02 +00007898 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
Evan Cheng2c755ba2010-02-27 07:36:59 +00007899 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7900 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007901
Chris Lattner481eebc2010-12-19 21:23:48 +00007902 // If the input is a setcc, then reuse the input setcc or use a new one with
7903 // the inverted condition.
7904 if (Op0.getOpcode() == X86ISD::SETCC) {
7905 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7906 bool Invert = (CC == ISD::SETNE) ^
7907 cast<ConstantSDNode>(Op1)->isNullValue();
7908 if (!Invert) return Op0;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007909
Evan Cheng2c755ba2010-02-27 07:36:59 +00007910 CCode = X86::GetOppositeBranchCondition(CCode);
Chris Lattner481eebc2010-12-19 21:23:48 +00007911 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7912 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7913 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007914 }
7915
Evan Chenge5b51ac2010-04-17 06:13:15 +00007916 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007917 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007918 if (X86CC == X86::COND_INVALID)
7919 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007920
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007921 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00007922 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007923 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
Evan Cheng0488db92007-09-25 01:57:46 +00007924}
7925
Dan Gohmand858e902010-04-17 15:26:15 +00007926SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007927 SDValue Cond;
7928 SDValue Op0 = Op.getOperand(0);
7929 SDValue Op1 = Op.getOperand(1);
7930 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007931 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007932 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7933 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007934 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007935
7936 if (isFP) {
7937 unsigned SSECC = 8;
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00007938 EVT EltVT = Op0.getValueType().getVectorElementType();
7939 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
7940
7941 unsigned Opc = EltVT == MVT::f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007942 bool Swap = false;
7943
7944 switch (SetCCOpcode) {
7945 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007946 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007947 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007948 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007949 case ISD::SETGT: Swap = true; // Fallthrough
7950 case ISD::SETLT:
7951 case ISD::SETOLT: SSECC = 1; break;
7952 case ISD::SETOGE:
7953 case ISD::SETGE: Swap = true; // Fallthrough
7954 case ISD::SETLE:
7955 case ISD::SETOLE: SSECC = 2; break;
7956 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007957 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007958 case ISD::SETNE: SSECC = 4; break;
7959 case ISD::SETULE: Swap = true;
7960 case ISD::SETUGE: SSECC = 5; break;
7961 case ISD::SETULT: Swap = true;
7962 case ISD::SETUGT: SSECC = 6; break;
7963 case ISD::SETO: SSECC = 7; break;
7964 }
7965 if (Swap)
7966 std::swap(Op0, Op1);
7967
Nate Begemanfb8ead02008-07-25 19:05:58 +00007968 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007969 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007970 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007971 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007972 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7973 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007974 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007975 }
7976 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007977 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007978 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7979 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007980 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007981 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007982 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007983 }
7984 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007985 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007986 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007987
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00007988 if (!isFP && VT.getSizeInBits() == 256)
7989 return SDValue();
7990
Nate Begeman30a0de92008-07-17 16:51:19 +00007991 // We are handling one of the integer comparisons here. Since SSE only has
7992 // GT and EQ comparisons for integer, swapping operands and multiple
7993 // operations may be required for some comparisons.
7994 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7995 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007996
Owen Anderson825b72b2009-08-11 20:47:22 +00007997 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007998 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007999 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008000 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008001 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
8002 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00008003 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008004
Nate Begeman30a0de92008-07-17 16:51:19 +00008005 switch (SetCCOpcode) {
8006 default: break;
8007 case ISD::SETNE: Invert = true;
8008 case ISD::SETEQ: Opc = EQOpc; break;
8009 case ISD::SETLT: Swap = true;
8010 case ISD::SETGT: Opc = GTOpc; break;
8011 case ISD::SETGE: Swap = true;
8012 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
8013 case ISD::SETULT: Swap = true;
8014 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
8015 case ISD::SETUGE: Swap = true;
8016 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
8017 }
8018 if (Swap)
8019 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008020
Nate Begeman30a0de92008-07-17 16:51:19 +00008021 // Since SSE has no unsigned integer comparisons, we need to flip the sign
8022 // bits of the inputs before performing those operations.
8023 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00008024 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00008025 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
8026 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00008027 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00008028 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
8029 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00008030 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
8031 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00008032 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008033
Dale Johannesenace16102009-02-03 19:33:06 +00008034 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00008035
8036 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00008037 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00008038 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00008039
Nate Begeman30a0de92008-07-17 16:51:19 +00008040 return Result;
8041}
Evan Cheng0488db92007-09-25 01:57:46 +00008042
Evan Cheng370e5342008-12-03 08:38:43 +00008043// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00008044static bool isX86LogicalCmp(SDValue Op) {
8045 unsigned Opc = Op.getNode()->getOpcode();
8046 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
8047 return true;
8048 if (Op.getResNo() == 1 &&
8049 (Opc == X86ISD::ADD ||
8050 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00008051 Opc == X86ISD::ADC ||
8052 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00008053 Opc == X86ISD::SMUL ||
8054 Opc == X86ISD::UMUL ||
8055 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00008056 Opc == X86ISD::DEC ||
8057 Opc == X86ISD::OR ||
8058 Opc == X86ISD::XOR ||
8059 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00008060 return true;
8061
Chris Lattner9637d5b2010-12-05 07:49:54 +00008062 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
8063 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008064
Dan Gohman076aee32009-03-04 19:44:21 +00008065 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00008066}
8067
Chris Lattnera2b56002010-12-05 01:23:24 +00008068static bool isZero(SDValue V) {
8069 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8070 return C && C->isNullValue();
8071}
8072
Chris Lattner96908b12010-12-05 02:00:51 +00008073static bool isAllOnes(SDValue V) {
8074 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8075 return C && C->isAllOnesValue();
8076}
8077
Dan Gohmand858e902010-04-17 15:26:15 +00008078SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008079 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008080 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00008081 SDValue Op1 = Op.getOperand(1);
8082 SDValue Op2 = Op.getOperand(2);
8083 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008084 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00008085
Dan Gohman1a492952009-10-20 16:22:37 +00008086 if (Cond.getOpcode() == ISD::SETCC) {
8087 SDValue NewCond = LowerSETCC(Cond, DAG);
8088 if (NewCond.getNode())
8089 Cond = NewCond;
8090 }
Evan Cheng734503b2006-09-11 02:19:56 +00008091
Chris Lattnera2b56002010-12-05 01:23:24 +00008092 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008093 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00008094 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008095 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008096 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00008097 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
8098 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008099 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008100
Chris Lattnera2b56002010-12-05 01:23:24 +00008101 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008102
8103 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00008104 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
8105 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00008106
8107 SDValue CmpOp0 = Cmp.getOperand(0);
8108 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
8109 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008110
Chris Lattner96908b12010-12-05 02:00:51 +00008111 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00008112 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8113 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008114
Chris Lattner96908b12010-12-05 02:00:51 +00008115 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
8116 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008117
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008118 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00008119 if (N2C == 0 || !N2C->isNullValue())
8120 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
8121 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008122 }
8123 }
8124
Chris Lattnera2b56002010-12-05 01:23:24 +00008125 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00008126 if (Cond.getOpcode() == ISD::AND &&
8127 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8128 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008129 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008130 Cond = Cond.getOperand(0);
8131 }
8132
Evan Cheng3f41d662007-10-08 22:16:29 +00008133 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8134 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008135 if (Cond.getOpcode() == X86ISD::SETCC ||
8136 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008137 CC = Cond.getOperand(0);
8138
Dan Gohman475871a2008-07-27 21:46:04 +00008139 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008140 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00008141 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008142
Evan Cheng3f41d662007-10-08 22:16:29 +00008143 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008144 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00008145 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00008146 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00008147
Chris Lattnerd1980a52009-03-12 06:52:53 +00008148 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
8149 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00008150 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008151 addTest = false;
8152 }
8153 }
8154
8155 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008156 // Look pass the truncate.
8157 if (Cond.getOpcode() == ISD::TRUNCATE)
8158 Cond = Cond.getOperand(0);
8159
8160 // We know the result of AND is compared against zero. Try to match
8161 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008162 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00008163 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00008164 if (NewSetCC.getNode()) {
8165 CC = NewSetCC.getOperand(0);
8166 Cond = NewSetCC.getOperand(1);
8167 addTest = false;
8168 }
8169 }
8170 }
8171
8172 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008173 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008174 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008175 }
8176
Benjamin Kramere915ff32010-12-22 23:09:28 +00008177 // a < b ? -1 : 0 -> RES = ~setcc_carry
8178 // a < b ? 0 : -1 -> RES = setcc_carry
8179 // a >= b ? -1 : 0 -> RES = setcc_carry
8180 // a >= b ? 0 : -1 -> RES = ~setcc_carry
8181 if (Cond.getOpcode() == X86ISD::CMP) {
8182 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
8183
8184 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
8185 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
8186 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8187 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
8188 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
8189 return DAG.getNOT(DL, Res, Res.getValueType());
8190 return Res;
8191 }
8192 }
8193
Evan Cheng0488db92007-09-25 01:57:46 +00008194 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
8195 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008196 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008197 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00008198 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00008199}
8200
Evan Cheng370e5342008-12-03 08:38:43 +00008201// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
8202// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
8203// from the AND / OR.
8204static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
8205 Opc = Op.getOpcode();
8206 if (Opc != ISD::OR && Opc != ISD::AND)
8207 return false;
8208 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8209 Op.getOperand(0).hasOneUse() &&
8210 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
8211 Op.getOperand(1).hasOneUse());
8212}
8213
Evan Cheng961d6d42009-02-02 08:19:07 +00008214// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
8215// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00008216static bool isXor1OfSetCC(SDValue Op) {
8217 if (Op.getOpcode() != ISD::XOR)
8218 return false;
8219 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8220 if (N1C && N1C->getAPIntValue() == 1) {
8221 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8222 Op.getOperand(0).hasOneUse();
8223 }
8224 return false;
8225}
8226
Dan Gohmand858e902010-04-17 15:26:15 +00008227SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008228 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008229 SDValue Chain = Op.getOperand(0);
8230 SDValue Cond = Op.getOperand(1);
8231 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008232 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008233 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00008234
Dan Gohman1a492952009-10-20 16:22:37 +00008235 if (Cond.getOpcode() == ISD::SETCC) {
8236 SDValue NewCond = LowerSETCC(Cond, DAG);
8237 if (NewCond.getNode())
8238 Cond = NewCond;
8239 }
Chris Lattnere55484e2008-12-25 05:34:37 +00008240#if 0
8241 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00008242 else if (Cond.getOpcode() == X86ISD::ADD ||
8243 Cond.getOpcode() == X86ISD::SUB ||
8244 Cond.getOpcode() == X86ISD::SMUL ||
8245 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00008246 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00008247#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00008248
Evan Chengad9c0a32009-12-15 00:53:42 +00008249 // Look pass (and (setcc_carry (cmp ...)), 1).
8250 if (Cond.getOpcode() == ISD::AND &&
8251 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8252 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008253 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008254 Cond = Cond.getOperand(0);
8255 }
8256
Evan Cheng3f41d662007-10-08 22:16:29 +00008257 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8258 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008259 if (Cond.getOpcode() == X86ISD::SETCC ||
8260 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008261 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008262
Dan Gohman475871a2008-07-27 21:46:04 +00008263 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008264 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00008265 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00008266 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00008267 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008268 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00008269 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00008270 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008271 default: break;
8272 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00008273 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00008274 // These can only come from an arithmetic instruction with overflow,
8275 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008276 Cond = Cond.getNode()->getOperand(1);
8277 addTest = false;
8278 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008279 }
Evan Cheng0488db92007-09-25 01:57:46 +00008280 }
Evan Cheng370e5342008-12-03 08:38:43 +00008281 } else {
8282 unsigned CondOpc;
8283 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
8284 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00008285 if (CondOpc == ISD::OR) {
8286 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
8287 // two branches instead of an explicit OR instruction with a
8288 // separate test.
8289 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008290 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00008291 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008292 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008293 Chain, Dest, CC, Cmp);
8294 CC = Cond.getOperand(1).getOperand(0);
8295 Cond = Cmp;
8296 addTest = false;
8297 }
8298 } else { // ISD::AND
8299 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
8300 // two branches instead of an explicit AND instruction with a
8301 // separate test. However, we only do this if this block doesn't
8302 // have a fall-through edge, because this requires an explicit
8303 // jmp when the condition is false.
8304 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008305 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00008306 Op.getNode()->hasOneUse()) {
8307 X86::CondCode CCode =
8308 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8309 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008310 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00008311 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00008312 // Look for an unconditional branch following this conditional branch.
8313 // We need this because we need to reverse the successors in order
8314 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00008315 if (User->getOpcode() == ISD::BR) {
8316 SDValue FalseBB = User->getOperand(1);
8317 SDNode *NewBR =
8318 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00008319 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00008320 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00008321 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00008322
Dale Johannesene4d209d2009-02-03 20:21:25 +00008323 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008324 Chain, Dest, CC, Cmp);
8325 X86::CondCode CCode =
8326 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
8327 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008328 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00008329 Cond = Cmp;
8330 addTest = false;
8331 }
8332 }
Dan Gohman279c22e2008-10-21 03:29:32 +00008333 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00008334 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
8335 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
8336 // It should be transformed during dag combiner except when the condition
8337 // is set by a arithmetics with overflow node.
8338 X86::CondCode CCode =
8339 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8340 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008341 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00008342 Cond = Cond.getOperand(0).getOperand(1);
8343 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00008344 }
Evan Cheng0488db92007-09-25 01:57:46 +00008345 }
8346
8347 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008348 // Look pass the truncate.
8349 if (Cond.getOpcode() == ISD::TRUNCATE)
8350 Cond = Cond.getOperand(0);
8351
8352 // We know the result of AND is compared against zero. Try to match
8353 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008354 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008355 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
8356 if (NewSetCC.getNode()) {
8357 CC = NewSetCC.getOperand(0);
8358 Cond = NewSetCC.getOperand(1);
8359 addTest = false;
8360 }
8361 }
8362 }
8363
8364 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008365 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008366 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008367 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00008368 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00008369 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00008370}
8371
Anton Korobeynikove060b532007-04-17 19:34:00 +00008372
8373// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
8374// Calls to _alloca is needed to probe the stack when allocating more than 4k
8375// bytes in one go. Touching the stack at 4K increments is necessary to ensure
8376// that the guard pages used by the OS virtual memory manager are allocated in
8377// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00008378SDValue
8379X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008380 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00008381 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008382 "This should be used only on Windows targets");
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008383 assert(!Subtarget->isTargetEnvMacho());
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008384 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008385
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008386 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008387 SDValue Chain = Op.getOperand(0);
8388 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008389 // FIXME: Ensure alignment here
8390
Dan Gohman475871a2008-07-27 21:46:04 +00008391 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008392
Owen Anderson825b72b2009-08-11 20:47:22 +00008393 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008394 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008395
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008396 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008397 Flag = Chain.getValue(1);
8398
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008399 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008400
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008401 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00008402 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008403
Dale Johannesendd64c412009-02-04 00:33:20 +00008404 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008405
Dan Gohman475871a2008-07-27 21:46:04 +00008406 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008407 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008408}
8409
Dan Gohmand858e902010-04-17 15:26:15 +00008410SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00008411 MachineFunction &MF = DAG.getMachineFunction();
8412 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
8413
Dan Gohman69de1932008-02-06 22:27:42 +00008414 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00008415 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00008416
Anton Korobeynikove7beda12010-10-03 22:52:07 +00008417 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00008418 // vastart just stores the address of the VarArgsFrameIndex slot into the
8419 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00008420 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8421 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008422 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
8423 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008424 }
8425
8426 // __va_list_tag:
8427 // gp_offset (0 - 6 * 8)
8428 // fp_offset (48 - 48 + 8 * 16)
8429 // overflow_arg_area (point to parameters coming in memory).
8430 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00008431 SmallVector<SDValue, 8> MemOps;
8432 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00008433 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008434 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008435 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
8436 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008437 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008438 MemOps.push_back(Store);
8439
8440 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008441 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008442 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008443 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008444 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
8445 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008446 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008447 MemOps.push_back(Store);
8448
8449 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00008450 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008451 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00008452 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8453 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008454 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
8455 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00008456 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008457 MemOps.push_back(Store);
8458
8459 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00008460 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008461 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00008462 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
8463 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008464 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
8465 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008466 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008467 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00008468 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00008469}
8470
Dan Gohmand858e902010-04-17 15:26:15 +00008471SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00008472 assert(Subtarget->is64Bit() &&
8473 "LowerVAARG only handles 64-bit va_arg!");
8474 assert((Subtarget->isTargetLinux() ||
8475 Subtarget->isTargetDarwin()) &&
8476 "Unhandled target in LowerVAARG");
8477 assert(Op.getNode()->getNumOperands() == 4);
8478 SDValue Chain = Op.getOperand(0);
8479 SDValue SrcPtr = Op.getOperand(1);
8480 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
8481 unsigned Align = Op.getConstantOperandVal(3);
8482 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00008483
Dan Gohman320afb82010-10-12 18:00:49 +00008484 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008485 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Dan Gohman320afb82010-10-12 18:00:49 +00008486 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
8487 uint8_t ArgMode;
8488
8489 // Decide which area this value should be read from.
8490 // TODO: Implement the AMD64 ABI in its entirety. This simple
8491 // selection mechanism works only for the basic types.
8492 if (ArgVT == MVT::f80) {
8493 llvm_unreachable("va_arg for f80 not yet implemented");
8494 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
8495 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
8496 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
8497 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
8498 } else {
8499 llvm_unreachable("Unhandled argument type in LowerVAARG");
8500 }
8501
8502 if (ArgMode == 2) {
8503 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00008504 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00008505 !(DAG.getMachineFunction()
8506 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00008507 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00008508 }
8509
8510 // Insert VAARG_64 node into the DAG
8511 // VAARG_64 returns two values: Variable Argument Address, Chain
8512 SmallVector<SDValue, 11> InstOps;
8513 InstOps.push_back(Chain);
8514 InstOps.push_back(SrcPtr);
8515 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
8516 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
8517 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
8518 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
8519 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
8520 VTs, &InstOps[0], InstOps.size(),
8521 MVT::i64,
8522 MachinePointerInfo(SV),
8523 /*Align=*/0,
8524 /*Volatile=*/false,
8525 /*ReadMem=*/true,
8526 /*WriteMem=*/true);
8527 Chain = VAARG.getValue(1);
8528
8529 // Load the next argument and return it
8530 return DAG.getLoad(ArgVT, dl,
8531 Chain,
8532 VAARG,
8533 MachinePointerInfo(),
8534 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00008535}
8536
Dan Gohmand858e902010-04-17 15:26:15 +00008537SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00008538 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00008539 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00008540 SDValue Chain = Op.getOperand(0);
8541 SDValue DstPtr = Op.getOperand(1);
8542 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00008543 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
8544 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00008545 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00008546
Chris Lattnere72f2022010-09-21 05:40:29 +00008547 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00008548 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008549 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00008550 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00008551}
8552
Dan Gohman475871a2008-07-27 21:46:04 +00008553SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008554X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008555 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008556 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00008557 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00008558 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00008559 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00008560 case Intrinsic::x86_sse_comieq_ss:
8561 case Intrinsic::x86_sse_comilt_ss:
8562 case Intrinsic::x86_sse_comile_ss:
8563 case Intrinsic::x86_sse_comigt_ss:
8564 case Intrinsic::x86_sse_comige_ss:
8565 case Intrinsic::x86_sse_comineq_ss:
8566 case Intrinsic::x86_sse_ucomieq_ss:
8567 case Intrinsic::x86_sse_ucomilt_ss:
8568 case Intrinsic::x86_sse_ucomile_ss:
8569 case Intrinsic::x86_sse_ucomigt_ss:
8570 case Intrinsic::x86_sse_ucomige_ss:
8571 case Intrinsic::x86_sse_ucomineq_ss:
8572 case Intrinsic::x86_sse2_comieq_sd:
8573 case Intrinsic::x86_sse2_comilt_sd:
8574 case Intrinsic::x86_sse2_comile_sd:
8575 case Intrinsic::x86_sse2_comigt_sd:
8576 case Intrinsic::x86_sse2_comige_sd:
8577 case Intrinsic::x86_sse2_comineq_sd:
8578 case Intrinsic::x86_sse2_ucomieq_sd:
8579 case Intrinsic::x86_sse2_ucomilt_sd:
8580 case Intrinsic::x86_sse2_ucomile_sd:
8581 case Intrinsic::x86_sse2_ucomigt_sd:
8582 case Intrinsic::x86_sse2_ucomige_sd:
8583 case Intrinsic::x86_sse2_ucomineq_sd: {
8584 unsigned Opc = 0;
8585 ISD::CondCode CC = ISD::SETCC_INVALID;
8586 switch (IntNo) {
8587 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008588 case Intrinsic::x86_sse_comieq_ss:
8589 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008590 Opc = X86ISD::COMI;
8591 CC = ISD::SETEQ;
8592 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008593 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008594 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008595 Opc = X86ISD::COMI;
8596 CC = ISD::SETLT;
8597 break;
8598 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008599 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008600 Opc = X86ISD::COMI;
8601 CC = ISD::SETLE;
8602 break;
8603 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008604 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008605 Opc = X86ISD::COMI;
8606 CC = ISD::SETGT;
8607 break;
8608 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008609 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008610 Opc = X86ISD::COMI;
8611 CC = ISD::SETGE;
8612 break;
8613 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008614 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008615 Opc = X86ISD::COMI;
8616 CC = ISD::SETNE;
8617 break;
8618 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008619 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008620 Opc = X86ISD::UCOMI;
8621 CC = ISD::SETEQ;
8622 break;
8623 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008624 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008625 Opc = X86ISD::UCOMI;
8626 CC = ISD::SETLT;
8627 break;
8628 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008629 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008630 Opc = X86ISD::UCOMI;
8631 CC = ISD::SETLE;
8632 break;
8633 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008634 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008635 Opc = X86ISD::UCOMI;
8636 CC = ISD::SETGT;
8637 break;
8638 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008639 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008640 Opc = X86ISD::UCOMI;
8641 CC = ISD::SETGE;
8642 break;
8643 case Intrinsic::x86_sse_ucomineq_ss:
8644 case Intrinsic::x86_sse2_ucomineq_sd:
8645 Opc = X86ISD::UCOMI;
8646 CC = ISD::SETNE;
8647 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008648 }
Evan Cheng734503b2006-09-11 02:19:56 +00008649
Dan Gohman475871a2008-07-27 21:46:04 +00008650 SDValue LHS = Op.getOperand(1);
8651 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00008652 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008653 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008654 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
8655 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8656 DAG.getConstant(X86CC, MVT::i8), Cond);
8657 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00008658 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008659 // ptest and testp intrinsics. The intrinsic these come from are designed to
8660 // return an integer value, not just an instruction so lower it to the ptest
8661 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00008662 case Intrinsic::x86_sse41_ptestz:
8663 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008664 case Intrinsic::x86_sse41_ptestnzc:
8665 case Intrinsic::x86_avx_ptestz_256:
8666 case Intrinsic::x86_avx_ptestc_256:
8667 case Intrinsic::x86_avx_ptestnzc_256:
8668 case Intrinsic::x86_avx_vtestz_ps:
8669 case Intrinsic::x86_avx_vtestc_ps:
8670 case Intrinsic::x86_avx_vtestnzc_ps:
8671 case Intrinsic::x86_avx_vtestz_pd:
8672 case Intrinsic::x86_avx_vtestc_pd:
8673 case Intrinsic::x86_avx_vtestnzc_pd:
8674 case Intrinsic::x86_avx_vtestz_ps_256:
8675 case Intrinsic::x86_avx_vtestc_ps_256:
8676 case Intrinsic::x86_avx_vtestnzc_ps_256:
8677 case Intrinsic::x86_avx_vtestz_pd_256:
8678 case Intrinsic::x86_avx_vtestc_pd_256:
8679 case Intrinsic::x86_avx_vtestnzc_pd_256: {
8680 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00008681 unsigned X86CC = 0;
8682 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00008683 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008684 case Intrinsic::x86_avx_vtestz_ps:
8685 case Intrinsic::x86_avx_vtestz_pd:
8686 case Intrinsic::x86_avx_vtestz_ps_256:
8687 case Intrinsic::x86_avx_vtestz_pd_256:
8688 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008689 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008690 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008691 // ZF = 1
8692 X86CC = X86::COND_E;
8693 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008694 case Intrinsic::x86_avx_vtestc_ps:
8695 case Intrinsic::x86_avx_vtestc_pd:
8696 case Intrinsic::x86_avx_vtestc_ps_256:
8697 case Intrinsic::x86_avx_vtestc_pd_256:
8698 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008699 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008700 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008701 // CF = 1
8702 X86CC = X86::COND_B;
8703 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008704 case Intrinsic::x86_avx_vtestnzc_ps:
8705 case Intrinsic::x86_avx_vtestnzc_pd:
8706 case Intrinsic::x86_avx_vtestnzc_ps_256:
8707 case Intrinsic::x86_avx_vtestnzc_pd_256:
8708 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00008709 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008710 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008711 // ZF and CF = 0
8712 X86CC = X86::COND_A;
8713 break;
8714 }
Eric Christopherfd179292009-08-27 18:07:15 +00008715
Eric Christopher71c67532009-07-29 00:28:05 +00008716 SDValue LHS = Op.getOperand(1);
8717 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008718 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
8719 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00008720 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
8721 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
8722 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00008723 }
Evan Cheng5759f972008-05-04 09:15:50 +00008724
8725 // Fix vector shift instructions where the last operand is a non-immediate
8726 // i32 value.
8727 case Intrinsic::x86_sse2_pslli_w:
8728 case Intrinsic::x86_sse2_pslli_d:
8729 case Intrinsic::x86_sse2_pslli_q:
8730 case Intrinsic::x86_sse2_psrli_w:
8731 case Intrinsic::x86_sse2_psrli_d:
8732 case Intrinsic::x86_sse2_psrli_q:
8733 case Intrinsic::x86_sse2_psrai_w:
8734 case Intrinsic::x86_sse2_psrai_d:
8735 case Intrinsic::x86_mmx_pslli_w:
8736 case Intrinsic::x86_mmx_pslli_d:
8737 case Intrinsic::x86_mmx_pslli_q:
8738 case Intrinsic::x86_mmx_psrli_w:
8739 case Intrinsic::x86_mmx_psrli_d:
8740 case Intrinsic::x86_mmx_psrli_q:
8741 case Intrinsic::x86_mmx_psrai_w:
8742 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00008743 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00008744 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00008745 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00008746
8747 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008748 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008749 switch (IntNo) {
8750 case Intrinsic::x86_sse2_pslli_w:
8751 NewIntNo = Intrinsic::x86_sse2_psll_w;
8752 break;
8753 case Intrinsic::x86_sse2_pslli_d:
8754 NewIntNo = Intrinsic::x86_sse2_psll_d;
8755 break;
8756 case Intrinsic::x86_sse2_pslli_q:
8757 NewIntNo = Intrinsic::x86_sse2_psll_q;
8758 break;
8759 case Intrinsic::x86_sse2_psrli_w:
8760 NewIntNo = Intrinsic::x86_sse2_psrl_w;
8761 break;
8762 case Intrinsic::x86_sse2_psrli_d:
8763 NewIntNo = Intrinsic::x86_sse2_psrl_d;
8764 break;
8765 case Intrinsic::x86_sse2_psrli_q:
8766 NewIntNo = Intrinsic::x86_sse2_psrl_q;
8767 break;
8768 case Intrinsic::x86_sse2_psrai_w:
8769 NewIntNo = Intrinsic::x86_sse2_psra_w;
8770 break;
8771 case Intrinsic::x86_sse2_psrai_d:
8772 NewIntNo = Intrinsic::x86_sse2_psra_d;
8773 break;
8774 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008775 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008776 switch (IntNo) {
8777 case Intrinsic::x86_mmx_pslli_w:
8778 NewIntNo = Intrinsic::x86_mmx_psll_w;
8779 break;
8780 case Intrinsic::x86_mmx_pslli_d:
8781 NewIntNo = Intrinsic::x86_mmx_psll_d;
8782 break;
8783 case Intrinsic::x86_mmx_pslli_q:
8784 NewIntNo = Intrinsic::x86_mmx_psll_q;
8785 break;
8786 case Intrinsic::x86_mmx_psrli_w:
8787 NewIntNo = Intrinsic::x86_mmx_psrl_w;
8788 break;
8789 case Intrinsic::x86_mmx_psrli_d:
8790 NewIntNo = Intrinsic::x86_mmx_psrl_d;
8791 break;
8792 case Intrinsic::x86_mmx_psrli_q:
8793 NewIntNo = Intrinsic::x86_mmx_psrl_q;
8794 break;
8795 case Intrinsic::x86_mmx_psrai_w:
8796 NewIntNo = Intrinsic::x86_mmx_psra_w;
8797 break;
8798 case Intrinsic::x86_mmx_psrai_d:
8799 NewIntNo = Intrinsic::x86_mmx_psra_d;
8800 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00008801 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00008802 }
8803 break;
8804 }
8805 }
Mon P Wangefa42202009-09-03 19:56:25 +00008806
8807 // The vector shift intrinsics with scalars uses 32b shift amounts but
8808 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
8809 // to be zero.
8810 SDValue ShOps[4];
8811 ShOps[0] = ShAmt;
8812 ShOps[1] = DAG.getConstant(0, MVT::i32);
8813 if (ShAmtVT == MVT::v4i32) {
8814 ShOps[2] = DAG.getUNDEF(MVT::i32);
8815 ShOps[3] = DAG.getUNDEF(MVT::i32);
8816 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
8817 } else {
8818 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00008819// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00008820 }
8821
Owen Andersone50ed302009-08-10 22:56:29 +00008822 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008823 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008824 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008825 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00008826 Op.getOperand(1), ShAmt);
8827 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00008828 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008829}
Evan Cheng72261582005-12-20 06:22:03 +00008830
Dan Gohmand858e902010-04-17 15:26:15 +00008831SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
8832 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00008833 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8834 MFI->setReturnAddressIsTaken(true);
8835
Bill Wendling64e87322009-01-16 19:25:27 +00008836 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008837 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00008838
8839 if (Depth > 0) {
8840 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
8841 SDValue Offset =
8842 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00008843 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008844 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008845 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008846 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00008847 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00008848 }
8849
8850 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00008851 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00008852 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008853 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008854}
8855
Dan Gohmand858e902010-04-17 15:26:15 +00008856SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00008857 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8858 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00008859
Owen Andersone50ed302009-08-10 22:56:29 +00008860 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008861 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00008862 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
8863 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00008864 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00008865 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00008866 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
8867 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00008868 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00008869 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00008870}
8871
Dan Gohman475871a2008-07-27 21:46:04 +00008872SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008873 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008874 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008875}
8876
Dan Gohmand858e902010-04-17 15:26:15 +00008877SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008878 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00008879 SDValue Chain = Op.getOperand(0);
8880 SDValue Offset = Op.getOperand(1);
8881 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008882 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008883
Dan Gohmand8816272010-08-11 18:14:00 +00008884 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
8885 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
8886 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008887 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008888
Dan Gohmand8816272010-08-11 18:14:00 +00008889 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
8890 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008891 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008892 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
8893 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00008894 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008895 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008896
Dale Johannesene4d209d2009-02-03 20:21:25 +00008897 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008898 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008899 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008900}
8901
Dan Gohman475871a2008-07-27 21:46:04 +00008902SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008903 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008904 SDValue Root = Op.getOperand(0);
8905 SDValue Trmp = Op.getOperand(1); // trampoline
8906 SDValue FPtr = Op.getOperand(2); // nested function
8907 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008908 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008909
Dan Gohman69de1932008-02-06 22:27:42 +00008910 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008911
8912 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008913 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00008914
8915 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00008916 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
8917 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00008918
Evan Cheng0e6a0522011-07-18 20:57:22 +00008919 const unsigned char N86R10 = X86_MC::getX86RegNum(X86::R10);
8920 const unsigned char N86R11 = X86_MC::getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00008921
8922 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
8923
8924 // Load the pointer to the nested function into R11.
8925 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00008926 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008927 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008928 Addr, MachinePointerInfo(TrmpAddr),
8929 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008930
Owen Anderson825b72b2009-08-11 20:47:22 +00008931 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8932 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008933 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8934 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00008935 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008936
8937 // Load the 'nest' parameter value into R10.
8938 // R10 is specified in X86CallingConv.td
8939 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00008940 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8941 DAG.getConstant(10, MVT::i64));
8942 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008943 Addr, MachinePointerInfo(TrmpAddr, 10),
8944 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008945
Owen Anderson825b72b2009-08-11 20:47:22 +00008946 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8947 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008948 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8949 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00008950 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008951
8952 // Jump to the nested function.
8953 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00008954 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8955 DAG.getConstant(20, MVT::i64));
8956 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008957 Addr, MachinePointerInfo(TrmpAddr, 20),
8958 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008959
8960 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008961 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8962 DAG.getConstant(22, MVT::i64));
8963 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008964 MachinePointerInfo(TrmpAddr, 22),
8965 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008966
Dan Gohman475871a2008-07-27 21:46:04 +00008967 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008968 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008969 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008970 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008971 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008972 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008973 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008974 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008975
8976 switch (CC) {
8977 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008978 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008979 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008980 case CallingConv::X86_StdCall: {
8981 // Pass 'nest' parameter in ECX.
8982 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008983 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008984
8985 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008986 FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008987 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008988
Chris Lattner58d74912008-03-12 17:45:29 +00008989 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008990 unsigned InRegCount = 0;
8991 unsigned Idx = 1;
8992
8993 for (FunctionType::param_iterator I = FTy->param_begin(),
8994 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008995 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008996 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008997 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008998
8999 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00009000 report_fatal_error("Nest register in use - reduce number of inreg"
9001 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00009002 }
9003 }
9004 break;
9005 }
9006 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00009007 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00009008 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00009009 // Pass 'nest' parameter in EAX.
9010 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00009011 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009012 break;
9013 }
9014
Dan Gohman475871a2008-07-27 21:46:04 +00009015 SDValue OutChains[4];
9016 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009017
Owen Anderson825b72b2009-08-11 20:47:22 +00009018 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9019 DAG.getConstant(10, MVT::i32));
9020 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009021
Chris Lattnera62fe662010-02-05 19:20:30 +00009022 // This is storing the opcode for MOV32ri.
9023 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Evan Cheng0e6a0522011-07-18 20:57:22 +00009024 const unsigned char N86Reg = X86_MC::getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009025 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00009026 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009027 Trmp, MachinePointerInfo(TrmpAddr),
9028 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009029
Owen Anderson825b72b2009-08-11 20:47:22 +00009030 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9031 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009032 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
9033 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00009034 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009035
Chris Lattnera62fe662010-02-05 19:20:30 +00009036 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00009037 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9038 DAG.getConstant(5, MVT::i32));
9039 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00009040 MachinePointerInfo(TrmpAddr, 5),
9041 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009042
Owen Anderson825b72b2009-08-11 20:47:22 +00009043 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9044 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009045 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
9046 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00009047 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009048
Dan Gohman475871a2008-07-27 21:46:04 +00009049 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00009050 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009051 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009052 }
9053}
9054
Dan Gohmand858e902010-04-17 15:26:15 +00009055SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
9056 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009057 /*
9058 The rounding mode is in bits 11:10 of FPSR, and has the following
9059 settings:
9060 00 Round to nearest
9061 01 Round to -inf
9062 10 Round to +inf
9063 11 Round to 0
9064
9065 FLT_ROUNDS, on the other hand, expects the following:
9066 -1 Undefined
9067 0 Round to 0
9068 1 Round to nearest
9069 2 Round to +inf
9070 3 Round to -inf
9071
9072 To perform the conversion, we do:
9073 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
9074 */
9075
9076 MachineFunction &MF = DAG.getMachineFunction();
9077 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00009078 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009079 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00009080 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00009081 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009082
9083 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00009084 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00009085 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009086
Michael J. Spencerec38de22010-10-10 22:04:20 +00009087
Chris Lattner2156b792010-09-22 01:11:26 +00009088 MachineMemOperand *MMO =
9089 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9090 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009091
Chris Lattner2156b792010-09-22 01:11:26 +00009092 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
9093 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
9094 DAG.getVTList(MVT::Other),
9095 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009096
9097 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00009098 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00009099 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009100
9101 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00009102 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00009103 DAG.getNode(ISD::SRL, DL, MVT::i16,
9104 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009105 CWD, DAG.getConstant(0x800, MVT::i16)),
9106 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00009107 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00009108 DAG.getNode(ISD::SRL, DL, MVT::i16,
9109 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009110 CWD, DAG.getConstant(0x400, MVT::i16)),
9111 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009112
Dan Gohman475871a2008-07-27 21:46:04 +00009113 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00009114 DAG.getNode(ISD::AND, DL, MVT::i16,
9115 DAG.getNode(ISD::ADD, DL, MVT::i16,
9116 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00009117 DAG.getConstant(1, MVT::i16)),
9118 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009119
9120
Duncan Sands83ec4b62008-06-06 12:08:01 +00009121 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00009122 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009123}
9124
Dan Gohmand858e902010-04-17 15:26:15 +00009125SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009126 EVT VT = Op.getValueType();
9127 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009128 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009129 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009130
9131 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009132 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00009133 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00009134 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009135 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009136 }
Evan Cheng18efe262007-12-14 02:13:44 +00009137
Evan Cheng152804e2007-12-14 08:30:15 +00009138 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009139 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009140 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009141
9142 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009143 SDValue Ops[] = {
9144 Op,
9145 DAG.getConstant(NumBits+NumBits-1, OpVT),
9146 DAG.getConstant(X86::COND_E, MVT::i8),
9147 Op.getValue(1)
9148 };
9149 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009150
9151 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00009152 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00009153
Owen Anderson825b72b2009-08-11 20:47:22 +00009154 if (VT == MVT::i8)
9155 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009156 return Op;
9157}
9158
Dan Gohmand858e902010-04-17 15:26:15 +00009159SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009160 EVT VT = Op.getValueType();
9161 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009162 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009163 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009164
9165 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009166 if (VT == MVT::i8) {
9167 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009168 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009169 }
Evan Cheng152804e2007-12-14 08:30:15 +00009170
9171 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009172 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009173 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009174
9175 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009176 SDValue Ops[] = {
9177 Op,
9178 DAG.getConstant(NumBits, OpVT),
9179 DAG.getConstant(X86::COND_E, MVT::i8),
9180 Op.getValue(1)
9181 };
9182 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009183
Owen Anderson825b72b2009-08-11 20:47:22 +00009184 if (VT == MVT::i8)
9185 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009186 return Op;
9187}
9188
Dan Gohmand858e902010-04-17 15:26:15 +00009189SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009190 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00009191 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009192 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00009193
Mon P Wangaf9b9522008-12-18 21:42:19 +00009194 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
9195 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
9196 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
9197 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
9198 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
9199 //
9200 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
9201 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
9202 // return AloBlo + AloBhi + AhiBlo;
9203
9204 SDValue A = Op.getOperand(0);
9205 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009206
Dale Johannesene4d209d2009-02-03 20:21:25 +00009207 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009208 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9209 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009210 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009211 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9212 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009213 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009214 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009215 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009216 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009217 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009218 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009219 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009220 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009221 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009222 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009223 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9224 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009225 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009226 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9227 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009228 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
9229 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009230 return Res;
9231}
9232
Nadav Rotem43012222011-05-11 08:12:09 +00009233SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
9234
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009235 EVT VT = Op.getValueType();
9236 DebugLoc dl = Op.getDebugLoc();
9237 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +00009238 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009239 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009240
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009241 if (!(Subtarget->hasSSE2() || Subtarget->hasAVX()))
9242 return SDValue();
9243
9244 // Decompose 256-bit shifts into smaller 128-bit shifts.
9245 if (VT.getSizeInBits() == 256) {
9246 int NumElems = VT.getVectorNumElements();
9247 MVT EltVT = VT.getVectorElementType().getSimpleVT();
9248 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9249
9250 // Extract the two vectors
9251 SDValue V1 = Extract128BitVector(R, DAG.getConstant(0, MVT::i32), DAG, dl);
9252 SDValue V2 = Extract128BitVector(R, DAG.getConstant(NumElems/2, MVT::i32),
9253 DAG, dl);
9254
9255 // Recreate the shift amount vectors
9256 SmallVector<SDValue, 4> Amt1Csts;
9257 SmallVector<SDValue, 4> Amt2Csts;
9258 for (int i = 0; i < NumElems/2; ++i)
9259 Amt1Csts.push_back(Amt->getOperand(i));
9260 for (int i = NumElems/2; i < NumElems; ++i)
9261 Amt2Csts.push_back(Amt->getOperand(i));
9262
9263 SDValue Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9264 &Amt1Csts[0], NumElems/2);
9265 SDValue Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9266 &Amt2Csts[0], NumElems/2);
9267
9268 // Issue new vector shifts for the smaller types
9269 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
9270 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
9271
9272 // Concatenate the result back
9273 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
9274 }
Nate Begeman51409212010-07-28 00:21:48 +00009275
Nadav Rotem43012222011-05-11 08:12:09 +00009276 // Optimize shl/srl/sra with constant shift amount.
9277 if (isSplatVector(Amt.getNode())) {
9278 SDValue SclrAmt = Amt->getOperand(0);
9279 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
9280 uint64_t ShiftAmt = C->getZExtValue();
9281
9282 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SHL)
9283 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9284 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9285 R, DAG.getConstant(ShiftAmt, MVT::i32));
9286
9287 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SHL)
9288 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9289 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9290 R, DAG.getConstant(ShiftAmt, MVT::i32));
9291
9292 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SHL)
9293 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9294 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9295 R, DAG.getConstant(ShiftAmt, MVT::i32));
9296
9297 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SRL)
9298 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9299 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9300 R, DAG.getConstant(ShiftAmt, MVT::i32));
9301
9302 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRL)
9303 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9304 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
9305 R, DAG.getConstant(ShiftAmt, MVT::i32));
9306
9307 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRL)
9308 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9309 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
9310 R, DAG.getConstant(ShiftAmt, MVT::i32));
9311
9312 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRA)
9313 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9314 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
9315 R, DAG.getConstant(ShiftAmt, MVT::i32));
9316
9317 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRA)
9318 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9319 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
9320 R, DAG.getConstant(ShiftAmt, MVT::i32));
9321 }
9322 }
9323
9324 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00009325 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009326 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9327 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9328 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
9329
9330 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009331
Nate Begeman51409212010-07-28 00:21:48 +00009332 std::vector<Constant*> CV(4, CI);
9333 Constant *C = ConstantVector::get(CV);
9334 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9335 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009336 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009337 false, false, 16);
9338
9339 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009340 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009341 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
9342 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
9343 }
Nadav Rotem43012222011-05-11 08:12:09 +00009344 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009345 // a = a << 5;
9346 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9347 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9348 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
9349
9350 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
9351 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
9352
9353 std::vector<Constant*> CVM1(16, CM1);
9354 std::vector<Constant*> CVM2(16, CM2);
9355 Constant *C = ConstantVector::get(CVM1);
9356 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9357 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009358 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009359 false, false, 16);
9360
9361 // r = pblendv(r, psllw(r & (char16)15, 4), a);
9362 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9363 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9364 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9365 DAG.getConstant(4, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009366 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009367 // a += a
9368 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009369
Nate Begeman51409212010-07-28 00:21:48 +00009370 C = ConstantVector::get(CVM2);
9371 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9372 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009373 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009374 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009375
Nate Begeman51409212010-07-28 00:21:48 +00009376 // r = pblendv(r, psllw(r & (char16)63, 2), a);
9377 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9378 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9379 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9380 DAG.getConstant(2, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009381 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009382 // a += a
9383 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009384
Nate Begeman51409212010-07-28 00:21:48 +00009385 // return pblendv(r, r+r, a);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009386 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT,
Nate Begeman51409212010-07-28 00:21:48 +00009387 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
9388 return R;
9389 }
9390 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009391}
Mon P Wangaf9b9522008-12-18 21:42:19 +00009392
Dan Gohmand858e902010-04-17 15:26:15 +00009393SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00009394 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
9395 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00009396 // looks for this combo and may remove the "setcc" instruction if the "setcc"
9397 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00009398 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00009399 SDValue LHS = N->getOperand(0);
9400 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00009401 unsigned BaseOp = 0;
9402 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009403 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00009404 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009405 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00009406 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00009407 // A subtract of one will be selected as a INC. Note that INC doesn't
9408 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009409 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9410 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009411 BaseOp = X86ISD::INC;
9412 Cond = X86::COND_O;
9413 break;
9414 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009415 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00009416 Cond = X86::COND_O;
9417 break;
9418 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009419 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00009420 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009421 break;
9422 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00009423 // A subtract of one will be selected as a DEC. Note that DEC doesn't
9424 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009425 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9426 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009427 BaseOp = X86ISD::DEC;
9428 Cond = X86::COND_O;
9429 break;
9430 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009431 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00009432 Cond = X86::COND_O;
9433 break;
9434 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009435 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00009436 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009437 break;
9438 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00009439 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00009440 Cond = X86::COND_O;
9441 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009442 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
9443 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
9444 MVT::i32);
9445 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009446
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009447 SDValue SetCC =
9448 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
9449 DAG.getConstant(X86::COND_O, MVT::i32),
9450 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009451
Dan Gohman6e5fda22011-07-22 18:45:15 +00009452 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009453 }
Bill Wendling74c37652008-12-09 22:08:41 +00009454 }
Bill Wendling3fafd932008-11-26 22:37:40 +00009455
Bill Wendling61edeb52008-12-02 01:06:39 +00009456 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009457 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009458 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00009459
Bill Wendling61edeb52008-12-02 01:06:39 +00009460 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009461 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
9462 DAG.getConstant(Cond, MVT::i32),
9463 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00009464
Dan Gohman6e5fda22011-07-22 18:45:15 +00009465 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +00009466}
9467
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009468SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const{
9469 DebugLoc dl = Op.getDebugLoc();
9470 SDNode* Node = Op.getNode();
9471 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
9472 EVT VT = Node->getValueType(0);
9473
9474 if (Subtarget->hasSSE2() && VT.isVector()) {
9475 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
9476 ExtraVT.getScalarType().getSizeInBits();
9477 SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
9478
9479 unsigned SHLIntrinsicsID = 0;
9480 unsigned SRAIntrinsicsID = 0;
9481 switch (VT.getSimpleVT().SimpleTy) {
9482 default:
9483 return SDValue();
9484 case MVT::v2i64: {
9485 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_q;
9486 SRAIntrinsicsID = 0;
9487 break;
9488 }
9489 case MVT::v4i32: {
9490 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_d;
9491 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_d;
9492 break;
9493 }
9494 case MVT::v8i16: {
9495 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_w;
9496 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_w;
9497 break;
9498 }
9499 }
9500
9501 SDValue Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9502 DAG.getConstant(SHLIntrinsicsID, MVT::i32),
9503 Node->getOperand(0), ShAmt);
9504
9505 // In case of 1 bit sext, no need to shr
9506 if (ExtraVT.getScalarType().getSizeInBits() == 1) return Tmp1;
9507
9508 if (SRAIntrinsicsID) {
9509 Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9510 DAG.getConstant(SRAIntrinsicsID, MVT::i32),
9511 Tmp1, ShAmt);
9512 }
9513 return Tmp1;
9514 }
9515
9516 return SDValue();
9517}
9518
9519
Eric Christopher9a9d2752010-07-22 02:48:34 +00009520SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
9521 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009522
Eric Christopher77ed1352011-07-08 00:04:56 +00009523 // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
9524 // There isn't any reason to disable it if the target processor supports it.
9525 if (!Subtarget->hasSSE2() && !Subtarget->is64Bit()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00009526 SDValue Chain = Op.getOperand(0);
Eric Christopher77ed1352011-07-08 00:04:56 +00009527 SDValue Zero = DAG.getConstant(0, MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00009528 SDValue Ops[] = {
9529 DAG.getRegister(X86::ESP, MVT::i32), // Base
9530 DAG.getTargetConstant(1, MVT::i8), // Scale
9531 DAG.getRegister(0, MVT::i32), // Index
9532 DAG.getTargetConstant(0, MVT::i32), // Disp
9533 DAG.getRegister(0, MVT::i32), // Segment.
9534 Zero,
9535 Chain
9536 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00009537 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00009538 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9539 array_lengthof(Ops));
9540 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00009541 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009542
Eric Christopher9a9d2752010-07-22 02:48:34 +00009543 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00009544 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00009545 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009546
Chris Lattner132929a2010-08-14 17:26:09 +00009547 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
9548 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
9549 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
9550 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009551
Chris Lattner132929a2010-08-14 17:26:09 +00009552 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
9553 if (!Op1 && !Op2 && !Op3 && Op4)
9554 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009555
Chris Lattner132929a2010-08-14 17:26:09 +00009556 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
9557 if (Op1 && !Op2 && !Op3 && !Op4)
9558 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009559
9560 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00009561 // (MFENCE)>;
9562 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00009563}
9564
Eli Friedman14648462011-07-27 22:21:52 +00009565SDValue X86TargetLowering::LowerATOMIC_FENCE(SDValue Op,
9566 SelectionDAG &DAG) const {
9567 DebugLoc dl = Op.getDebugLoc();
9568 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
9569 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
9570 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
9571 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
9572
9573 // The only fence that needs an instruction is a sequentially-consistent
9574 // cross-thread fence.
9575 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
9576 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
9577 // no-sse2). There isn't any reason to disable it if the target processor
9578 // supports it.
9579 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
9580 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
9581
9582 SDValue Chain = Op.getOperand(0);
9583 SDValue Zero = DAG.getConstant(0, MVT::i32);
9584 SDValue Ops[] = {
9585 DAG.getRegister(X86::ESP, MVT::i32), // Base
9586 DAG.getTargetConstant(1, MVT::i8), // Scale
9587 DAG.getRegister(0, MVT::i32), // Index
9588 DAG.getTargetConstant(0, MVT::i32), // Disp
9589 DAG.getRegister(0, MVT::i32), // Segment.
9590 Zero,
9591 Chain
9592 };
9593 SDNode *Res =
9594 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9595 array_lengthof(Ops));
9596 return SDValue(Res, 0);
9597 }
9598
9599 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
9600 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
9601}
9602
9603
Dan Gohmand858e902010-04-17 15:26:15 +00009604SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009605 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009606 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00009607 unsigned Reg = 0;
9608 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00009609 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009610 default:
9611 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00009612 case MVT::i8: Reg = X86::AL; size = 1; break;
9613 case MVT::i16: Reg = X86::AX; size = 2; break;
9614 case MVT::i32: Reg = X86::EAX; size = 4; break;
9615 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00009616 assert(Subtarget->is64Bit() && "Node not type legal!");
9617 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00009618 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00009619 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009620 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00009621 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00009622 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009623 Op.getOperand(1),
9624 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00009625 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009626 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009627 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009628 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
9629 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
9630 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00009631 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009632 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00009633 return cpOut;
9634}
9635
Duncan Sands1607f052008-12-01 11:39:25 +00009636SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009637 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00009638 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009639 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009640 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009641 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009642 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009643 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
9644 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00009645 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00009646 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
9647 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00009648 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00009649 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00009650 rdx.getValue(1)
9651 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009652 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009653}
9654
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009655SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +00009656 SelectionDAG &DAG) const {
9657 EVT SrcVT = Op.getOperand(0).getValueType();
9658 EVT DstVT = Op.getValueType();
Chris Lattner2a786eb2010-12-19 20:19:20 +00009659 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
9660 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009661 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00009662 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009663 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +00009664 // i64 <=> MMX conversions are Legal.
9665 if (SrcVT==MVT::i64 && DstVT.isVector())
9666 return Op;
9667 if (DstVT==MVT::i64 && SrcVT.isVector())
9668 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00009669 // MMX <=> MMX conversions are Legal.
9670 if (SrcVT.isVector() && DstVT.isVector())
9671 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00009672 // All other conversions need to be expanded.
9673 return SDValue();
9674}
Chris Lattner5b856542010-12-20 00:59:46 +00009675
Dan Gohmand858e902010-04-17 15:26:15 +00009676SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009677 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009678 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00009679 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009680 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00009681 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009682 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009683 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009684 Node->getOperand(0),
9685 Node->getOperand(1), negOp,
9686 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +00009687 cast<AtomicSDNode>(Node)->getAlignment(),
9688 cast<AtomicSDNode>(Node)->getOrdering(),
9689 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +00009690}
9691
Chris Lattner5b856542010-12-20 00:59:46 +00009692static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
9693 EVT VT = Op.getNode()->getValueType(0);
9694
9695 // Let legalize expand this if it isn't a legal type yet.
9696 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
9697 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009698
Chris Lattner5b856542010-12-20 00:59:46 +00009699 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009700
Chris Lattner5b856542010-12-20 00:59:46 +00009701 unsigned Opc;
9702 bool ExtraOp = false;
9703 switch (Op.getOpcode()) {
9704 default: assert(0 && "Invalid code");
9705 case ISD::ADDC: Opc = X86ISD::ADD; break;
9706 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
9707 case ISD::SUBC: Opc = X86ISD::SUB; break;
9708 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
9709 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009710
Chris Lattner5b856542010-12-20 00:59:46 +00009711 if (!ExtraOp)
9712 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9713 Op.getOperand(1));
9714 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9715 Op.getOperand(1), Op.getOperand(2));
9716}
9717
Evan Cheng0db9fe62006-04-25 20:13:52 +00009718/// LowerOperation - Provide custom lowering hooks for some operations.
9719///
Dan Gohmand858e902010-04-17 15:26:15 +00009720SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00009721 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009722 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009723 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Eric Christopher9a9d2752010-07-22 02:48:34 +00009724 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Eli Friedman14648462011-07-27 22:21:52 +00009725 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009726 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
9727 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009728 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00009729 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009730 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
9731 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
9732 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
David Greene91585092011-01-26 15:38:49 +00009733 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
David Greenecfe33c42011-01-26 19:13:22 +00009734 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009735 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
9736 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
9737 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009738 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00009739 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00009740 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009741 case ISD::SHL_PARTS:
9742 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +00009743 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009744 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00009745 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009746 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00009747 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009748 case ISD::FABS: return LowerFABS(Op, DAG);
9749 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009750 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009751 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009752 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00009753 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009754 case ISD::SELECT: return LowerSELECT(Op, DAG);
9755 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009756 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009757 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00009758 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00009759 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009760 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00009761 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
9762 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009763 case ISD::FRAME_TO_ARGS_OFFSET:
9764 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00009765 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009766 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009767 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00009768 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00009769 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
9770 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009771 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +00009772 case ISD::SRA:
9773 case ISD::SRL:
9774 case ISD::SHL: return LowerShift(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00009775 case ISD::SADDO:
9776 case ISD::UADDO:
9777 case ISD::SSUBO:
9778 case ISD::USUBO:
9779 case ISD::SMULO:
9780 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00009781 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009782 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +00009783 case ISD::ADDC:
9784 case ISD::ADDE:
9785 case ISD::SUBC:
9786 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009787 }
Chris Lattner27a6c732007-11-24 07:07:01 +00009788}
9789
Duncan Sands1607f052008-12-01 11:39:25 +00009790void X86TargetLowering::
9791ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009792 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009793 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009794 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00009795 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00009796
9797 SDValue Chain = Node->getOperand(0);
9798 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009799 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009800 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00009801 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009802 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00009803 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00009804 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00009805 SDValue Result =
9806 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
9807 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00009808 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009809 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009810 Results.push_back(Result.getValue(2));
9811}
9812
Duncan Sands126d9072008-07-04 11:47:58 +00009813/// ReplaceNodeResults - Replace a node with an illegal result type
9814/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00009815void X86TargetLowering::ReplaceNodeResults(SDNode *N,
9816 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009817 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009818 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00009819 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00009820 default:
Duncan Sands1607f052008-12-01 11:39:25 +00009821 assert(false && "Do not know how to custom type legalize this operation!");
9822 return;
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009823 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +00009824 case ISD::ADDC:
9825 case ISD::ADDE:
9826 case ISD::SUBC:
9827 case ISD::SUBE:
9828 // We don't want to expand or promote these.
9829 return;
Duncan Sands1607f052008-12-01 11:39:25 +00009830 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00009831 std::pair<SDValue,SDValue> Vals =
9832 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00009833 SDValue FIST = Vals.first, StackSlot = Vals.second;
9834 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00009835 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00009836 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00009837 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
9838 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00009839 }
9840 return;
9841 }
9842 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009843 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009844 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009845 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009846 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00009847 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00009848 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009849 eax.getValue(2));
9850 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
9851 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00009852 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009853 Results.push_back(edx.getValue(1));
9854 return;
9855 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009856 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00009857 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009858 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00009859 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009860 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9861 DAG.getConstant(0, MVT::i32));
9862 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9863 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009864 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
9865 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009866 cpInL.getValue(1));
9867 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009868 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9869 DAG.getConstant(0, MVT::i32));
9870 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9871 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009872 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00009873 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009874 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009875 swapInL.getValue(1));
9876 SDValue Ops[] = { swapInH.getValue(0),
9877 N->getOperand(1),
9878 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009879 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +00009880 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
9881 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
9882 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +00009883 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009884 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009885 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009886 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00009887 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009888 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009889 Results.push_back(cpOutH.getValue(1));
9890 return;
9891 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009892 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00009893 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
9894 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009895 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00009896 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
9897 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009898 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00009899 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
9900 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009901 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00009902 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
9903 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009904 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00009905 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
9906 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009907 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00009908 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
9909 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009910 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00009911 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
9912 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00009913 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00009914}
9915
Evan Cheng72261582005-12-20 06:22:03 +00009916const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
9917 switch (Opcode) {
9918 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00009919 case X86ISD::BSF: return "X86ISD::BSF";
9920 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00009921 case X86ISD::SHLD: return "X86ISD::SHLD";
9922 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00009923 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009924 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00009925 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009926 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00009927 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00009928 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00009929 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
9930 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
9931 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00009932 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00009933 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00009934 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00009935 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00009936 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00009937 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00009938 case X86ISD::COMI: return "X86ISD::COMI";
9939 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00009940 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00009941 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +00009942 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
9943 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +00009944 case X86ISD::CMOV: return "X86ISD::CMOV";
9945 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00009946 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00009947 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
9948 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00009949 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00009950 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00009951 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009952 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00009953 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009954 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
9955 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00009956 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00009957 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +00009958 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Nate Begemanb65c1752010-12-17 22:55:37 +00009959 case X86ISD::PSIGNB: return "X86ISD::PSIGNB";
9960 case X86ISD::PSIGNW: return "X86ISD::PSIGNW";
9961 case X86ISD::PSIGND: return "X86ISD::PSIGND";
Nate Begeman672fb622010-12-20 22:04:24 +00009962 case X86ISD::PBLENDVB: return "X86ISD::PBLENDVB";
Evan Cheng8ca29322006-11-10 21:43:37 +00009963 case X86ISD::FMAX: return "X86ISD::FMAX";
9964 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00009965 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
9966 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009967 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00009968 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009969 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00009970 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009971 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00009972 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
9973 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009974 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
9975 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
9976 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
9977 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
9978 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
9979 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00009980 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
9981 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00009982 case X86ISD::VSHL: return "X86ISD::VSHL";
9983 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00009984 case X86ISD::CMPPD: return "X86ISD::CMPPD";
9985 case X86ISD::CMPPS: return "X86ISD::CMPPS";
9986 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
9987 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
9988 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
9989 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
9990 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
9991 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
9992 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
9993 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009994 case X86ISD::ADD: return "X86ISD::ADD";
9995 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +00009996 case X86ISD::ADC: return "X86ISD::ADC";
9997 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +00009998 case X86ISD::SMUL: return "X86ISD::SMUL";
9999 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +000010000 case X86ISD::INC: return "X86ISD::INC";
10001 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +000010002 case X86ISD::OR: return "X86ISD::OR";
10003 case X86ISD::XOR: return "X86ISD::XOR";
10004 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +000010005 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +000010006 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000010007 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010008 case X86ISD::PALIGN: return "X86ISD::PALIGN";
10009 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
10010 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
10011 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
10012 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
10013 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
10014 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
10015 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
10016 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010017 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000010018 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010019 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000010020 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
10021 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010022 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
10023 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
10024 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
10025 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
10026 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
10027 case X86ISD::MOVSD: return "X86ISD::MOVSD";
10028 case X86ISD::MOVSS: return "X86ISD::MOVSS";
10029 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
10030 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
David Greenefbf05d32011-02-22 23:31:46 +000010031 case X86ISD::VUNPCKLPDY: return "X86ISD::VUNPCKLPDY";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010032 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
10033 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
10034 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
10035 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
10036 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
10037 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
10038 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
10039 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
10040 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
10041 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000010042 case X86ISD::VPERMILPS: return "X86ISD::VPERMILPS";
10043 case X86ISD::VPERMILPSY: return "X86ISD::VPERMILPSY";
10044 case X86ISD::VPERMILPD: return "X86ISD::VPERMILPD";
10045 case X86ISD::VPERMILPDY: return "X86ISD::VPERMILPDY";
Dan Gohmand6708ea2009-08-15 01:38:56 +000010046 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000010047 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010048 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000010049 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Evan Cheng72261582005-12-20 06:22:03 +000010050 }
10051}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010052
Chris Lattnerc9addb72007-03-30 23:15:24 +000010053// isLegalAddressingMode - Return true if the addressing mode represented
10054// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000010055bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010056 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000010057 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010058 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000010059 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000010060
Chris Lattnerc9addb72007-03-30 23:15:24 +000010061 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010062 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010063 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000010064
Chris Lattnerc9addb72007-03-30 23:15:24 +000010065 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000010066 unsigned GVFlags =
10067 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010068
Chris Lattnerdfed4132009-07-10 07:38:24 +000010069 // If a reference to this global requires an extra load, we can't fold it.
10070 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010071 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010072
Chris Lattnerdfed4132009-07-10 07:38:24 +000010073 // If BaseGV requires a register for the PIC base, we cannot also have a
10074 // BaseReg specified.
10075 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000010076 return false;
Evan Cheng52787842007-08-01 23:46:47 +000010077
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010078 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000010079 if ((M != CodeModel::Small || R != Reloc::Static) &&
10080 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010081 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000010082 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010083
Chris Lattnerc9addb72007-03-30 23:15:24 +000010084 switch (AM.Scale) {
10085 case 0:
10086 case 1:
10087 case 2:
10088 case 4:
10089 case 8:
10090 // These scales always work.
10091 break;
10092 case 3:
10093 case 5:
10094 case 9:
10095 // These scales are formed with basereg+scalereg. Only accept if there is
10096 // no basereg yet.
10097 if (AM.HasBaseReg)
10098 return false;
10099 break;
10100 default: // Other stuff never works.
10101 return false;
10102 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010103
Chris Lattnerc9addb72007-03-30 23:15:24 +000010104 return true;
10105}
10106
10107
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010108bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010109 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000010110 return false;
Evan Chenge127a732007-10-29 07:57:50 +000010111 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
10112 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010113 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +000010114 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010115 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +000010116}
10117
Owen Andersone50ed302009-08-10 22:56:29 +000010118bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000010119 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010120 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010121 unsigned NumBits1 = VT1.getSizeInBits();
10122 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010123 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010124 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010125 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010126}
Evan Cheng2bd122c2007-10-26 01:56:11 +000010127
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010128bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010129 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010130 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010131}
10132
Owen Andersone50ed302009-08-10 22:56:29 +000010133bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010134 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000010135 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010136}
10137
Owen Andersone50ed302009-08-10 22:56:29 +000010138bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000010139 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000010140 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000010141}
10142
Evan Cheng60c07e12006-07-05 22:17:51 +000010143/// isShuffleMaskLegal - Targets can use this to indicate that they only
10144/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
10145/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
10146/// are assumed to be legal.
10147bool
Eric Christopherfd179292009-08-27 18:07:15 +000010148X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000010149 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +000010150 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000010151 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +000010152 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +000010153
Nate Begemana09008b2009-10-19 02:17:23 +000010154 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +000010155 return (VT.getVectorNumElements() == 2 ||
10156 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
10157 isMOVLMask(M, VT) ||
10158 isSHUFPMask(M, VT) ||
10159 isPSHUFDMask(M, VT) ||
10160 isPSHUFHWMask(M, VT) ||
10161 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +000010162 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +000010163 isUNPCKLMask(M, VT) ||
10164 isUNPCKHMask(M, VT) ||
10165 isUNPCKL_v_undef_Mask(M, VT) ||
10166 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010167}
10168
Dan Gohman7d8143f2008-04-09 20:09:42 +000010169bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000010170X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000010171 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +000010172 unsigned NumElts = VT.getVectorNumElements();
10173 // FIXME: This collection of masks seems suspect.
10174 if (NumElts == 2)
10175 return true;
10176 if (NumElts == 4 && VT.getSizeInBits() == 128) {
10177 return (isMOVLMask(Mask, VT) ||
10178 isCommutedMOVLMask(Mask, VT, true) ||
10179 isSHUFPMask(Mask, VT) ||
10180 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010181 }
10182 return false;
10183}
10184
10185//===----------------------------------------------------------------------===//
10186// X86 Scheduler Hooks
10187//===----------------------------------------------------------------------===//
10188
Mon P Wang63307c32008-05-05 19:05:59 +000010189// private utility function
10190MachineBasicBlock *
10191X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
10192 MachineBasicBlock *MBB,
10193 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010194 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010195 unsigned LoadOpc,
10196 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010197 unsigned notOpc,
10198 unsigned EAXreg,
10199 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010200 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010201 // For the atomic bitwise operator, we generate
10202 // thisMBB:
10203 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010204 // ld t1 = [bitinstr.addr]
10205 // op t2 = t1, [bitinstr.val]
10206 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010207 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10208 // bz newMBB
10209 // fallthrough -->nextMBB
10210 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10211 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010212 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010213 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010214
Mon P Wang63307c32008-05-05 19:05:59 +000010215 /// First build the CFG
10216 MachineFunction *F = MBB->getParent();
10217 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010218 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10219 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10220 F->insert(MBBIter, newMBB);
10221 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010222
Dan Gohman14152b42010-07-06 20:24:04 +000010223 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10224 nextMBB->splice(nextMBB->begin(), thisMBB,
10225 llvm::next(MachineBasicBlock::iterator(bInstr)),
10226 thisMBB->end());
10227 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010228
Mon P Wang63307c32008-05-05 19:05:59 +000010229 // Update thisMBB to fall through to newMBB
10230 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010231
Mon P Wang63307c32008-05-05 19:05:59 +000010232 // newMBB jumps to itself and fall through to nextMBB
10233 newMBB->addSuccessor(nextMBB);
10234 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010235
Mon P Wang63307c32008-05-05 19:05:59 +000010236 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010237 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010238 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +000010239 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010240 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010241 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010242 int numArgs = bInstr->getNumOperands() - 1;
10243 for (int i=0; i < numArgs; ++i)
10244 argOpers[i] = &bInstr->getOperand(i+1);
10245
10246 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010247 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010248 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010249
Dale Johannesen140be2d2008-08-19 18:47:28 +000010250 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010251 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010252 for (int i=0; i <= lastAddrIndx; ++i)
10253 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010254
Dale Johannesen140be2d2008-08-19 18:47:28 +000010255 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010256 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010257 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010258 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010259 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010260 tt = t1;
10261
Dale Johannesen140be2d2008-08-19 18:47:28 +000010262 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +000010263 assert((argOpers[valArgIndx]->isReg() ||
10264 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010265 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +000010266 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010267 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010268 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010269 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010270 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +000010271 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010272
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010273 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +000010274 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010275
Dale Johannesene4d209d2009-02-03 20:21:25 +000010276 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +000010277 for (int i=0; i <= lastAddrIndx; ++i)
10278 (*MIB).addOperand(*argOpers[i]);
10279 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +000010280 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010281 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10282 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +000010283
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010284 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +000010285 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +000010286
Mon P Wang63307c32008-05-05 19:05:59 +000010287 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010288 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010289
Dan Gohman14152b42010-07-06 20:24:04 +000010290 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010291 return nextMBB;
10292}
10293
Dale Johannesen1b54c7f2008-10-03 19:41:08 +000010294// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +000010295MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010296X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
10297 MachineBasicBlock *MBB,
10298 unsigned regOpcL,
10299 unsigned regOpcH,
10300 unsigned immOpcL,
10301 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010302 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010303 // For the atomic bitwise operator, we generate
10304 // thisMBB (instructions are in pairs, except cmpxchg8b)
10305 // ld t1,t2 = [bitinstr.addr]
10306 // newMBB:
10307 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
10308 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +000010309 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010310 // mov ECX, EBX <- t5, t6
10311 // mov EAX, EDX <- t1, t2
10312 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
10313 // mov t3, t4 <- EAX, EDX
10314 // bz newMBB
10315 // result in out1, out2
10316 // fallthrough -->nextMBB
10317
10318 const TargetRegisterClass *RC = X86::GR32RegisterClass;
10319 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010320 const unsigned NotOpc = X86::NOT32r;
10321 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10322 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10323 MachineFunction::iterator MBBIter = MBB;
10324 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010325
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010326 /// First build the CFG
10327 MachineFunction *F = MBB->getParent();
10328 MachineBasicBlock *thisMBB = MBB;
10329 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10330 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10331 F->insert(MBBIter, newMBB);
10332 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010333
Dan Gohman14152b42010-07-06 20:24:04 +000010334 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10335 nextMBB->splice(nextMBB->begin(), thisMBB,
10336 llvm::next(MachineBasicBlock::iterator(bInstr)),
10337 thisMBB->end());
10338 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010339
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010340 // Update thisMBB to fall through to newMBB
10341 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010342
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010343 // newMBB jumps to itself and fall through to nextMBB
10344 newMBB->addSuccessor(nextMBB);
10345 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010346
Dale Johannesene4d209d2009-02-03 20:21:25 +000010347 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010348 // Insert instructions into newMBB based on incoming instruction
10349 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010350 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010351 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010352 MachineOperand& dest1Oper = bInstr->getOperand(0);
10353 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010354 MachineOperand* argOpers[2 + X86::AddrNumOperands];
10355 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010356 argOpers[i] = &bInstr->getOperand(i+2);
10357
Dan Gohman71ea4e52010-05-14 21:01:44 +000010358 // We use some of the operands multiple times, so conservatively just
10359 // clear any kill flags that might be present.
10360 if (argOpers[i]->isReg() && argOpers[i]->isUse())
10361 argOpers[i]->setIsKill(false);
10362 }
10363
Evan Chengad5b52f2010-01-08 19:14:57 +000010364 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010365 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +000010366
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010367 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010368 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010369 for (int i=0; i <= lastAddrIndx; ++i)
10370 (*MIB).addOperand(*argOpers[i]);
10371 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010372 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +000010373 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +000010374 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010375 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +000010376 MachineOperand newOp3 = *(argOpers[3]);
10377 if (newOp3.isImm())
10378 newOp3.setImm(newOp3.getImm()+4);
10379 else
10380 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010381 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +000010382 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010383
10384 // t3/4 are defined later, at the bottom of the loop
10385 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
10386 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010387 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010388 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010389 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010390 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
10391
Evan Cheng306b4ca2010-01-08 23:41:50 +000010392 // The subsequent operations should be using the destination registers of
10393 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +000010394 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010395 t1 = F->getRegInfo().createVirtualRegister(RC);
10396 t2 = F->getRegInfo().createVirtualRegister(RC);
10397 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
10398 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010399 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010400 t1 = dest1Oper.getReg();
10401 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010402 }
10403
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010404 int valArgIndx = lastAddrIndx + 1;
10405 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +000010406 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010407 "invalid operand");
10408 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
10409 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010410 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010411 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010412 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010413 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +000010414 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010415 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010416 (*MIB).addOperand(*argOpers[valArgIndx]);
10417 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010418 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010419 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010420 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010421 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010422 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010423 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010424 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +000010425 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010426 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010427 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010428
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010429 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010430 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010431 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010432 MIB.addReg(t2);
10433
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010434 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010435 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010436 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010437 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +000010438
Dale Johannesene4d209d2009-02-03 20:21:25 +000010439 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010440 for (int i=0; i <= lastAddrIndx; ++i)
10441 (*MIB).addOperand(*argOpers[i]);
10442
10443 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010444 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10445 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010446
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010447 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010448 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010449 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010450 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010451
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010452 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010453 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010454
Dan Gohman14152b42010-07-06 20:24:04 +000010455 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010456 return nextMBB;
10457}
10458
10459// private utility function
10460MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +000010461X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
10462 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010463 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010464 // For the atomic min/max operator, we generate
10465 // thisMBB:
10466 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010467 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +000010468 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +000010469 // cmp t1, t2
10470 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +000010471 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010472 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10473 // bz newMBB
10474 // fallthrough -->nextMBB
10475 //
10476 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10477 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010478 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010479 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010480
Mon P Wang63307c32008-05-05 19:05:59 +000010481 /// First build the CFG
10482 MachineFunction *F = MBB->getParent();
10483 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010484 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10485 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10486 F->insert(MBBIter, newMBB);
10487 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010488
Dan Gohman14152b42010-07-06 20:24:04 +000010489 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10490 nextMBB->splice(nextMBB->begin(), thisMBB,
10491 llvm::next(MachineBasicBlock::iterator(mInstr)),
10492 thisMBB->end());
10493 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010494
Mon P Wang63307c32008-05-05 19:05:59 +000010495 // Update thisMBB to fall through to newMBB
10496 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010497
Mon P Wang63307c32008-05-05 19:05:59 +000010498 // newMBB jumps to newMBB and fall through to nextMBB
10499 newMBB->addSuccessor(nextMBB);
10500 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010501
Dale Johannesene4d209d2009-02-03 20:21:25 +000010502 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010503 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010504 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010505 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +000010506 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010507 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010508 int numArgs = mInstr->getNumOperands() - 1;
10509 for (int i=0; i < numArgs; ++i)
10510 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010511
Mon P Wang63307c32008-05-05 19:05:59 +000010512 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010513 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010514 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010515
Mon P Wangab3e7472008-05-05 22:56:23 +000010516 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010517 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010518 for (int i=0; i <= lastAddrIndx; ++i)
10519 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +000010520
Mon P Wang63307c32008-05-05 19:05:59 +000010521 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +000010522 assert((argOpers[valArgIndx]->isReg() ||
10523 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010524 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +000010525
10526 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +000010527 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010528 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +000010529 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010530 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010531 (*MIB).addOperand(*argOpers[valArgIndx]);
10532
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010533 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +000010534 MIB.addReg(t1);
10535
Dale Johannesene4d209d2009-02-03 20:21:25 +000010536 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +000010537 MIB.addReg(t1);
10538 MIB.addReg(t2);
10539
10540 // Generate movc
10541 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010542 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +000010543 MIB.addReg(t2);
10544 MIB.addReg(t1);
10545
10546 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +000010547 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +000010548 for (int i=0; i <= lastAddrIndx; ++i)
10549 (*MIB).addOperand(*argOpers[i]);
10550 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +000010551 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010552 (*MIB).setMemRefs(mInstr->memoperands_begin(),
10553 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000010554
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010555 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +000010556 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010557
Mon P Wang63307c32008-05-05 19:05:59 +000010558 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010559 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010560
Dan Gohman14152b42010-07-06 20:24:04 +000010561 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010562 return nextMBB;
10563}
10564
Eric Christopherf83a5de2009-08-27 18:08:16 +000010565// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010566// or XMM0_V32I8 in AVX all of this code can be replaced with that
10567// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010568MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +000010569X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +000010570 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010571 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
10572 "Target must have SSE4.2 or AVX features enabled");
10573
Eric Christopherb120ab42009-08-18 22:50:32 +000010574 DebugLoc dl = MI->getDebugLoc();
10575 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +000010576 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010577 if (!Subtarget->hasAVX()) {
10578 if (memArg)
10579 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
10580 else
10581 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
10582 } else {
10583 if (memArg)
10584 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
10585 else
10586 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
10587 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010588
Eric Christopher41c902f2010-11-30 08:20:21 +000010589 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +000010590 for (unsigned i = 0; i < numArgs; ++i) {
10591 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +000010592 if (!(Op.isReg() && Op.isImplicit()))
10593 MIB.addOperand(Op);
10594 }
Eric Christopher41c902f2010-11-30 08:20:21 +000010595 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000010596 .addReg(X86::XMM0);
10597
Dan Gohman14152b42010-07-06 20:24:04 +000010598 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000010599 return BB;
10600}
10601
10602MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +000010603X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010604 DebugLoc dl = MI->getDebugLoc();
10605 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010606
Eric Christopher228232b2010-11-30 07:20:12 +000010607 // Address into RAX/EAX, other two args into ECX, EDX.
10608 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
10609 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
10610 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
10611 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000010612 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010613
Eric Christopher228232b2010-11-30 07:20:12 +000010614 unsigned ValOps = X86::AddrNumOperands;
10615 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10616 .addReg(MI->getOperand(ValOps).getReg());
10617 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
10618 .addReg(MI->getOperand(ValOps+1).getReg());
10619
10620 // The instruction doesn't actually take any operands though.
10621 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010622
Eric Christopher228232b2010-11-30 07:20:12 +000010623 MI->eraseFromParent(); // The pseudo is gone now.
10624 return BB;
10625}
10626
10627MachineBasicBlock *
10628X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010629 DebugLoc dl = MI->getDebugLoc();
10630 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010631
Eric Christopher228232b2010-11-30 07:20:12 +000010632 // First arg in ECX, the second in EAX.
10633 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10634 .addReg(MI->getOperand(0).getReg());
10635 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
10636 .addReg(MI->getOperand(1).getReg());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010637
Eric Christopher228232b2010-11-30 07:20:12 +000010638 // The instruction doesn't actually take any operands though.
10639 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010640
Eric Christopher228232b2010-11-30 07:20:12 +000010641 MI->eraseFromParent(); // The pseudo is gone now.
10642 return BB;
10643}
10644
10645MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000010646X86TargetLowering::EmitVAARG64WithCustomInserter(
10647 MachineInstr *MI,
10648 MachineBasicBlock *MBB) const {
10649 // Emit va_arg instruction on X86-64.
10650
10651 // Operands to this pseudo-instruction:
10652 // 0 ) Output : destination address (reg)
10653 // 1-5) Input : va_list address (addr, i64mem)
10654 // 6 ) ArgSize : Size (in bytes) of vararg type
10655 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
10656 // 8 ) Align : Alignment of type
10657 // 9 ) EFLAGS (implicit-def)
10658
10659 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
10660 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
10661
10662 unsigned DestReg = MI->getOperand(0).getReg();
10663 MachineOperand &Base = MI->getOperand(1);
10664 MachineOperand &Scale = MI->getOperand(2);
10665 MachineOperand &Index = MI->getOperand(3);
10666 MachineOperand &Disp = MI->getOperand(4);
10667 MachineOperand &Segment = MI->getOperand(5);
10668 unsigned ArgSize = MI->getOperand(6).getImm();
10669 unsigned ArgMode = MI->getOperand(7).getImm();
10670 unsigned Align = MI->getOperand(8).getImm();
10671
10672 // Memory Reference
10673 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
10674 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
10675 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
10676
10677 // Machine Information
10678 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10679 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
10680 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
10681 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
10682 DebugLoc DL = MI->getDebugLoc();
10683
10684 // struct va_list {
10685 // i32 gp_offset
10686 // i32 fp_offset
10687 // i64 overflow_area (address)
10688 // i64 reg_save_area (address)
10689 // }
10690 // sizeof(va_list) = 24
10691 // alignment(va_list) = 8
10692
10693 unsigned TotalNumIntRegs = 6;
10694 unsigned TotalNumXMMRegs = 8;
10695 bool UseGPOffset = (ArgMode == 1);
10696 bool UseFPOffset = (ArgMode == 2);
10697 unsigned MaxOffset = TotalNumIntRegs * 8 +
10698 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
10699
10700 /* Align ArgSize to a multiple of 8 */
10701 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
10702 bool NeedsAlign = (Align > 8);
10703
10704 MachineBasicBlock *thisMBB = MBB;
10705 MachineBasicBlock *overflowMBB;
10706 MachineBasicBlock *offsetMBB;
10707 MachineBasicBlock *endMBB;
10708
10709 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
10710 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
10711 unsigned OffsetReg = 0;
10712
10713 if (!UseGPOffset && !UseFPOffset) {
10714 // If we only pull from the overflow region, we don't create a branch.
10715 // We don't need to alter control flow.
10716 OffsetDestReg = 0; // unused
10717 OverflowDestReg = DestReg;
10718
10719 offsetMBB = NULL;
10720 overflowMBB = thisMBB;
10721 endMBB = thisMBB;
10722 } else {
10723 // First emit code to check if gp_offset (or fp_offset) is below the bound.
10724 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
10725 // If not, pull from overflow_area. (branch to overflowMBB)
10726 //
10727 // thisMBB
10728 // | .
10729 // | .
10730 // offsetMBB overflowMBB
10731 // | .
10732 // | .
10733 // endMBB
10734
10735 // Registers for the PHI in endMBB
10736 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
10737 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
10738
10739 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10740 MachineFunction *MF = MBB->getParent();
10741 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10742 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10743 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10744
10745 MachineFunction::iterator MBBIter = MBB;
10746 ++MBBIter;
10747
10748 // Insert the new basic blocks
10749 MF->insert(MBBIter, offsetMBB);
10750 MF->insert(MBBIter, overflowMBB);
10751 MF->insert(MBBIter, endMBB);
10752
10753 // Transfer the remainder of MBB and its successor edges to endMBB.
10754 endMBB->splice(endMBB->begin(), thisMBB,
10755 llvm::next(MachineBasicBlock::iterator(MI)),
10756 thisMBB->end());
10757 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
10758
10759 // Make offsetMBB and overflowMBB successors of thisMBB
10760 thisMBB->addSuccessor(offsetMBB);
10761 thisMBB->addSuccessor(overflowMBB);
10762
10763 // endMBB is a successor of both offsetMBB and overflowMBB
10764 offsetMBB->addSuccessor(endMBB);
10765 overflowMBB->addSuccessor(endMBB);
10766
10767 // Load the offset value into a register
10768 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10769 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
10770 .addOperand(Base)
10771 .addOperand(Scale)
10772 .addOperand(Index)
10773 .addDisp(Disp, UseFPOffset ? 4 : 0)
10774 .addOperand(Segment)
10775 .setMemRefs(MMOBegin, MMOEnd);
10776
10777 // Check if there is enough room left to pull this argument.
10778 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
10779 .addReg(OffsetReg)
10780 .addImm(MaxOffset + 8 - ArgSizeA8);
10781
10782 // Branch to "overflowMBB" if offset >= max
10783 // Fall through to "offsetMBB" otherwise
10784 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
10785 .addMBB(overflowMBB);
10786 }
10787
10788 // In offsetMBB, emit code to use the reg_save_area.
10789 if (offsetMBB) {
10790 assert(OffsetReg != 0);
10791
10792 // Read the reg_save_area address.
10793 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
10794 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
10795 .addOperand(Base)
10796 .addOperand(Scale)
10797 .addOperand(Index)
10798 .addDisp(Disp, 16)
10799 .addOperand(Segment)
10800 .setMemRefs(MMOBegin, MMOEnd);
10801
10802 // Zero-extend the offset
10803 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
10804 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
10805 .addImm(0)
10806 .addReg(OffsetReg)
10807 .addImm(X86::sub_32bit);
10808
10809 // Add the offset to the reg_save_area to get the final address.
10810 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
10811 .addReg(OffsetReg64)
10812 .addReg(RegSaveReg);
10813
10814 // Compute the offset for the next argument
10815 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10816 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
10817 .addReg(OffsetReg)
10818 .addImm(UseFPOffset ? 16 : 8);
10819
10820 // Store it back into the va_list.
10821 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
10822 .addOperand(Base)
10823 .addOperand(Scale)
10824 .addOperand(Index)
10825 .addDisp(Disp, UseFPOffset ? 4 : 0)
10826 .addOperand(Segment)
10827 .addReg(NextOffsetReg)
10828 .setMemRefs(MMOBegin, MMOEnd);
10829
10830 // Jump to endMBB
10831 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
10832 .addMBB(endMBB);
10833 }
10834
10835 //
10836 // Emit code to use overflow area
10837 //
10838
10839 // Load the overflow_area address into a register.
10840 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
10841 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
10842 .addOperand(Base)
10843 .addOperand(Scale)
10844 .addOperand(Index)
10845 .addDisp(Disp, 8)
10846 .addOperand(Segment)
10847 .setMemRefs(MMOBegin, MMOEnd);
10848
10849 // If we need to align it, do so. Otherwise, just copy the address
10850 // to OverflowDestReg.
10851 if (NeedsAlign) {
10852 // Align the overflow address
10853 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
10854 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
10855
10856 // aligned_addr = (addr + (align-1)) & ~(align-1)
10857 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
10858 .addReg(OverflowAddrReg)
10859 .addImm(Align-1);
10860
10861 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
10862 .addReg(TmpReg)
10863 .addImm(~(uint64_t)(Align-1));
10864 } else {
10865 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
10866 .addReg(OverflowAddrReg);
10867 }
10868
10869 // Compute the next overflow address after this argument.
10870 // (the overflow address should be kept 8-byte aligned)
10871 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
10872 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
10873 .addReg(OverflowDestReg)
10874 .addImm(ArgSizeA8);
10875
10876 // Store the new overflow address.
10877 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
10878 .addOperand(Base)
10879 .addOperand(Scale)
10880 .addOperand(Index)
10881 .addDisp(Disp, 8)
10882 .addOperand(Segment)
10883 .addReg(NextAddrReg)
10884 .setMemRefs(MMOBegin, MMOEnd);
10885
10886 // If we branched, emit the PHI to the front of endMBB.
10887 if (offsetMBB) {
10888 BuildMI(*endMBB, endMBB->begin(), DL,
10889 TII->get(X86::PHI), DestReg)
10890 .addReg(OffsetDestReg).addMBB(offsetMBB)
10891 .addReg(OverflowDestReg).addMBB(overflowMBB);
10892 }
10893
10894 // Erase the pseudo instruction
10895 MI->eraseFromParent();
10896
10897 return endMBB;
10898}
10899
10900MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000010901X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
10902 MachineInstr *MI,
10903 MachineBasicBlock *MBB) const {
10904 // Emit code to save XMM registers to the stack. The ABI says that the
10905 // number of registers to save is given in %al, so it's theoretically
10906 // possible to do an indirect jump trick to avoid saving all of them,
10907 // however this code takes a simpler approach and just executes all
10908 // of the stores if %al is non-zero. It's less code, and it's probably
10909 // easier on the hardware branch predictor, and stores aren't all that
10910 // expensive anyway.
10911
10912 // Create the new basic blocks. One block contains all the XMM stores,
10913 // and one block is the final destination regardless of whether any
10914 // stores were performed.
10915 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10916 MachineFunction *F = MBB->getParent();
10917 MachineFunction::iterator MBBIter = MBB;
10918 ++MBBIter;
10919 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
10920 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
10921 F->insert(MBBIter, XMMSaveMBB);
10922 F->insert(MBBIter, EndMBB);
10923
Dan Gohman14152b42010-07-06 20:24:04 +000010924 // Transfer the remainder of MBB and its successor edges to EndMBB.
10925 EndMBB->splice(EndMBB->begin(), MBB,
10926 llvm::next(MachineBasicBlock::iterator(MI)),
10927 MBB->end());
10928 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
10929
Dan Gohmand6708ea2009-08-15 01:38:56 +000010930 // The original block will now fall through to the XMM save block.
10931 MBB->addSuccessor(XMMSaveMBB);
10932 // The XMMSaveMBB will fall through to the end block.
10933 XMMSaveMBB->addSuccessor(EndMBB);
10934
10935 // Now add the instructions.
10936 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10937 DebugLoc DL = MI->getDebugLoc();
10938
10939 unsigned CountReg = MI->getOperand(0).getReg();
10940 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
10941 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
10942
10943 if (!Subtarget->isTargetWin64()) {
10944 // If %al is 0, branch around the XMM save block.
10945 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010946 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010947 MBB->addSuccessor(EndMBB);
10948 }
10949
10950 // In the XMM save block, save all the XMM argument registers.
10951 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
10952 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000010953 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000010954 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000010955 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000010956 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000010957 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010958 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
10959 .addFrameIndex(RegSaveFrameIndex)
10960 .addImm(/*Scale=*/1)
10961 .addReg(/*IndexReg=*/0)
10962 .addImm(/*Disp=*/Offset)
10963 .addReg(/*Segment=*/0)
10964 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000010965 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010966 }
10967
Dan Gohman14152b42010-07-06 20:24:04 +000010968 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010969
10970 return EndMBB;
10971}
Mon P Wang63307c32008-05-05 19:05:59 +000010972
Evan Cheng60c07e12006-07-05 22:17:51 +000010973MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000010974X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010975 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000010976 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10977 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000010978
Chris Lattner52600972009-09-02 05:57:00 +000010979 // To "insert" a SELECT_CC instruction, we actually have to insert the
10980 // diamond control-flow pattern. The incoming instruction knows the
10981 // destination vreg to set, the condition code register to branch on, the
10982 // true/false values to select between, and a branch opcode to use.
10983 const BasicBlock *LLVM_BB = BB->getBasicBlock();
10984 MachineFunction::iterator It = BB;
10985 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000010986
Chris Lattner52600972009-09-02 05:57:00 +000010987 // thisMBB:
10988 // ...
10989 // TrueVal = ...
10990 // cmpTY ccX, r1, r2
10991 // bCC copy1MBB
10992 // fallthrough --> copy0MBB
10993 MachineBasicBlock *thisMBB = BB;
10994 MachineFunction *F = BB->getParent();
10995 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
10996 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000010997 F->insert(It, copy0MBB);
10998 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000010999
Bill Wendling730c07e2010-06-25 20:48:10 +000011000 // If the EFLAGS register isn't dead in the terminator, then claim that it's
11001 // live into the sink and copy blocks.
11002 const MachineFunction *MF = BB->getParent();
11003 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
11004 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +000011005
Dan Gohman14152b42010-07-06 20:24:04 +000011006 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
11007 const MachineOperand &MO = MI->getOperand(I);
11008 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +000011009 unsigned Reg = MO.getReg();
11010 if (Reg != X86::EFLAGS) continue;
11011 copy0MBB->addLiveIn(Reg);
11012 sinkMBB->addLiveIn(Reg);
11013 }
11014
Dan Gohman14152b42010-07-06 20:24:04 +000011015 // Transfer the remainder of BB and its successor edges to sinkMBB.
11016 sinkMBB->splice(sinkMBB->begin(), BB,
11017 llvm::next(MachineBasicBlock::iterator(MI)),
11018 BB->end());
11019 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
11020
11021 // Add the true and fallthrough blocks as its successors.
11022 BB->addSuccessor(copy0MBB);
11023 BB->addSuccessor(sinkMBB);
11024
11025 // Create the conditional branch instruction.
11026 unsigned Opc =
11027 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
11028 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
11029
Chris Lattner52600972009-09-02 05:57:00 +000011030 // copy0MBB:
11031 // %FalseValue = ...
11032 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000011033 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000011034
Chris Lattner52600972009-09-02 05:57:00 +000011035 // sinkMBB:
11036 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
11037 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000011038 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
11039 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000011040 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
11041 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
11042
Dan Gohman14152b42010-07-06 20:24:04 +000011043 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000011044 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000011045}
11046
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011047MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011048X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011049 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011050 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11051 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011052
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011053 assert(!Subtarget->isTargetEnvMacho());
11054
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011055 // The lowering is pretty easy: we're just emitting the call to _alloca. The
11056 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011057
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011058 if (Subtarget->isTargetWin64()) {
11059 if (Subtarget->isTargetCygMing()) {
11060 // ___chkstk(Mingw64):
11061 // Clobbers R10, R11, RAX and EFLAGS.
11062 // Updates RSP.
11063 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11064 .addExternalSymbol("___chkstk")
11065 .addReg(X86::RAX, RegState::Implicit)
11066 .addReg(X86::RSP, RegState::Implicit)
11067 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
11068 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
11069 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11070 } else {
11071 // __chkstk(MSVCRT): does not update stack pointer.
11072 // Clobbers R10, R11 and EFLAGS.
11073 // FIXME: RAX(allocated size) might be reused and not killed.
11074 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11075 .addExternalSymbol("__chkstk")
11076 .addReg(X86::RAX, RegState::Implicit)
11077 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11078 // RAX has the offset to subtracted from RSP.
11079 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
11080 .addReg(X86::RSP)
11081 .addReg(X86::RAX);
11082 }
11083 } else {
11084 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011085 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
11086
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011087 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
11088 .addExternalSymbol(StackProbeSymbol)
11089 .addReg(X86::EAX, RegState::Implicit)
11090 .addReg(X86::ESP, RegState::Implicit)
11091 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
11092 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
11093 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11094 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011095
Dan Gohman14152b42010-07-06 20:24:04 +000011096 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011097 return BB;
11098}
Chris Lattner52600972009-09-02 05:57:00 +000011099
11100MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000011101X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
11102 MachineBasicBlock *BB) const {
11103 // This is pretty easy. We're taking the value that we received from
11104 // our load from the relocation, sticking it in either RDI (x86-64)
11105 // or EAX and doing an indirect call. The return value will then
11106 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000011107 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000011108 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000011109 DebugLoc DL = MI->getDebugLoc();
11110 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000011111
11112 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000011113 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000011114
Eric Christopher30ef0e52010-06-03 04:07:48 +000011115 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000011116 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11117 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000011118 .addReg(X86::RIP)
11119 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011120 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011121 MI->getOperand(3).getTargetFlags())
11122 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000011123 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000011124 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000011125 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000011126 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11127 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000011128 .addReg(0)
11129 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011130 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000011131 MI->getOperand(3).getTargetFlags())
11132 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011133 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011134 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011135 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000011136 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11137 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000011138 .addReg(TII->getGlobalBaseReg(F))
11139 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011140 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011141 MI->getOperand(3).getTargetFlags())
11142 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011143 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011144 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011145 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000011146
Dan Gohman14152b42010-07-06 20:24:04 +000011147 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000011148 return BB;
11149}
11150
11151MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000011152X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011153 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000011154 switch (MI->getOpcode()) {
11155 default: assert(false && "Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000011156 case X86::TAILJMPd64:
11157 case X86::TAILJMPr64:
11158 case X86::TAILJMPm64:
11159 assert(!"TAILJMP64 would not be touched here.");
11160 case X86::TCRETURNdi64:
11161 case X86::TCRETURNri64:
11162 case X86::TCRETURNmi64:
11163 // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
11164 // On AMD64, additional defs should be added before register allocation.
11165 if (!Subtarget->isTargetWin64()) {
11166 MI->addRegisterDefined(X86::RSI);
11167 MI->addRegisterDefined(X86::RDI);
11168 MI->addRegisterDefined(X86::XMM6);
11169 MI->addRegisterDefined(X86::XMM7);
11170 MI->addRegisterDefined(X86::XMM8);
11171 MI->addRegisterDefined(X86::XMM9);
11172 MI->addRegisterDefined(X86::XMM10);
11173 MI->addRegisterDefined(X86::XMM11);
11174 MI->addRegisterDefined(X86::XMM12);
11175 MI->addRegisterDefined(X86::XMM13);
11176 MI->addRegisterDefined(X86::XMM14);
11177 MI->addRegisterDefined(X86::XMM15);
11178 }
11179 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011180 case X86::WIN_ALLOCA:
11181 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011182 case X86::TLSCall_32:
11183 case X86::TLSCall_64:
11184 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000011185 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000011186 case X86::CMOV_FR32:
11187 case X86::CMOV_FR64:
11188 case X86::CMOV_V4F32:
11189 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000011190 case X86::CMOV_V2I64:
Chris Lattner314a1132010-03-14 18:31:44 +000011191 case X86::CMOV_GR16:
11192 case X86::CMOV_GR32:
11193 case X86::CMOV_RFP32:
11194 case X86::CMOV_RFP64:
11195 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011196 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011197
Dale Johannesen849f2142007-07-03 00:53:03 +000011198 case X86::FP32_TO_INT16_IN_MEM:
11199 case X86::FP32_TO_INT32_IN_MEM:
11200 case X86::FP32_TO_INT64_IN_MEM:
11201 case X86::FP64_TO_INT16_IN_MEM:
11202 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000011203 case X86::FP64_TO_INT64_IN_MEM:
11204 case X86::FP80_TO_INT16_IN_MEM:
11205 case X86::FP80_TO_INT32_IN_MEM:
11206 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000011207 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11208 DebugLoc DL = MI->getDebugLoc();
11209
Evan Cheng60c07e12006-07-05 22:17:51 +000011210 // Change the floating point control register to use "round towards zero"
11211 // mode when truncating to an integer value.
11212 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000011213 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000011214 addFrameReference(BuildMI(*BB, MI, DL,
11215 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011216
11217 // Load the old value of the high byte of the control word...
11218 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000011219 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000011220 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000011221 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011222
11223 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000011224 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000011225 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000011226
11227 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000011228 addFrameReference(BuildMI(*BB, MI, DL,
11229 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011230
11231 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000011232 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000011233 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000011234
11235 // Get the X86 opcode to use.
11236 unsigned Opc;
11237 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000011238 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000011239 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
11240 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
11241 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
11242 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
11243 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
11244 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000011245 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
11246 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
11247 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000011248 }
11249
11250 X86AddressMode AM;
11251 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000011252 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000011253 AM.BaseType = X86AddressMode::RegBase;
11254 AM.Base.Reg = Op.getReg();
11255 } else {
11256 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000011257 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000011258 }
11259 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000011260 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000011261 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011262 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000011263 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000011264 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011265 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000011266 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000011267 AM.GV = Op.getGlobal();
11268 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000011269 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011270 }
Dan Gohman14152b42010-07-06 20:24:04 +000011271 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011272 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000011273
11274 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000011275 addFrameReference(BuildMI(*BB, MI, DL,
11276 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011277
Dan Gohman14152b42010-07-06 20:24:04 +000011278 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000011279 return BB;
11280 }
Eric Christopherb120ab42009-08-18 22:50:32 +000011281 // String/text processing lowering.
11282 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011283 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000011284 return EmitPCMP(MI, BB, 3, false /* in-mem */);
11285 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011286 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000011287 return EmitPCMP(MI, BB, 3, true /* in-mem */);
11288 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011289 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000011290 return EmitPCMP(MI, BB, 5, false /* in mem */);
11291 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011292 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000011293 return EmitPCMP(MI, BB, 5, true /* in mem */);
11294
Eric Christopher228232b2010-11-30 07:20:12 +000011295 // Thread synchronization.
11296 case X86::MONITOR:
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011297 return EmitMonitor(MI, BB);
Eric Christopher228232b2010-11-30 07:20:12 +000011298 case X86::MWAIT:
11299 return EmitMwait(MI, BB);
11300
Eric Christopherb120ab42009-08-18 22:50:32 +000011301 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000011302 case X86::ATOMAND32:
11303 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011304 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011305 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011306 X86::NOT32r, X86::EAX,
11307 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011308 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000011309 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
11310 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011311 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011312 X86::NOT32r, X86::EAX,
11313 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011314 case X86::ATOMXOR32:
11315 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011316 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011317 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011318 X86::NOT32r, X86::EAX,
11319 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000011320 case X86::ATOMNAND32:
11321 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011322 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011323 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011324 X86::NOT32r, X86::EAX,
11325 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000011326 case X86::ATOMMIN32:
11327 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
11328 case X86::ATOMMAX32:
11329 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
11330 case X86::ATOMUMIN32:
11331 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
11332 case X86::ATOMUMAX32:
11333 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000011334
11335 case X86::ATOMAND16:
11336 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11337 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011338 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011339 X86::NOT16r, X86::AX,
11340 X86::GR16RegisterClass);
11341 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000011342 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011343 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011344 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011345 X86::NOT16r, X86::AX,
11346 X86::GR16RegisterClass);
11347 case X86::ATOMXOR16:
11348 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
11349 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011350 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011351 X86::NOT16r, X86::AX,
11352 X86::GR16RegisterClass);
11353 case X86::ATOMNAND16:
11354 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11355 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011356 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011357 X86::NOT16r, X86::AX,
11358 X86::GR16RegisterClass, true);
11359 case X86::ATOMMIN16:
11360 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
11361 case X86::ATOMMAX16:
11362 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
11363 case X86::ATOMUMIN16:
11364 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
11365 case X86::ATOMUMAX16:
11366 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
11367
11368 case X86::ATOMAND8:
11369 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11370 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011371 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011372 X86::NOT8r, X86::AL,
11373 X86::GR8RegisterClass);
11374 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000011375 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011376 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011377 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011378 X86::NOT8r, X86::AL,
11379 X86::GR8RegisterClass);
11380 case X86::ATOMXOR8:
11381 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
11382 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011383 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011384 X86::NOT8r, X86::AL,
11385 X86::GR8RegisterClass);
11386 case X86::ATOMNAND8:
11387 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11388 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011389 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011390 X86::NOT8r, X86::AL,
11391 X86::GR8RegisterClass, true);
11392 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011393 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000011394 case X86::ATOMAND64:
11395 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011396 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011397 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011398 X86::NOT64r, X86::RAX,
11399 X86::GR64RegisterClass);
11400 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000011401 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
11402 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011403 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011404 X86::NOT64r, X86::RAX,
11405 X86::GR64RegisterClass);
11406 case X86::ATOMXOR64:
11407 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011408 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011409 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011410 X86::NOT64r, X86::RAX,
11411 X86::GR64RegisterClass);
11412 case X86::ATOMNAND64:
11413 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
11414 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011415 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011416 X86::NOT64r, X86::RAX,
11417 X86::GR64RegisterClass, true);
11418 case X86::ATOMMIN64:
11419 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
11420 case X86::ATOMMAX64:
11421 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
11422 case X86::ATOMUMIN64:
11423 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
11424 case X86::ATOMUMAX64:
11425 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011426
11427 // This group does 64-bit operations on a 32-bit host.
11428 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011429 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011430 X86::AND32rr, X86::AND32rr,
11431 X86::AND32ri, X86::AND32ri,
11432 false);
11433 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011434 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011435 X86::OR32rr, X86::OR32rr,
11436 X86::OR32ri, X86::OR32ri,
11437 false);
11438 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011439 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011440 X86::XOR32rr, X86::XOR32rr,
11441 X86::XOR32ri, X86::XOR32ri,
11442 false);
11443 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011444 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011445 X86::AND32rr, X86::AND32rr,
11446 X86::AND32ri, X86::AND32ri,
11447 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011448 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011449 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011450 X86::ADD32rr, X86::ADC32rr,
11451 X86::ADD32ri, X86::ADC32ri,
11452 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011453 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011454 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011455 X86::SUB32rr, X86::SBB32rr,
11456 X86::SUB32ri, X86::SBB32ri,
11457 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000011458 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011459 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000011460 X86::MOV32rr, X86::MOV32rr,
11461 X86::MOV32ri, X86::MOV32ri,
11462 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011463 case X86::VASTART_SAVE_XMM_REGS:
11464 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000011465
11466 case X86::VAARG_64:
11467 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011468 }
11469}
11470
11471//===----------------------------------------------------------------------===//
11472// X86 Optimization Hooks
11473//===----------------------------------------------------------------------===//
11474
Dan Gohman475871a2008-07-27 21:46:04 +000011475void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000011476 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011477 APInt &KnownZero,
11478 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000011479 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000011480 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011481 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000011482 assert((Opc >= ISD::BUILTIN_OP_END ||
11483 Opc == ISD::INTRINSIC_WO_CHAIN ||
11484 Opc == ISD::INTRINSIC_W_CHAIN ||
11485 Opc == ISD::INTRINSIC_VOID) &&
11486 "Should use MaskedValueIsZero if you don't know whether Op"
11487 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011488
Dan Gohmanf4f92f52008-02-13 23:07:24 +000011489 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011490 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000011491 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011492 case X86ISD::ADD:
11493 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000011494 case X86ISD::ADC:
11495 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011496 case X86ISD::SMUL:
11497 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000011498 case X86ISD::INC:
11499 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000011500 case X86ISD::OR:
11501 case X86ISD::XOR:
11502 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011503 // These nodes' second result is a boolean.
11504 if (Op.getResNo() == 0)
11505 break;
11506 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011507 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011508 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
11509 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000011510 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011511 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011512}
Chris Lattner259e97c2006-01-31 19:43:35 +000011513
Owen Andersonbc146b02010-09-21 20:42:50 +000011514unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
11515 unsigned Depth) const {
11516 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
11517 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
11518 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000011519
Owen Andersonbc146b02010-09-21 20:42:50 +000011520 // Fallback case.
11521 return 1;
11522}
11523
Evan Cheng206ee9d2006-07-07 08:33:52 +000011524/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000011525/// node is a GlobalAddress + offset.
11526bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000011527 const GlobalValue* &GA,
11528 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000011529 if (N->getOpcode() == X86ISD::Wrapper) {
11530 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011531 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000011532 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011533 return true;
11534 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000011535 }
Evan Chengad4196b2008-05-12 19:56:52 +000011536 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011537}
11538
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011539/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
11540static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
11541 TargetLowering::DAGCombinerInfo &DCI) {
11542 DebugLoc dl = N->getDebugLoc();
11543 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
11544 SDValue V1 = SVOp->getOperand(0);
11545 SDValue V2 = SVOp->getOperand(1);
11546 EVT VT = SVOp->getValueType(0);
11547
11548 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
11549 V2.getOpcode() == ISD::CONCAT_VECTORS) {
11550 //
11551 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000011552 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011553 // V UNDEF BUILD_VECTOR UNDEF
11554 // \ / \ /
11555 // CONCAT_VECTOR CONCAT_VECTOR
11556 // \ /
11557 // \ /
11558 // RESULT: V + zero extended
11559 //
11560 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
11561 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
11562 V1.getOperand(1).getOpcode() != ISD::UNDEF)
11563 return SDValue();
11564
11565 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
11566 return SDValue();
11567
11568 // To match the shuffle mask, the first half of the mask should
11569 // be exactly the first vector, and all the rest a splat with the
11570 // first element of the second one.
11571 int NumElems = VT.getVectorNumElements();
11572 for (int i = 0; i < NumElems/2; ++i)
11573 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
11574 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
11575 return SDValue();
11576
11577 // Emit a zeroed vector and insert the desired subvector on its
11578 // first half.
11579 SDValue Zeros = getZeroVector(VT, true /* HasSSE2 */, DAG, dl);
11580 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0),
11581 DAG.getConstant(0, MVT::i32), DAG, dl);
11582 return DCI.CombineTo(N, InsV);
11583 }
11584
11585 return SDValue();
11586}
11587
11588/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000011589static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011590 TargetLowering::DAGCombinerInfo &DCI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000011591 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000011592 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000011593
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011594 // Don't create instructions with illegal types after legalize types has run.
11595 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11596 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
11597 return SDValue();
11598
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011599 // Only handle pure VECTOR_SHUFFLE nodes.
11600 if (VT.getSizeInBits() == 256 && N->getOpcode() == ISD::VECTOR_SHUFFLE)
11601 return PerformShuffleCombine256(N, DAG, DCI);
11602
11603 // Only handle 128 wide vector from here on.
11604 if (VT.getSizeInBits() != 128)
11605 return SDValue();
11606
11607 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
11608 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
11609 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000011610 SmallVector<SDValue, 16> Elts;
11611 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011612 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000011613
Nate Begemanfdea31a2010-03-24 20:49:50 +000011614 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000011615}
Evan Chengd880b972008-05-09 21:53:03 +000011616
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000011617/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
11618/// generation and convert it from being a bunch of shuffles and extracts
11619/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011620static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
11621 const TargetLowering &TLI) {
11622 SDValue InputVector = N->getOperand(0);
11623
11624 // Only operate on vectors of 4 elements, where the alternative shuffling
11625 // gets to be more expensive.
11626 if (InputVector.getValueType() != MVT::v4i32)
11627 return SDValue();
11628
11629 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
11630 // single use which is a sign-extend or zero-extend, and all elements are
11631 // used.
11632 SmallVector<SDNode *, 4> Uses;
11633 unsigned ExtractedElements = 0;
11634 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
11635 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
11636 if (UI.getUse().getResNo() != InputVector.getResNo())
11637 return SDValue();
11638
11639 SDNode *Extract = *UI;
11640 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
11641 return SDValue();
11642
11643 if (Extract->getValueType(0) != MVT::i32)
11644 return SDValue();
11645 if (!Extract->hasOneUse())
11646 return SDValue();
11647 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
11648 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
11649 return SDValue();
11650 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
11651 return SDValue();
11652
11653 // Record which element was extracted.
11654 ExtractedElements |=
11655 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
11656
11657 Uses.push_back(Extract);
11658 }
11659
11660 // If not all the elements were used, this may not be worthwhile.
11661 if (ExtractedElements != 15)
11662 return SDValue();
11663
11664 // Ok, we've now decided to do the transformation.
11665 DebugLoc dl = InputVector.getDebugLoc();
11666
11667 // Store the value to a temporary stack slot.
11668 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000011669 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
11670 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011671
11672 // Replace each use (extract) with a load of the appropriate element.
11673 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
11674 UE = Uses.end(); UI != UE; ++UI) {
11675 SDNode *Extract = *UI;
11676
Nadav Rotem86694292011-05-17 08:31:57 +000011677 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011678 SDValue Idx = Extract->getOperand(1);
11679 unsigned EltSize =
11680 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
11681 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
11682 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
11683
Nadav Rotem86694292011-05-17 08:31:57 +000011684 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011685 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011686
11687 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000011688 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000011689 ScalarAddr, MachinePointerInfo(),
11690 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011691
11692 // Replace the exact with the load.
11693 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
11694 }
11695
11696 // The replacement was made in place; don't return anything.
11697 return SDValue();
11698}
11699
Chris Lattner83e6c992006-10-04 06:57:07 +000011700/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011701static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000011702 const X86Subtarget *Subtarget) {
11703 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000011704 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000011705 // Get the LHS/RHS of the select.
11706 SDValue LHS = N->getOperand(1);
11707 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000011708
Dan Gohman670e5392009-09-21 18:03:22 +000011709 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000011710 // instructions match the semantics of the common C idiom x<y?x:y but not
11711 // x<=y?x:y, because of how they handle negative zero (which can be
11712 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000011713 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000011714 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000011715 Cond.getOpcode() == ISD::SETCC) {
11716 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011717
Chris Lattner47b4ce82009-03-11 05:48:52 +000011718 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000011719 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000011720 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
11721 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000011722 switch (CC) {
11723 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000011724 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011725 // Converting this to a min would handle NaNs incorrectly, and swapping
11726 // the operands would cause it to handle comparisons between positive
11727 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011728 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000011729 if (!UnsafeFPMath &&
11730 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11731 break;
11732 std::swap(LHS, RHS);
11733 }
Dan Gohman670e5392009-09-21 18:03:22 +000011734 Opcode = X86ISD::FMIN;
11735 break;
11736 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000011737 // Converting this to a min would handle comparisons between positive
11738 // and negative zero incorrectly.
11739 if (!UnsafeFPMath &&
11740 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
11741 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011742 Opcode = X86ISD::FMIN;
11743 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000011744 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000011745 // Converting this to a min would handle both negative zeros and NaNs
11746 // incorrectly, but we can swap the operands to fix both.
11747 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011748 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011749 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000011750 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011751 Opcode = X86ISD::FMIN;
11752 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011753
Dan Gohman670e5392009-09-21 18:03:22 +000011754 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011755 // Converting this to a max would handle comparisons between positive
11756 // and negative zero incorrectly.
11757 if (!UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000011758 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011759 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011760 Opcode = X86ISD::FMAX;
11761 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000011762 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000011763 // Converting this to a max would handle NaNs incorrectly, and swapping
11764 // the operands would cause it to handle comparisons between positive
11765 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011766 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000011767 if (!UnsafeFPMath &&
11768 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11769 break;
11770 std::swap(LHS, RHS);
11771 }
Dan Gohman670e5392009-09-21 18:03:22 +000011772 Opcode = X86ISD::FMAX;
11773 break;
11774 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011775 // Converting this to a max would handle both negative zeros and NaNs
11776 // incorrectly, but we can swap the operands to fix both.
11777 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011778 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011779 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011780 case ISD::SETGE:
11781 Opcode = X86ISD::FMAX;
11782 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000011783 }
Dan Gohman670e5392009-09-21 18:03:22 +000011784 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000011785 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
11786 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000011787 switch (CC) {
11788 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000011789 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011790 // Converting this to a min would handle comparisons between positive
11791 // and negative zero incorrectly, and swapping the operands would
11792 // cause it to handle NaNs incorrectly.
11793 if (!UnsafeFPMath &&
11794 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000011795 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011796 break;
11797 std::swap(LHS, RHS);
11798 }
Dan Gohman670e5392009-09-21 18:03:22 +000011799 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000011800 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011801 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000011802 // Converting this to a min would handle NaNs incorrectly.
11803 if (!UnsafeFPMath &&
11804 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
11805 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011806 Opcode = X86ISD::FMIN;
11807 break;
11808 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011809 // Converting this to a min would handle both negative zeros and NaNs
11810 // incorrectly, but we can swap the operands to fix both.
11811 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011812 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011813 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011814 case ISD::SETGE:
11815 Opcode = X86ISD::FMIN;
11816 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011817
Dan Gohman670e5392009-09-21 18:03:22 +000011818 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011819 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011820 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011821 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011822 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000011823 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011824 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000011825 // Converting this to a max would handle comparisons between positive
11826 // and negative zero incorrectly, and swapping the operands would
11827 // cause it to handle NaNs incorrectly.
11828 if (!UnsafeFPMath &&
11829 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000011830 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011831 break;
11832 std::swap(LHS, RHS);
11833 }
Dan Gohman670e5392009-09-21 18:03:22 +000011834 Opcode = X86ISD::FMAX;
11835 break;
11836 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000011837 // Converting this to a max would handle both negative zeros and NaNs
11838 // incorrectly, but we can swap the operands to fix both.
11839 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011840 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011841 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000011842 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011843 Opcode = X86ISD::FMAX;
11844 break;
11845 }
Chris Lattner83e6c992006-10-04 06:57:07 +000011846 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011847
Chris Lattner47b4ce82009-03-11 05:48:52 +000011848 if (Opcode)
11849 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000011850 }
Eric Christopherfd179292009-08-27 18:07:15 +000011851
Chris Lattnerd1980a52009-03-12 06:52:53 +000011852 // If this is a select between two integer constants, try to do some
11853 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000011854 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
11855 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000011856 // Don't do this for crazy integer types.
11857 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
11858 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000011859 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011860 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000011861
Chris Lattnercee56e72009-03-13 05:53:31 +000011862 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000011863 // Efficiently invertible.
11864 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
11865 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
11866 isa<ConstantSDNode>(Cond.getOperand(1))))) {
11867 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000011868 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011869 }
Eric Christopherfd179292009-08-27 18:07:15 +000011870
Chris Lattnerd1980a52009-03-12 06:52:53 +000011871 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011872 if (FalseC->getAPIntValue() == 0 &&
11873 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000011874 if (NeedsCondInvert) // Invert the condition if needed.
11875 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11876 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011877
Chris Lattnerd1980a52009-03-12 06:52:53 +000011878 // Zero extend the condition if needed.
11879 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011880
Chris Lattnercee56e72009-03-13 05:53:31 +000011881 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000011882 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011883 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011884 }
Eric Christopherfd179292009-08-27 18:07:15 +000011885
Chris Lattner97a29a52009-03-13 05:22:11 +000011886 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000011887 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000011888 if (NeedsCondInvert) // Invert the condition if needed.
11889 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11890 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011891
Chris Lattner97a29a52009-03-13 05:22:11 +000011892 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000011893 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11894 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000011895 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000011896 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000011897 }
Eric Christopherfd179292009-08-27 18:07:15 +000011898
Chris Lattnercee56e72009-03-13 05:53:31 +000011899 // Optimize cases that will turn into an LEA instruction. This requires
11900 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000011901 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000011902 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011903 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000011904
Chris Lattnercee56e72009-03-13 05:53:31 +000011905 bool isFastMultiplier = false;
11906 if (Diff < 10) {
11907 switch ((unsigned char)Diff) {
11908 default: break;
11909 case 1: // result = add base, cond
11910 case 2: // result = lea base( , cond*2)
11911 case 3: // result = lea base(cond, cond*2)
11912 case 4: // result = lea base( , cond*4)
11913 case 5: // result = lea base(cond, cond*4)
11914 case 8: // result = lea base( , cond*8)
11915 case 9: // result = lea base(cond, cond*8)
11916 isFastMultiplier = true;
11917 break;
11918 }
11919 }
Eric Christopherfd179292009-08-27 18:07:15 +000011920
Chris Lattnercee56e72009-03-13 05:53:31 +000011921 if (isFastMultiplier) {
11922 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
11923 if (NeedsCondInvert) // Invert the condition if needed.
11924 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11925 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011926
Chris Lattnercee56e72009-03-13 05:53:31 +000011927 // Zero extend the condition if needed.
11928 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
11929 Cond);
11930 // Scale the condition by the difference.
11931 if (Diff != 1)
11932 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
11933 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011934
Chris Lattnercee56e72009-03-13 05:53:31 +000011935 // Add the base if non-zero.
11936 if (FalseC->getAPIntValue() != 0)
11937 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11938 SDValue(FalseC, 0));
11939 return Cond;
11940 }
Eric Christopherfd179292009-08-27 18:07:15 +000011941 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000011942 }
11943 }
Eric Christopherfd179292009-08-27 18:07:15 +000011944
Dan Gohman475871a2008-07-27 21:46:04 +000011945 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000011946}
11947
Chris Lattnerd1980a52009-03-12 06:52:53 +000011948/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
11949static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
11950 TargetLowering::DAGCombinerInfo &DCI) {
11951 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000011952
Chris Lattnerd1980a52009-03-12 06:52:53 +000011953 // If the flag operand isn't dead, don't touch this CMOV.
11954 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
11955 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000011956
Evan Chengb5a55d92011-05-24 01:48:22 +000011957 SDValue FalseOp = N->getOperand(0);
11958 SDValue TrueOp = N->getOperand(1);
11959 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
11960 SDValue Cond = N->getOperand(3);
11961 if (CC == X86::COND_E || CC == X86::COND_NE) {
11962 switch (Cond.getOpcode()) {
11963 default: break;
11964 case X86ISD::BSR:
11965 case X86ISD::BSF:
11966 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
11967 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
11968 return (CC == X86::COND_E) ? FalseOp : TrueOp;
11969 }
11970 }
11971
Chris Lattnerd1980a52009-03-12 06:52:53 +000011972 // If this is a select between two integer constants, try to do some
11973 // optimizations. Note that the operands are ordered the opposite of SELECT
11974 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000011975 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
11976 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000011977 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
11978 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000011979 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
11980 CC = X86::GetOppositeBranchCondition(CC);
11981 std::swap(TrueC, FalseC);
11982 }
Eric Christopherfd179292009-08-27 18:07:15 +000011983
Chris Lattnerd1980a52009-03-12 06:52:53 +000011984 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011985 // This is efficient for any integer data type (including i8/i16) and
11986 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011987 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011988 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11989 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011990
Chris Lattnerd1980a52009-03-12 06:52:53 +000011991 // Zero extend the condition if needed.
11992 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011993
Chris Lattnerd1980a52009-03-12 06:52:53 +000011994 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
11995 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011996 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011997 if (N->getNumValues() == 2) // Dead flag value?
11998 return DCI.CombineTo(N, Cond, SDValue());
11999 return Cond;
12000 }
Eric Christopherfd179292009-08-27 18:07:15 +000012001
Chris Lattnercee56e72009-03-13 05:53:31 +000012002 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
12003 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000012004 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012005 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12006 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012007
Chris Lattner97a29a52009-03-13 05:22:11 +000012008 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000012009 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
12010 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000012011 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12012 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000012013
Chris Lattner97a29a52009-03-13 05:22:11 +000012014 if (N->getNumValues() == 2) // Dead flag value?
12015 return DCI.CombineTo(N, Cond, SDValue());
12016 return Cond;
12017 }
Eric Christopherfd179292009-08-27 18:07:15 +000012018
Chris Lattnercee56e72009-03-13 05:53:31 +000012019 // Optimize cases that will turn into an LEA instruction. This requires
12020 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000012021 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000012022 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012023 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000012024
Chris Lattnercee56e72009-03-13 05:53:31 +000012025 bool isFastMultiplier = false;
12026 if (Diff < 10) {
12027 switch ((unsigned char)Diff) {
12028 default: break;
12029 case 1: // result = add base, cond
12030 case 2: // result = lea base( , cond*2)
12031 case 3: // result = lea base(cond, cond*2)
12032 case 4: // result = lea base( , cond*4)
12033 case 5: // result = lea base(cond, cond*4)
12034 case 8: // result = lea base( , cond*8)
12035 case 9: // result = lea base(cond, cond*8)
12036 isFastMultiplier = true;
12037 break;
12038 }
12039 }
Eric Christopherfd179292009-08-27 18:07:15 +000012040
Chris Lattnercee56e72009-03-13 05:53:31 +000012041 if (isFastMultiplier) {
12042 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012043 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12044 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000012045 // Zero extend the condition if needed.
12046 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
12047 Cond);
12048 // Scale the condition by the difference.
12049 if (Diff != 1)
12050 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
12051 DAG.getConstant(Diff, Cond.getValueType()));
12052
12053 // Add the base if non-zero.
12054 if (FalseC->getAPIntValue() != 0)
12055 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12056 SDValue(FalseC, 0));
12057 if (N->getNumValues() == 2) // Dead flag value?
12058 return DCI.CombineTo(N, Cond, SDValue());
12059 return Cond;
12060 }
Eric Christopherfd179292009-08-27 18:07:15 +000012061 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000012062 }
12063 }
12064 return SDValue();
12065}
12066
12067
Evan Cheng0b0cd912009-03-28 05:57:29 +000012068/// PerformMulCombine - Optimize a single multiply with constant into two
12069/// in order to implement it with two cheaper instructions, e.g.
12070/// LEA + SHL, LEA + LEA.
12071static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
12072 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000012073 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
12074 return SDValue();
12075
Owen Andersone50ed302009-08-10 22:56:29 +000012076 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012077 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000012078 return SDValue();
12079
12080 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
12081 if (!C)
12082 return SDValue();
12083 uint64_t MulAmt = C->getZExtValue();
12084 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
12085 return SDValue();
12086
12087 uint64_t MulAmt1 = 0;
12088 uint64_t MulAmt2 = 0;
12089 if ((MulAmt % 9) == 0) {
12090 MulAmt1 = 9;
12091 MulAmt2 = MulAmt / 9;
12092 } else if ((MulAmt % 5) == 0) {
12093 MulAmt1 = 5;
12094 MulAmt2 = MulAmt / 5;
12095 } else if ((MulAmt % 3) == 0) {
12096 MulAmt1 = 3;
12097 MulAmt2 = MulAmt / 3;
12098 }
12099 if (MulAmt2 &&
12100 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
12101 DebugLoc DL = N->getDebugLoc();
12102
12103 if (isPowerOf2_64(MulAmt2) &&
12104 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
12105 // If second multiplifer is pow2, issue it first. We want the multiply by
12106 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
12107 // is an add.
12108 std::swap(MulAmt1, MulAmt2);
12109
12110 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000012111 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012112 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000012113 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000012114 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012115 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000012116 DAG.getConstant(MulAmt1, VT));
12117
Eric Christopherfd179292009-08-27 18:07:15 +000012118 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012119 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000012120 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000012121 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012122 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000012123 DAG.getConstant(MulAmt2, VT));
12124
12125 // Do not add new nodes to DAG combiner worklist.
12126 DCI.CombineTo(N, NewMul, false);
12127 }
12128 return SDValue();
12129}
12130
Evan Chengad9c0a32009-12-15 00:53:42 +000012131static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
12132 SDValue N0 = N->getOperand(0);
12133 SDValue N1 = N->getOperand(1);
12134 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
12135 EVT VT = N0.getValueType();
12136
12137 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
12138 // since the result of setcc_c is all zero's or all ones.
12139 if (N1C && N0.getOpcode() == ISD::AND &&
12140 N0.getOperand(1).getOpcode() == ISD::Constant) {
12141 SDValue N00 = N0.getOperand(0);
12142 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
12143 ((N00.getOpcode() == ISD::ANY_EXTEND ||
12144 N00.getOpcode() == ISD::ZERO_EXTEND) &&
12145 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
12146 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
12147 APInt ShAmt = N1C->getAPIntValue();
12148 Mask = Mask.shl(ShAmt);
12149 if (Mask != 0)
12150 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
12151 N00, DAG.getConstant(Mask, VT));
12152 }
12153 }
12154
12155 return SDValue();
12156}
Evan Cheng0b0cd912009-03-28 05:57:29 +000012157
Nate Begeman740ab032009-01-26 00:52:55 +000012158/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
12159/// when possible.
12160static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
12161 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000012162 EVT VT = N->getValueType(0);
12163 if (!VT.isVector() && VT.isInteger() &&
12164 N->getOpcode() == ISD::SHL)
12165 return PerformSHLCombine(N, DAG);
12166
Nate Begeman740ab032009-01-26 00:52:55 +000012167 // On X86 with SSE2 support, we can transform this to a vector shift if
12168 // all elements are shifted by the same amount. We can't do this in legalize
12169 // because the a constant vector is typically transformed to a constant pool
12170 // so we have no knowledge of the shift amount.
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +000012171 if (!(Subtarget->hasSSE2() || Subtarget->hasAVX()))
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012172 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000012173
Owen Anderson825b72b2009-08-11 20:47:22 +000012174 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012175 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000012176
Mon P Wang3becd092009-01-28 08:12:05 +000012177 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000012178 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000012179 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000012180 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000012181 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
12182 unsigned NumElts = VT.getVectorNumElements();
12183 unsigned i = 0;
12184 for (; i != NumElts; ++i) {
12185 SDValue Arg = ShAmtOp.getOperand(i);
12186 if (Arg.getOpcode() == ISD::UNDEF) continue;
12187 BaseShAmt = Arg;
12188 break;
12189 }
12190 for (; i != NumElts; ++i) {
12191 SDValue Arg = ShAmtOp.getOperand(i);
12192 if (Arg.getOpcode() == ISD::UNDEF) continue;
12193 if (Arg != BaseShAmt) {
12194 return SDValue();
12195 }
12196 }
12197 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000012198 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000012199 SDValue InVec = ShAmtOp.getOperand(0);
12200 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12201 unsigned NumElts = InVec.getValueType().getVectorNumElements();
12202 unsigned i = 0;
12203 for (; i != NumElts; ++i) {
12204 SDValue Arg = InVec.getOperand(i);
12205 if (Arg.getOpcode() == ISD::UNDEF) continue;
12206 BaseShAmt = Arg;
12207 break;
12208 }
12209 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12210 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000012211 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000012212 if (C->getZExtValue() == SplatIdx)
12213 BaseShAmt = InVec.getOperand(1);
12214 }
12215 }
12216 if (BaseShAmt.getNode() == 0)
12217 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
12218 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000012219 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012220 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000012221
Mon P Wangefa42202009-09-03 19:56:25 +000012222 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000012223 if (EltVT.bitsGT(MVT::i32))
12224 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
12225 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000012226 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000012227
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012228 // The shift amount is identical so we can do a vector shift.
12229 SDValue ValOp = N->getOperand(0);
12230 switch (N->getOpcode()) {
12231 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000012232 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012233 break;
12234 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000012235 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012236 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012237 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012238 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012239 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012240 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012241 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012242 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012243 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012244 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012245 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012246 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012247 break;
12248 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000012249 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012250 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012251 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012252 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012253 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012254 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012255 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012256 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012257 break;
12258 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000012259 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012260 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012261 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012262 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012263 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012264 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012265 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012266 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012267 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012268 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012269 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012270 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012271 break;
Nate Begeman740ab032009-01-26 00:52:55 +000012272 }
12273 return SDValue();
12274}
12275
Nate Begemanb65c1752010-12-17 22:55:37 +000012276
Stuart Hastings865f0932011-06-03 23:53:54 +000012277// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
12278// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
12279// and friends. Likewise for OR -> CMPNEQSS.
12280static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
12281 TargetLowering::DAGCombinerInfo &DCI,
12282 const X86Subtarget *Subtarget) {
12283 unsigned opcode;
12284
12285 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
12286 // we're requiring SSE2 for both.
12287 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
12288 SDValue N0 = N->getOperand(0);
12289 SDValue N1 = N->getOperand(1);
12290 SDValue CMP0 = N0->getOperand(1);
12291 SDValue CMP1 = N1->getOperand(1);
12292 DebugLoc DL = N->getDebugLoc();
12293
12294 // The SETCCs should both refer to the same CMP.
12295 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
12296 return SDValue();
12297
12298 SDValue CMP00 = CMP0->getOperand(0);
12299 SDValue CMP01 = CMP0->getOperand(1);
12300 EVT VT = CMP00.getValueType();
12301
12302 if (VT == MVT::f32 || VT == MVT::f64) {
12303 bool ExpectingFlags = false;
12304 // Check for any users that want flags:
12305 for (SDNode::use_iterator UI = N->use_begin(),
12306 UE = N->use_end();
12307 !ExpectingFlags && UI != UE; ++UI)
12308 switch (UI->getOpcode()) {
12309 default:
12310 case ISD::BR_CC:
12311 case ISD::BRCOND:
12312 case ISD::SELECT:
12313 ExpectingFlags = true;
12314 break;
12315 case ISD::CopyToReg:
12316 case ISD::SIGN_EXTEND:
12317 case ISD::ZERO_EXTEND:
12318 case ISD::ANY_EXTEND:
12319 break;
12320 }
12321
12322 if (!ExpectingFlags) {
12323 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
12324 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
12325
12326 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
12327 X86::CondCode tmp = cc0;
12328 cc0 = cc1;
12329 cc1 = tmp;
12330 }
12331
12332 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
12333 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
12334 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
12335 X86ISD::NodeType NTOperator = is64BitFP ?
12336 X86ISD::FSETCCsd : X86ISD::FSETCCss;
12337 // FIXME: need symbolic constants for these magic numbers.
12338 // See X86ATTInstPrinter.cpp:printSSECC().
12339 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
12340 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
12341 DAG.getConstant(x86cc, MVT::i8));
12342 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
12343 OnesOrZeroesF);
12344 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
12345 DAG.getConstant(1, MVT::i32));
12346 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
12347 return OneBitOfTruth;
12348 }
12349 }
12350 }
12351 }
12352 return SDValue();
12353}
12354
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012355/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
12356/// so it can be folded inside ANDNP.
12357static bool CanFoldXORWithAllOnes(const SDNode *N) {
12358 EVT VT = N->getValueType(0);
12359
12360 // Match direct AllOnes for 128 and 256-bit vectors
12361 if (ISD::isBuildVectorAllOnes(N))
12362 return true;
12363
12364 // Look through a bit convert.
12365 if (N->getOpcode() == ISD::BITCAST)
12366 N = N->getOperand(0).getNode();
12367
12368 // Sometimes the operand may come from a insert_subvector building a 256-bit
12369 // allones vector
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012370 if (VT.getSizeInBits() == 256 &&
Bill Wendling456a9252011-08-04 00:32:58 +000012371 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
12372 SDValue V1 = N->getOperand(0);
12373 SDValue V2 = N->getOperand(1);
12374
12375 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
12376 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
12377 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
12378 ISD::isBuildVectorAllOnes(V2.getNode()))
12379 return true;
12380 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012381
12382 return false;
12383}
12384
Nate Begemanb65c1752010-12-17 22:55:37 +000012385static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
12386 TargetLowering::DAGCombinerInfo &DCI,
12387 const X86Subtarget *Subtarget) {
12388 if (DCI.isBeforeLegalizeOps())
12389 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012390
Stuart Hastings865f0932011-06-03 23:53:54 +000012391 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12392 if (R.getNode())
12393 return R;
12394
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000012395 // Want to form ANDNP nodes:
12396 // 1) In the hopes of then easily combining them with OR and AND nodes
12397 // to form PBLEND/PSIGN.
12398 // 2) To match ANDN packed intrinsics
Nate Begemanb65c1752010-12-17 22:55:37 +000012399 EVT VT = N->getValueType(0);
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000012400 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000012401 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012402
Nate Begemanb65c1752010-12-17 22:55:37 +000012403 SDValue N0 = N->getOperand(0);
12404 SDValue N1 = N->getOperand(1);
12405 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012406
Nate Begemanb65c1752010-12-17 22:55:37 +000012407 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012408 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012409 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
12410 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012411 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000012412
12413 // Check RHS for vnot
12414 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012415 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
12416 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012417 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012418
Nate Begemanb65c1752010-12-17 22:55:37 +000012419 return SDValue();
12420}
12421
Evan Cheng760d1942010-01-04 21:22:48 +000012422static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000012423 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000012424 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000012425 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000012426 return SDValue();
12427
Stuart Hastings865f0932011-06-03 23:53:54 +000012428 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12429 if (R.getNode())
12430 return R;
12431
Evan Cheng760d1942010-01-04 21:22:48 +000012432 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000012433 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64 && VT != MVT::v2i64)
Evan Cheng760d1942010-01-04 21:22:48 +000012434 return SDValue();
12435
Evan Cheng760d1942010-01-04 21:22:48 +000012436 SDValue N0 = N->getOperand(0);
12437 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012438
Nate Begemanb65c1752010-12-17 22:55:37 +000012439 // look for psign/blend
12440 if (Subtarget->hasSSSE3()) {
12441 if (VT == MVT::v2i64) {
12442 // Canonicalize pandn to RHS
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012443 if (N0.getOpcode() == X86ISD::ANDNP)
Nate Begemanb65c1752010-12-17 22:55:37 +000012444 std::swap(N0, N1);
12445 // or (and (m, x), (pandn m, y))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012446 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
Nate Begemanb65c1752010-12-17 22:55:37 +000012447 SDValue Mask = N1.getOperand(0);
12448 SDValue X = N1.getOperand(1);
12449 SDValue Y;
12450 if (N0.getOperand(0) == Mask)
12451 Y = N0.getOperand(1);
12452 if (N0.getOperand(1) == Mask)
12453 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012454
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012455 // Check to see if the mask appeared in both the AND and ANDNP and
Nate Begemanb65c1752010-12-17 22:55:37 +000012456 if (!Y.getNode())
12457 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012458
Nate Begemanb65c1752010-12-17 22:55:37 +000012459 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
12460 if (Mask.getOpcode() != ISD::BITCAST ||
12461 X.getOpcode() != ISD::BITCAST ||
12462 Y.getOpcode() != ISD::BITCAST)
12463 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012464
Nate Begemanb65c1752010-12-17 22:55:37 +000012465 // Look through mask bitcast.
12466 Mask = Mask.getOperand(0);
12467 EVT MaskVT = Mask.getValueType();
12468
12469 // Validate that the Mask operand is a vector sra node. The sra node
12470 // will be an intrinsic.
12471 if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
12472 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012473
Nate Begemanb65c1752010-12-17 22:55:37 +000012474 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
12475 // there is no psrai.b
12476 switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
12477 case Intrinsic::x86_sse2_psrai_w:
12478 case Intrinsic::x86_sse2_psrai_d:
12479 break;
12480 default: return SDValue();
12481 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012482
Nate Begemanb65c1752010-12-17 22:55:37 +000012483 // Check that the SRA is all signbits.
12484 SDValue SraC = Mask.getOperand(2);
12485 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
12486 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
12487 if ((SraAmt + 1) != EltBits)
12488 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012489
Nate Begemanb65c1752010-12-17 22:55:37 +000012490 DebugLoc DL = N->getDebugLoc();
12491
12492 // Now we know we at least have a plendvb with the mask val. See if
12493 // we can form a psignb/w/d.
12494 // psign = x.type == y.type == mask.type && y = sub(0, x);
12495 X = X.getOperand(0);
12496 Y = Y.getOperand(0);
12497 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
12498 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
12499 X.getValueType() == MaskVT && X.getValueType() == Y.getValueType()){
12500 unsigned Opc = 0;
12501 switch (EltBits) {
12502 case 8: Opc = X86ISD::PSIGNB; break;
12503 case 16: Opc = X86ISD::PSIGNW; break;
12504 case 32: Opc = X86ISD::PSIGND; break;
12505 default: break;
12506 }
12507 if (Opc) {
12508 SDValue Sign = DAG.getNode(Opc, DL, MaskVT, X, Mask.getOperand(1));
12509 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Sign);
12510 }
12511 }
12512 // PBLENDVB only available on SSE 4.1
12513 if (!Subtarget->hasSSE41())
12514 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012515
Nate Begemanb65c1752010-12-17 22:55:37 +000012516 X = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, X);
12517 Y = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Y);
12518 Mask = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Mask);
Nate Begeman672fb622010-12-20 22:04:24 +000012519 Mask = DAG.getNode(X86ISD::PBLENDVB, DL, MVT::v16i8, X, Y, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000012520 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Mask);
12521 }
12522 }
12523 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012524
Nate Begemanb65c1752010-12-17 22:55:37 +000012525 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000012526 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
12527 std::swap(N0, N1);
12528 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
12529 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000012530 if (!N0.hasOneUse() || !N1.hasOneUse())
12531 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000012532
12533 SDValue ShAmt0 = N0.getOperand(1);
12534 if (ShAmt0.getValueType() != MVT::i8)
12535 return SDValue();
12536 SDValue ShAmt1 = N1.getOperand(1);
12537 if (ShAmt1.getValueType() != MVT::i8)
12538 return SDValue();
12539 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
12540 ShAmt0 = ShAmt0.getOperand(0);
12541 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
12542 ShAmt1 = ShAmt1.getOperand(0);
12543
12544 DebugLoc DL = N->getDebugLoc();
12545 unsigned Opc = X86ISD::SHLD;
12546 SDValue Op0 = N0.getOperand(0);
12547 SDValue Op1 = N1.getOperand(0);
12548 if (ShAmt0.getOpcode() == ISD::SUB) {
12549 Opc = X86ISD::SHRD;
12550 std::swap(Op0, Op1);
12551 std::swap(ShAmt0, ShAmt1);
12552 }
12553
Evan Cheng8b1190a2010-04-28 01:18:01 +000012554 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000012555 if (ShAmt1.getOpcode() == ISD::SUB) {
12556 SDValue Sum = ShAmt1.getOperand(0);
12557 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000012558 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
12559 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
12560 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
12561 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000012562 return DAG.getNode(Opc, DL, VT,
12563 Op0, Op1,
12564 DAG.getNode(ISD::TRUNCATE, DL,
12565 MVT::i8, ShAmt0));
12566 }
12567 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
12568 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
12569 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000012570 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000012571 return DAG.getNode(Opc, DL, VT,
12572 N0.getOperand(0), N1.getOperand(0),
12573 DAG.getNode(ISD::TRUNCATE, DL,
12574 MVT::i8, ShAmt0));
12575 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012576
Evan Cheng760d1942010-01-04 21:22:48 +000012577 return SDValue();
12578}
12579
Chris Lattner149a4e52008-02-22 02:09:43 +000012580/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012581static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000012582 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +000012583 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
12584 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000012585 // A preferable solution to the general problem is to figure out the right
12586 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000012587
12588 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +000012589 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +000012590 EVT VT = St->getValue().getValueType();
Evan Cheng536e6672009-03-12 05:59:15 +000012591 if (VT.getSizeInBits() != 64)
12592 return SDValue();
12593
Devang Patel578efa92009-06-05 21:57:13 +000012594 const Function *F = DAG.getMachineFunction().getFunction();
12595 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000012596 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000012597 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000012598 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000012599 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000012600 isa<LoadSDNode>(St->getValue()) &&
12601 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
12602 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000012603 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012604 LoadSDNode *Ld = 0;
12605 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000012606 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000012607 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012608 // Must be a store of a load. We currently handle two cases: the load
12609 // is a direct child, and it's under an intervening TokenFactor. It is
12610 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000012611 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000012612 Ld = cast<LoadSDNode>(St->getChain());
12613 else if (St->getValue().hasOneUse() &&
12614 ChainVal->getOpcode() == ISD::TokenFactor) {
12615 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000012616 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000012617 TokenFactorIndex = i;
12618 Ld = cast<LoadSDNode>(St->getValue());
12619 } else
12620 Ops.push_back(ChainVal->getOperand(i));
12621 }
12622 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000012623
Evan Cheng536e6672009-03-12 05:59:15 +000012624 if (!Ld || !ISD::isNormalLoad(Ld))
12625 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012626
Evan Cheng536e6672009-03-12 05:59:15 +000012627 // If this is not the MMX case, i.e. we are just turning i64 load/store
12628 // into f64 load/store, avoid the transformation if there are multiple
12629 // uses of the loaded value.
12630 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
12631 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012632
Evan Cheng536e6672009-03-12 05:59:15 +000012633 DebugLoc LdDL = Ld->getDebugLoc();
12634 DebugLoc StDL = N->getDebugLoc();
12635 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
12636 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
12637 // pair instead.
12638 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012639 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000012640 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
12641 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000012642 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000012643 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000012644 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000012645 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000012646 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000012647 Ops.size());
12648 }
Evan Cheng536e6672009-03-12 05:59:15 +000012649 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000012650 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012651 St->isVolatile(), St->isNonTemporal(),
12652 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000012653 }
Evan Cheng536e6672009-03-12 05:59:15 +000012654
12655 // Otherwise, lower to two pairs of 32-bit loads / stores.
12656 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000012657 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
12658 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000012659
Owen Anderson825b72b2009-08-11 20:47:22 +000012660 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000012661 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012662 Ld->isVolatile(), Ld->isNonTemporal(),
12663 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000012664 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000012665 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000012666 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000012667 MinAlign(Ld->getAlignment(), 4));
12668
12669 SDValue NewChain = LoLd.getValue(1);
12670 if (TokenFactorIndex != -1) {
12671 Ops.push_back(LoLd);
12672 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000012673 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000012674 Ops.size());
12675 }
12676
12677 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000012678 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
12679 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000012680
12681 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012682 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012683 St->isVolatile(), St->isNonTemporal(),
12684 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000012685 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012686 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000012687 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000012688 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000012689 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000012690 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000012691 }
Dan Gohman475871a2008-07-27 21:46:04 +000012692 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000012693}
12694
Chris Lattner6cf73262008-01-25 06:14:17 +000012695/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
12696/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012697static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000012698 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
12699 // F[X]OR(0.0, x) -> x
12700 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000012701 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
12702 if (C->getValueAPF().isPosZero())
12703 return N->getOperand(1);
12704 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
12705 if (C->getValueAPF().isPosZero())
12706 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000012707 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000012708}
12709
12710/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012711static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000012712 // FAND(0.0, x) -> 0.0
12713 // FAND(x, 0.0) -> 0.0
12714 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
12715 if (C->getValueAPF().isPosZero())
12716 return N->getOperand(0);
12717 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
12718 if (C->getValueAPF().isPosZero())
12719 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000012720 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000012721}
12722
Dan Gohmane5af2d32009-01-29 01:59:02 +000012723static SDValue PerformBTCombine(SDNode *N,
12724 SelectionDAG &DAG,
12725 TargetLowering::DAGCombinerInfo &DCI) {
12726 // BT ignores high bits in the bit index operand.
12727 SDValue Op1 = N->getOperand(1);
12728 if (Op1.hasOneUse()) {
12729 unsigned BitWidth = Op1.getValueSizeInBits();
12730 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
12731 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012732 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
12733 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000012734 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000012735 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
12736 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
12737 DCI.CommitTargetLoweringOpt(TLO);
12738 }
12739 return SDValue();
12740}
Chris Lattner83e6c992006-10-04 06:57:07 +000012741
Eli Friedman7a5e5552009-06-07 06:52:44 +000012742static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
12743 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012744 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000012745 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000012746 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000012747 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000012748 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000012749 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012750 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000012751 }
12752 return SDValue();
12753}
12754
Evan Cheng2e489c42009-12-16 00:53:11 +000012755static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
12756 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
12757 // (and (i32 x86isd::setcc_carry), 1)
12758 // This eliminates the zext. This transformation is necessary because
12759 // ISD::SETCC is always legalized to i8.
12760 DebugLoc dl = N->getDebugLoc();
12761 SDValue N0 = N->getOperand(0);
12762 EVT VT = N->getValueType(0);
12763 if (N0.getOpcode() == ISD::AND &&
12764 N0.hasOneUse() &&
12765 N0.getOperand(0).hasOneUse()) {
12766 SDValue N00 = N0.getOperand(0);
12767 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
12768 return SDValue();
12769 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
12770 if (!C || C->getZExtValue() != 1)
12771 return SDValue();
12772 return DAG.getNode(ISD::AND, dl, VT,
12773 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
12774 N00.getOperand(0), N00.getOperand(1)),
12775 DAG.getConstant(1, VT));
12776 }
12777
12778 return SDValue();
12779}
12780
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012781// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
12782static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
12783 unsigned X86CC = N->getConstantOperandVal(0);
12784 SDValue EFLAG = N->getOperand(1);
12785 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012786
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012787 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
12788 // a zext and produces an all-ones bit which is more useful than 0/1 in some
12789 // cases.
12790 if (X86CC == X86::COND_B)
12791 return DAG.getNode(ISD::AND, DL, MVT::i8,
12792 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
12793 DAG.getConstant(X86CC, MVT::i8), EFLAG),
12794 DAG.getConstant(1, MVT::i8));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012795
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012796 return SDValue();
12797}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012798
Benjamin Kramer1396c402011-06-18 11:09:41 +000012799static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
12800 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000012801 SDValue Op0 = N->getOperand(0);
12802 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
12803 // a 32-bit target where SSE doesn't support i64->FP operations.
12804 if (Op0.getOpcode() == ISD::LOAD) {
12805 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
12806 EVT VT = Ld->getValueType(0);
12807 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
12808 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
12809 !XTLI->getSubtarget()->is64Bit() &&
12810 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000012811 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
12812 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000012813 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
12814 return FILDChain;
12815 }
12816 }
12817 return SDValue();
12818}
12819
Chris Lattner23a01992010-12-20 01:37:09 +000012820// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
12821static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
12822 X86TargetLowering::DAGCombinerInfo &DCI) {
12823 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
12824 // the result is either zero or one (depending on the input carry bit).
12825 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
12826 if (X86::isZeroNode(N->getOperand(0)) &&
12827 X86::isZeroNode(N->getOperand(1)) &&
12828 // We don't have a good way to replace an EFLAGS use, so only do this when
12829 // dead right now.
12830 SDValue(N, 1).use_empty()) {
12831 DebugLoc DL = N->getDebugLoc();
12832 EVT VT = N->getValueType(0);
12833 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
12834 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
12835 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
12836 DAG.getConstant(X86::COND_B,MVT::i8),
12837 N->getOperand(2)),
12838 DAG.getConstant(1, VT));
12839 return DCI.CombineTo(N, Res1, CarryOut);
12840 }
12841
12842 return SDValue();
12843}
12844
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012845// fold (add Y, (sete X, 0)) -> adc 0, Y
12846// (add Y, (setne X, 0)) -> sbb -1, Y
12847// (sub (sete X, 0), Y) -> sbb 0, Y
12848// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000012849static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012850 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012851
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012852 // Look through ZExts.
12853 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
12854 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
12855 return SDValue();
12856
12857 SDValue SetCC = Ext.getOperand(0);
12858 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
12859 return SDValue();
12860
12861 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
12862 if (CC != X86::COND_E && CC != X86::COND_NE)
12863 return SDValue();
12864
12865 SDValue Cmp = SetCC.getOperand(1);
12866 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000012867 !X86::isZeroNode(Cmp.getOperand(1)) ||
12868 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012869 return SDValue();
12870
12871 SDValue CmpOp0 = Cmp.getOperand(0);
12872 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
12873 DAG.getConstant(1, CmpOp0.getValueType()));
12874
12875 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
12876 if (CC == X86::COND_NE)
12877 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
12878 DL, OtherVal.getValueType(), OtherVal,
12879 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
12880 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
12881 DL, OtherVal.getValueType(), OtherVal,
12882 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
12883}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012884
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000012885static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG) {
12886 SDValue Op0 = N->getOperand(0);
12887 SDValue Op1 = N->getOperand(1);
12888
12889 // X86 can't encode an immediate LHS of a sub. See if we can push the
12890 // negation into a preceding instruction.
12891 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
12892 uint64_t Op0C = C->getSExtValue();
12893
12894 // If the RHS of the sub is a XOR with one use and a constant, invert the
12895 // immediate. Then add one to the LHS of the sub so we can turn
12896 // X-Y -> X+~Y+1, saving one register.
12897 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
12898 isa<ConstantSDNode>(Op1.getOperand(1))) {
12899 uint64_t XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getSExtValue();
12900 EVT VT = Op0.getValueType();
12901 SDValue NewXor = DAG.getNode(ISD::XOR, Op1.getDebugLoc(), VT,
12902 Op1.getOperand(0),
12903 DAG.getConstant(~XorC, VT));
12904 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, NewXor,
12905 DAG.getConstant(Op0C+1, VT));
12906 }
12907 }
12908
12909 return OptimizeConditionalInDecrement(N, DAG);
12910}
12911
Dan Gohman475871a2008-07-27 21:46:04 +000012912SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000012913 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000012914 SelectionDAG &DAG = DCI.DAG;
12915 switch (N->getOpcode()) {
12916 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012917 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012918 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000012919 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000012920 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000012921 case ISD::ADD: return OptimizeConditionalInDecrement(N, DAG);
12922 case ISD::SUB: return PerformSubCombine(N, DAG);
Chris Lattner23a01992010-12-20 01:37:09 +000012923 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000012924 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000012925 case ISD::SHL:
12926 case ISD::SRA:
12927 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000012928 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000012929 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000012930 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000012931 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Chris Lattner6cf73262008-01-25 06:14:17 +000012932 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000012933 case X86ISD::FOR: return PerformFORCombine(N, DAG);
12934 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000012935 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000012936 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000012937 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012938 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012939 case X86ISD::SHUFPS: // Handle all target specific shuffles
12940 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000012941 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012942 case X86ISD::PUNPCKHBW:
12943 case X86ISD::PUNPCKHWD:
12944 case X86ISD::PUNPCKHDQ:
12945 case X86ISD::PUNPCKHQDQ:
12946 case X86ISD::UNPCKHPS:
12947 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +000012948 case X86ISD::VUNPCKHPSY:
12949 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012950 case X86ISD::PUNPCKLBW:
12951 case X86ISD::PUNPCKLWD:
12952 case X86ISD::PUNPCKLDQ:
12953 case X86ISD::PUNPCKLQDQ:
12954 case X86ISD::UNPCKLPS:
12955 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +000012956 case X86ISD::VUNPCKLPSY:
12957 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012958 case X86ISD::MOVHLPS:
12959 case X86ISD::MOVLHPS:
12960 case X86ISD::PSHUFD:
12961 case X86ISD::PSHUFHW:
12962 case X86ISD::PSHUFLW:
12963 case X86ISD::MOVSS:
12964 case X86ISD::MOVSD:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000012965 case X86ISD::VPERMILPS:
12966 case X86ISD::VPERMILPSY:
12967 case X86ISD::VPERMILPD:
12968 case X86ISD::VPERMILPDY:
Mon P Wanga0fd0d52010-12-19 23:55:53 +000012969 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI);
Evan Cheng206ee9d2006-07-07 08:33:52 +000012970 }
12971
Dan Gohman475871a2008-07-27 21:46:04 +000012972 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000012973}
12974
Evan Chenge5b51ac2010-04-17 06:13:15 +000012975/// isTypeDesirableForOp - Return true if the target has native support for
12976/// the specified value type and it is 'desirable' to use the type for the
12977/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
12978/// instruction encodings are longer and some i16 instructions are slow.
12979bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
12980 if (!isTypeLegal(VT))
12981 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012982 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000012983 return true;
12984
12985 switch (Opc) {
12986 default:
12987 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000012988 case ISD::LOAD:
12989 case ISD::SIGN_EXTEND:
12990 case ISD::ZERO_EXTEND:
12991 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000012992 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000012993 case ISD::SRL:
12994 case ISD::SUB:
12995 case ISD::ADD:
12996 case ISD::MUL:
12997 case ISD::AND:
12998 case ISD::OR:
12999 case ISD::XOR:
13000 return false;
13001 }
13002}
13003
13004/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000013005/// beneficial for dag combiner to promote the specified node. If true, it
13006/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000013007bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000013008 EVT VT = Op.getValueType();
13009 if (VT != MVT::i16)
13010 return false;
13011
Evan Cheng4c26e932010-04-19 19:29:22 +000013012 bool Promote = false;
13013 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013014 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000013015 default: break;
13016 case ISD::LOAD: {
13017 LoadSDNode *LD = cast<LoadSDNode>(Op);
13018 // If the non-extending load has a single use and it's not live out, then it
13019 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013020 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
13021 Op.hasOneUse()*/) {
13022 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
13023 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
13024 // The only case where we'd want to promote LOAD (rather then it being
13025 // promoted as an operand is when it's only use is liveout.
13026 if (UI->getOpcode() != ISD::CopyToReg)
13027 return false;
13028 }
13029 }
Evan Cheng4c26e932010-04-19 19:29:22 +000013030 Promote = true;
13031 break;
13032 }
13033 case ISD::SIGN_EXTEND:
13034 case ISD::ZERO_EXTEND:
13035 case ISD::ANY_EXTEND:
13036 Promote = true;
13037 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013038 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013039 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000013040 SDValue N0 = Op.getOperand(0);
13041 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000013042 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000013043 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000013044 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013045 break;
13046 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000013047 case ISD::ADD:
13048 case ISD::MUL:
13049 case ISD::AND:
13050 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000013051 case ISD::XOR:
13052 Commute = true;
13053 // fallthrough
13054 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000013055 SDValue N0 = Op.getOperand(0);
13056 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000013057 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013058 return false;
13059 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000013060 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013061 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000013062 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000013063 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000013064 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013065 }
13066 }
13067
13068 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000013069 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013070}
13071
Evan Cheng60c07e12006-07-05 22:17:51 +000013072//===----------------------------------------------------------------------===//
13073// X86 Inline Assembly Support
13074//===----------------------------------------------------------------------===//
13075
Chris Lattnerb8105652009-07-20 17:51:36 +000013076bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
13077 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000013078
13079 std::string AsmStr = IA->getAsmString();
13080
13081 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000013082 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000013083 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000013084
13085 switch (AsmPieces.size()) {
13086 default: return false;
13087 case 1:
13088 AsmStr = AsmPieces[0];
13089 AsmPieces.clear();
13090 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
13091
Chris Lattner7a2bdde2011-04-15 05:18:47 +000013092 // FIXME: this should verify that we are targeting a 486 or better. If not,
Evan Cheng55d42002011-01-08 01:24:27 +000013093 // we will turn this bswap into something that will be lowered to logical ops
13094 // instead of emitting the bswap asm. For now, we don't support 486 or lower
13095 // so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000013096 // bswap $0
13097 if (AsmPieces.size() == 2 &&
13098 (AsmPieces[0] == "bswap" ||
13099 AsmPieces[0] == "bswapq" ||
13100 AsmPieces[0] == "bswapl") &&
13101 (AsmPieces[1] == "$0" ||
13102 AsmPieces[1] == "${0:q}")) {
13103 // No need to check constraints, nothing other than the equivalent of
13104 // "=r,0" would be valid here.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013105 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013106 if (!Ty || Ty->getBitWidth() % 16 != 0)
13107 return false;
13108 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000013109 }
13110 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013111 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000013112 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000013113 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000013114 AsmPieces[1] == "$$8," &&
13115 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000013116 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
13117 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013118 const std::string &ConstraintsStr = IA->getConstraintString();
13119 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000013120 std::sort(AsmPieces.begin(), AsmPieces.end());
13121 if (AsmPieces.size() == 4 &&
13122 AsmPieces[0] == "~{cc}" &&
13123 AsmPieces[1] == "~{dirflag}" &&
13124 AsmPieces[2] == "~{flags}" &&
13125 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013126 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013127 if (!Ty || Ty->getBitWidth() % 16 != 0)
13128 return false;
13129 return IntrinsicLowering::LowerToByteSwap(CI);
Dan Gohman0ef701e2010-03-04 19:58:08 +000013130 }
Chris Lattnerb8105652009-07-20 17:51:36 +000013131 }
13132 break;
13133 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000013134 if (CI->getType()->isIntegerTy(32) &&
13135 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
13136 SmallVector<StringRef, 4> Words;
13137 SplitString(AsmPieces[0], Words, " \t,");
13138 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13139 Words[2] == "${0:w}") {
13140 Words.clear();
13141 SplitString(AsmPieces[1], Words, " \t,");
13142 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
13143 Words[2] == "$0") {
13144 Words.clear();
13145 SplitString(AsmPieces[2], Words, " \t,");
13146 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13147 Words[2] == "${0:w}") {
13148 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013149 const std::string &ConstraintsStr = IA->getConstraintString();
13150 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Peter Collingbourne948cf022010-11-13 19:54:30 +000013151 std::sort(AsmPieces.begin(), AsmPieces.end());
13152 if (AsmPieces.size() == 4 &&
13153 AsmPieces[0] == "~{cc}" &&
13154 AsmPieces[1] == "~{dirflag}" &&
13155 AsmPieces[2] == "~{flags}" &&
13156 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013157 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013158 if (!Ty || Ty->getBitWidth() % 16 != 0)
13159 return false;
13160 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000013161 }
13162 }
13163 }
13164 }
13165 }
Evan Cheng55d42002011-01-08 01:24:27 +000013166
13167 if (CI->getType()->isIntegerTy(64)) {
13168 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
13169 if (Constraints.size() >= 2 &&
13170 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
13171 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
13172 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
13173 SmallVector<StringRef, 4> Words;
13174 SplitString(AsmPieces[0], Words, " \t");
13175 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
Chris Lattnerb8105652009-07-20 17:51:36 +000013176 Words.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013177 SplitString(AsmPieces[1], Words, " \t");
13178 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
13179 Words.clear();
13180 SplitString(AsmPieces[2], Words, " \t,");
13181 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
13182 Words[2] == "%edx") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013183 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013184 if (!Ty || Ty->getBitWidth() % 16 != 0)
13185 return false;
13186 return IntrinsicLowering::LowerToByteSwap(CI);
13187 }
Chris Lattnerb8105652009-07-20 17:51:36 +000013188 }
13189 }
13190 }
13191 }
13192 break;
13193 }
13194 return false;
13195}
13196
13197
13198
Chris Lattnerf4dff842006-07-11 02:54:03 +000013199/// getConstraintType - Given a constraint letter, return the type of
13200/// constraint it is for this target.
13201X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000013202X86TargetLowering::getConstraintType(const std::string &Constraint) const {
13203 if (Constraint.size() == 1) {
13204 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000013205 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000013206 case 'q':
13207 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000013208 case 'f':
13209 case 't':
13210 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000013211 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000013212 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000013213 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000013214 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000013215 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000013216 case 'a':
13217 case 'b':
13218 case 'c':
13219 case 'd':
13220 case 'S':
13221 case 'D':
13222 case 'A':
13223 return C_Register;
13224 case 'I':
13225 case 'J':
13226 case 'K':
13227 case 'L':
13228 case 'M':
13229 case 'N':
13230 case 'G':
13231 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000013232 case 'e':
13233 case 'Z':
13234 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000013235 default:
13236 break;
13237 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000013238 }
Chris Lattner4234f572007-03-25 02:14:49 +000013239 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000013240}
13241
John Thompson44ab89e2010-10-29 17:29:13 +000013242/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000013243/// This object must already have been set up with the operand type
13244/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000013245TargetLowering::ConstraintWeight
13246 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000013247 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000013248 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013249 Value *CallOperandVal = info.CallOperandVal;
13250 // If we don't have a value, we can't do a match,
13251 // but allow it at the lowest weight.
13252 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000013253 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013254 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000013255 // Look at the constraint type.
13256 switch (*constraint) {
13257 default:
John Thompson44ab89e2010-10-29 17:29:13 +000013258 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
13259 case 'R':
13260 case 'q':
13261 case 'Q':
13262 case 'a':
13263 case 'b':
13264 case 'c':
13265 case 'd':
13266 case 'S':
13267 case 'D':
13268 case 'A':
13269 if (CallOperandVal->getType()->isIntegerTy())
13270 weight = CW_SpecificReg;
13271 break;
13272 case 'f':
13273 case 't':
13274 case 'u':
13275 if (type->isFloatingPointTy())
13276 weight = CW_SpecificReg;
13277 break;
13278 case 'y':
Chris Lattner2a786eb2010-12-19 20:19:20 +000013279 if (type->isX86_MMXTy() && Subtarget->hasMMX())
John Thompson44ab89e2010-10-29 17:29:13 +000013280 weight = CW_SpecificReg;
13281 break;
13282 case 'x':
13283 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013284 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000013285 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013286 break;
13287 case 'I':
13288 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
13289 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000013290 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013291 }
13292 break;
John Thompson44ab89e2010-10-29 17:29:13 +000013293 case 'J':
13294 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13295 if (C->getZExtValue() <= 63)
13296 weight = CW_Constant;
13297 }
13298 break;
13299 case 'K':
13300 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13301 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
13302 weight = CW_Constant;
13303 }
13304 break;
13305 case 'L':
13306 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13307 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
13308 weight = CW_Constant;
13309 }
13310 break;
13311 case 'M':
13312 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13313 if (C->getZExtValue() <= 3)
13314 weight = CW_Constant;
13315 }
13316 break;
13317 case 'N':
13318 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13319 if (C->getZExtValue() <= 0xff)
13320 weight = CW_Constant;
13321 }
13322 break;
13323 case 'G':
13324 case 'C':
13325 if (dyn_cast<ConstantFP>(CallOperandVal)) {
13326 weight = CW_Constant;
13327 }
13328 break;
13329 case 'e':
13330 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13331 if ((C->getSExtValue() >= -0x80000000LL) &&
13332 (C->getSExtValue() <= 0x7fffffffLL))
13333 weight = CW_Constant;
13334 }
13335 break;
13336 case 'Z':
13337 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13338 if (C->getZExtValue() <= 0xffffffff)
13339 weight = CW_Constant;
13340 }
13341 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013342 }
13343 return weight;
13344}
13345
Dale Johannesenba2a0b92008-01-29 02:21:21 +000013346/// LowerXConstraint - try to replace an X constraint, which matches anything,
13347/// with another that has more specific requirements based on the type of the
13348/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000013349const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000013350LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000013351 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
13352 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000013353 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013354 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000013355 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013356 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000013357 return "x";
13358 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013359
Chris Lattner5e764232008-04-26 23:02:14 +000013360 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000013361}
13362
Chris Lattner48884cd2007-08-25 00:47:38 +000013363/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
13364/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000013365void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000013366 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000013367 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000013368 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000013369 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000013370
Eric Christopher100c8332011-06-02 23:16:42 +000013371 // Only support length 1 constraints for now.
13372 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000013373
Eric Christopher100c8332011-06-02 23:16:42 +000013374 char ConstraintLetter = Constraint[0];
13375 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013376 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000013377 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000013378 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000013379 if (C->getZExtValue() <= 31) {
13380 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000013381 break;
13382 }
Devang Patel84f7fd22007-03-17 00:13:28 +000013383 }
Chris Lattner48884cd2007-08-25 00:47:38 +000013384 return;
Evan Cheng364091e2008-09-22 23:57:37 +000013385 case 'J':
13386 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000013387 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000013388 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13389 break;
13390 }
13391 }
13392 return;
13393 case 'K':
13394 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000013395 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000013396 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13397 break;
13398 }
13399 }
13400 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000013401 case 'N':
13402 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000013403 if (C->getZExtValue() <= 255) {
13404 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000013405 break;
13406 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000013407 }
Chris Lattner48884cd2007-08-25 00:47:38 +000013408 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000013409 case 'e': {
13410 // 32-bit signed value
13411 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000013412 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13413 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013414 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000013415 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000013416 break;
13417 }
13418 // FIXME gcc accepts some relocatable values here too, but only in certain
13419 // memory models; it's complicated.
13420 }
13421 return;
13422 }
13423 case 'Z': {
13424 // 32-bit unsigned value
13425 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000013426 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13427 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013428 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13429 break;
13430 }
13431 }
13432 // FIXME gcc accepts some relocatable values here too, but only in certain
13433 // memory models; it's complicated.
13434 return;
13435 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013436 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013437 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000013438 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013439 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000013440 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000013441 break;
13442 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013443
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013444 // In any sort of PIC mode addresses need to be computed at runtime by
13445 // adding in a register or some sort of table lookup. These can't
13446 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000013447 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013448 return;
13449
Chris Lattnerdc43a882007-05-03 16:52:29 +000013450 // If we are in non-pic codegen mode, we allow the address of a global (with
13451 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000013452 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013453 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000013454
Chris Lattner49921962009-05-08 18:23:14 +000013455 // Match either (GA), (GA+C), (GA+C1+C2), etc.
13456 while (1) {
13457 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
13458 Offset += GA->getOffset();
13459 break;
13460 } else if (Op.getOpcode() == ISD::ADD) {
13461 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13462 Offset += C->getZExtValue();
13463 Op = Op.getOperand(0);
13464 continue;
13465 }
13466 } else if (Op.getOpcode() == ISD::SUB) {
13467 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13468 Offset += -C->getZExtValue();
13469 Op = Op.getOperand(0);
13470 continue;
13471 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013472 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013473
Chris Lattner49921962009-05-08 18:23:14 +000013474 // Otherwise, this isn't something we can handle, reject it.
13475 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013476 }
Eric Christopherfd179292009-08-27 18:07:15 +000013477
Dan Gohman46510a72010-04-15 01:51:59 +000013478 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013479 // If we require an extra load to get this address, as in PIC mode, we
13480 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000013481 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
13482 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013483 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000013484
Devang Patel0d881da2010-07-06 22:08:15 +000013485 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
13486 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000013487 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013488 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013489 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013490
Gabor Greifba36cb52008-08-28 21:40:38 +000013491 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000013492 Ops.push_back(Result);
13493 return;
13494 }
Dale Johannesen1784d162010-06-25 21:55:36 +000013495 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013496}
13497
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013498std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000013499X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000013500 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000013501 // First, see if this is a constraint that directly corresponds to an LLVM
13502 // register class.
13503 if (Constraint.size() == 1) {
13504 // GCC Constraint Letters
13505 switch (Constraint[0]) {
13506 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000013507 // TODO: Slight differences here in allocation order and leaving
13508 // RIP in the class. Do they matter any more here than they do
13509 // in the normal allocation?
13510 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
13511 if (Subtarget->is64Bit()) {
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013512 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000013513 return std::make_pair(0U, X86::GR32RegisterClass);
13514 else if (VT == MVT::i16)
13515 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000013516 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000013517 return std::make_pair(0U, X86::GR8RegisterClass);
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013518 else if (VT == MVT::i64 || VT == MVT::f64)
Eric Christopherd176af82011-06-29 17:23:50 +000013519 return std::make_pair(0U, X86::GR64RegisterClass);
13520 break;
13521 }
13522 // 32-bit fallthrough
13523 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013524 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000013525 return std::make_pair(0U, X86::GR32_ABCDRegisterClass);
13526 else if (VT == MVT::i16)
13527 return std::make_pair(0U, X86::GR16_ABCDRegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000013528 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000013529 return std::make_pair(0U, X86::GR8_ABCD_LRegisterClass);
13530 else if (VT == MVT::i64)
13531 return std::make_pair(0U, X86::GR64_ABCDRegisterClass);
13532 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000013533 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000013534 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000013535 if (VT == MVT::i8 || VT == MVT::i1)
Chris Lattner0f65cad2007-04-09 05:49:22 +000013536 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013537 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000013538 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000013539 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000013540 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000013541 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000013542 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000013543 if (VT == MVT::i8 || VT == MVT::i1)
Dale Johannesen5f3663e2009-10-07 22:47:20 +000013544 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
13545 if (VT == MVT::i16)
13546 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
13547 if (VT == MVT::i32 || !Subtarget->is64Bit())
13548 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
13549 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013550 case 'f': // FP Stack registers.
13551 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
13552 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000013553 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013554 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013555 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013556 return std::make_pair(0U, X86::RFP64RegisterClass);
13557 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000013558 case 'y': // MMX_REGS if MMX allowed.
13559 if (!Subtarget->hasMMX()) break;
13560 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000013561 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013562 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000013563 // FALL THROUGH.
13564 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013565 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000013566
Owen Anderson825b72b2009-08-11 20:47:22 +000013567 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000013568 default: break;
13569 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000013570 case MVT::f32:
13571 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000013572 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013573 case MVT::f64:
13574 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000013575 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000013576 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000013577 case MVT::v16i8:
13578 case MVT::v8i16:
13579 case MVT::v4i32:
13580 case MVT::v2i64:
13581 case MVT::v4f32:
13582 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000013583 return std::make_pair(0U, X86::VR128RegisterClass);
13584 }
Chris Lattnerad043e82007-04-09 05:11:28 +000013585 break;
13586 }
13587 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013588
Chris Lattnerf76d1802006-07-31 23:26:50 +000013589 // Use the default implementation in TargetLowering to convert the register
13590 // constraint into a member of a register class.
13591 std::pair<unsigned, const TargetRegisterClass*> Res;
13592 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000013593
13594 // Not found as a standard register?
13595 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000013596 // Map st(0) -> st(7) -> ST0
13597 if (Constraint.size() == 7 && Constraint[0] == '{' &&
13598 tolower(Constraint[1]) == 's' &&
13599 tolower(Constraint[2]) == 't' &&
13600 Constraint[3] == '(' &&
13601 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
13602 Constraint[5] == ')' &&
13603 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000013604
Chris Lattner56d77c72009-09-13 22:41:48 +000013605 Res.first = X86::ST0+Constraint[4]-'0';
13606 Res.second = X86::RFP80RegisterClass;
13607 return Res;
13608 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000013609
Chris Lattner56d77c72009-09-13 22:41:48 +000013610 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000013611 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000013612 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000013613 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000013614 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000013615 }
Chris Lattner56d77c72009-09-13 22:41:48 +000013616
13617 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000013618 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000013619 Res.first = X86::EFLAGS;
13620 Res.second = X86::CCRRegisterClass;
13621 return Res;
13622 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000013623
Dale Johannesen330169f2008-11-13 21:52:36 +000013624 // 'A' means EAX + EDX.
13625 if (Constraint == "A") {
13626 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000013627 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000013628 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000013629 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000013630 return Res;
13631 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013632
Chris Lattnerf76d1802006-07-31 23:26:50 +000013633 // Otherwise, check to see if this is a register class of the wrong value
13634 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
13635 // turn into {ax},{dx}.
13636 if (Res.second->hasType(VT))
13637 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013638
Chris Lattnerf76d1802006-07-31 23:26:50 +000013639 // All of the single-register GCC register classes map their values onto
13640 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
13641 // really want an 8-bit or 32-bit register, map to the appropriate register
13642 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000013643 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000013644 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013645 unsigned DestReg = 0;
13646 switch (Res.first) {
13647 default: break;
13648 case X86::AX: DestReg = X86::AL; break;
13649 case X86::DX: DestReg = X86::DL; break;
13650 case X86::CX: DestReg = X86::CL; break;
13651 case X86::BX: DestReg = X86::BL; break;
13652 }
13653 if (DestReg) {
13654 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013655 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013656 }
Owen Anderson825b72b2009-08-11 20:47:22 +000013657 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013658 unsigned DestReg = 0;
13659 switch (Res.first) {
13660 default: break;
13661 case X86::AX: DestReg = X86::EAX; break;
13662 case X86::DX: DestReg = X86::EDX; break;
13663 case X86::CX: DestReg = X86::ECX; break;
13664 case X86::BX: DestReg = X86::EBX; break;
13665 case X86::SI: DestReg = X86::ESI; break;
13666 case X86::DI: DestReg = X86::EDI; break;
13667 case X86::BP: DestReg = X86::EBP; break;
13668 case X86::SP: DestReg = X86::ESP; break;
13669 }
13670 if (DestReg) {
13671 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013672 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013673 }
Owen Anderson825b72b2009-08-11 20:47:22 +000013674 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013675 unsigned DestReg = 0;
13676 switch (Res.first) {
13677 default: break;
13678 case X86::AX: DestReg = X86::RAX; break;
13679 case X86::DX: DestReg = X86::RDX; break;
13680 case X86::CX: DestReg = X86::RCX; break;
13681 case X86::BX: DestReg = X86::RBX; break;
13682 case X86::SI: DestReg = X86::RSI; break;
13683 case X86::DI: DestReg = X86::RDI; break;
13684 case X86::BP: DestReg = X86::RBP; break;
13685 case X86::SP: DestReg = X86::RSP; break;
13686 }
13687 if (DestReg) {
13688 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013689 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013690 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000013691 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000013692 } else if (Res.second == X86::FR32RegisterClass ||
13693 Res.second == X86::FR64RegisterClass ||
13694 Res.second == X86::VR128RegisterClass) {
13695 // Handle references to XMM physical registers that got mapped into the
13696 // wrong class. This can happen with constraints like {xmm0} where the
13697 // target independent register mapper will just pick the first match it can
13698 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000013699 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000013700 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000013701 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000013702 Res.second = X86::FR64RegisterClass;
13703 else if (X86::VR128RegisterClass->hasType(VT))
13704 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000013705 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013706
Chris Lattnerf76d1802006-07-31 23:26:50 +000013707 return Res;
13708}