blob: 792d68c2c83c2d56cd88b6b43c0a270e8fe0e000 [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
Nate Begeman14d12ca2008-02-11 04:19:36 +0000886 if (Subtarget->hasSSE41()) {
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
Nadav Rotem43012222011-05-11 08:12:09 +0000925 if (Subtarget->hasSSE2()) {
926 setOperationAction(ISD::SRL, MVT::v2i64, Custom);
927 setOperationAction(ISD::SRL, MVT::v4i32, Custom);
928 setOperationAction(ISD::SRL, MVT::v16i8, Custom);
929
930 setOperationAction(ISD::SHL, MVT::v2i64, Custom);
931 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
932 setOperationAction(ISD::SHL, MVT::v8i16, Custom);
933
934 setOperationAction(ISD::SRA, MVT::v4i32, Custom);
935 setOperationAction(ISD::SRA, MVT::v8i16, Custom);
936 }
937
Chris Lattnera34b3cf2010-12-19 20:03:11 +0000938 if (Subtarget->hasSSE42())
Owen Anderson825b72b2009-08-11 20:47:22 +0000939 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000940
David Greene9b9838d2009-06-29 16:47:10 +0000941 if (!UseSoftFloat && Subtarget->hasAVX()) {
Bruno Cardoso Lopesdbd4fe22011-07-21 02:24:08 +0000942 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
943 addRegisterClass(MVT::v16i16, X86::VR256RegisterClass);
944 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
945 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
946 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
947 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000948
Owen Anderson825b72b2009-08-11 20:47:22 +0000949 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +0000950 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
951 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +0000952
Owen Anderson825b72b2009-08-11 20:47:22 +0000953 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
954 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
955 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
956 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
957 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
958 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000959
Owen Anderson825b72b2009-08-11 20:47:22 +0000960 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
961 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
962 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
963 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
964 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
965 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000966
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +0000967 setOperationAction(ISD::FP_TO_SINT, MVT::v8i32, Legal);
968 setOperationAction(ISD::SINT_TO_FP, MVT::v8i32, Legal);
Bruno Cardoso Lopes55244ce2011-08-01 21:54:09 +0000969 setOperationAction(ISD::FP_ROUND, MVT::v4f32, Legal);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +0000970
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +0000971 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4f64, Custom);
972 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i64, Custom);
973 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f32, Custom);
974 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i32, Custom);
975 setOperationAction(ISD::CONCAT_VECTORS, MVT::v32i8, Custom);
976 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i16, Custom);
977
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000978 // Custom lower several nodes for 256-bit types.
David Greene54d8eba2011-01-27 22:38:56 +0000979 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000980 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
981 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
982 EVT VT = SVT;
983
984 // Extract subvector is special because the value type
985 // (result) is 128-bit but the source is 256-bit wide.
986 if (VT.is128BitVector())
987 setOperationAction(ISD::EXTRACT_SUBVECTOR, SVT, Custom);
988
989 // Do not attempt to custom lower other non-256-bit vectors
990 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000991 continue;
David Greene54d8eba2011-01-27 22:38:56 +0000992
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000993 setOperationAction(ISD::BUILD_VECTOR, SVT, Custom);
994 setOperationAction(ISD::VECTOR_SHUFFLE, SVT, Custom);
995 setOperationAction(ISD::INSERT_VECTOR_ELT, SVT, Custom);
996 setOperationAction(ISD::EXTRACT_VECTOR_ELT, SVT, Custom);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +0000997 setOperationAction(ISD::SCALAR_TO_VECTOR, SVT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000998 setOperationAction(ISD::INSERT_SUBVECTOR, SVT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000999 }
1000
David Greene54d8eba2011-01-27 22:38:56 +00001001 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001002 for (unsigned i = (unsigned)MVT::v32i8; i != (unsigned)MVT::v4i64; ++i) {
1003 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1004 EVT VT = SVT;
David Greene54d8eba2011-01-27 22:38:56 +00001005
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001006 // Do not attempt to promote non-256-bit vectors
1007 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +00001008 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001009
1010 setOperationAction(ISD::AND, SVT, Promote);
1011 AddPromotedToType (ISD::AND, SVT, MVT::v4i64);
1012 setOperationAction(ISD::OR, SVT, Promote);
1013 AddPromotedToType (ISD::OR, SVT, MVT::v4i64);
1014 setOperationAction(ISD::XOR, SVT, Promote);
1015 AddPromotedToType (ISD::XOR, SVT, MVT::v4i64);
1016 setOperationAction(ISD::LOAD, SVT, Promote);
1017 AddPromotedToType (ISD::LOAD, SVT, MVT::v4i64);
1018 setOperationAction(ISD::SELECT, SVT, Promote);
1019 AddPromotedToType (ISD::SELECT, SVT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001020 }
David Greene9b9838d2009-06-29 16:47:10 +00001021 }
1022
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001023 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1024 // of this type with custom code.
1025 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1026 VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE; VT++) {
1027 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT, Custom);
1028 }
1029
Evan Cheng6be2c582006-04-05 23:38:46 +00001030 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001031 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001032
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001033
Eli Friedman962f5492010-06-02 19:35:46 +00001034 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1035 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001036 //
Eli Friedman962f5492010-06-02 19:35:46 +00001037 // FIXME: We really should do custom legalization for addition and
1038 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1039 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001040 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1041 // Add/Sub/Mul with overflow operations are custom lowered.
1042 MVT VT = IntVTs[i];
1043 setOperationAction(ISD::SADDO, VT, Custom);
1044 setOperationAction(ISD::UADDO, VT, Custom);
1045 setOperationAction(ISD::SSUBO, VT, Custom);
1046 setOperationAction(ISD::USUBO, VT, Custom);
1047 setOperationAction(ISD::SMULO, VT, Custom);
1048 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001049 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001050
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001051 // There are no 8-bit 3-address imul/mul instructions
1052 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1053 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001054
Evan Chengd54f2d52009-03-31 19:38:51 +00001055 if (!Subtarget->is64Bit()) {
1056 // These libcalls are not available in 32-bit.
1057 setLibcallName(RTLIB::SHL_I128, 0);
1058 setLibcallName(RTLIB::SRL_I128, 0);
1059 setLibcallName(RTLIB::SRA_I128, 0);
1060 }
1061
Evan Cheng206ee9d2006-07-07 08:33:52 +00001062 // We have target-specific dag combine patterns for the following nodes:
1063 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001064 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +00001065 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +00001066 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001067 setTargetDAGCombine(ISD::SHL);
1068 setTargetDAGCombine(ISD::SRA);
1069 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001070 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001071 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001072 setTargetDAGCombine(ISD::ADD);
1073 setTargetDAGCombine(ISD::SUB);
Chris Lattner149a4e52008-02-22 02:09:43 +00001074 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001075 setTargetDAGCombine(ISD::ZERO_EXTEND);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001076 setTargetDAGCombine(ISD::SINT_TO_FP);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001077 if (Subtarget->is64Bit())
1078 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001079
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001080 computeRegisterProperties();
1081
Evan Cheng05219282011-01-06 06:52:41 +00001082 // On Darwin, -Os means optimize for size without hurting performance,
1083 // do not reduce the limit.
Dan Gohman87060f52008-06-30 21:00:56 +00001084 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001085 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
Evan Cheng255f20f2010-04-01 06:04:33 +00001086 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001087 maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1088 maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1089 maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Evan Chengfb8075d2008-02-28 00:43:03 +00001090 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +00001091 benefitFromCodePlacementOpt = true;
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001092
1093 setPrefFunctionAlignment(4);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001094}
1095
Scott Michel5b8f82e2008-03-10 15:42:14 +00001096
Owen Anderson825b72b2009-08-11 20:47:22 +00001097MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1098 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +00001099}
1100
1101
Evan Cheng29286502008-01-23 23:17:41 +00001102/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1103/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001104static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001105 if (MaxAlign == 16)
1106 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001107 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001108 if (VTy->getBitWidth() == 128)
1109 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001110 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001111 unsigned EltAlign = 0;
1112 getMaxByValAlign(ATy->getElementType(), EltAlign);
1113 if (EltAlign > MaxAlign)
1114 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001115 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001116 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1117 unsigned EltAlign = 0;
1118 getMaxByValAlign(STy->getElementType(i), EltAlign);
1119 if (EltAlign > MaxAlign)
1120 MaxAlign = EltAlign;
1121 if (MaxAlign == 16)
1122 break;
1123 }
1124 }
1125 return;
1126}
1127
1128/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1129/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001130/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1131/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001132unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001133 if (Subtarget->is64Bit()) {
1134 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001135 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001136 if (TyAlign > 8)
1137 return TyAlign;
1138 return 8;
1139 }
1140
Evan Cheng29286502008-01-23 23:17:41 +00001141 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001142 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001143 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001144 return Align;
1145}
Chris Lattner2b02a442007-02-25 08:29:00 +00001146
Evan Chengf0df0312008-05-15 08:39:06 +00001147/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001148/// and store operations as a result of memset, memcpy, and memmove
1149/// lowering. If DstAlign is zero that means it's safe to destination
1150/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1151/// means there isn't a need to check it against alignment requirement,
1152/// probably because the source does not need to be loaded. If
1153/// 'NonScalarIntSafe' is true, that means it's safe to return a
1154/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1155/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1156/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001157/// It returns EVT::Other if the type should be determined using generic
1158/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001159EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001160X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1161 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001162 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001163 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001164 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001165 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1166 // linux. This is because the stack realignment code can't handle certain
1167 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001168 const Function *F = MF.getFunction();
Evan Chenga5e13622011-01-07 19:35:30 +00001169 if (NonScalarIntSafe &&
1170 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001171 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001172 (Subtarget->isUnalignedMemAccessFast() ||
1173 ((DstAlign == 0 || DstAlign >= 16) &&
1174 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001175 Subtarget->getStackAlignment() >= 16) {
1176 if (Subtarget->hasSSE2())
1177 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001178 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001179 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001180 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001181 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001182 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001183 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001184 // Do not use f64 to lower memcpy if source is string constant. It's
1185 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001186 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001187 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001188 }
Evan Chengf0df0312008-05-15 08:39:06 +00001189 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001190 return MVT::i64;
1191 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001192}
1193
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001194/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1195/// current function. The returned value is a member of the
1196/// MachineJumpTableInfo::JTEntryKind enum.
1197unsigned X86TargetLowering::getJumpTableEncoding() const {
1198 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1199 // symbol.
1200 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1201 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001202 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001203
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001204 // Otherwise, use the normal jump table encoding heuristics.
1205 return TargetLowering::getJumpTableEncoding();
1206}
1207
Chris Lattnerc64daab2010-01-26 05:02:42 +00001208const MCExpr *
1209X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1210 const MachineBasicBlock *MBB,
1211 unsigned uid,MCContext &Ctx) const{
1212 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1213 Subtarget->isPICStyleGOT());
1214 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1215 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001216 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1217 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001218}
1219
Evan Chengcc415862007-11-09 01:32:10 +00001220/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1221/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001222SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001223 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001224 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001225 // This doesn't have DebugLoc associated with it, but is not really the
1226 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001227 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001228 return Table;
1229}
1230
Chris Lattner589c6f62010-01-26 06:28:43 +00001231/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1232/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1233/// MCExpr.
1234const MCExpr *X86TargetLowering::
1235getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1236 MCContext &Ctx) const {
1237 // X86-64 uses RIP relative addressing based on the jump table label.
1238 if (Subtarget->isPICStyleRIPRel())
1239 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1240
1241 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001242 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001243}
1244
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001245// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001246std::pair<const TargetRegisterClass*, uint8_t>
1247X86TargetLowering::findRepresentativeClass(EVT VT) const{
1248 const TargetRegisterClass *RRC = 0;
1249 uint8_t Cost = 1;
1250 switch (VT.getSimpleVT().SimpleTy) {
1251 default:
1252 return TargetLowering::findRepresentativeClass(VT);
1253 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1254 RRC = (Subtarget->is64Bit()
1255 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1256 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001257 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001258 RRC = X86::VR64RegisterClass;
1259 break;
1260 case MVT::f32: case MVT::f64:
1261 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1262 case MVT::v4f32: case MVT::v2f64:
1263 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1264 case MVT::v4f64:
1265 RRC = X86::VR128RegisterClass;
1266 break;
1267 }
1268 return std::make_pair(RRC, Cost);
1269}
1270
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001271bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1272 unsigned &Offset) const {
1273 if (!Subtarget->isTargetLinux())
1274 return false;
1275
1276 if (Subtarget->is64Bit()) {
1277 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1278 Offset = 0x28;
1279 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1280 AddressSpace = 256;
1281 else
1282 AddressSpace = 257;
1283 } else {
1284 // %gs:0x14 on i386
1285 Offset = 0x14;
1286 AddressSpace = 256;
1287 }
1288 return true;
1289}
1290
1291
Chris Lattner2b02a442007-02-25 08:29:00 +00001292//===----------------------------------------------------------------------===//
1293// Return Value Calling Convention Implementation
1294//===----------------------------------------------------------------------===//
1295
Chris Lattner59ed56b2007-02-28 04:55:35 +00001296#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001297
Michael J. Spencerec38de22010-10-10 22:04:20 +00001298bool
Eric Christopher471e4222011-06-08 23:55:35 +00001299X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1300 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001301 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001302 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001303 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001304 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001305 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001306 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001307}
1308
Dan Gohman98ca4f22009-08-05 01:29:28 +00001309SDValue
1310X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001311 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001312 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001313 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001314 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001315 MachineFunction &MF = DAG.getMachineFunction();
1316 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001317
Chris Lattner9774c912007-02-27 05:28:59 +00001318 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001319 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001320 RVLocs, *DAG.getContext());
1321 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001322
Evan Chengdcea1632010-02-04 02:40:39 +00001323 // Add the regs to the liveout set for the function.
1324 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1325 for (unsigned i = 0; i != RVLocs.size(); ++i)
1326 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1327 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001328
Dan Gohman475871a2008-07-27 21:46:04 +00001329 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001330
Dan Gohman475871a2008-07-27 21:46:04 +00001331 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001332 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1333 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001334 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1335 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001336
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001337 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001338 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1339 CCValAssign &VA = RVLocs[i];
1340 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001341 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001342 EVT ValVT = ValToCopy.getValueType();
1343
Dale Johannesenc4510512010-09-24 19:05:48 +00001344 // If this is x86-64, and we disabled SSE, we can't return FP values,
1345 // or SSE or MMX vectors.
1346 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1347 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001348 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001349 report_fatal_error("SSE register return with SSE disabled");
1350 }
1351 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1352 // llvm-gcc has never done it right and no one has noticed, so this
1353 // should be OK for now.
1354 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001355 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001356 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001357
Chris Lattner447ff682008-03-11 03:23:40 +00001358 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1359 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001360 if (VA.getLocReg() == X86::ST0 ||
1361 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001362 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1363 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001364 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001365 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001366 RetOps.push_back(ValToCopy);
1367 // Don't emit a copytoreg.
1368 continue;
1369 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001370
Evan Cheng242b38b2009-02-23 09:03:22 +00001371 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1372 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001373 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001374 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001375 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001376 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001377 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1378 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001379 // If we don't have SSE2 available, convert to v4f32 so the generated
1380 // register is legal.
1381 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001382 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001383 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001384 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001385 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001386
Dale Johannesendd64c412009-02-04 00:33:20 +00001387 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001388 Flag = Chain.getValue(1);
1389 }
Dan Gohman61a92132008-04-21 23:59:07 +00001390
1391 // The x86-64 ABI for returning structs by value requires that we copy
1392 // the sret argument into %rax for the return. We saved the argument into
1393 // a virtual register in the entry block, so now we copy the value out
1394 // and into %rax.
1395 if (Subtarget->is64Bit() &&
1396 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1397 MachineFunction &MF = DAG.getMachineFunction();
1398 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1399 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001400 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001401 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001402 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001403
Dale Johannesendd64c412009-02-04 00:33:20 +00001404 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001405 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001406
1407 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001408 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001409 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001410
Chris Lattner447ff682008-03-11 03:23:40 +00001411 RetOps[0] = Chain; // Update chain.
1412
1413 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001414 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001415 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001416
1417 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001418 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001419}
1420
Evan Cheng3d2125c2010-11-30 23:55:39 +00001421bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1422 if (N->getNumValues() != 1)
1423 return false;
1424 if (!N->hasNUsesOfValue(1, 0))
1425 return false;
1426
1427 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001428 if (Copy->getOpcode() != ISD::CopyToReg &&
1429 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001430 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001431
1432 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001433 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001434 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001435 if (UI->getOpcode() != X86ISD::RET_FLAG)
1436 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001437 HasRet = true;
1438 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001439
Evan Cheng1bf891a2010-12-01 22:59:46 +00001440 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001441}
1442
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001443EVT
1444X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001445 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001446 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001447 // TODO: Is this also valid on 32-bit?
1448 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001449 ReturnMVT = MVT::i8;
1450 else
1451 ReturnMVT = MVT::i32;
1452
1453 EVT MinVT = getRegisterType(Context, ReturnMVT);
1454 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001455}
1456
Dan Gohman98ca4f22009-08-05 01:29:28 +00001457/// LowerCallResult - Lower the result values of a call into the
1458/// appropriate copies out of appropriate physical registers.
1459///
1460SDValue
1461X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001462 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001463 const SmallVectorImpl<ISD::InputArg> &Ins,
1464 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001465 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001466
Chris Lattnere32bbf62007-02-28 07:09:55 +00001467 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001468 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001469 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001470 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1471 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001472 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001473
Chris Lattner3085e152007-02-25 08:59:22 +00001474 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001475 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001476 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001477 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001478
Torok Edwin3f142c32009-02-01 18:15:56 +00001479 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001480 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001481 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001482 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001483 }
1484
Evan Cheng79fb3b42009-02-20 20:43:02 +00001485 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001486
1487 // If this is a call to a function that returns an fp value on the floating
1488 // point stack, we must guarantee the the value is popped from the stack, so
1489 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001490 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001491 // instead.
1492 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1493 // If we prefer to use the value in xmm registers, copy it out as f80 and
1494 // use a truncate to move it from fp stack reg to xmm reg.
1495 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001496 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001497 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1498 MVT::Other, MVT::Glue, Ops, 2), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001499 Val = Chain.getValue(0);
1500
1501 // Round the f80 to the right size, which also moves it to the appropriate
1502 // xmm register.
1503 if (CopyVT != VA.getValVT())
1504 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1505 // This truncation won't change the value.
1506 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001507 } else {
1508 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1509 CopyVT, InFlag).getValue(1);
1510 Val = Chain.getValue(0);
1511 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001512 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001513 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001514 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001515
Dan Gohman98ca4f22009-08-05 01:29:28 +00001516 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001517}
1518
1519
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001520//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001521// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001522//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001523// StdCall calling convention seems to be standard for many Windows' API
1524// routines and around. It differs from C calling convention just a little:
1525// callee should clean up the stack, not caller. Symbols should be also
1526// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001527// For info on fast calling convention see Fast Calling Convention (tail call)
1528// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001529
Dan Gohman98ca4f22009-08-05 01:29:28 +00001530/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001531/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001532static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1533 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001534 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001535
Dan Gohman98ca4f22009-08-05 01:29:28 +00001536 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001537}
1538
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001539/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001540/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001541static bool
1542ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1543 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001544 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001545
Dan Gohman98ca4f22009-08-05 01:29:28 +00001546 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001547}
1548
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001549/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1550/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001551/// the specific parameter attribute. The copy will be passed as a byval
1552/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001553static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001554CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001555 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1556 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001557 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001558
Dale Johannesendd64c412009-02-04 00:33:20 +00001559 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00001560 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001561 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001562}
1563
Chris Lattner29689432010-03-11 00:22:57 +00001564/// IsTailCallConvention - Return true if the calling convention is one that
1565/// supports tail call optimization.
1566static bool IsTailCallConvention(CallingConv::ID CC) {
1567 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1568}
1569
Evan Cheng485fafc2011-03-21 01:19:09 +00001570bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1571 if (!CI->isTailCall())
1572 return false;
1573
1574 CallSite CS(CI);
1575 CallingConv::ID CalleeCC = CS.getCallingConv();
1576 if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1577 return false;
1578
1579 return true;
1580}
1581
Evan Cheng0c439eb2010-01-27 00:07:07 +00001582/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1583/// a tailcall target by changing its ABI.
1584static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001585 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001586}
1587
Dan Gohman98ca4f22009-08-05 01:29:28 +00001588SDValue
1589X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001590 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001591 const SmallVectorImpl<ISD::InputArg> &Ins,
1592 DebugLoc dl, SelectionDAG &DAG,
1593 const CCValAssign &VA,
1594 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001595 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001596 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001597 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001598 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001599 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001600 EVT ValVT;
1601
1602 // If value is passed by pointer we have address passed instead of the value
1603 // itself.
1604 if (VA.getLocInfo() == CCValAssign::Indirect)
1605 ValVT = VA.getLocVT();
1606 else
1607 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001608
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001609 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001610 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001611 // In case of tail call optimization mark all arguments mutable. Since they
1612 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001613 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00001614 unsigned Bytes = Flags.getByValSize();
1615 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1616 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001617 return DAG.getFrameIndex(FI, getPointerTy());
1618 } else {
1619 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001620 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001621 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1622 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001623 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001624 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001625 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001626}
1627
Dan Gohman475871a2008-07-27 21:46:04 +00001628SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001629X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001630 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001631 bool isVarArg,
1632 const SmallVectorImpl<ISD::InputArg> &Ins,
1633 DebugLoc dl,
1634 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001635 SmallVectorImpl<SDValue> &InVals)
1636 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001637 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001638 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001639
Gordon Henriksen86737662008-01-05 16:56:59 +00001640 const Function* Fn = MF.getFunction();
1641 if (Fn->hasExternalLinkage() &&
1642 Subtarget->isTargetCygMing() &&
1643 Fn->getName() == "main")
1644 FuncInfo->setForceFramePointer(true);
1645
Evan Cheng1bc78042006-04-26 01:20:17 +00001646 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001647 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001648 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001649
Chris Lattner29689432010-03-11 00:22:57 +00001650 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1651 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001652
Chris Lattner638402b2007-02-28 07:00:42 +00001653 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001654 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001655 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001656 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001657
1658 // Allocate shadow area for Win64
1659 if (IsWin64) {
1660 CCInfo.AllocateStack(32, 8);
1661 }
1662
Duncan Sands45907662010-10-31 13:21:44 +00001663 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001664
Chris Lattnerf39f7712007-02-28 05:46:49 +00001665 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001666 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001667 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1668 CCValAssign &VA = ArgLocs[i];
1669 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1670 // places.
1671 assert(VA.getValNo() != LastVal &&
1672 "Don't support value assigned to multiple locs yet");
1673 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001674
Chris Lattnerf39f7712007-02-28 05:46:49 +00001675 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001676 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001677 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001678 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001679 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001680 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001681 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001682 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001683 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001684 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001685 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001686 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1687 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001688 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001689 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001690 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001691 RC = X86::VR64RegisterClass;
1692 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001693 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001694
Devang Patel68e6bee2011-02-21 23:21:26 +00001695 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001696 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001697
Chris Lattnerf39f7712007-02-28 05:46:49 +00001698 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1699 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1700 // right size.
1701 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001702 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001703 DAG.getValueType(VA.getValVT()));
1704 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001705 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001706 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001707 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001708 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001709
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001710 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001711 // Handle MMX values passed in XMM regs.
1712 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001713 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1714 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001715 } else
1716 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001717 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001718 } else {
1719 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001720 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001721 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001722
1723 // If value is passed via pointer - do a load.
1724 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001725 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1726 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001727
Dan Gohman98ca4f22009-08-05 01:29:28 +00001728 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001729 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001730
Dan Gohman61a92132008-04-21 23:59:07 +00001731 // The x86-64 ABI for returning structs by value requires that we copy
1732 // the sret argument into %rax for the return. Save the argument into
1733 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001734 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001735 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1736 unsigned Reg = FuncInfo->getSRetReturnReg();
1737 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001738 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001739 FuncInfo->setSRetReturnReg(Reg);
1740 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001741 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001742 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001743 }
1744
Chris Lattnerf39f7712007-02-28 05:46:49 +00001745 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001746 // Align stack specially for tail calls.
1747 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001748 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001749
Evan Cheng1bc78042006-04-26 01:20:17 +00001750 // If the function takes variable number of arguments, make a frame index for
1751 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001752 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001753 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1754 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001755 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001756 }
1757 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001758 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1759
1760 // FIXME: We should really autogenerate these arrays
1761 static const unsigned GPR64ArgRegsWin64[] = {
1762 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001763 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001764 static const unsigned GPR64ArgRegs64Bit[] = {
1765 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1766 };
1767 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001768 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1769 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1770 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001771 const unsigned *GPR64ArgRegs;
1772 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001773
1774 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001775 // The XMM registers which might contain var arg parameters are shadowed
1776 // in their paired GPR. So we only need to save the GPR to their home
1777 // slots.
1778 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001779 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001780 } else {
1781 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1782 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001783
1784 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001785 }
1786 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1787 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001788
Devang Patel578efa92009-06-05 21:57:13 +00001789 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001790 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001791 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001792 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001793 "SSE register cannot be used when SSE is disabled!");
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001794 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001795 // Kernel mode asks for SSE to be disabled, so don't push them
1796 // on the stack.
1797 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001798
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001799 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001800 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001801 // Get to the caller-allocated home save location. Add 8 to account
1802 // for the return address.
1803 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001804 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001805 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001806 // Fixup to set vararg frame on shadow area (4 x i64).
1807 if (NumIntRegs < 4)
1808 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001809 } else {
1810 // For X86-64, if there are vararg parameters that are passed via
1811 // registers, then we must store them to their spots on the stack so they
1812 // may be loaded by deferencing the result of va_next.
1813 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1814 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1815 FuncInfo->setRegSaveFrameIndex(
1816 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001817 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001818 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001819
Gordon Henriksen86737662008-01-05 16:56:59 +00001820 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001821 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001822 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1823 getPointerTy());
1824 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001825 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001826 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1827 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001828 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001829 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001830 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001831 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001832 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001833 MachinePointerInfo::getFixedStack(
1834 FuncInfo->getRegSaveFrameIndex(), Offset),
1835 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001836 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001837 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001838 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001839
Dan Gohmanface41a2009-08-16 21:24:25 +00001840 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1841 // Now store the XMM (fp + vector) parameter registers.
1842 SmallVector<SDValue, 11> SaveXMMOps;
1843 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001844
Devang Patel68e6bee2011-02-21 23:21:26 +00001845 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001846 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1847 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001848
Dan Gohman1e93df62010-04-17 14:41:14 +00001849 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1850 FuncInfo->getRegSaveFrameIndex()));
1851 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1852 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001853
Dan Gohmanface41a2009-08-16 21:24:25 +00001854 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001855 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001856 X86::VR128RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001857 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1858 SaveXMMOps.push_back(Val);
1859 }
1860 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1861 MVT::Other,
1862 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001863 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001864
1865 if (!MemOps.empty())
1866 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1867 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001868 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001869 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001870
Gordon Henriksen86737662008-01-05 16:56:59 +00001871 // Some CCs need callee pop.
Evan Chengef41ff62011-06-23 17:54:54 +00001872 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001873 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001874 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001875 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001876 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001877 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001878 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001879 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001880
Gordon Henriksen86737662008-01-05 16:56:59 +00001881 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001882 // RegSaveFrameIndex is X86-64 only.
1883 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001884 if (CallConv == CallingConv::X86_FastCall ||
1885 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001886 // fastcc functions can't have varargs.
1887 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001888 }
Evan Cheng25caf632006-05-23 21:06:34 +00001889
Dan Gohman98ca4f22009-08-05 01:29:28 +00001890 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001891}
1892
Dan Gohman475871a2008-07-27 21:46:04 +00001893SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001894X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1895 SDValue StackPtr, SDValue Arg,
1896 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001897 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001898 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001899 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001900 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001901 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001902 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001903 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001904
1905 return DAG.getStore(Chain, dl, Arg, PtrOff,
1906 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001907 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001908}
1909
Bill Wendling64e87322009-01-16 19:25:27 +00001910/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001911/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001912SDValue
1913X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001914 SDValue &OutRetAddr, SDValue Chain,
1915 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001916 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001917 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001918 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001919 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001920
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001921 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001922 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1923 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001924 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001925}
1926
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001927/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001928/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001929static SDValue
1930EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001931 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001932 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001933 // Store the return address to the appropriate stack slot.
1934 if (!FPDiff) return Chain;
1935 // Calculate the new stack slot for the return address.
1936 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001937 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001938 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001939 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001940 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001941 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001942 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001943 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001944 return Chain;
1945}
1946
Dan Gohman98ca4f22009-08-05 01:29:28 +00001947SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001948X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001949 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001950 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001951 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001952 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001953 const SmallVectorImpl<ISD::InputArg> &Ins,
1954 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001955 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001956 MachineFunction &MF = DAG.getMachineFunction();
1957 bool Is64Bit = Subtarget->is64Bit();
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00001958 bool IsWin64 = Subtarget->isTargetWin64();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001959 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001960 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001961
Evan Cheng5f941932010-02-05 02:21:12 +00001962 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001963 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001964 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1965 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001966 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001967
1968 // Sibcalls are automatically detected tailcalls which do not require
1969 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001970 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001971 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001972
1973 if (isTailCall)
1974 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001975 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001976
Chris Lattner29689432010-03-11 00:22:57 +00001977 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1978 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001979
Chris Lattner638402b2007-02-28 07:00:42 +00001980 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00001981 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001982 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001983 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001984
1985 // Allocate shadow area for Win64
1986 if (IsWin64) {
1987 CCInfo.AllocateStack(32, 8);
1988 }
1989
Duncan Sands45907662010-10-31 13:21:44 +00001990 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001991
Chris Lattner423c5f42007-02-28 05:31:48 +00001992 // Get a count of how many bytes are to be pushed on the stack.
1993 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00001994 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00001995 // This is a sibcall. The memory operands are available in caller's
1996 // own caller's stack.
1997 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00001998 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00001999 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002000
Gordon Henriksen86737662008-01-05 16:56:59 +00002001 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002002 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002003 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00002004 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00002005 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
2006 FPDiff = NumBytesCallerPushed - NumBytes;
2007
2008 // Set the delta of movement of the returnaddr stackslot.
2009 // But only set if delta is greater than previous delta.
2010 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2011 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2012 }
2013
Evan Chengf22f9b32010-02-06 03:28:46 +00002014 if (!IsSibcall)
2015 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002016
Dan Gohman475871a2008-07-27 21:46:04 +00002017 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002018 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002019 if (isTailCall && FPDiff)
2020 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2021 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002022
Dan Gohman475871a2008-07-27 21:46:04 +00002023 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2024 SmallVector<SDValue, 8> MemOpChains;
2025 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002026
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002027 // Walk the register/memloc assignments, inserting copies/loads. In the case
2028 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00002029 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2030 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002031 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002032 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002033 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002034 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002035
Chris Lattner423c5f42007-02-28 05:31:48 +00002036 // Promote the value if needed.
2037 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002038 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002039 case CCValAssign::Full: break;
2040 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002041 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002042 break;
2043 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002044 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002045 break;
2046 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002047 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2048 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002049 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002050 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2051 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002052 } else
2053 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2054 break;
2055 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002056 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002057 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002058 case CCValAssign::Indirect: {
2059 // Store the argument.
2060 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002061 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002062 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002063 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002064 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002065 Arg = SpillSlot;
2066 break;
2067 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002068 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002069
Chris Lattner423c5f42007-02-28 05:31:48 +00002070 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002071 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2072 if (isVarArg && IsWin64) {
2073 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2074 // shadow reg if callee is a varargs function.
2075 unsigned ShadowReg = 0;
2076 switch (VA.getLocReg()) {
2077 case X86::XMM0: ShadowReg = X86::RCX; break;
2078 case X86::XMM1: ShadowReg = X86::RDX; break;
2079 case X86::XMM2: ShadowReg = X86::R8; break;
2080 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002081 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002082 if (ShadowReg)
2083 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002084 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002085 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002086 assert(VA.isMemLoc());
2087 if (StackPtr.getNode() == 0)
2088 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2089 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2090 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002091 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002092 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002093
Evan Cheng32fe1032006-05-25 00:59:30 +00002094 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002095 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002096 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002097
Evan Cheng347d5f72006-04-28 21:29:37 +00002098 // Build a sequence of copy-to-reg nodes chained together with token chain
2099 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002100 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002101 // Tail call byval lowering might overwrite argument registers so in case of
2102 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002103 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002104 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002105 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002106 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002107 InFlag = Chain.getValue(1);
2108 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002109
Chris Lattner88e1fd52009-07-09 04:24:46 +00002110 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002111 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2112 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002113 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002114 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2115 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002116 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002117 InFlag);
2118 InFlag = Chain.getValue(1);
2119 } else {
2120 // If we are tail calling and generating PIC/GOT style code load the
2121 // address of the callee into ECX. The value in ecx is used as target of
2122 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2123 // for tail calls on PIC/GOT architectures. Normally we would just put the
2124 // address of GOT into ebx and then call target@PLT. But for tail calls
2125 // ebx would be restored (since ebx is callee saved) before jumping to the
2126 // target@PLT.
2127
2128 // Note: The actual moving to ECX is done further down.
2129 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2130 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2131 !G->getGlobal()->hasProtectedVisibility())
2132 Callee = LowerGlobalAddress(Callee, DAG);
2133 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002134 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002135 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002136 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002137
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002138 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002139 // From AMD64 ABI document:
2140 // For calls that may call functions that use varargs or stdargs
2141 // (prototype-less calls or calls to functions containing ellipsis (...) in
2142 // the declaration) %al is used as hidden argument to specify the number
2143 // of SSE registers used. The contents of %al do not need to match exactly
2144 // the number of registers, but must be an ubound on the number of SSE
2145 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002146
Gordon Henriksen86737662008-01-05 16:56:59 +00002147 // Count the number of XMM registers allocated.
2148 static const unsigned XMMArgRegs[] = {
2149 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2150 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2151 };
2152 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002153 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002154 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002155
Dale Johannesendd64c412009-02-04 00:33:20 +00002156 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002157 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002158 InFlag = Chain.getValue(1);
2159 }
2160
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002161
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002162 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002163 if (isTailCall) {
2164 // Force all the incoming stack arguments to be loaded from the stack
2165 // before any new outgoing arguments are stored to the stack, because the
2166 // outgoing stack slots may alias the incoming argument stack slots, and
2167 // the alias isn't otherwise explicit. This is slightly more conservative
2168 // than necessary, because it means that each store effectively depends
2169 // on every argument instead of just those arguments it would clobber.
2170 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2171
Dan Gohman475871a2008-07-27 21:46:04 +00002172 SmallVector<SDValue, 8> MemOpChains2;
2173 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002174 int FI = 0;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002175 // Do not flag preceding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002176 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002177 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002178 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2179 CCValAssign &VA = ArgLocs[i];
2180 if (VA.isRegLoc())
2181 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002182 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002183 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002184 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002185 // Create frame index.
2186 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002187 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002188 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002189 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002190
Duncan Sands276dcbd2008-03-21 09:14:45 +00002191 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002192 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002193 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002194 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002195 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002196 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002197 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002198
Dan Gohman98ca4f22009-08-05 01:29:28 +00002199 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2200 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002201 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002202 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002203 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002204 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002205 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002206 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002207 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002208 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002209 }
2210 }
2211
2212 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002213 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002214 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002215
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002216 // Copy arguments to their registers.
2217 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002218 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002219 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002220 InFlag = Chain.getValue(1);
2221 }
Dan Gohman475871a2008-07-27 21:46:04 +00002222 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002223
Gordon Henriksen86737662008-01-05 16:56:59 +00002224 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002225 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002226 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002227 }
2228
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002229 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2230 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2231 // In the 64-bit large code model, we have to make all calls
2232 // through a register, since the call instruction's 32-bit
2233 // pc-relative offset may not be large enough to hold the whole
2234 // address.
2235 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002236 // If the callee is a GlobalAddress node (quite common, every direct call
2237 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2238 // it.
2239
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002240 // We should use extra load for direct calls to dllimported functions in
2241 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002242 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002243 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002244 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002245 bool ExtraLoad = false;
2246 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002247
Chris Lattner48a7d022009-07-09 05:02:21 +00002248 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2249 // external symbols most go through the PLT in PIC mode. If the symbol
2250 // has hidden or protected visibility, or if it is static or local, then
2251 // we don't need to use the PLT - we can directly call it.
2252 if (Subtarget->isTargetELF() &&
2253 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002254 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002255 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002256 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002257 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002258 (!Subtarget->getTargetTriple().isMacOSX() ||
2259 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002260 // PC-relative references to external symbols should go through $stub,
2261 // unless we're building with the leopard linker or later, which
2262 // automatically synthesizes these stubs.
2263 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002264 } else if (Subtarget->isPICStyleRIPRel() &&
2265 isa<Function>(GV) &&
2266 cast<Function>(GV)->hasFnAttr(Attribute::NonLazyBind)) {
2267 // If the function is marked as non-lazy, generate an indirect call
2268 // which loads from the GOT directly. This avoids runtime overhead
2269 // at the cost of eager binding (and one extra byte of encoding).
2270 OpFlags = X86II::MO_GOTPCREL;
2271 WrapperKind = X86ISD::WrapperRIP;
2272 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002273 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002274
Devang Patel0d881da2010-07-06 22:08:15 +00002275 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002276 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002277
2278 // Add a wrapper if needed.
2279 if (WrapperKind != ISD::DELETED_NODE)
2280 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2281 // Add extra indirection if needed.
2282 if (ExtraLoad)
2283 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2284 MachinePointerInfo::getGOT(),
2285 false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002286 }
Bill Wendling056292f2008-09-16 21:48:12 +00002287 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002288 unsigned char OpFlags = 0;
2289
Evan Cheng1bf891a2010-12-01 22:59:46 +00002290 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2291 // external symbols should go through the PLT.
2292 if (Subtarget->isTargetELF() &&
2293 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2294 OpFlags = X86II::MO_PLT;
2295 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002296 (!Subtarget->getTargetTriple().isMacOSX() ||
2297 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002298 // PC-relative references to external symbols should go through $stub,
2299 // unless we're building with the leopard linker or later, which
2300 // automatically synthesizes these stubs.
2301 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002302 }
Eric Christopherfd179292009-08-27 18:07:15 +00002303
Chris Lattner48a7d022009-07-09 05:02:21 +00002304 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2305 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002306 }
2307
Chris Lattnerd96d0722007-02-25 06:40:16 +00002308 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002309 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002310 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002311
Evan Chengf22f9b32010-02-06 03:28:46 +00002312 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002313 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2314 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002315 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002316 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002317
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002318 Ops.push_back(Chain);
2319 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002320
Dan Gohman98ca4f22009-08-05 01:29:28 +00002321 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002322 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002323
Gordon Henriksen86737662008-01-05 16:56:59 +00002324 // Add argument registers to the end of the list so that they are known live
2325 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002326 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2327 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2328 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002329
Evan Cheng586ccac2008-03-18 23:36:35 +00002330 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002331 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002332 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2333
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002334 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002335 if (Is64Bit && isVarArg && !IsWin64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002336 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002337
Gabor Greifba36cb52008-08-28 21:40:38 +00002338 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002339 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002340
Dan Gohman98ca4f22009-08-05 01:29:28 +00002341 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002342 // We used to do:
2343 //// If this is the first return lowered for this function, add the regs
2344 //// to the liveout set for the function.
2345 // This isn't right, although it's probably harmless on x86; liveouts
2346 // should be computed from returns not tail calls. Consider a void
2347 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002348 return DAG.getNode(X86ISD::TC_RETURN, dl,
2349 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002350 }
2351
Dale Johannesenace16102009-02-03 19:33:06 +00002352 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002353 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002354
Chris Lattner2d297092006-05-23 18:50:38 +00002355 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002356 unsigned NumBytesForCalleeToPush;
Evan Chengef41ff62011-06-23 17:54:54 +00002357 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002358 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002359 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002360 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002361 // pops the hidden struct pointer, so we have to push it back.
2362 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002363 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002364 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002365 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002366
Gordon Henriksenae636f82008-01-03 16:47:34 +00002367 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002368 if (!IsSibcall) {
2369 Chain = DAG.getCALLSEQ_END(Chain,
2370 DAG.getIntPtrConstant(NumBytes, true),
2371 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2372 true),
2373 InFlag);
2374 InFlag = Chain.getValue(1);
2375 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002376
Chris Lattner3085e152007-02-25 08:59:22 +00002377 // Handle result values, copying them out of physregs into vregs that we
2378 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002379 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2380 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002381}
2382
Evan Cheng25ab6902006-09-08 06:48:29 +00002383
2384//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002385// Fast Calling Convention (tail call) implementation
2386//===----------------------------------------------------------------------===//
2387
2388// Like std call, callee cleans arguments, convention except that ECX is
2389// reserved for storing the tail called function address. Only 2 registers are
2390// free for argument passing (inreg). Tail call optimization is performed
2391// provided:
2392// * tailcallopt is enabled
2393// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002394// On X86_64 architecture with GOT-style position independent code only local
2395// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002396// To keep the stack aligned according to platform abi the function
2397// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2398// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002399// If a tail called function callee has more arguments than the caller the
2400// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002401// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002402// original REtADDR, but before the saved framepointer or the spilled registers
2403// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2404// stack layout:
2405// arg1
2406// arg2
2407// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002408// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002409// move area ]
2410// (possible EBP)
2411// ESI
2412// EDI
2413// local1 ..
2414
2415/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2416/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002417unsigned
2418X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2419 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002420 MachineFunction &MF = DAG.getMachineFunction();
2421 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002422 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002423 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002424 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002425 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002426 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002427 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2428 // Number smaller than 12 so just add the difference.
2429 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2430 } else {
2431 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002432 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002433 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002434 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002435 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002436}
2437
Evan Cheng5f941932010-02-05 02:21:12 +00002438/// MatchingStackOffset - Return true if the given stack call argument is
2439/// already available in the same position (relatively) of the caller's
2440/// incoming argument stack.
2441static
2442bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2443 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2444 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002445 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2446 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002447 if (Arg.getOpcode() == ISD::CopyFromReg) {
2448 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002449 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002450 return false;
2451 MachineInstr *Def = MRI->getVRegDef(VR);
2452 if (!Def)
2453 return false;
2454 if (!Flags.isByVal()) {
2455 if (!TII->isLoadFromStackSlot(Def, FI))
2456 return false;
2457 } else {
2458 unsigned Opcode = Def->getOpcode();
2459 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2460 Def->getOperand(1).isFI()) {
2461 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002462 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002463 } else
2464 return false;
2465 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002466 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2467 if (Flags.isByVal())
2468 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002469 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002470 // define @foo(%struct.X* %A) {
2471 // tail call @bar(%struct.X* byval %A)
2472 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002473 return false;
2474 SDValue Ptr = Ld->getBasePtr();
2475 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2476 if (!FINode)
2477 return false;
2478 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002479 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00002480 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002481 FI = FINode->getIndex();
2482 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00002483 } else
2484 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002485
Evan Cheng4cae1332010-03-05 08:38:04 +00002486 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002487 if (!MFI->isFixedObjectIndex(FI))
2488 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002489 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002490}
2491
Dan Gohman98ca4f22009-08-05 01:29:28 +00002492/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2493/// for tail call optimization. Targets which want to do tail call
2494/// optimization should implement this function.
2495bool
2496X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002497 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002498 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002499 bool isCalleeStructRet,
2500 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002501 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002502 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002503 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002504 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002505 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002506 CalleeCC != CallingConv::C)
2507 return false;
2508
Evan Cheng7096ae42010-01-29 06:45:59 +00002509 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002510 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002511 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002512 CallingConv::ID CallerCC = CallerF->getCallingConv();
2513 bool CCMatch = CallerCC == CalleeCC;
2514
Dan Gohman1797ed52010-02-08 20:27:50 +00002515 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002516 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002517 return true;
2518 return false;
2519 }
2520
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002521 // Look for obvious safe cases to perform tail call optimization that do not
2522 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002523
Evan Cheng2c12cb42010-03-26 16:26:03 +00002524 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2525 // emit a special epilogue.
2526 if (RegInfo->needsStackRealignment(MF))
2527 return false;
2528
Evan Chenga375d472010-03-15 18:54:48 +00002529 // Also avoid sibcall optimization if either caller or callee uses struct
2530 // return semantics.
2531 if (isCalleeStructRet || isCallerStructRet)
2532 return false;
2533
Chad Rosier2416da32011-06-24 21:15:36 +00002534 // An stdcall caller is expected to clean up its arguments; the callee
2535 // isn't going to do that.
2536 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2537 return false;
2538
Chad Rosier871f6642011-05-18 19:59:50 +00002539 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00002540 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00002541 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00002542
2543 // Optimizing for varargs on Win64 is unlikely to be safe without
2544 // additional testing.
2545 if (Subtarget->isTargetWin64())
2546 return false;
2547
Chad Rosier871f6642011-05-18 19:59:50 +00002548 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002549 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2550 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00002551
Chad Rosier871f6642011-05-18 19:59:50 +00002552 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2553 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2554 if (!ArgLocs[i].isRegLoc())
2555 return false;
2556 }
2557
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002558 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2559 // Therefore if it's not used by the call it is not safe to optimize this into
2560 // a sibcall.
2561 bool Unused = false;
2562 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2563 if (!Ins[i].Used) {
2564 Unused = true;
2565 break;
2566 }
2567 }
2568 if (Unused) {
2569 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002570 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
2571 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002572 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002573 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002574 CCValAssign &VA = RVLocs[i];
2575 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2576 return false;
2577 }
2578 }
2579
Evan Cheng13617962010-04-30 01:12:32 +00002580 // If the calling conventions do not match, then we'd better make sure the
2581 // results are returned in the same way as what the caller expects.
2582 if (!CCMatch) {
2583 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00002584 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2585 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002586 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2587
2588 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00002589 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2590 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002591 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2592
2593 if (RVLocs1.size() != RVLocs2.size())
2594 return false;
2595 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2596 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2597 return false;
2598 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2599 return false;
2600 if (RVLocs1[i].isRegLoc()) {
2601 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2602 return false;
2603 } else {
2604 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2605 return false;
2606 }
2607 }
2608 }
2609
Evan Chenga6bff982010-01-30 01:22:00 +00002610 // If the callee takes no arguments then go on to check the results of the
2611 // call.
2612 if (!Outs.empty()) {
2613 // Check if stack adjustment is needed. For now, do not do this if any
2614 // argument is passed on the stack.
2615 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002616 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2617 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002618
2619 // Allocate shadow area for Win64
2620 if (Subtarget->isTargetWin64()) {
2621 CCInfo.AllocateStack(32, 8);
2622 }
2623
Duncan Sands45907662010-10-31 13:21:44 +00002624 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00002625 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00002626 MachineFunction &MF = DAG.getMachineFunction();
2627 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2628 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00002629
2630 // Check if the arguments are already laid out in the right way as
2631 // the caller's fixed stack objects.
2632 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002633 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2634 const X86InstrInfo *TII =
2635 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002636 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2637 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002638 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002639 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002640 if (VA.getLocInfo() == CCValAssign::Indirect)
2641 return false;
2642 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002643 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2644 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002645 return false;
2646 }
2647 }
2648 }
Evan Cheng9c044672010-05-29 01:35:22 +00002649
2650 // If the tailcall address may be in a register, then make sure it's
2651 // possible to register allocate for it. In 32-bit, the call address can
2652 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002653 // callee-saved registers are restored. These happen to be the same
2654 // registers used to pass 'inreg' arguments so watch out for those.
2655 if (!Subtarget->is64Bit() &&
2656 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002657 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002658 unsigned NumInRegs = 0;
2659 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2660 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002661 if (!VA.isRegLoc())
2662 continue;
2663 unsigned Reg = VA.getLocReg();
2664 switch (Reg) {
2665 default: break;
2666 case X86::EAX: case X86::EDX: case X86::ECX:
2667 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002668 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002669 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002670 }
2671 }
2672 }
Evan Chenga6bff982010-01-30 01:22:00 +00002673 }
Evan Chengb1712452010-01-27 06:25:16 +00002674
Evan Cheng86809cc2010-02-03 03:28:02 +00002675 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002676}
2677
Dan Gohman3df24e62008-09-03 23:12:08 +00002678FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002679X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2680 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002681}
2682
2683
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002684//===----------------------------------------------------------------------===//
2685// Other Lowering Hooks
2686//===----------------------------------------------------------------------===//
2687
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002688static bool MayFoldLoad(SDValue Op) {
2689 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2690}
2691
2692static bool MayFoldIntoStore(SDValue Op) {
2693 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2694}
2695
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002696static bool isTargetShuffle(unsigned Opcode) {
2697 switch(Opcode) {
2698 default: return false;
2699 case X86ISD::PSHUFD:
2700 case X86ISD::PSHUFHW:
2701 case X86ISD::PSHUFLW:
2702 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002703 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002704 case X86ISD::SHUFPS:
2705 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002706 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002707 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002708 case X86ISD::MOVLPS:
2709 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002710 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002711 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002712 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002713 case X86ISD::MOVSS:
2714 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002715 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002716 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002717 case X86ISD::VUNPCKLPSY:
2718 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002719 case X86ISD::PUNPCKLWD:
2720 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002721 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002722 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002723 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002724 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002725 case X86ISD::VUNPCKHPSY:
2726 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002727 case X86ISD::PUNPCKHWD:
2728 case X86ISD::PUNPCKHBW:
2729 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002730 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002731 case X86ISD::VPERMILPS:
2732 case X86ISD::VPERMILPSY:
2733 case X86ISD::VPERMILPD:
2734 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002735 return true;
2736 }
2737 return false;
2738}
2739
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002740static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002741 SDValue V1, SelectionDAG &DAG) {
2742 switch(Opc) {
2743 default: llvm_unreachable("Unknown x86 shuffle node");
2744 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002745 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002746 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002747 return DAG.getNode(Opc, dl, VT, V1);
2748 }
2749
2750 return SDValue();
2751}
2752
2753static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002754 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002755 switch(Opc) {
2756 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002757 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002758 case X86ISD::PSHUFHW:
2759 case X86ISD::PSHUFLW:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002760 case X86ISD::VPERMILPS:
2761 case X86ISD::VPERMILPSY:
2762 case X86ISD::VPERMILPD:
2763 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002764 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2765 }
2766
2767 return SDValue();
2768}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002769
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002770static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2771 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2772 switch(Opc) {
2773 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002774 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002775 case X86ISD::SHUFPD:
2776 case X86ISD::SHUFPS:
2777 return DAG.getNode(Opc, dl, VT, V1, V2,
2778 DAG.getConstant(TargetMask, MVT::i8));
2779 }
2780 return SDValue();
2781}
2782
2783static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2784 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2785 switch(Opc) {
2786 default: llvm_unreachable("Unknown x86 shuffle node");
2787 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002788 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002789 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002790 case X86ISD::MOVLPS:
2791 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002792 case X86ISD::MOVSS:
2793 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002794 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002795 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002796 case X86ISD::VUNPCKLPSY:
2797 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002798 case X86ISD::PUNPCKLWD:
2799 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002800 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002801 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002802 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002803 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002804 case X86ISD::VUNPCKHPSY:
2805 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002806 case X86ISD::PUNPCKHWD:
2807 case X86ISD::PUNPCKHBW:
2808 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002809 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002810 return DAG.getNode(Opc, dl, VT, V1, V2);
2811 }
2812 return SDValue();
2813}
2814
Dan Gohmand858e902010-04-17 15:26:15 +00002815SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002816 MachineFunction &MF = DAG.getMachineFunction();
2817 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2818 int ReturnAddrIndex = FuncInfo->getRAIndex();
2819
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002820 if (ReturnAddrIndex == 0) {
2821 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002822 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002823 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002824 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002825 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002826 }
2827
Evan Cheng25ab6902006-09-08 06:48:29 +00002828 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002829}
2830
2831
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002832bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2833 bool hasSymbolicDisplacement) {
2834 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002835 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002836 return false;
2837
2838 // If we don't have a symbolic displacement - we don't have any extra
2839 // restrictions.
2840 if (!hasSymbolicDisplacement)
2841 return true;
2842
2843 // FIXME: Some tweaks might be needed for medium code model.
2844 if (M != CodeModel::Small && M != CodeModel::Kernel)
2845 return false;
2846
2847 // For small code model we assume that latest object is 16MB before end of 31
2848 // bits boundary. We may also accept pretty large negative constants knowing
2849 // that all objects are in the positive half of address space.
2850 if (M == CodeModel::Small && Offset < 16*1024*1024)
2851 return true;
2852
2853 // For kernel code model we know that all object resist in the negative half
2854 // of 32bits address space. We may not accept negative offsets, since they may
2855 // be just off and we may accept pretty large positive ones.
2856 if (M == CodeModel::Kernel && Offset > 0)
2857 return true;
2858
2859 return false;
2860}
2861
Evan Chengef41ff62011-06-23 17:54:54 +00002862/// isCalleePop - Determines whether the callee is required to pop its
2863/// own arguments. Callee pop is necessary to support tail calls.
2864bool X86::isCalleePop(CallingConv::ID CallingConv,
2865 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
2866 if (IsVarArg)
2867 return false;
2868
2869 switch (CallingConv) {
2870 default:
2871 return false;
2872 case CallingConv::X86_StdCall:
2873 return !is64Bit;
2874 case CallingConv::X86_FastCall:
2875 return !is64Bit;
2876 case CallingConv::X86_ThisCall:
2877 return !is64Bit;
2878 case CallingConv::Fast:
2879 return TailCallOpt;
2880 case CallingConv::GHC:
2881 return TailCallOpt;
2882 }
2883}
2884
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002885/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2886/// specific condition code, returning the condition code and the LHS/RHS of the
2887/// comparison to make.
2888static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2889 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002890 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002891 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2892 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2893 // X > -1 -> X == 0, jump !sign.
2894 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002895 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002896 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2897 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002898 return X86::COND_S;
Andrew Trickf6c39412011-03-23 23:11:02 +00002899 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002900 // X < 1 -> X <= 0
2901 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002902 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002903 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002904 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002905
Evan Chengd9558e02006-01-06 00:43:03 +00002906 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002907 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002908 case ISD::SETEQ: return X86::COND_E;
2909 case ISD::SETGT: return X86::COND_G;
2910 case ISD::SETGE: return X86::COND_GE;
2911 case ISD::SETLT: return X86::COND_L;
2912 case ISD::SETLE: return X86::COND_LE;
2913 case ISD::SETNE: return X86::COND_NE;
2914 case ISD::SETULT: return X86::COND_B;
2915 case ISD::SETUGT: return X86::COND_A;
2916 case ISD::SETULE: return X86::COND_BE;
2917 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002918 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002919 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002920
Chris Lattner4c78e022008-12-23 23:42:27 +00002921 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002922
Chris Lattner4c78e022008-12-23 23:42:27 +00002923 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00002924 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
2925 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00002926 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2927 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002928 }
2929
Chris Lattner4c78e022008-12-23 23:42:27 +00002930 switch (SetCCOpcode) {
2931 default: break;
2932 case ISD::SETOLT:
2933 case ISD::SETOLE:
2934 case ISD::SETUGT:
2935 case ISD::SETUGE:
2936 std::swap(LHS, RHS);
2937 break;
2938 }
2939
2940 // On a floating point condition, the flags are set as follows:
2941 // ZF PF CF op
2942 // 0 | 0 | 0 | X > Y
2943 // 0 | 0 | 1 | X < Y
2944 // 1 | 0 | 0 | X == Y
2945 // 1 | 1 | 1 | unordered
2946 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002947 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002948 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002949 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002950 case ISD::SETOLT: // flipped
2951 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002952 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002953 case ISD::SETOLE: // flipped
2954 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002955 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002956 case ISD::SETUGT: // flipped
2957 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002958 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002959 case ISD::SETUGE: // flipped
2960 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002961 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002962 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002963 case ISD::SETNE: return X86::COND_NE;
2964 case ISD::SETUO: return X86::COND_P;
2965 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002966 case ISD::SETOEQ:
2967 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002968 }
Evan Chengd9558e02006-01-06 00:43:03 +00002969}
2970
Evan Cheng4a460802006-01-11 00:33:36 +00002971/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2972/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002973/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002974static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002975 switch (X86CC) {
2976 default:
2977 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002978 case X86::COND_B:
2979 case X86::COND_BE:
2980 case X86::COND_E:
2981 case X86::COND_P:
2982 case X86::COND_A:
2983 case X86::COND_AE:
2984 case X86::COND_NE:
2985 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002986 return true;
2987 }
2988}
2989
Evan Chengeb2f9692009-10-27 19:56:55 +00002990/// isFPImmLegal - Returns true if the target can instruction select the
2991/// specified FP immediate natively. If false, the legalizer will
2992/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00002993bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00002994 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
2995 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
2996 return true;
2997 }
2998 return false;
2999}
3000
Nate Begeman9008ca62009-04-27 18:41:29 +00003001/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3002/// the specified range (L, H].
3003static bool isUndefOrInRange(int Val, int Low, int Hi) {
3004 return (Val < 0) || (Val >= Low && Val < Hi);
3005}
3006
3007/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3008/// specified value.
3009static bool isUndefOrEqual(int Val, int CmpVal) {
3010 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003011 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00003012 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00003013}
3014
Nate Begeman9008ca62009-04-27 18:41:29 +00003015/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3016/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3017/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00003018static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003019 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003020 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003021 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003022 return (Mask[0] < 2 && Mask[1] < 2);
3023 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003024}
3025
Nate Begeman9008ca62009-04-27 18:41:29 +00003026bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003027 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003028 N->getMask(M);
3029 return ::isPSHUFDMask(M, N->getValueType(0));
3030}
Evan Cheng0188ecb2006-03-22 18:59:22 +00003031
Nate Begeman9008ca62009-04-27 18:41:29 +00003032/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3033/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00003034static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003035 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00003036 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003037
Nate Begeman9008ca62009-04-27 18:41:29 +00003038 // Lower quadword copied in order or undef.
3039 for (int i = 0; i != 4; ++i)
3040 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00003041 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003042
Evan Cheng506d3df2006-03-29 23:07:14 +00003043 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003044 for (int i = 4; i != 8; ++i)
3045 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00003046 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003047
Evan Cheng506d3df2006-03-29 23:07:14 +00003048 return true;
3049}
3050
Nate Begeman9008ca62009-04-27 18:41:29 +00003051bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003052 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003053 N->getMask(M);
3054 return ::isPSHUFHWMask(M, N->getValueType(0));
3055}
Evan Cheng506d3df2006-03-29 23:07:14 +00003056
Nate Begeman9008ca62009-04-27 18:41:29 +00003057/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3058/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00003059static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003060 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00003061 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003062
Rafael Espindola15684b22009-04-24 12:40:33 +00003063 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00003064 for (int i = 4; i != 8; ++i)
3065 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00003066 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003067
Rafael Espindola15684b22009-04-24 12:40:33 +00003068 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003069 for (int i = 0; i != 4; ++i)
3070 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00003071 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003072
Rafael Espindola15684b22009-04-24 12:40:33 +00003073 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003074}
3075
Nate Begeman9008ca62009-04-27 18:41:29 +00003076bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003077 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003078 N->getMask(M);
3079 return ::isPSHUFLWMask(M, N->getValueType(0));
3080}
3081
Nate Begemana09008b2009-10-19 02:17:23 +00003082/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3083/// is suitable for input to PALIGNR.
3084static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
3085 bool hasSSSE3) {
3086 int i, e = VT.getVectorNumElements();
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003087 if (VT.getSizeInBits() != 128 && VT.getSizeInBits() != 64)
3088 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003089
Nate Begemana09008b2009-10-19 02:17:23 +00003090 // Do not handle v2i64 / v2f64 shuffles with palignr.
3091 if (e < 4 || !hasSSSE3)
3092 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003093
Nate Begemana09008b2009-10-19 02:17:23 +00003094 for (i = 0; i != e; ++i)
3095 if (Mask[i] >= 0)
3096 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003097
Nate Begemana09008b2009-10-19 02:17:23 +00003098 // All undef, not a palignr.
3099 if (i == e)
3100 return false;
3101
Eli Friedman63f8dde2011-07-25 21:36:45 +00003102 // Make sure we're shifting in the right direction.
3103 if (Mask[i] <= i)
3104 return false;
Nate Begemana09008b2009-10-19 02:17:23 +00003105
3106 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003107
Nate Begemana09008b2009-10-19 02:17:23 +00003108 // Check the rest of the elements to see if they are consecutive.
3109 for (++i; i != e; ++i) {
3110 int m = Mask[i];
Eli Friedman63f8dde2011-07-25 21:36:45 +00003111 if (m >= 0 && m != s+i)
Nate Begemana09008b2009-10-19 02:17:23 +00003112 return false;
3113 }
3114 return true;
3115}
3116
Evan Cheng14aed5e2006-03-24 01:18:28 +00003117/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3118/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00003119static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003120 int NumElems = VT.getVectorNumElements();
3121 if (NumElems != 2 && NumElems != 4)
3122 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003123
Nate Begeman9008ca62009-04-27 18:41:29 +00003124 int Half = NumElems / 2;
3125 for (int i = 0; i < Half; ++i)
3126 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003127 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003128 for (int i = Half; i < NumElems; ++i)
3129 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003130 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003131
Evan Cheng14aed5e2006-03-24 01:18:28 +00003132 return true;
3133}
3134
Nate Begeman9008ca62009-04-27 18:41:29 +00003135bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3136 SmallVector<int, 8> M;
3137 N->getMask(M);
3138 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003139}
3140
Evan Cheng213d2cf2007-05-17 18:45:50 +00003141/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00003142/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
3143/// half elements to come from vector 1 (which would equal the dest.) and
3144/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00003145static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003146 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003147
3148 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00003149 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003150
Nate Begeman9008ca62009-04-27 18:41:29 +00003151 int Half = NumElems / 2;
3152 for (int i = 0; i < Half; ++i)
3153 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003154 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003155 for (int i = Half; i < NumElems; ++i)
3156 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003157 return false;
3158 return true;
3159}
3160
Nate Begeman9008ca62009-04-27 18:41:29 +00003161static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3162 SmallVector<int, 8> M;
3163 N->getMask(M);
3164 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003165}
3166
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003167/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3168/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003169bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003170 EVT VT = N->getValueType(0);
3171 unsigned NumElems = VT.getVectorNumElements();
3172
3173 if (VT.getSizeInBits() != 128)
3174 return false;
3175
3176 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003177 return false;
3178
Evan Cheng2064a2b2006-03-28 06:50:32 +00003179 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003180 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3181 isUndefOrEqual(N->getMaskElt(1), 7) &&
3182 isUndefOrEqual(N->getMaskElt(2), 2) &&
3183 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003184}
3185
Nate Begeman0b10b912009-11-07 23:17:15 +00003186/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3187/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3188/// <2, 3, 2, 3>
3189bool X86::isMOVHLPS_v_undef_Mask(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;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003195
Nate Begeman0b10b912009-11-07 23:17:15 +00003196 if (NumElems != 4)
3197 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003198
Nate Begeman0b10b912009-11-07 23:17:15 +00003199 return isUndefOrEqual(N->getMaskElt(0), 2) &&
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003200 isUndefOrEqual(N->getMaskElt(1), 3) &&
3201 isUndefOrEqual(N->getMaskElt(2), 2) &&
3202 isUndefOrEqual(N->getMaskElt(3), 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003203}
3204
Evan Cheng5ced1d82006-04-06 23:23:56 +00003205/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3206/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003207bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3208 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003209
Evan Cheng5ced1d82006-04-06 23:23:56 +00003210 if (NumElems != 2 && NumElems != 4)
3211 return false;
3212
Evan Chengc5cdff22006-04-07 21:53:05 +00003213 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003214 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003215 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003216
Evan Chengc5cdff22006-04-07 21:53:05 +00003217 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003218 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003219 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003220
3221 return true;
3222}
3223
Nate Begeman0b10b912009-11-07 23:17:15 +00003224/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3225/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3226bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003227 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003228
David Greenea20244d2011-03-02 17:23:43 +00003229 if ((NumElems != 2 && NumElems != 4)
3230 || N->getValueType(0).getSizeInBits() > 128)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003231 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))
Evan Chengc5cdff22006-04-07 21:53:05 +00003235 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003236
Nate Begeman9008ca62009-04-27 18:41:29 +00003237 for (unsigned i = 0; i < NumElems/2; ++i)
3238 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003239 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003240
3241 return true;
3242}
3243
Evan Cheng0038e592006-03-28 00:39:58 +00003244/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3245/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003246static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003247 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003248 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003249
3250 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3251 "Unsupported vector type for unpckh");
3252
3253 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng0038e592006-03-28 00:39:58 +00003254 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003255
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003256 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3257 // independently on 128-bit lanes.
3258 unsigned NumLanes = VT.getSizeInBits()/128;
3259 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003260
3261 unsigned Start = 0;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003262 unsigned End = NumLaneElts;
3263 for (unsigned s = 0; s < NumLanes; ++s) {
3264 for (unsigned i = Start, j = s * NumLaneElts;
David Greenea20244d2011-03-02 17:23:43 +00003265 i != End;
3266 i += 2, ++j) {
3267 int BitI = Mask[i];
3268 int BitI1 = Mask[i+1];
3269 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003270 return false;
David Greenea20244d2011-03-02 17:23:43 +00003271 if (V2IsSplat) {
3272 if (!isUndefOrEqual(BitI1, NumElts))
3273 return false;
3274 } else {
3275 if (!isUndefOrEqual(BitI1, j + NumElts))
3276 return false;
3277 }
Evan Cheng39623da2006-04-20 08:58:49 +00003278 }
David Greenea20244d2011-03-02 17:23:43 +00003279 // Process the next 128 bits.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003280 Start += NumLaneElts;
3281 End += NumLaneElts;
Evan Cheng0038e592006-03-28 00:39:58 +00003282 }
David Greenea20244d2011-03-02 17:23:43 +00003283
Evan Cheng0038e592006-03-28 00:39:58 +00003284 return true;
3285}
3286
Nate Begeman9008ca62009-04-27 18:41:29 +00003287bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3288 SmallVector<int, 8> M;
3289 N->getMask(M);
3290 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003291}
3292
Evan Cheng4fcb9222006-03-28 02:43:26 +00003293/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3294/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003295static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003296 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003297 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003298
3299 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3300 "Unsupported vector type for unpckh");
3301
3302 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003303 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003304
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003305 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3306 // independently on 128-bit lanes.
3307 unsigned NumLanes = VT.getSizeInBits()/128;
3308 unsigned NumLaneElts = NumElts/NumLanes;
3309
3310 unsigned Start = 0;
3311 unsigned End = NumLaneElts;
3312 for (unsigned l = 0; l != NumLanes; ++l) {
3313 for (unsigned i = Start, j = (l*NumLaneElts)+NumLaneElts/2;
3314 i != End; i += 2, ++j) {
3315 int BitI = Mask[i];
3316 int BitI1 = Mask[i+1];
3317 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003318 return false;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003319 if (V2IsSplat) {
3320 if (isUndefOrEqual(BitI1, NumElts))
3321 return false;
3322 } else {
3323 if (!isUndefOrEqual(BitI1, j+NumElts))
3324 return false;
3325 }
Evan Cheng39623da2006-04-20 08:58:49 +00003326 }
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003327 // Process the next 128 bits.
3328 Start += NumLaneElts;
3329 End += NumLaneElts;
Evan Cheng4fcb9222006-03-28 02:43:26 +00003330 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003331 return true;
3332}
3333
Nate Begeman9008ca62009-04-27 18:41:29 +00003334bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3335 SmallVector<int, 8> M;
3336 N->getMask(M);
3337 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003338}
3339
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003340/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3341/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3342/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003343static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003344 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003345 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003346 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003347
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003348 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3349 // independently on 128-bit lanes.
3350 unsigned NumLanes = VT.getSizeInBits() / 128;
3351 unsigned NumLaneElts = NumElems / NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003352
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003353 for (unsigned s = 0; s < NumLanes; ++s) {
3354 for (unsigned i = s * NumLaneElts, j = s * NumLaneElts;
3355 i != NumLaneElts * (s + 1);
David Greenea20244d2011-03-02 17:23:43 +00003356 i += 2, ++j) {
3357 int BitI = Mask[i];
3358 int BitI1 = Mask[i+1];
3359
3360 if (!isUndefOrEqual(BitI, j))
3361 return false;
3362 if (!isUndefOrEqual(BitI1, j))
3363 return false;
3364 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003365 }
David Greenea20244d2011-03-02 17:23:43 +00003366
Rafael Espindola15684b22009-04-24 12:40:33 +00003367 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003368}
3369
Nate Begeman9008ca62009-04-27 18:41:29 +00003370bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3371 SmallVector<int, 8> M;
3372 N->getMask(M);
3373 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3374}
3375
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003376/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3377/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3378/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003379static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003380 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003381 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3382 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003383
Nate Begeman9008ca62009-04-27 18:41:29 +00003384 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3385 int BitI = Mask[i];
3386 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003387 if (!isUndefOrEqual(BitI, j))
3388 return false;
3389 if (!isUndefOrEqual(BitI1, j))
3390 return false;
3391 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003392 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003393}
3394
Nate Begeman9008ca62009-04-27 18:41:29 +00003395bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3396 SmallVector<int, 8> M;
3397 N->getMask(M);
3398 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3399}
3400
Evan Cheng017dcc62006-04-21 01:05:10 +00003401/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3402/// specifies a shuffle of elements that is suitable for input to MOVSS,
3403/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003404static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003405 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003406 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003407
3408 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003409
Nate Begeman9008ca62009-04-27 18:41:29 +00003410 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003411 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003412
Nate Begeman9008ca62009-04-27 18:41:29 +00003413 for (int i = 1; i < NumElts; ++i)
3414 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003415 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003416
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003417 return true;
3418}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003419
Nate Begeman9008ca62009-04-27 18:41:29 +00003420bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3421 SmallVector<int, 8> M;
3422 N->getMask(M);
3423 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003424}
3425
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003426/// isVPERMILPDMask - Return true if the specified VECTOR_SHUFFLE operand
3427/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
3428/// Note that VPERMIL mask matching is different depending whether theunderlying
3429/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3430/// to the same elements of the low, but to the higher half of the source.
3431/// In VPERMILPD the two lanes could be shuffled independently of each other
3432/// with the same restriction that lanes can't be crossed.
3433static bool isVPERMILPDMask(const SmallVectorImpl<int> &Mask, EVT VT,
3434 const X86Subtarget *Subtarget) {
3435 int NumElts = VT.getVectorNumElements();
3436 int NumLanes = VT.getSizeInBits()/128;
3437
3438 if (!Subtarget->hasAVX())
3439 return false;
3440
3441 // Match any permutation of 128-bit vector with 64-bit types
3442 if (NumLanes == 1 && NumElts != 2)
3443 return false;
3444
3445 // Only match 256-bit with 32 types
3446 if (VT.getSizeInBits() == 256 && NumElts != 4)
3447 return false;
3448
3449 // The mask on the high lane is independent of the low. Both can match
3450 // any element in inside its own lane, but can't cross.
3451 int LaneSize = NumElts/NumLanes;
3452 for (int l = 0; l < NumLanes; ++l)
3453 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3454 int LaneStart = l*LaneSize;
3455 if (!isUndefOrInRange(Mask[i], LaneStart, LaneStart+LaneSize))
3456 return false;
3457 }
3458
3459 return true;
3460}
3461
3462/// isVPERMILPSMask - Return true if the specified VECTOR_SHUFFLE operand
3463/// specifies a shuffle of elements that is suitable for input to VPERMILPS*.
3464/// Note that VPERMIL mask matching is different depending whether theunderlying
3465/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3466/// to the same elements of the low, but to the higher half of the source.
3467/// In VPERMILPD the two lanes could be shuffled independently of each other
3468/// with the same restriction that lanes can't be crossed.
3469static bool isVPERMILPSMask(const SmallVectorImpl<int> &Mask, EVT VT,
3470 const X86Subtarget *Subtarget) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003471 unsigned NumElts = VT.getVectorNumElements();
3472 unsigned NumLanes = VT.getSizeInBits()/128;
3473
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003474 if (!Subtarget->hasAVX())
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003475 return false;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003476
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003477 // Match any permutation of 128-bit vector with 32-bit types
3478 if (NumLanes == 1 && NumElts != 4)
3479 return false;
3480
3481 // Only match 256-bit with 32 types
3482 if (VT.getSizeInBits() == 256 && NumElts != 8)
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003483 return false;
3484
3485 // The mask on the high lane should be the same as the low. Actually,
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003486 // they can differ if any of the corresponding index in a lane is undef
3487 // and the other stays in range.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003488 int LaneSize = NumElts/NumLanes;
3489 for (int i = 0; i < LaneSize; ++i) {
3490 int HighElt = i+LaneSize;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003491 if (Mask[i] < 0 && (isUndefOrInRange(Mask[HighElt], LaneSize, NumElts)))
3492 continue;
3493 if (Mask[HighElt] < 0 && (isUndefOrInRange(Mask[i], 0, LaneSize)))
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003494 continue;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003495 if (Mask[HighElt]-Mask[i] != LaneSize)
3496 return false;
3497 }
3498
3499 return true;
3500}
3501
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003502/// getShuffleVPERMILPSImmediate - Return the appropriate immediate to shuffle
3503/// the specified VECTOR_MASK mask with VPERMILPS* instructions.
3504static unsigned getShuffleVPERMILPSImmediate(SDNode *N) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003505 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3506 EVT VT = SVOp->getValueType(0);
3507
3508 int NumElts = VT.getVectorNumElements();
3509 int NumLanes = VT.getSizeInBits()/128;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003510 int LaneSize = NumElts/NumLanes;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003511
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003512 // Although the mask is equal for both lanes do it twice to get the cases
3513 // where a mask will match because the same mask element is undef on the
3514 // first half but valid on the second. This would get pathological cases
3515 // such as: shuffle <u, 0, 1, 2, 4, 4, 5, 6>, which is completely valid.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003516 unsigned Mask = 0;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003517 for (int l = 0; l < NumLanes; ++l) {
3518 for (int i = 0; i < LaneSize; ++i) {
3519 int MaskElt = SVOp->getMaskElt(i+(l*LaneSize));
3520 if (MaskElt < 0)
3521 continue;
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003522 if (MaskElt >= LaneSize)
3523 MaskElt -= LaneSize;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003524 Mask |= MaskElt << (i*2);
3525 }
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003526 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003527
3528 return Mask;
3529}
3530
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003531/// getShuffleVPERMILPDImmediate - Return the appropriate immediate to shuffle
3532/// the specified VECTOR_MASK mask with VPERMILPD* instructions.
3533static unsigned getShuffleVPERMILPDImmediate(SDNode *N) {
3534 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3535 EVT VT = SVOp->getValueType(0);
3536
3537 int NumElts = VT.getVectorNumElements();
3538 int NumLanes = VT.getSizeInBits()/128;
3539
3540 unsigned Mask = 0;
3541 int LaneSize = NumElts/NumLanes;
3542 for (int l = 0; l < NumLanes; ++l)
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003543 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3544 int MaskElt = SVOp->getMaskElt(i);
3545 if (MaskElt < 0)
3546 continue;
3547 Mask |= (MaskElt-l*LaneSize) << i;
3548 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003549
3550 return Mask;
3551}
3552
Evan Cheng017dcc62006-04-21 01:05:10 +00003553/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3554/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003555/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003556static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003557 bool V2IsSplat = false, bool V2IsUndef = false) {
3558 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003559 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003560 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003561
Nate Begeman9008ca62009-04-27 18:41:29 +00003562 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003563 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003564
Nate Begeman9008ca62009-04-27 18:41:29 +00003565 for (int i = 1; i < NumOps; ++i)
3566 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3567 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3568 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003569 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003570
Evan Cheng39623da2006-04-20 08:58:49 +00003571 return true;
3572}
3573
Nate Begeman9008ca62009-04-27 18:41:29 +00003574static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003575 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003576 SmallVector<int, 8> M;
3577 N->getMask(M);
3578 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003579}
3580
Evan Chengd9539472006-04-14 21:59:03 +00003581/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3582/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003583/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
3584bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N,
3585 const X86Subtarget *Subtarget) {
3586 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003587 return false;
3588
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003589 // The second vector must be undef
3590 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3591 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003592
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003593 EVT VT = N->getValueType(0);
3594 unsigned NumElems = VT.getVectorNumElements();
3595
3596 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3597 (VT.getSizeInBits() == 256 && NumElems != 8))
3598 return false;
3599
3600 // "i+1" is the value the indexed mask element must have
3601 for (unsigned i = 0; i < NumElems; i += 2)
3602 if (!isUndefOrEqual(N->getMaskElt(i), i+1) ||
3603 !isUndefOrEqual(N->getMaskElt(i+1), i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00003604 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003605
3606 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003607}
3608
3609/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3610/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003611/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
3612bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N,
3613 const X86Subtarget *Subtarget) {
3614 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003615 return false;
3616
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003617 // The second vector must be undef
3618 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3619 return false;
3620
3621 EVT VT = N->getValueType(0);
3622 unsigned NumElems = VT.getVectorNumElements();
3623
3624 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3625 (VT.getSizeInBits() == 256 && NumElems != 8))
3626 return false;
3627
3628 // "i" is the value the indexed mask element must have
3629 for (unsigned i = 0; i < NumElems; i += 2)
3630 if (!isUndefOrEqual(N->getMaskElt(i), i) ||
3631 !isUndefOrEqual(N->getMaskElt(i+1), i))
Nate Begeman9008ca62009-04-27 18:41:29 +00003632 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003633
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003634 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003635}
3636
Evan Cheng0b457f02008-09-25 20:50:48 +00003637/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3638/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003639bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3640 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003641
Nate Begeman9008ca62009-04-27 18:41:29 +00003642 for (int i = 0; i < e; ++i)
3643 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003644 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003645 for (int i = 0; i < e; ++i)
3646 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003647 return false;
3648 return true;
3649}
3650
David Greenec38a03e2011-02-03 15:50:00 +00003651/// isVEXTRACTF128Index - Return true if the specified
3652/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3653/// suitable for input to VEXTRACTF128.
3654bool X86::isVEXTRACTF128Index(SDNode *N) {
3655 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3656 return false;
3657
3658 // The index should be aligned on a 128-bit boundary.
3659 uint64_t Index =
3660 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3661
3662 unsigned VL = N->getValueType(0).getVectorNumElements();
3663 unsigned VBits = N->getValueType(0).getSizeInBits();
3664 unsigned ElSize = VBits / VL;
3665 bool Result = (Index * ElSize) % 128 == 0;
3666
3667 return Result;
3668}
3669
David Greeneccacdc12011-02-04 16:08:29 +00003670/// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
3671/// operand specifies a subvector insert that is suitable for input to
3672/// VINSERTF128.
3673bool X86::isVINSERTF128Index(SDNode *N) {
3674 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3675 return false;
3676
3677 // The index should be aligned on a 128-bit boundary.
3678 uint64_t Index =
3679 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3680
3681 unsigned VL = N->getValueType(0).getVectorNumElements();
3682 unsigned VBits = N->getValueType(0).getSizeInBits();
3683 unsigned ElSize = VBits / VL;
3684 bool Result = (Index * ElSize) % 128 == 0;
3685
3686 return Result;
3687}
3688
Evan Cheng63d33002006-03-22 08:01:21 +00003689/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003690/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003691unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003692 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3693 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3694
Evan Chengb9df0ca2006-03-22 02:53:00 +00003695 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3696 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003697 for (int i = 0; i < NumOperands; ++i) {
3698 int Val = SVOp->getMaskElt(NumOperands-i-1);
3699 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003700 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003701 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003702 if (i != NumOperands - 1)
3703 Mask <<= Shift;
3704 }
Evan Cheng63d33002006-03-22 08:01:21 +00003705 return Mask;
3706}
3707
Evan Cheng506d3df2006-03-29 23:07:14 +00003708/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003709/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003710unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003711 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003712 unsigned Mask = 0;
3713 // 8 nodes, but we only care about the last 4.
3714 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003715 int Val = SVOp->getMaskElt(i);
3716 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003717 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003718 if (i != 4)
3719 Mask <<= 2;
3720 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003721 return Mask;
3722}
3723
3724/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003725/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003726unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003727 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003728 unsigned Mask = 0;
3729 // 8 nodes, but we only care about the first 4.
3730 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003731 int Val = SVOp->getMaskElt(i);
3732 if (Val >= 0)
3733 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003734 if (i != 0)
3735 Mask <<= 2;
3736 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003737 return Mask;
3738}
3739
Nate Begemana09008b2009-10-19 02:17:23 +00003740/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3741/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3742unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3743 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3744 EVT VVT = N->getValueType(0);
3745 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3746 int Val = 0;
3747
3748 unsigned i, e;
3749 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3750 Val = SVOp->getMaskElt(i);
3751 if (Val >= 0)
3752 break;
3753 }
Eli Friedman63f8dde2011-07-25 21:36:45 +00003754 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00003755 return (Val - i) * EltSize;
3756}
3757
David Greenec38a03e2011-02-03 15:50:00 +00003758/// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
3759/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
3760/// instructions.
3761unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
3762 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3763 llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
3764
3765 uint64_t Index =
3766 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3767
3768 EVT VecVT = N->getOperand(0).getValueType();
3769 EVT ElVT = VecVT.getVectorElementType();
3770
3771 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00003772 return Index / NumElemsPerChunk;
3773}
3774
David Greeneccacdc12011-02-04 16:08:29 +00003775/// getInsertVINSERTF128Immediate - Return the appropriate immediate
3776/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
3777/// instructions.
3778unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
3779 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3780 llvm_unreachable("Illegal insert subvector for VINSERTF128");
3781
3782 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00003783 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00003784
3785 EVT VecVT = N->getValueType(0);
3786 EVT ElVT = VecVT.getVectorElementType();
3787
3788 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00003789 return Index / NumElemsPerChunk;
3790}
3791
Evan Cheng37b73872009-07-30 08:33:02 +00003792/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3793/// constant +0.0.
3794bool X86::isZeroNode(SDValue Elt) {
3795 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003796 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003797 (isa<ConstantFPSDNode>(Elt) &&
3798 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3799}
3800
Nate Begeman9008ca62009-04-27 18:41:29 +00003801/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3802/// their permute mask.
3803static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3804 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003805 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003806 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003807 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003808
Nate Begeman5a5ca152009-04-29 05:20:52 +00003809 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003810 int idx = SVOp->getMaskElt(i);
3811 if (idx < 0)
3812 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003813 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003814 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003815 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003816 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003817 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003818 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3819 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003820}
3821
Evan Cheng779ccea2007-12-07 21:30:01 +00003822/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3823/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003824static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003825 unsigned NumElems = VT.getVectorNumElements();
3826 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003827 int idx = Mask[i];
3828 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003829 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003830 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003831 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003832 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003833 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003834 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003835}
3836
Evan Cheng533a0aa2006-04-19 20:35:22 +00003837/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3838/// match movhlps. The lower half elements should come from upper half of
3839/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003840/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003841static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3842 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003843 return false;
3844 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003845 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003846 return false;
3847 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003848 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003849 return false;
3850 return true;
3851}
3852
Evan Cheng5ced1d82006-04-06 23:23:56 +00003853/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003854/// is promoted to a vector. It also returns the LoadSDNode by reference if
3855/// required.
3856static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003857 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3858 return false;
3859 N = N->getOperand(0).getNode();
3860 if (!ISD::isNON_EXTLoad(N))
3861 return false;
3862 if (LD)
3863 *LD = cast<LoadSDNode>(N);
3864 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003865}
3866
Evan Cheng533a0aa2006-04-19 20:35:22 +00003867/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3868/// match movlp{s|d}. The lower half elements should come from lower half of
3869/// V1 (and in order), and the upper half elements should come from the upper
3870/// half of V2 (and in order). And since V1 will become the source of the
3871/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003872static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3873 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003874 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003875 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003876 // Is V2 is a vector load, don't do this transformation. We will try to use
3877 // load folding shufps op.
3878 if (ISD::isNON_EXTLoad(V2))
3879 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003880
Nate Begeman5a5ca152009-04-29 05:20:52 +00003881 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003882
Evan Cheng533a0aa2006-04-19 20:35:22 +00003883 if (NumElems != 2 && NumElems != 4)
3884 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003885 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003886 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003887 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003888 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003889 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003890 return false;
3891 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003892}
3893
Evan Cheng39623da2006-04-20 08:58:49 +00003894/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3895/// all the same.
3896static bool isSplatVector(SDNode *N) {
3897 if (N->getOpcode() != ISD::BUILD_VECTOR)
3898 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003899
Dan Gohman475871a2008-07-27 21:46:04 +00003900 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003901 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3902 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003903 return false;
3904 return true;
3905}
3906
Evan Cheng213d2cf2007-05-17 18:45:50 +00003907/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003908/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003909/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003910static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003911 SDValue V1 = N->getOperand(0);
3912 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003913 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3914 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003915 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003916 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003917 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003918 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3919 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003920 if (Opc != ISD::BUILD_VECTOR ||
3921 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003922 return false;
3923 } else if (Idx >= 0) {
3924 unsigned Opc = V1.getOpcode();
3925 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3926 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003927 if (Opc != ISD::BUILD_VECTOR ||
3928 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003929 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003930 }
3931 }
3932 return true;
3933}
3934
3935/// getZeroVector - Returns a vector of specified type with all zero elements.
3936///
Owen Andersone50ed302009-08-10 22:56:29 +00003937static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003938 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003939 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003940
Dale Johannesen0488fb62010-09-30 23:57:10 +00003941 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003942 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003943 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003944 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003945 if (HasSSE2) { // SSE2
3946 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3947 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3948 } else { // SSE1
3949 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3950 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3951 }
3952 } else if (VT.getSizeInBits() == 256) { // AVX
3953 // 256-bit logic and arithmetic instructions in AVX are
3954 // all floating-point, no support for integer ops. Default
3955 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003956 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003957 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3958 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003959 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003960 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003961}
3962
Chris Lattner8a594482007-11-25 00:24:49 +00003963/// getOnesVector - Returns a vector of specified type with all bits set.
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00003964/// Always build ones vectors as <4 x i32>. For 256-bit types, use two
3965/// <4 x i32> inserted in a <8 x i32> appropriately. Then bitcast to their
3966/// original type, ensuring they get CSE'd.
Owen Andersone50ed302009-08-10 22:56:29 +00003967static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003968 assert(VT.isVector() && "Expected a vector type");
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003969 assert((VT.is128BitVector() || VT.is256BitVector())
3970 && "Expected a 128-bit or 256-bit vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003971
Owen Anderson825b72b2009-08-11 20:47:22 +00003972 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00003973 SDValue Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
3974 Cst, Cst, Cst, Cst);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003975
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003976 if (VT.is256BitVector()) {
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00003977 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, MVT::v8i32),
3978 Vec, DAG.getConstant(0, MVT::i32), DAG, dl);
3979 Vec = Insert128BitVector(InsV, Vec,
3980 DAG.getConstant(4 /* NumElems/2 */, MVT::i32), DAG, dl);
3981 }
3982
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003983 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00003984}
3985
Evan Cheng39623da2006-04-20 08:58:49 +00003986/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
3987/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00003988static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003989 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003990 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003991
Evan Cheng39623da2006-04-20 08:58:49 +00003992 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003993 SmallVector<int, 8> MaskVec;
3994 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00003995
Nate Begeman5a5ca152009-04-29 05:20:52 +00003996 for (unsigned i = 0; i != NumElems; ++i) {
3997 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003998 MaskVec[i] = NumElems;
3999 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00004000 }
Evan Cheng39623da2006-04-20 08:58:49 +00004001 }
Evan Cheng39623da2006-04-20 08:58:49 +00004002 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00004003 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
4004 SVOp->getOperand(1), &MaskVec[0]);
4005 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00004006}
4007
Evan Cheng017dcc62006-04-21 01:05:10 +00004008/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4009/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00004010static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004011 SDValue V2) {
4012 unsigned NumElems = VT.getVectorNumElements();
4013 SmallVector<int, 8> Mask;
4014 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004015 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004016 Mask.push_back(i);
4017 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004018}
4019
Nate Begeman9008ca62009-04-27 18:41:29 +00004020/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004021static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004022 SDValue V2) {
4023 unsigned NumElems = VT.getVectorNumElements();
4024 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004025 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004026 Mask.push_back(i);
4027 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004028 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004029 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004030}
4031
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004032/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004033static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004034 SDValue V2) {
4035 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00004036 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00004037 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00004038 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004039 Mask.push_back(i + Half);
4040 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004041 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004042 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004043}
4044
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004045// PromoteSplatv8v16 - All i16 and i8 vector types can't be used directly by
4046// a generic shuffle instruction because the target has no such instructions.
4047// Generate shuffles which repeat i16 and i8 several times until they can be
4048// represented by v4f32 and then be manipulated by target suported shuffles.
4049static SDValue PromoteSplatv8v16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4050 EVT VT = V.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004051 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004052 DebugLoc dl = V.getDebugLoc();
Rafael Espindola15684b22009-04-24 12:40:33 +00004053
Nate Begeman9008ca62009-04-27 18:41:29 +00004054 while (NumElems > 4) {
4055 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004056 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004057 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004058 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004059 EltNo -= NumElems/2;
4060 }
4061 NumElems >>= 1;
4062 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004063 return V;
4064}
Eric Christopherfd179292009-08-27 18:07:15 +00004065
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004066/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4067static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4068 EVT VT = V.getValueType();
4069 DebugLoc dl = V.getDebugLoc();
4070 assert((VT.getSizeInBits() == 128 || VT.getSizeInBits() == 256)
4071 && "Vector size not supported");
4072
4073 bool Is128 = VT.getSizeInBits() == 128;
4074 EVT NVT = Is128 ? MVT::v4f32 : MVT::v8f32;
4075 V = DAG.getNode(ISD::BITCAST, dl, NVT, V);
4076
4077 if (Is128) {
4078 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4079 V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
4080 } else {
4081 // The second half of indicies refer to the higher part, which is a
4082 // duplication of the lower one. This makes this shuffle a perfect match
4083 // for the VPERM instruction.
4084 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4085 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4086 V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
4087 }
4088
4089 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4090}
4091
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00004092/// PromoteVectorToScalarSplat - Since there's no native support for
4093/// scalar_to_vector for 256-bit AVX, a 128-bit scalar_to_vector +
4094/// INSERT_SUBVECTOR is generated. Recognize this idiom and do the
4095/// shuffle before the insertion, this yields less instructions in the end.
4096static SDValue PromoteVectorToScalarSplat(ShuffleVectorSDNode *SV,
4097 SelectionDAG &DAG) {
4098 EVT SrcVT = SV->getValueType(0);
4099 SDValue V1 = SV->getOperand(0);
4100 DebugLoc dl = SV->getDebugLoc();
4101 int NumElems = SrcVT.getVectorNumElements();
4102
4103 assert(SrcVT.is256BitVector() && "unknown howto handle vector type");
4104
4105 SmallVector<int, 4> Mask;
4106 for (int i = 0; i < NumElems/2; ++i)
4107 Mask.push_back(SV->getMaskElt(i));
4108
4109 EVT SVT = EVT::getVectorVT(*DAG.getContext(), SrcVT.getVectorElementType(),
4110 NumElems/2);
4111 SDValue SV1 = DAG.getVectorShuffle(SVT, dl, V1.getOperand(1),
4112 DAG.getUNDEF(SVT), &Mask[0]);
4113 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), SV1,
4114 DAG.getConstant(0, MVT::i32), DAG, dl);
4115
4116 return Insert128BitVector(InsV, SV1,
4117 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4118}
4119
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004120/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32 and
4121/// v8i32, v16i16 or v32i8 to v8f32.
4122static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4123 EVT SrcVT = SV->getValueType(0);
4124 SDValue V1 = SV->getOperand(0);
4125 DebugLoc dl = SV->getDebugLoc();
4126
4127 int EltNo = SV->getSplatIndex();
4128 int NumElems = SrcVT.getVectorNumElements();
4129 unsigned Size = SrcVT.getSizeInBits();
4130
4131 // Extract the 128-bit part containing the splat element and update
4132 // the splat element index when it refers to the higher register.
4133 if (Size == 256) {
4134 unsigned Idx = (EltNo > NumElems/2) ? NumElems/2 : 0;
4135 V1 = Extract128BitVector(V1, DAG.getConstant(Idx, MVT::i32), DAG, dl);
4136 if (Idx > 0)
4137 EltNo -= NumElems/2;
4138 }
4139
4140 // Make this 128-bit vector duplicate i8 and i16 elements
4141 if (NumElems > 4)
4142 V1 = PromoteSplatv8v16(V1, DAG, EltNo);
4143
4144 // Recreate the 256-bit vector and place the same 128-bit vector
4145 // into the low and high part. This is necessary because we want
4146 // to use VPERM to shuffle the v8f32 vector, and VPERM only shuffles
4147 // inside each separate v4f32 lane.
4148 if (Size == 256) {
4149 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), V1,
4150 DAG.getConstant(0, MVT::i32), DAG, dl);
4151 V1 = Insert128BitVector(InsV, V1,
4152 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4153 }
4154
4155 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004156}
4157
Evan Chengba05f722006-04-21 23:03:30 +00004158/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004159/// vector of zero or undef vector. This produces a shuffle where the low
4160/// element of V2 is swizzled into the zero/undef vector, landing at element
4161/// 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 +00004162static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00004163 bool isZero, bool HasSSE2,
4164 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004165 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00004166 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00004167 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
4168 unsigned NumElems = VT.getVectorNumElements();
4169 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004170 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004171 // If this is the insertion idx, put the low elt of V2 here.
4172 MaskVec.push_back(i == Idx ? NumElems : i);
4173 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004174}
4175
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004176/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4177/// element of the result of the vector shuffle.
Benjamin Kramer050db522011-03-26 12:38:19 +00004178static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
4179 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004180 if (Depth == 6)
4181 return SDValue(); // Limit search depth.
4182
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004183 SDValue V = SDValue(N, 0);
4184 EVT VT = V.getValueType();
4185 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004186
4187 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4188 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4189 Index = SV->getMaskElt(Index);
4190
4191 if (Index < 0)
4192 return DAG.getUNDEF(VT.getVectorElementType());
4193
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004194 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004195 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004196 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00004197 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004198
4199 // Recurse into target specific vector shuffles to find scalars.
4200 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004201 int NumElems = VT.getVectorNumElements();
4202 SmallVector<unsigned, 16> ShuffleMask;
4203 SDValue ImmN;
4204
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004205 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004206 case X86ISD::SHUFPS:
4207 case X86ISD::SHUFPD:
4208 ImmN = N->getOperand(N->getNumOperands()-1);
4209 DecodeSHUFPSMask(NumElems,
4210 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4211 ShuffleMask);
4212 break;
4213 case X86ISD::PUNPCKHBW:
4214 case X86ISD::PUNPCKHWD:
4215 case X86ISD::PUNPCKHDQ:
4216 case X86ISD::PUNPCKHQDQ:
4217 DecodePUNPCKHMask(NumElems, ShuffleMask);
4218 break;
4219 case X86ISD::UNPCKHPS:
4220 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00004221 case X86ISD::VUNPCKHPSY:
4222 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004223 DecodeUNPCKHPMask(NumElems, ShuffleMask);
4224 break;
4225 case X86ISD::PUNPCKLBW:
4226 case X86ISD::PUNPCKLWD:
4227 case X86ISD::PUNPCKLDQ:
4228 case X86ISD::PUNPCKLQDQ:
David Greenec4db4e52011-02-28 19:06:56 +00004229 DecodePUNPCKLMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004230 break;
4231 case X86ISD::UNPCKLPS:
4232 case X86ISD::UNPCKLPD:
David Greenec4db4e52011-02-28 19:06:56 +00004233 case X86ISD::VUNPCKLPSY:
4234 case X86ISD::VUNPCKLPDY:
4235 DecodeUNPCKLPMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004236 break;
4237 case X86ISD::MOVHLPS:
4238 DecodeMOVHLPSMask(NumElems, ShuffleMask);
4239 break;
4240 case X86ISD::MOVLHPS:
4241 DecodeMOVLHPSMask(NumElems, ShuffleMask);
4242 break;
4243 case X86ISD::PSHUFD:
4244 ImmN = N->getOperand(N->getNumOperands()-1);
4245 DecodePSHUFMask(NumElems,
4246 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4247 ShuffleMask);
4248 break;
4249 case X86ISD::PSHUFHW:
4250 ImmN = N->getOperand(N->getNumOperands()-1);
4251 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4252 ShuffleMask);
4253 break;
4254 case X86ISD::PSHUFLW:
4255 ImmN = N->getOperand(N->getNumOperands()-1);
4256 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4257 ShuffleMask);
4258 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004259 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004260 case X86ISD::MOVSD: {
4261 // The index 0 always comes from the first element of the second source,
4262 // this is why MOVSS and MOVSD are used in the first place. The other
4263 // elements come from the other positions of the first source vector.
4264 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004265 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
4266 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004267 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004268 case X86ISD::VPERMILPS:
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004269 ImmN = N->getOperand(N->getNumOperands()-1);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004270 DecodeVPERMILPSMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004271 ShuffleMask);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004272 break;
4273 case X86ISD::VPERMILPSY:
4274 ImmN = N->getOperand(N->getNumOperands()-1);
4275 DecodeVPERMILPSMask(8, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4276 ShuffleMask);
4277 break;
4278 case X86ISD::VPERMILPD:
4279 ImmN = N->getOperand(N->getNumOperands()-1);
4280 DecodeVPERMILPDMask(2, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4281 ShuffleMask);
4282 break;
4283 case X86ISD::VPERMILPDY:
4284 ImmN = N->getOperand(N->getNumOperands()-1);
4285 DecodeVPERMILPDMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4286 ShuffleMask);
4287 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004288 default:
4289 assert("not implemented for target shuffle node");
4290 return SDValue();
4291 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004292
4293 Index = ShuffleMask[Index];
4294 if (Index < 0)
4295 return DAG.getUNDEF(VT.getVectorElementType());
4296
4297 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
4298 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
4299 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004300 }
4301
4302 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004303 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004304 V = V.getOperand(0);
4305 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004306 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004307
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004308 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004309 return SDValue();
4310 }
4311
4312 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4313 return (Index == 0) ? V.getOperand(0)
4314 : DAG.getUNDEF(VT.getVectorElementType());
4315
4316 if (V.getOpcode() == ISD::BUILD_VECTOR)
4317 return V.getOperand(Index);
4318
4319 return SDValue();
4320}
4321
4322/// getNumOfConsecutiveZeros - Return the number of elements of a vector
4323/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00004324/// search can start in two different directions, from left or right.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004325static
4326unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
4327 bool ZerosFromLeft, SelectionDAG &DAG) {
4328 int i = 0;
4329
4330 while (i < NumElems) {
4331 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004332 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004333 if (!(Elt.getNode() &&
4334 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4335 break;
4336 ++i;
4337 }
4338
4339 return i;
4340}
4341
4342/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
4343/// MaskE correspond consecutively to elements from one of the vector operands,
4344/// starting from its index OpIdx. Also tell OpNum which source vector operand.
4345static
4346bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
4347 int OpIdx, int NumElems, unsigned &OpNum) {
4348 bool SeenV1 = false;
4349 bool SeenV2 = false;
4350
4351 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
4352 int Idx = SVOp->getMaskElt(i);
4353 // Ignore undef indicies
4354 if (Idx < 0)
4355 continue;
4356
4357 if (Idx < NumElems)
4358 SeenV1 = true;
4359 else
4360 SeenV2 = true;
4361
4362 // Only accept consecutive elements from the same vector
4363 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4364 return false;
4365 }
4366
4367 OpNum = SeenV1 ? 0 : 1;
4368 return true;
4369}
4370
4371/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4372/// logical left shift of a vector.
4373static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4374 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4375 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4376 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4377 false /* check zeros from right */, DAG);
4378 unsigned OpSrc;
4379
4380 if (!NumZeros)
4381 return false;
4382
4383 // Considering the elements in the mask that are not consecutive zeros,
4384 // check if they consecutively come from only one of the source vectors.
4385 //
4386 // V1 = {X, A, B, C} 0
4387 // \ \ \ /
4388 // vector_shuffle V1, V2 <1, 2, 3, X>
4389 //
4390 if (!isShuffleMaskConsecutive(SVOp,
4391 0, // Mask Start Index
4392 NumElems-NumZeros-1, // Mask End Index
4393 NumZeros, // Where to start looking in the src vector
4394 NumElems, // Number of elements in vector
4395 OpSrc)) // Which source operand ?
4396 return false;
4397
4398 isLeft = false;
4399 ShAmt = NumZeros;
4400 ShVal = SVOp->getOperand(OpSrc);
4401 return true;
4402}
4403
4404/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4405/// logical left shift of a vector.
4406static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4407 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4408 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4409 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4410 true /* check zeros from left */, DAG);
4411 unsigned OpSrc;
4412
4413 if (!NumZeros)
4414 return false;
4415
4416 // Considering the elements in the mask that are not consecutive zeros,
4417 // check if they consecutively come from only one of the source vectors.
4418 //
4419 // 0 { A, B, X, X } = V2
4420 // / \ / /
4421 // vector_shuffle V1, V2 <X, X, 4, 5>
4422 //
4423 if (!isShuffleMaskConsecutive(SVOp,
4424 NumZeros, // Mask Start Index
4425 NumElems-1, // Mask End Index
4426 0, // Where to start looking in the src vector
4427 NumElems, // Number of elements in vector
4428 OpSrc)) // Which source operand ?
4429 return false;
4430
4431 isLeft = true;
4432 ShAmt = NumZeros;
4433 ShVal = SVOp->getOperand(OpSrc);
4434 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004435}
4436
4437/// isVectorShift - Returns true if the shuffle can be implemented as a
4438/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004439static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004440 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004441 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4442 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4443 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004444
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004445 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00004446}
4447
Evan Chengc78d3b42006-04-24 18:01:45 +00004448/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4449///
Dan Gohman475871a2008-07-27 21:46:04 +00004450static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00004451 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00004452 SelectionDAG &DAG,
4453 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004454 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00004455 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004456
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004457 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004458 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004459 bool First = true;
4460 for (unsigned i = 0; i < 16; ++i) {
4461 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4462 if (ThisIsNonZero && First) {
4463 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004464 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004465 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004466 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004467 First = false;
4468 }
4469
4470 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00004471 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004472 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4473 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004474 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004475 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00004476 }
4477 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004478 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4479 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4480 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00004481 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004482 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00004483 } else
4484 ThisElt = LastElt;
4485
Gabor Greifba36cb52008-08-28 21:40:38 +00004486 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00004487 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00004488 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00004489 }
4490 }
4491
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004492 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00004493}
4494
Bill Wendlinga348c562007-03-22 18:42:45 +00004495/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00004496///
Dan Gohman475871a2008-07-27 21:46:04 +00004497static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00004498 unsigned NumNonZero, unsigned NumZero,
4499 SelectionDAG &DAG,
4500 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004501 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00004502 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004503
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004504 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004505 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004506 bool First = true;
4507 for (unsigned i = 0; i < 8; ++i) {
4508 bool isNonZero = (NonZeros & (1 << i)) != 0;
4509 if (isNonZero) {
4510 if (First) {
4511 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004512 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004513 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004514 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004515 First = false;
4516 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004517 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004518 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00004519 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00004520 }
4521 }
4522
4523 return V;
4524}
4525
Evan Chengf26ffe92008-05-29 08:22:04 +00004526/// getVShift - Return a vector logical shift node.
4527///
Owen Andersone50ed302009-08-10 22:56:29 +00004528static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00004529 unsigned NumBits, SelectionDAG &DAG,
4530 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004531 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00004532 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004533 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4534 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004535 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00004536 DAG.getConstant(NumBits,
4537 TLI.getShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00004538}
4539
Dan Gohman475871a2008-07-27 21:46:04 +00004540SDValue
Evan Chengc3630942009-12-09 21:00:30 +00004541X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00004542 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00004543
Evan Chengc3630942009-12-09 21:00:30 +00004544 // Check if the scalar load can be widened into a vector load. And if
4545 // the address is "base + cst" see if the cst can be "absorbed" into
4546 // the shuffle mask.
4547 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4548 SDValue Ptr = LD->getBasePtr();
4549 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4550 return SDValue();
4551 EVT PVT = LD->getValueType(0);
4552 if (PVT != MVT::i32 && PVT != MVT::f32)
4553 return SDValue();
4554
4555 int FI = -1;
4556 int64_t Offset = 0;
4557 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4558 FI = FINode->getIndex();
4559 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00004560 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00004561 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4562 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4563 Offset = Ptr.getConstantOperandVal(1);
4564 Ptr = Ptr.getOperand(0);
4565 } else {
4566 return SDValue();
4567 }
4568
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004569 // FIXME: 256-bit vector instructions don't require a strict alignment,
4570 // improve this code to support it better.
4571 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00004572 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004573 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00004574 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004575 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00004576 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004577 // Can't change the alignment. FIXME: It's possible to compute
4578 // the exact stack offset and reference FI + adjust offset instead.
4579 // If someone *really* cares about this. That's the way to implement it.
4580 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004581 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004582 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00004583 }
4584 }
4585
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004586 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00004587 // Ptr + (Offset & ~15).
4588 if (Offset < 0)
4589 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004590 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00004591 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004592 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00004593 if (StartOffset)
4594 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4595 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4596
4597 int EltNo = (Offset - StartOffset) >> 2;
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004598 int NumElems = VT.getVectorNumElements();
4599
4600 EVT CanonVT = VT.getSizeInBits() == 128 ? MVT::v4i32 : MVT::v8i32;
4601 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
4602 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00004603 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004604 false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004605
4606 // Canonicalize it to a v4i32 or v8i32 shuffle.
4607 SmallVector<int, 8> Mask;
4608 for (int i = 0; i < NumElems; ++i)
4609 Mask.push_back(EltNo);
4610
4611 V1 = DAG.getNode(ISD::BITCAST, dl, CanonVT, V1);
4612 return DAG.getNode(ISD::BITCAST, dl, NVT,
4613 DAG.getVectorShuffle(CanonVT, dl, V1,
4614 DAG.getUNDEF(CanonVT),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004615 }
4616
4617 return SDValue();
4618}
4619
Michael J. Spencerec38de22010-10-10 22:04:20 +00004620/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4621/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004622/// load which has the same value as a build_vector whose operands are 'elts'.
4623///
4624/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004625///
Nate Begeman1449f292010-03-24 22:19:06 +00004626/// FIXME: we'd also like to handle the case where the last elements are zero
4627/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4628/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004629static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004630 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004631 EVT EltVT = VT.getVectorElementType();
4632 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004633
Nate Begemanfdea31a2010-03-24 20:49:50 +00004634 LoadSDNode *LDBase = NULL;
4635 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004636
Nate Begeman1449f292010-03-24 22:19:06 +00004637 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004638 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004639 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004640 for (unsigned i = 0; i < NumElems; ++i) {
4641 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004642
Nate Begemanfdea31a2010-03-24 20:49:50 +00004643 if (!Elt.getNode() ||
4644 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4645 return SDValue();
4646 if (!LDBase) {
4647 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4648 return SDValue();
4649 LDBase = cast<LoadSDNode>(Elt.getNode());
4650 LastLoadedElt = i;
4651 continue;
4652 }
4653 if (Elt.getOpcode() == ISD::UNDEF)
4654 continue;
4655
4656 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4657 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4658 return SDValue();
4659 LastLoadedElt = i;
4660 }
Nate Begeman1449f292010-03-24 22:19:06 +00004661
4662 // If we have found an entire vector of loads and undefs, then return a large
4663 // load of the entire vector width starting at the base pointer. If we found
4664 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004665 if (LastLoadedElt == NumElems - 1) {
4666 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004667 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004668 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004669 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004670 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004671 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004672 LDBase->isVolatile(), LDBase->isNonTemporal(),
4673 LDBase->getAlignment());
Eli Friedman61cc47e2011-07-26 21:02:58 +00004674 } else if (NumElems == 4 && LastLoadedElt == 1 &&
4675 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004676 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4677 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004678 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4679 Ops, 2, MVT::i32,
4680 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004681 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004682 }
4683 return SDValue();
4684}
4685
Evan Chengc3630942009-12-09 21:00:30 +00004686SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004687X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004688 DebugLoc dl = Op.getDebugLoc();
David Greenea5f26012011-02-07 19:36:54 +00004689
David Greenef125a292011-02-08 19:04:41 +00004690 EVT VT = Op.getValueType();
4691 EVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00004692 unsigned NumElems = Op.getNumOperands();
4693
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00004694 // Vectors containing all zeros can be matched by pxor and xorps later
4695 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
4696 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
4697 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004698 if (Op.getValueType() == MVT::v4i32 ||
4699 Op.getValueType() == MVT::v8i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004700 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004701
Dale Johannesenace16102009-02-03 19:33:06 +00004702 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004703 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004704
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00004705 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
4706 // vectors or broken into v4i32 operations on 256-bit vectors.
4707 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
4708 if (Op.getValueType() == MVT::v4i32)
4709 return Op;
4710
4711 return getOnesVector(Op.getValueType(), DAG, dl);
4712 }
4713
Owen Andersone50ed302009-08-10 22:56:29 +00004714 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004715
Evan Cheng0db9fe62006-04-25 20:13:52 +00004716 unsigned NumZero = 0;
4717 unsigned NumNonZero = 0;
4718 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004719 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004720 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004721 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004722 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004723 if (Elt.getOpcode() == ISD::UNDEF)
4724 continue;
4725 Values.insert(Elt);
4726 if (Elt.getOpcode() != ISD::Constant &&
4727 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004728 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004729 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004730 NumZero++;
4731 else {
4732 NonZeros |= (1 << i);
4733 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004734 }
4735 }
4736
Chris Lattner97a2a562010-08-26 05:24:29 +00004737 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4738 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004739 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004740
Chris Lattner67f453a2008-03-09 05:42:06 +00004741 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004742 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004743 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004744 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004745
Chris Lattner62098042008-03-09 01:05:04 +00004746 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4747 // the value are obviously zero, truncate the value to i32 and do the
4748 // insertion that way. Only do this if the value is non-constant or if the
4749 // value is a constant being inserted into element 0. It is cheaper to do
4750 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004751 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004752 (!IsAllConstants || Idx == 0)) {
4753 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004754 // Handle SSE only.
4755 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4756 EVT VecVT = MVT::v4i32;
4757 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004758
Chris Lattner62098042008-03-09 01:05:04 +00004759 // Truncate the value (which may itself be a constant) to i32, and
4760 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004761 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004762 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004763 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4764 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004765
Chris Lattner62098042008-03-09 01:05:04 +00004766 // Now we have our 32-bit value zero extended in the low element of
4767 // a vector. If Idx != 0, swizzle it into place.
4768 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004769 SmallVector<int, 4> Mask;
4770 Mask.push_back(Idx);
4771 for (unsigned i = 1; i != VecElts; ++i)
4772 Mask.push_back(i);
4773 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004774 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004775 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004776 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004777 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004778 }
4779 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004780
Chris Lattner19f79692008-03-08 22:59:52 +00004781 // If we have a constant or non-constant insertion into the low element of
4782 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4783 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004784 // depending on what the source datatype is.
4785 if (Idx == 0) {
4786 if (NumZero == 0) {
4787 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004788 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4789 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004790 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4791 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4792 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4793 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004794 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4795 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004796 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4797 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004798 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4799 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4800 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004801 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00004802 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004803 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004804
4805 // Is it a vector logical left shift?
4806 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004807 X86::isZeroNode(Op.getOperand(0)) &&
4808 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004809 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004810 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004811 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004812 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004813 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004814 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004815
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004816 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004817 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004818
Chris Lattner19f79692008-03-08 22:59:52 +00004819 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4820 // is a non-constant being inserted into an element other than the low one,
4821 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4822 // movd/movss) to move this into the low element, then shuffle it into
4823 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004824 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004825 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004826
Evan Cheng0db9fe62006-04-25 20:13:52 +00004827 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004828 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4829 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004830 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004831 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004832 MaskVec.push_back(i == Idx ? 0 : 1);
4833 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004834 }
4835 }
4836
Chris Lattner67f453a2008-03-09 05:42:06 +00004837 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004838 if (Values.size() == 1) {
4839 if (EVTBits == 32) {
4840 // Instead of a shuffle like this:
4841 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4842 // Check if it's possible to issue this instead.
4843 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4844 unsigned Idx = CountTrailingZeros_32(NonZeros);
4845 SDValue Item = Op.getOperand(Idx);
4846 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4847 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4848 }
Dan Gohman475871a2008-07-27 21:46:04 +00004849 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004850 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004851
Dan Gohmana3941172007-07-24 22:55:08 +00004852 // A vector full of immediates; various special cases are already
4853 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004854 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004855 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004856
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00004857 // For AVX-length vectors, build the individual 128-bit pieces and use
4858 // shuffles to put them in place.
4859 if (VT.getSizeInBits() == 256 && !ISD::isBuildVectorAllZeros(Op.getNode())) {
4860 SmallVector<SDValue, 32> V;
4861 for (unsigned i = 0; i < NumElems; ++i)
4862 V.push_back(Op.getOperand(i));
4863
4864 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
4865
4866 // Build both the lower and upper subvector.
4867 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
4868 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
4869 NumElems/2);
4870
4871 // Recreate the wider vector with the lower and upper part.
Bruno Cardoso Lopes15d03fb2011-07-28 01:26:53 +00004872 SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Lower,
4873 DAG.getConstant(0, MVT::i32), DAG, dl);
4874 return Insert128BitVector(Vec, Upper, DAG.getConstant(NumElems/2, MVT::i32),
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00004875 DAG, dl);
4876 }
4877
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004878 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004879 if (EVTBits == 64) {
4880 if (NumNonZero == 1) {
4881 // One half is zero or undef.
4882 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004883 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004884 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004885 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4886 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004887 }
Dan Gohman475871a2008-07-27 21:46:04 +00004888 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004889 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004890
4891 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004892 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004893 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004894 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004895 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004896 }
4897
Bill Wendling826f36f2007-03-28 00:57:11 +00004898 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004899 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004900 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004901 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004902 }
4903
4904 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004905 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004906 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004907 if (NumElems == 4 && NumZero > 0) {
4908 for (unsigned i = 0; i < 4; ++i) {
4909 bool isZero = !(NonZeros & (1 << i));
4910 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004911 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004912 else
Dale Johannesenace16102009-02-03 19:33:06 +00004913 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004914 }
4915
4916 for (unsigned i = 0; i < 2; ++i) {
4917 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4918 default: break;
4919 case 0:
4920 V[i] = V[i*2]; // Must be a zero vector.
4921 break;
4922 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004923 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004924 break;
4925 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004926 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004927 break;
4928 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004929 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004930 break;
4931 }
4932 }
4933
Nate Begeman9008ca62009-04-27 18:41:29 +00004934 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004935 bool Reverse = (NonZeros & 0x3) == 2;
4936 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004937 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004938 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4939 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004940 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4941 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004942 }
4943
Nate Begemanfdea31a2010-03-24 20:49:50 +00004944 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4945 // Check for a build vector of consecutive loads.
4946 for (unsigned i = 0; i < NumElems; ++i)
4947 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004948
Nate Begemanfdea31a2010-03-24 20:49:50 +00004949 // Check for elements which are consecutive loads.
4950 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4951 if (LD.getNode())
4952 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004953
4954 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004955 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004956 SDValue Result;
4957 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4958 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4959 else
4960 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004961
Chris Lattner24faf612010-08-28 17:59:08 +00004962 for (unsigned i = 1; i < NumElems; ++i) {
4963 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4964 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004965 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004966 }
4967 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004968 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004969
Chris Lattner6e80e442010-08-28 17:15:43 +00004970 // Otherwise, expand into a number of unpckl*, start by extending each of
4971 // our (non-undef) elements to the full vector width with the element in the
4972 // bottom slot of the vector (which generates no code for SSE).
4973 for (unsigned i = 0; i < NumElems; ++i) {
4974 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4975 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4976 else
4977 V[i] = DAG.getUNDEF(VT);
4978 }
4979
4980 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004981 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4982 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4983 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00004984 unsigned EltStride = NumElems >> 1;
4985 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00004986 for (unsigned i = 0; i < EltStride; ++i) {
4987 // If V[i+EltStride] is undef and this is the first round of mixing,
4988 // then it is safe to just drop this shuffle: V[i] is already in the
4989 // right place, the one element (since it's the first round) being
4990 // inserted as undef can be dropped. This isn't safe for successive
4991 // rounds because they will permute elements within both vectors.
4992 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
4993 EltStride == NumElems/2)
4994 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004995
Chris Lattner6e80e442010-08-28 17:15:43 +00004996 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00004997 }
Chris Lattner6e80e442010-08-28 17:15:43 +00004998 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004999 }
5000 return V[0];
5001 }
Dan Gohman475871a2008-07-27 21:46:04 +00005002 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005003}
5004
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005005// LowerMMXCONCAT_VECTORS - We support concatenate two MMX registers and place
5006// them in a MMX register. This is better than doing a stack convert.
5007static SDValue LowerMMXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005008 DebugLoc dl = Op.getDebugLoc();
5009 EVT ResVT = Op.getValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005010
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005011 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
5012 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
5013 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005014 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005015 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5016 InVec = Op.getOperand(1);
5017 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
5018 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005019 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005020 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
5021 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
5022 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005023 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005024 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5025 Mask[0] = 0; Mask[1] = 2;
5026 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
5027 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005028 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005029}
5030
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005031// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
5032// to create 256-bit vectors from two other 128-bit ones.
5033static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5034 DebugLoc dl = Op.getDebugLoc();
5035 EVT ResVT = Op.getValueType();
5036
5037 assert(ResVT.getSizeInBits() == 256 && "Value type must be 256-bit wide");
5038
5039 SDValue V1 = Op.getOperand(0);
5040 SDValue V2 = Op.getOperand(1);
5041 unsigned NumElems = ResVT.getVectorNumElements();
5042
5043 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, ResVT), V1,
5044 DAG.getConstant(0, MVT::i32), DAG, dl);
5045 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5046 DAG, dl);
5047}
5048
5049SDValue
5050X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005051 EVT ResVT = Op.getValueType();
5052
5053 assert(Op.getNumOperands() == 2);
5054 assert((ResVT.getSizeInBits() == 128 || ResVT.getSizeInBits() == 256) &&
5055 "Unsupported CONCAT_VECTORS for value type");
5056
5057 // We support concatenate two MMX registers and place them in a MMX register.
5058 // This is better than doing a stack convert.
5059 if (ResVT.is128BitVector())
5060 return LowerMMXCONCAT_VECTORS(Op, DAG);
5061
5062 // 256-bit AVX can use the vinsertf128 instruction to create 256-bit vectors
5063 // from two other 128-bit ones.
5064 return LowerAVXCONCAT_VECTORS(Op, DAG);
5065}
5066
Nate Begemanb9a47b82009-02-23 08:49:38 +00005067// v8i16 shuffles - Prefer shuffles in the following order:
5068// 1. [all] pshuflw, pshufhw, optional move
5069// 2. [ssse3] 1 x pshufb
5070// 3. [ssse3] 2 x pshufb + 1 x por
5071// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005072SDValue
5073X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
5074 SelectionDAG &DAG) const {
5075 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00005076 SDValue V1 = SVOp->getOperand(0);
5077 SDValue V2 = SVOp->getOperand(1);
5078 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005079 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00005080
Nate Begemanb9a47b82009-02-23 08:49:38 +00005081 // Determine if more than 1 of the words in each of the low and high quadwords
5082 // of the result come from the same quadword of one of the two inputs. Undef
5083 // mask values count as coming from any quadword, for better codegen.
5084 SmallVector<unsigned, 4> LoQuad(4);
5085 SmallVector<unsigned, 4> HiQuad(4);
5086 BitVector InputQuads(4);
5087 for (unsigned i = 0; i < 8; ++i) {
5088 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00005089 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005090 MaskVals.push_back(EltIdx);
5091 if (EltIdx < 0) {
5092 ++Quad[0];
5093 ++Quad[1];
5094 ++Quad[2];
5095 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00005096 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005097 }
5098 ++Quad[EltIdx / 4];
5099 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00005100 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005101
Nate Begemanb9a47b82009-02-23 08:49:38 +00005102 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005103 unsigned MaxQuad = 1;
5104 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005105 if (LoQuad[i] > MaxQuad) {
5106 BestLoQuad = i;
5107 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005108 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005109 }
5110
Nate Begemanb9a47b82009-02-23 08:49:38 +00005111 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005112 MaxQuad = 1;
5113 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005114 if (HiQuad[i] > MaxQuad) {
5115 BestHiQuad = i;
5116 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005117 }
5118 }
5119
Nate Begemanb9a47b82009-02-23 08:49:38 +00005120 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00005121 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00005122 // single pshufb instruction is necessary. If There are more than 2 input
5123 // quads, disable the next transformation since it does not help SSSE3.
5124 bool V1Used = InputQuads[0] || InputQuads[1];
5125 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005126 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005127 if (InputQuads.count() == 2 && V1Used && V2Used) {
5128 BestLoQuad = InputQuads.find_first();
5129 BestHiQuad = InputQuads.find_next(BestLoQuad);
5130 }
5131 if (InputQuads.count() > 2) {
5132 BestLoQuad = -1;
5133 BestHiQuad = -1;
5134 }
5135 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005136
Nate Begemanb9a47b82009-02-23 08:49:38 +00005137 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
5138 // the shuffle mask. If a quad is scored as -1, that means that it contains
5139 // words from all 4 input quadwords.
5140 SDValue NewV;
5141 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005142 SmallVector<int, 8> MaskV;
5143 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
5144 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00005145 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005146 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
5147 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
5148 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005149
Nate Begemanb9a47b82009-02-23 08:49:38 +00005150 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
5151 // source words for the shuffle, to aid later transformations.
5152 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00005153 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00005154 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005155 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00005156 if (idx != (int)i)
5157 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005158 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00005159 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005160 AllWordsInNewV = false;
5161 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00005162 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005163
Nate Begemanb9a47b82009-02-23 08:49:38 +00005164 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
5165 if (AllWordsInNewV) {
5166 for (int i = 0; i != 8; ++i) {
5167 int idx = MaskVals[i];
5168 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005169 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005170 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005171 if ((idx != i) && idx < 4)
5172 pshufhw = false;
5173 if ((idx != i) && idx > 3)
5174 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00005175 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00005176 V1 = NewV;
5177 V2Used = false;
5178 BestLoQuad = 0;
5179 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005180 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005181
Nate Begemanb9a47b82009-02-23 08:49:38 +00005182 // If we've eliminated the use of V2, and the new mask is a pshuflw or
5183 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00005184 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005185 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
5186 unsigned TargetMask = 0;
5187 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00005188 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005189 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
5190 X86::getShufflePSHUFLWImmediate(NewV.getNode());
5191 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005192 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00005193 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005194 }
Eric Christopherfd179292009-08-27 18:07:15 +00005195
Nate Begemanb9a47b82009-02-23 08:49:38 +00005196 // If we have SSSE3, and all words of the result are from 1 input vector,
5197 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
5198 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005199 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005200 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005201
Nate Begemanb9a47b82009-02-23 08:49:38 +00005202 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00005203 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00005204 // mask, and elements that come from V1 in the V2 mask, so that the two
5205 // results can be OR'd together.
5206 bool TwoInputs = V1Used && V2Used;
5207 for (unsigned i = 0; i != 8; ++i) {
5208 int EltIdx = MaskVals[i] * 2;
5209 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005210 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5211 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005212 continue;
5213 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005214 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5215 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005216 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005217 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005218 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005219 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005220 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005221 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005222 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005223
Nate Begemanb9a47b82009-02-23 08:49:38 +00005224 // Calculate the shuffle mask for the second input, shuffle it, and
5225 // OR it with the first shuffled input.
5226 pshufbMask.clear();
5227 for (unsigned i = 0; i != 8; ++i) {
5228 int EltIdx = MaskVals[i] * 2;
5229 if (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 - 16, MVT::i8));
5235 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005236 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005237 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00005238 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
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));
5241 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005242 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005243 }
5244
5245 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5246 // and update MaskVals with new element order.
5247 BitVector InOrder(8);
5248 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005249 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005250 for (int i = 0; i != 4; ++i) {
5251 int idx = MaskVals[i];
5252 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005253 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005254 InOrder.set(i);
5255 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005256 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005257 InOrder.set(i);
5258 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005259 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005260 }
5261 }
5262 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005263 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00005264 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005265 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005266
5267 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5268 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
5269 NewV.getOperand(0),
5270 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
5271 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005272 }
Eric Christopherfd179292009-08-27 18:07:15 +00005273
Nate Begemanb9a47b82009-02-23 08:49:38 +00005274 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5275 // and update MaskVals with the new element order.
5276 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005277 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005278 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005279 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005280 for (unsigned i = 4; i != 8; ++i) {
5281 int idx = MaskVals[i];
5282 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005283 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005284 InOrder.set(i);
5285 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005286 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005287 InOrder.set(i);
5288 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005289 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005290 }
5291 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005292 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005293 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005294
5295 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5296 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5297 NewV.getOperand(0),
5298 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
5299 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005300 }
Eric Christopherfd179292009-08-27 18:07:15 +00005301
Nate Begemanb9a47b82009-02-23 08:49:38 +00005302 // In case BestHi & BestLo were both -1, which means each quadword has a word
5303 // from each of the four input quadwords, calculate the InOrder bitvector now
5304 // before falling through to the insert/extract cleanup.
5305 if (BestLoQuad == -1 && BestHiQuad == -1) {
5306 NewV = V1;
5307 for (int i = 0; i != 8; ++i)
5308 if (MaskVals[i] < 0 || MaskVals[i] == i)
5309 InOrder.set(i);
5310 }
Eric Christopherfd179292009-08-27 18:07:15 +00005311
Nate Begemanb9a47b82009-02-23 08:49:38 +00005312 // The other elements are put in the right place using pextrw and pinsrw.
5313 for (unsigned i = 0; i != 8; ++i) {
5314 if (InOrder[i])
5315 continue;
5316 int EltIdx = MaskVals[i];
5317 if (EltIdx < 0)
5318 continue;
5319 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005320 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005321 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00005322 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005323 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00005324 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005325 DAG.getIntPtrConstant(i));
5326 }
5327 return NewV;
5328}
5329
5330// v16i8 shuffles - Prefer shuffles in the following order:
5331// 1. [ssse3] 1 x pshufb
5332// 2. [ssse3] 2 x pshufb + 1 x por
5333// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
5334static
Nate Begeman9008ca62009-04-27 18:41:29 +00005335SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00005336 SelectionDAG &DAG,
5337 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005338 SDValue V1 = SVOp->getOperand(0);
5339 SDValue V2 = SVOp->getOperand(1);
5340 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005341 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00005342 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00005343
Nate Begemanb9a47b82009-02-23 08:49:38 +00005344 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00005345 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00005346 // present, fall back to case 3.
5347 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
5348 bool V1Only = true;
5349 bool V2Only = true;
5350 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005351 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00005352 if (EltIdx < 0)
5353 continue;
5354 if (EltIdx < 16)
5355 V2Only = false;
5356 else
5357 V1Only = false;
5358 }
Eric Christopherfd179292009-08-27 18:07:15 +00005359
Nate Begemanb9a47b82009-02-23 08:49:38 +00005360 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
5361 if (TLI.getSubtarget()->hasSSSE3()) {
5362 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005363
Nate Begemanb9a47b82009-02-23 08:49:38 +00005364 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00005365 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005366 //
5367 // Otherwise, we have elements from both input vectors, and must zero out
5368 // elements that come from V2 in the first mask, and V1 in the second mask
5369 // so that we can OR them together.
5370 bool TwoInputs = !(V1Only || V2Only);
5371 for (unsigned i = 0; i != 16; ++i) {
5372 int EltIdx = MaskVals[i];
5373 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005374 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005375 continue;
5376 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005377 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005378 }
5379 // If all the elements are from V2, assign it to V1 and return after
5380 // building the first pshufb.
5381 if (V2Only)
5382 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00005383 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005384 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005385 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005386 if (!TwoInputs)
5387 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00005388
Nate Begemanb9a47b82009-02-23 08:49:38 +00005389 // Calculate the shuffle mask for the second input, shuffle it, and
5390 // OR it with the first shuffled input.
5391 pshufbMask.clear();
5392 for (unsigned i = 0; i != 16; ++i) {
5393 int EltIdx = MaskVals[i];
5394 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005395 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005396 continue;
5397 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005398 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005399 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005400 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005401 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005402 MVT::v16i8, &pshufbMask[0], 16));
5403 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005404 }
Eric Christopherfd179292009-08-27 18:07:15 +00005405
Nate Begemanb9a47b82009-02-23 08:49:38 +00005406 // No SSSE3 - Calculate in place words and then fix all out of place words
5407 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
5408 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005409 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5410 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005411 SDValue NewV = V2Only ? V2 : V1;
5412 for (int i = 0; i != 8; ++i) {
5413 int Elt0 = MaskVals[i*2];
5414 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00005415
Nate Begemanb9a47b82009-02-23 08:49:38 +00005416 // This word of the result is all undef, skip it.
5417 if (Elt0 < 0 && Elt1 < 0)
5418 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005419
Nate Begemanb9a47b82009-02-23 08:49:38 +00005420 // This word of the result is already in the correct place, skip it.
5421 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5422 continue;
5423 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
5424 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005425
Nate Begemanb9a47b82009-02-23 08:49:38 +00005426 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5427 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5428 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00005429
5430 // If Elt0 and Elt1 are defined, are consecutive, and can be load
5431 // using a single extract together, load it and store it.
5432 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005433 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005434 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00005435 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005436 DAG.getIntPtrConstant(i));
5437 continue;
5438 }
5439
Nate Begemanb9a47b82009-02-23 08:49:38 +00005440 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00005441 // source byte is not also odd, shift the extracted word left 8 bits
5442 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005443 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005444 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005445 DAG.getIntPtrConstant(Elt1 / 2));
5446 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005447 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00005448 DAG.getConstant(8,
5449 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005450 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005451 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5452 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005453 }
5454 // If Elt0 is defined, extract it from the appropriate source. If the
5455 // source byte is not also even, shift the extracted word right 8 bits. If
5456 // Elt1 was also defined, OR the extracted values together before
5457 // inserting them in the result.
5458 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005459 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005460 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5461 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005462 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00005463 DAG.getConstant(8,
5464 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005465 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005466 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5467 DAG.getConstant(0x00FF, MVT::i16));
5468 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00005469 : InsElt0;
5470 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005471 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005472 DAG.getIntPtrConstant(i));
5473 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005474 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005475}
5476
Evan Cheng7a831ce2007-12-15 03:00:47 +00005477/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005478/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00005479/// done when every pair / quad of shuffle mask elements point to elements in
5480/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005481/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00005482static
Nate Begeman9008ca62009-04-27 18:41:29 +00005483SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005484 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00005485 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00005486 SDValue V1 = SVOp->getOperand(0);
5487 SDValue V2 = SVOp->getOperand(1);
5488 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00005489 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005490 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00005491 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005492 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00005493 case MVT::v4f32: NewVT = MVT::v2f64; break;
5494 case MVT::v4i32: NewVT = MVT::v2i64; break;
5495 case MVT::v8i16: NewVT = MVT::v4i32; break;
5496 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00005497 }
5498
Nate Begeman9008ca62009-04-27 18:41:29 +00005499 int Scale = NumElems / NewWidth;
5500 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00005501 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005502 int StartIdx = -1;
5503 for (int j = 0; j < Scale; ++j) {
5504 int EltIdx = SVOp->getMaskElt(i+j);
5505 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005506 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00005507 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00005508 StartIdx = EltIdx - (EltIdx % Scale);
5509 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00005510 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005511 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005512 if (StartIdx == -1)
5513 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00005514 else
Nate Begeman9008ca62009-04-27 18:41:29 +00005515 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005516 }
5517
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005518 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
5519 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005520 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005521}
5522
Evan Chengd880b972008-05-09 21:53:03 +00005523/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005524///
Owen Andersone50ed302009-08-10 22:56:29 +00005525static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00005526 SDValue SrcOp, SelectionDAG &DAG,
5527 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005528 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005529 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00005530 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00005531 LD = dyn_cast<LoadSDNode>(SrcOp);
5532 if (!LD) {
5533 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
5534 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00005535 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00005536 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00005537 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005538 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00005539 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005540 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00005541 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005542 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005543 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5544 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5545 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00005546 SrcOp.getOperand(0)
5547 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005548 }
5549 }
5550 }
5551
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005552 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005553 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005554 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00005555 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005556}
5557
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005558/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
5559/// which could not be matched by any known target speficic shuffle
5560static SDValue
5561LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
5562 return SDValue();
5563}
5564
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005565/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
5566/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00005567static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005568LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005569 SDValue V1 = SVOp->getOperand(0);
5570 SDValue V2 = SVOp->getOperand(1);
5571 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00005572 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00005573
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005574 assert(VT.getSizeInBits() == 128 && "Unsupported vector size");
5575
Evan Chengace3c172008-07-22 21:13:36 +00005576 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00005577 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005578 SmallVector<int, 8> Mask1(4U, -1);
5579 SmallVector<int, 8> PermMask;
5580 SVOp->getMask(PermMask);
5581
Evan Chengace3c172008-07-22 21:13:36 +00005582 unsigned NumHi = 0;
5583 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00005584 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005585 int Idx = PermMask[i];
5586 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005587 Locs[i] = std::make_pair(-1, -1);
5588 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005589 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
5590 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005591 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00005592 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005593 NumLo++;
5594 } else {
5595 Locs[i] = std::make_pair(1, NumHi);
5596 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005597 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005598 NumHi++;
5599 }
5600 }
5601 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005602
Evan Chengace3c172008-07-22 21:13:36 +00005603 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005604 // If no more than two elements come from either vector. This can be
5605 // implemented with two shuffles. First shuffle gather the elements.
5606 // The second shuffle, which takes the first shuffle as both of its
5607 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00005608 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005609
Nate Begeman9008ca62009-04-27 18:41:29 +00005610 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00005611
Evan Chengace3c172008-07-22 21:13:36 +00005612 for (unsigned i = 0; i != 4; ++i) {
5613 if (Locs[i].first == -1)
5614 continue;
5615 else {
5616 unsigned Idx = (i < 2) ? 0 : 4;
5617 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005618 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005619 }
5620 }
5621
Nate Begeman9008ca62009-04-27 18:41:29 +00005622 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005623 } else if (NumLo == 3 || NumHi == 3) {
5624 // Otherwise, we must have three elements from one vector, call it X, and
5625 // one element from the other, call it Y. First, use a shufps to build an
5626 // intermediate vector with the one element from Y and the element from X
5627 // that will be in the same half in the final destination (the indexes don't
5628 // matter). Then, use a shufps to build the final vector, taking the half
5629 // containing the element from Y from the intermediate, and the other half
5630 // from X.
5631 if (NumHi == 3) {
5632 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00005633 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005634 std::swap(V1, V2);
5635 }
5636
5637 // Find the element from V2.
5638 unsigned HiIndex;
5639 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005640 int Val = PermMask[HiIndex];
5641 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005642 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005643 if (Val >= 4)
5644 break;
5645 }
5646
Nate Begeman9008ca62009-04-27 18:41:29 +00005647 Mask1[0] = PermMask[HiIndex];
5648 Mask1[1] = -1;
5649 Mask1[2] = PermMask[HiIndex^1];
5650 Mask1[3] = -1;
5651 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005652
5653 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005654 Mask1[0] = PermMask[0];
5655 Mask1[1] = PermMask[1];
5656 Mask1[2] = HiIndex & 1 ? 6 : 4;
5657 Mask1[3] = HiIndex & 1 ? 4 : 6;
5658 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005659 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005660 Mask1[0] = HiIndex & 1 ? 2 : 0;
5661 Mask1[1] = HiIndex & 1 ? 0 : 2;
5662 Mask1[2] = PermMask[2];
5663 Mask1[3] = PermMask[3];
5664 if (Mask1[2] >= 0)
5665 Mask1[2] += 4;
5666 if (Mask1[3] >= 0)
5667 Mask1[3] += 4;
5668 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005669 }
Evan Chengace3c172008-07-22 21:13:36 +00005670 }
5671
5672 // Break it into (shuffle shuffle_hi, shuffle_lo).
5673 Locs.clear();
David Greenec4db4e52011-02-28 19:06:56 +00005674 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005675 SmallVector<int,8> LoMask(4U, -1);
5676 SmallVector<int,8> HiMask(4U, -1);
5677
5678 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005679 unsigned MaskIdx = 0;
5680 unsigned LoIdx = 0;
5681 unsigned HiIdx = 2;
5682 for (unsigned i = 0; i != 4; ++i) {
5683 if (i == 2) {
5684 MaskPtr = &HiMask;
5685 MaskIdx = 1;
5686 LoIdx = 0;
5687 HiIdx = 2;
5688 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005689 int Idx = PermMask[i];
5690 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005691 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005692 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005693 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005694 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005695 LoIdx++;
5696 } else {
5697 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005698 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005699 HiIdx++;
5700 }
5701 }
5702
Nate Begeman9008ca62009-04-27 18:41:29 +00005703 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5704 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5705 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005706 for (unsigned i = 0; i != 4; ++i) {
5707 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005708 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005709 } else {
5710 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005711 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005712 }
5713 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005714 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005715}
5716
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005717static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005718 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005719 V = V.getOperand(0);
5720 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5721 V = V.getOperand(0);
5722 if (MayFoldLoad(V))
5723 return true;
5724 return false;
5725}
5726
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005727// FIXME: the version above should always be used. Since there's
5728// a bug where several vector shuffles can't be folded because the
5729// DAG is not updated during lowering and a node claims to have two
5730// uses while it only has one, use this version, and let isel match
5731// another instruction if the load really happens to have more than
5732// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005733// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005734static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005735 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005736 V = V.getOperand(0);
5737 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5738 V = V.getOperand(0);
5739 if (ISD::isNormalLoad(V.getNode()))
5740 return true;
5741 return false;
5742}
5743
5744/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5745/// a vector extract, and if both can be later optimized into a single load.
5746/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5747/// here because otherwise a target specific shuffle node is going to be
5748/// emitted for this shuffle, and the optimization not done.
5749/// FIXME: This is probably not the best approach, but fix the problem
5750/// until the right path is decided.
5751static
5752bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5753 const TargetLowering &TLI) {
5754 EVT VT = V.getValueType();
5755 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5756
5757 // Be sure that the vector shuffle is present in a pattern like this:
5758 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5759 if (!V.hasOneUse())
5760 return false;
5761
5762 SDNode *N = *V.getNode()->use_begin();
5763 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5764 return false;
5765
5766 SDValue EltNo = N->getOperand(1);
5767 if (!isa<ConstantSDNode>(EltNo))
5768 return false;
5769
5770 // If the bit convert changed the number of elements, it is unsafe
5771 // to examine the mask.
5772 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005773 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005774 EVT SrcVT = V.getOperand(0).getValueType();
5775 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5776 return false;
5777 V = V.getOperand(0);
5778 HasShuffleIntoBitcast = true;
5779 }
5780
5781 // Select the input vector, guarding against out of range extract vector.
5782 unsigned NumElems = VT.getVectorNumElements();
5783 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5784 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5785 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5786
5787 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005788 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005789 V = V.getOperand(0);
5790
5791 if (ISD::isNormalLoad(V.getNode())) {
5792 // Is the original load suitable?
5793 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5794
5795 // FIXME: avoid the multi-use bug that is preventing lots of
5796 // of foldings to be detected, this is still wrong of course, but
5797 // give the temporary desired behavior, and if it happens that
5798 // the load has real more uses, during isel it will not fold, and
5799 // will generate poor code.
5800 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5801 return false;
5802
5803 if (!HasShuffleIntoBitcast)
5804 return true;
5805
5806 // If there's a bitcast before the shuffle, check if the load type and
5807 // alignment is valid.
5808 unsigned Align = LN0->getAlignment();
5809 unsigned NewAlign =
5810 TLI.getTargetData()->getABITypeAlignment(
5811 VT.getTypeForEVT(*DAG.getContext()));
5812
5813 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5814 return false;
5815 }
5816
5817 return true;
5818}
5819
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005820static
Evan Cheng835580f2010-10-07 20:50:20 +00005821SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5822 EVT VT = Op.getValueType();
5823
5824 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005825 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
5826 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00005827 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5828 V1, DAG));
5829}
5830
5831static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005832SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5833 bool HasSSE2) {
5834 SDValue V1 = Op.getOperand(0);
5835 SDValue V2 = Op.getOperand(1);
5836 EVT VT = Op.getValueType();
5837
5838 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5839
5840 if (HasSSE2 && VT == MVT::v2f64)
5841 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5842
5843 // v4f32 or v4i32
5844 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5845}
5846
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005847static
5848SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5849 SDValue V1 = Op.getOperand(0);
5850 SDValue V2 = Op.getOperand(1);
5851 EVT VT = Op.getValueType();
5852
5853 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5854 "unsupported shuffle type");
5855
5856 if (V2.getOpcode() == ISD::UNDEF)
5857 V2 = V1;
5858
5859 // v4i32 or v4f32
5860 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5861}
5862
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005863static
5864SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5865 SDValue V1 = Op.getOperand(0);
5866 SDValue V2 = Op.getOperand(1);
5867 EVT VT = Op.getValueType();
5868 unsigned NumElems = VT.getVectorNumElements();
5869
5870 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5871 // operand of these instructions is only memory, so check if there's a
5872 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5873 // same masks.
5874 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005875
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005876 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005877 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005878 CanFoldLoad = true;
5879
5880 // When V1 is a load, it can be folded later into a store in isel, example:
5881 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5882 // turns into:
5883 // (MOVLPSmr addr:$src1, VR128:$src2)
5884 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005885 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005886 CanFoldLoad = true;
5887
Eric Christopher893a8822011-02-20 05:04:42 +00005888 // Both of them can't be memory operations though.
5889 if (MayFoldVectorLoad(V1) && MayFoldVectorLoad(V2))
5890 CanFoldLoad = false;
Owen Anderson95771af2011-02-25 21:41:48 +00005891
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005892 if (CanFoldLoad) {
5893 if (HasSSE2 && NumElems == 2)
5894 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5895
5896 if (NumElems == 4)
5897 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5898 }
5899
5900 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5901 // movl and movlp will both match v2i64, but v2i64 is never matched by
5902 // movl earlier because we make it strict to avoid messing with the movlp load
5903 // folding logic (see the code above getMOVLP call). Match it here then,
5904 // this is horrible, but will stay like this until we move all shuffle
5905 // matching to x86 specific nodes. Note that for the 1st condition all
5906 // types are matched with movsd.
5907 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5908 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5909 else if (HasSSE2)
5910 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5911
5912
5913 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5914
5915 // Invert the operand order and use SHUFPS to match it.
5916 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5917 X86::getShuffleSHUFImmediate(SVOp), DAG);
5918}
5919
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00005920static inline unsigned getUNPCKLOpcode(EVT VT) {
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005921 switch(VT.getSimpleVT().SimpleTy) {
5922 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5923 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005924 case MVT::v4f32: return X86ISD::UNPCKLPS;
5925 case MVT::v2f64: return X86ISD::UNPCKLPD;
David Greenec4db4e52011-02-28 19:06:56 +00005926 case MVT::v8f32: return X86ISD::VUNPCKLPSY;
5927 case MVT::v4f64: return X86ISD::VUNPCKLPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005928 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5929 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5930 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00005931 llvm_unreachable("Unknown type for unpckl");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005932 }
5933 return 0;
5934}
5935
5936static inline unsigned getUNPCKHOpcode(EVT VT) {
5937 switch(VT.getSimpleVT().SimpleTy) {
5938 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5939 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5940 case MVT::v4f32: return X86ISD::UNPCKHPS;
5941 case MVT::v2f64: return X86ISD::UNPCKHPD;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00005942 case MVT::v8f32: return X86ISD::VUNPCKHPSY;
5943 case MVT::v4f64: return X86ISD::VUNPCKHPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005944 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5945 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5946 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00005947 llvm_unreachable("Unknown type for unpckh");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005948 }
5949 return 0;
5950}
5951
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00005952static inline unsigned getVPERMILOpcode(EVT VT) {
5953 switch(VT.getSimpleVT().SimpleTy) {
5954 case MVT::v4i32:
5955 case MVT::v4f32: return X86ISD::VPERMILPS;
5956 case MVT::v2i64:
5957 case MVT::v2f64: return X86ISD::VPERMILPD;
5958 case MVT::v8i32:
5959 case MVT::v8f32: return X86ISD::VPERMILPSY;
5960 case MVT::v4i64:
5961 case MVT::v4f64: return X86ISD::VPERMILPDY;
5962 default:
5963 llvm_unreachable("Unknown type for vpermil");
5964 }
5965 return 0;
5966}
5967
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005968static
5969SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005970 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005971 const X86Subtarget *Subtarget) {
5972 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5973 EVT VT = Op.getValueType();
5974 DebugLoc dl = Op.getDebugLoc();
5975 SDValue V1 = Op.getOperand(0);
5976 SDValue V2 = Op.getOperand(1);
5977
5978 if (isZeroShuffle(SVOp))
5979 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
5980
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005981 // Handle splat operations
5982 if (SVOp->isSplat()) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00005983 unsigned NumElem = VT.getVectorNumElements();
5984 // Special case, this is the only place now where it's allowed to return
5985 // a vector_shuffle operation without using a target specific node, because
5986 // *hopefully* it will be optimized away by the dag combiner. FIXME: should
5987 // this be moved to DAGCombine instead?
5988 if (NumElem <= 4 && CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005989 return Op;
5990
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00005991 // Since there's no native support for scalar_to_vector for 256-bit AVX, a
5992 // 128-bit scalar_to_vector + INSERT_SUBVECTOR is generated. Recognize this
5993 // idiom and do the shuffle before the insertion, this yields less
5994 // instructions in the end.
5995 if (VT.is256BitVector() &&
5996 V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
5997 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
5998 V1.getOperand(1).getOpcode() == ISD::SCALAR_TO_VECTOR)
5999 return PromoteVectorToScalarSplat(SVOp, DAG);
6000
6001 // Handle splats by matching through known shuffle masks
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006002 if ((VT.is128BitVector() && NumElem <= 4) ||
6003 (VT.is256BitVector() && NumElem <= 8))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006004 return SDValue();
6005
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006006 // All i16 and i8 vector types can't be used directly by a generic shuffle
6007 // instruction because the target has no such instruction. Generate shuffles
6008 // which repeat i16 and i8 several times until they fit in i32, and then can
6009 // be manipulated by target suported shuffles. After the insertion of the
6010 // necessary shuffles, the result is bitcasted back to v4f32 or v8f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006011 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006012 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006013
6014 // If the shuffle can be profitably rewritten as a narrower shuffle, then
6015 // do it!
6016 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
6017 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6018 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006019 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006020 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
6021 // FIXME: Figure out a cleaner way to do this.
6022 // Try to make use of movq to zero out the top part.
6023 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
6024 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6025 if (NewOp.getNode()) {
6026 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
6027 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
6028 DAG, Subtarget, dl);
6029 }
6030 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
6031 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6032 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
6033 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
6034 DAG, Subtarget, dl);
6035 }
6036 }
6037 return SDValue();
6038}
6039
Dan Gohman475871a2008-07-27 21:46:04 +00006040SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006041X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00006042 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00006043 SDValue V1 = Op.getOperand(0);
6044 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00006045 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006046 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00006047 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006048 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006049 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
6050 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00006051 bool V1IsSplat = false;
6052 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006053 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006054 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006055 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006056 MachineFunction &MF = DAG.getMachineFunction();
6057 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006058
Dale Johannesen0488fb62010-09-30 23:57:10 +00006059 // Shuffle operations on MMX not supported.
6060 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00006061 return Op;
6062
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006063 // Vector shuffle lowering takes 3 steps:
6064 //
6065 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
6066 // narrowing and commutation of operands should be handled.
6067 // 2) Matching of shuffles with known shuffle masks to x86 target specific
6068 // shuffle nodes.
6069 // 3) Rewriting of unmatched masks into new generic shuffle operations,
6070 // so the shuffle can be broken into other shuffles and the legalizer can
6071 // try the lowering again.
6072 //
6073 // The general ideia is that no vector_shuffle operation should be left to
6074 // be matched during isel, all of them must be converted to a target specific
6075 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00006076
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006077 // Normalize the input vectors. Here splats, zeroed vectors, profitable
6078 // narrowing and commutation of operands should be handled. The actual code
6079 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006080 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006081 if (NewOp.getNode())
6082 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00006083
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006084 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
6085 // unpckh_undef). Only use pshufd if speed is more important than size.
6086 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006087 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006088 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006089 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00006090
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006091 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00006092 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00006093 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006094
Dale Johannesen0488fb62010-09-30 23:57:10 +00006095 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006096 return getMOVHighToLow(Op, dl, DAG);
6097
6098 // Use to match splats
6099 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
6100 (VT == MVT::v2f64 || VT == MVT::v2i64))
6101 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
6102
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006103 if (X86::isPSHUFDMask(SVOp)) {
6104 // The actual implementation will match the mask in the if above and then
6105 // during isel it can match several different instructions, not only pshufd
6106 // as its name says, sad but true, emulate the behavior for now...
6107 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
6108 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
6109
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006110 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6111
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006112 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006113 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
6114
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006115 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006116 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
6117 TargetMask, DAG);
6118
6119 if (VT == MVT::v4f32)
6120 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
6121 TargetMask, DAG);
6122 }
Eric Christopherfd179292009-08-27 18:07:15 +00006123
Evan Chengf26ffe92008-05-29 08:22:04 +00006124 // Check if this can be converted into a logical shift.
6125 bool isLeft = false;
6126 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00006127 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00006128 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00006129 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00006130 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006131 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00006132 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006133 EVT EltVT = VT.getVectorElementType();
6134 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006135 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006136 }
Eric Christopherfd179292009-08-27 18:07:15 +00006137
Nate Begeman9008ca62009-04-27 18:41:29 +00006138 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006139 if (V1IsUndef)
6140 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00006141 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00006142 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00006143 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006144 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006145 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6146
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006147 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006148 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6149 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00006150 }
Eric Christopherfd179292009-08-27 18:07:15 +00006151
Nate Begeman9008ca62009-04-27 18:41:29 +00006152 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00006153 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
6154 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006155
Dale Johannesen0488fb62010-09-30 23:57:10 +00006156 if (X86::isMOVHLPSMask(SVOp))
6157 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006158
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006159 if (X86::isMOVSHDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006160 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006161
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006162 if (X86::isMOVSLDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006163 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00006164
Dale Johannesen0488fb62010-09-30 23:57:10 +00006165 if (X86::isMOVLPMask(SVOp))
6166 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006167
Nate Begeman9008ca62009-04-27 18:41:29 +00006168 if (ShouldXformToMOVHLPS(SVOp) ||
6169 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
6170 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006171
Evan Chengf26ffe92008-05-29 08:22:04 +00006172 if (isShift) {
6173 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006174 EVT EltVT = VT.getVectorElementType();
6175 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006176 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006177 }
Eric Christopherfd179292009-08-27 18:07:15 +00006178
Evan Cheng9eca5e82006-10-25 21:49:50 +00006179 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00006180 // FIXME: This should also accept a bitcast of a splat? Be careful, not
6181 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00006182 V1IsSplat = isSplatVector(V1.getNode());
6183 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00006184
Chris Lattner8a594482007-11-25 00:24:49 +00006185 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00006186 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006187 Op = CommuteVectorShuffle(SVOp, DAG);
6188 SVOp = cast<ShuffleVectorSDNode>(Op);
6189 V1 = SVOp->getOperand(0);
6190 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00006191 std::swap(V1IsSplat, V2IsSplat);
6192 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006193 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00006194 }
6195
Nate Begeman9008ca62009-04-27 18:41:29 +00006196 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
6197 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00006198 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00006199 return V1;
6200 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
6201 // the instruction selector will not match, so get a canonical MOVL with
6202 // swapped operands to undo the commute.
6203 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00006204 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006205
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006206 if (X86::isUNPCKLMask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006207 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006208
6209 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006210 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00006211
Evan Cheng9bbbb982006-10-25 20:48:19 +00006212 if (V2IsSplat) {
6213 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00006214 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00006215 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00006216 SDValue NewMask = NormalizeMask(SVOp, DAG);
6217 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
6218 if (NSVOp != SVOp) {
6219 if (X86::isUNPCKLMask(NSVOp, true)) {
6220 return NewMask;
6221 } else if (X86::isUNPCKHMask(NSVOp, true)) {
6222 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006223 }
6224 }
6225 }
6226
Evan Cheng9eca5e82006-10-25 21:49:50 +00006227 if (Commuted) {
6228 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00006229 // FIXME: this seems wrong.
6230 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
6231 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006232
6233 if (X86::isUNPCKLMask(NewSVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006234 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006235
6236 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006237 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006238 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006239
Nate Begeman9008ca62009-04-27 18:41:29 +00006240 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00006241 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00006242 return CommuteVectorShuffle(SVOp, DAG);
6243
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00006244 // The checks below are all present in isShuffleMaskLegal, but they are
6245 // inlined here right now to enable us to directly emit target specific
6246 // nodes, and remove one by one until they don't return Op anymore.
6247 SmallVector<int, 16> M;
6248 SVOp->getMask(M);
6249
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006250 if (isPALIGNRMask(M, VT, HasSSSE3))
6251 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
6252 X86::getShufflePALIGNRImmediate(SVOp),
6253 DAG);
6254
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006255 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6256 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006257 if (VT == MVT::v2f64)
6258 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006259 if (VT == MVT::v2i64)
6260 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
6261 }
6262
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00006263 if (isPSHUFHWMask(M, VT))
6264 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
6265 X86::getShufflePSHUFHWImmediate(SVOp),
6266 DAG);
6267
6268 if (isPSHUFLWMask(M, VT))
6269 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
6270 X86::getShufflePSHUFLWImmediate(SVOp),
6271 DAG);
6272
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00006273 if (isSHUFPMask(M, VT)) {
6274 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6275 if (VT == MVT::v4f32 || VT == MVT::v4i32)
6276 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
6277 TargetMask, DAG);
6278 if (VT == MVT::v2f64 || VT == MVT::v2i64)
6279 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
6280 TargetMask, DAG);
6281 }
6282
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006283 if (X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006284 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006285 if (X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006286 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006287
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006288 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006289 // Generate target specific nodes for 128 or 256-bit shuffles only
6290 // supported in the AVX instruction set.
6291 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006292
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006293 // Handle VPERMILPS* permutations
6294 if (isVPERMILPSMask(M, VT, Subtarget))
6295 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6296 getShuffleVPERMILPSImmediate(SVOp), DAG);
6297
6298 // Handle VPERMILPD* permutations
6299 if (isVPERMILPDMask(M, VT, Subtarget))
6300 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6301 getShuffleVPERMILPDImmediate(SVOp), DAG);
6302
6303 //===--------------------------------------------------------------------===//
6304 // Since no target specific shuffle was selected for this generic one,
6305 // lower it into other known shuffles. FIXME: this isn't true yet, but
6306 // this is the plan.
6307 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00006308
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00006309 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
6310 if (VT == MVT::v8i16) {
6311 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
6312 if (NewOp.getNode())
6313 return NewOp;
6314 }
6315
6316 if (VT == MVT::v16i8) {
6317 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
6318 if (NewOp.getNode())
6319 return NewOp;
6320 }
6321
6322 // Handle all 128-bit wide vectors with 4 elements, and match them with
6323 // several different shuffle types.
6324 if (NumElems == 4 && VT.getSizeInBits() == 128)
6325 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
6326
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006327 // Handle general 256-bit shuffles
6328 if (VT.is256BitVector())
6329 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
6330
Dan Gohman475871a2008-07-27 21:46:04 +00006331 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006332}
6333
Dan Gohman475871a2008-07-27 21:46:04 +00006334SDValue
6335X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00006336 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006337 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006338 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006339
6340 if (Op.getOperand(0).getValueType().getSizeInBits() != 128)
6341 return SDValue();
6342
Duncan Sands83ec4b62008-06-06 12:08:01 +00006343 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006344 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006345 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006346 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006347 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006348 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006349 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00006350 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6351 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
6352 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006353 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6354 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006355 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006356 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00006357 Op.getOperand(0)),
6358 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006359 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006360 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006361 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006362 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006363 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00006364 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00006365 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
6366 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006367 // result has a single use which is a store or a bitcast to i32. And in
6368 // the case of a store, it's not worth it if the index is a constant 0,
6369 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00006370 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00006371 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006372 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006373 if ((User->getOpcode() != ISD::STORE ||
6374 (isa<ConstantSDNode>(Op.getOperand(1)) &&
6375 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006376 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006377 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00006378 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00006379 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006380 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00006381 Op.getOperand(0)),
6382 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006383 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00006384 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00006385 // ExtractPS works with constant index.
6386 if (isa<ConstantSDNode>(Op.getOperand(1)))
6387 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006388 }
Dan Gohman475871a2008-07-27 21:46:04 +00006389 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006390}
6391
6392
Dan Gohman475871a2008-07-27 21:46:04 +00006393SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006394X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6395 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006396 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00006397 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006398
David Greene74a579d2011-02-10 16:57:36 +00006399 SDValue Vec = Op.getOperand(0);
6400 EVT VecVT = Vec.getValueType();
6401
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006402 // If this is a 256-bit vector result, first extract the 128-bit vector and
6403 // then extract the element from the 128-bit vector.
6404 if (VecVT.getSizeInBits() == 256) {
David Greene74a579d2011-02-10 16:57:36 +00006405 DebugLoc dl = Op.getNode()->getDebugLoc();
6406 unsigned NumElems = VecVT.getVectorNumElements();
6407 SDValue Idx = Op.getOperand(1);
David Greene74a579d2011-02-10 16:57:36 +00006408 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
6409
6410 // Get the 128-bit vector.
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006411 bool Upper = IdxVal >= NumElems/2;
6412 Vec = Extract128BitVector(Vec,
6413 DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32), DAG, dl);
David Greene74a579d2011-02-10 16:57:36 +00006414
David Greene74a579d2011-02-10 16:57:36 +00006415 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006416 Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : Idx);
David Greene74a579d2011-02-10 16:57:36 +00006417 }
6418
6419 assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
6420
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006421 if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006422 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006423 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00006424 return Res;
6425 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00006426
Owen Andersone50ed302009-08-10 22:56:29 +00006427 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006428 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006429 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006430 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006431 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006432 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006433 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006434 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6435 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006436 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006437 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00006438 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006439 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00006440 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00006441 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006442 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00006443 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006444 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006445 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006446 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006447 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006448 if (Idx == 0)
6449 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00006450
Evan Cheng0db9fe62006-04-25 20:13:52 +00006451 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00006452 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006453 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006454 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006455 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006456 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006457 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00006458 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006459 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
6460 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
6461 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006462 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006463 if (Idx == 0)
6464 return Op;
6465
6466 // UNPCKHPD the element to the lowest double word, then movsd.
6467 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6468 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00006469 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006470 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006471 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006472 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006473 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006474 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006475 }
6476
Dan Gohman475871a2008-07-27 21:46:04 +00006477 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006478}
6479
Dan Gohman475871a2008-07-27 21:46:04 +00006480SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006481X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6482 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006483 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006484 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006485 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006486
Dan Gohman475871a2008-07-27 21:46:04 +00006487 SDValue N0 = Op.getOperand(0);
6488 SDValue N1 = Op.getOperand(1);
6489 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00006490
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006491 if (VT.getSizeInBits() == 256)
6492 return SDValue();
6493
Dan Gohman8a55ce42009-09-23 21:02:20 +00006494 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00006495 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006496 unsigned Opc;
6497 if (VT == MVT::v8i16)
6498 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006499 else if (VT == MVT::v16i8)
6500 Opc = X86ISD::PINSRB;
6501 else
6502 Opc = X86ISD::PINSRB;
6503
Nate Begeman14d12ca2008-02-11 04:19:36 +00006504 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
6505 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006506 if (N1.getValueType() != MVT::i32)
6507 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6508 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006509 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00006510 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006511 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006512 // Bits [7:6] of the constant are the source select. This will always be
6513 // zero here. The DAG Combiner may combine an extract_elt index into these
6514 // bits. For example (insert (extract, 3), 2) could be matched by putting
6515 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00006516 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00006517 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00006518 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00006519 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006520 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00006521 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00006522 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00006523 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006524 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00006525 // PINSR* works with constant index.
6526 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006527 }
Dan Gohman475871a2008-07-27 21:46:04 +00006528 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006529}
6530
Dan Gohman475871a2008-07-27 21:46:04 +00006531SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006532X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006533 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006534 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006535
David Greene6b381262011-02-09 15:32:06 +00006536 DebugLoc dl = Op.getDebugLoc();
6537 SDValue N0 = Op.getOperand(0);
6538 SDValue N1 = Op.getOperand(1);
6539 SDValue N2 = Op.getOperand(2);
6540
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006541 // If this is a 256-bit vector result, first extract the 128-bit vector,
6542 // insert the element into the extracted half and then place it back.
6543 if (VT.getSizeInBits() == 256) {
David Greene6b381262011-02-09 15:32:06 +00006544 if (!isa<ConstantSDNode>(N2))
6545 return SDValue();
6546
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006547 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00006548 unsigned NumElems = VT.getVectorNumElements();
6549 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006550 bool Upper = IdxVal >= NumElems/2;
6551 SDValue Ins128Idx = DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32);
6552 SDValue V = Extract128BitVector(N0, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00006553
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006554 // Insert the element into the desired half.
6555 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V,
6556 N1, Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : N2);
David Greene6b381262011-02-09 15:32:06 +00006557
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006558 // Insert the changed part back to the 256-bit vector
6559 return Insert128BitVector(N0, V, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00006560 }
6561
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006562 if (Subtarget->hasSSE41() || Subtarget->hasAVX())
Nate Begeman14d12ca2008-02-11 04:19:36 +00006563 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
6564
Dan Gohman8a55ce42009-09-23 21:02:20 +00006565 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00006566 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00006567
Dan Gohman8a55ce42009-09-23 21:02:20 +00006568 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00006569 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
6570 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006571 if (N1.getValueType() != MVT::i32)
6572 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6573 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006574 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00006575 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006576 }
Dan Gohman475871a2008-07-27 21:46:04 +00006577 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006578}
6579
Dan Gohman475871a2008-07-27 21:46:04 +00006580SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006581X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006582 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006583 DebugLoc dl = Op.getDebugLoc();
David Greene2fcdfb42011-02-10 23:11:29 +00006584 EVT OpVT = Op.getValueType();
6585
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00006586 // If this is a 256-bit vector result, first insert into a 128-bit
6587 // vector and then insert into the 256-bit vector.
6588 if (OpVT.getSizeInBits() > 128) {
6589 // Insert into a 128-bit vector.
6590 EVT VT128 = EVT::getVectorVT(*Context,
6591 OpVT.getVectorElementType(),
6592 OpVT.getVectorNumElements() / 2);
6593
6594 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
6595
6596 // Insert the 128-bit vector.
6597 return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op,
6598 DAG.getConstant(0, MVT::i32),
6599 DAG, dl);
6600 }
6601
Chris Lattnerf172ecd2010-07-04 23:07:25 +00006602 if (Op.getValueType() == MVT::v1i64 &&
6603 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00006604 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00006605
Owen Anderson825b72b2009-08-11 20:47:22 +00006606 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00006607 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
6608 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006609 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00006610 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006611}
6612
David Greene91585092011-01-26 15:38:49 +00006613// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
6614// a simple subregister reference or explicit instructions to grab
6615// upper bits of a vector.
6616SDValue
6617X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6618 if (Subtarget->hasAVX()) {
David Greenea5f26012011-02-07 19:36:54 +00006619 DebugLoc dl = Op.getNode()->getDebugLoc();
6620 SDValue Vec = Op.getNode()->getOperand(0);
6621 SDValue Idx = Op.getNode()->getOperand(1);
6622
6623 if (Op.getNode()->getValueType(0).getSizeInBits() == 128
6624 && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
6625 return Extract128BitVector(Vec, Idx, DAG, dl);
6626 }
David Greene91585092011-01-26 15:38:49 +00006627 }
6628 return SDValue();
6629}
6630
David Greenecfe33c42011-01-26 19:13:22 +00006631// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
6632// simple superregister reference or explicit instructions to insert
6633// the upper bits of a vector.
6634SDValue
6635X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6636 if (Subtarget->hasAVX()) {
6637 DebugLoc dl = Op.getNode()->getDebugLoc();
6638 SDValue Vec = Op.getNode()->getOperand(0);
6639 SDValue SubVec = Op.getNode()->getOperand(1);
6640 SDValue Idx = Op.getNode()->getOperand(2);
6641
6642 if (Op.getNode()->getValueType(0).getSizeInBits() == 256
6643 && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
David Greenea5f26012011-02-07 19:36:54 +00006644 return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00006645 }
6646 }
6647 return SDValue();
6648}
6649
Bill Wendling056292f2008-09-16 21:48:12 +00006650// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
6651// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
6652// one of the above mentioned nodes. It has to be wrapped because otherwise
6653// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
6654// be used to form addressing mode. These wrapped nodes will be selected
6655// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00006656SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006657X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006658 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006659
Chris Lattner41621a22009-06-26 19:22:52 +00006660 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6661 // global base reg.
6662 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006663 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006664 CodeModel::Model M = getTargetMachine().getCodeModel();
6665
Chris Lattner4f066492009-07-11 20:29:19 +00006666 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006667 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006668 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006669 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006670 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006671 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006672 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006673
Evan Cheng1606e8e2009-03-13 07:51:59 +00006674 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00006675 CP->getAlignment(),
6676 CP->getOffset(), OpFlag);
6677 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00006678 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006679 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00006680 if (OpFlag) {
6681 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00006682 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006683 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006684 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006685 }
6686
6687 return Result;
6688}
6689
Dan Gohmand858e902010-04-17 15:26:15 +00006690SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006691 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006692
Chris Lattner18c59872009-06-27 04:16:01 +00006693 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6694 // global base reg.
6695 unsigned char OpFlag = 0;
6696 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006697 CodeModel::Model M = getTargetMachine().getCodeModel();
6698
Chris Lattner4f066492009-07-11 20:29:19 +00006699 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006700 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006701 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006702 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006703 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006704 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006705 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006706
Chris Lattner18c59872009-06-27 04:16:01 +00006707 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
6708 OpFlag);
6709 DebugLoc DL = JT->getDebugLoc();
6710 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006711
Chris Lattner18c59872009-06-27 04:16:01 +00006712 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00006713 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00006714 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6715 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006716 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006717 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006718
Chris Lattner18c59872009-06-27 04:16:01 +00006719 return Result;
6720}
6721
6722SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006723X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006724 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00006725
Chris Lattner18c59872009-06-27 04:16:01 +00006726 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6727 // global base reg.
6728 unsigned char OpFlag = 0;
6729 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006730 CodeModel::Model M = getTargetMachine().getCodeModel();
6731
Chris Lattner4f066492009-07-11 20:29:19 +00006732 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006733 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006734 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006735 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006736 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006737 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006738 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006739
Chris Lattner18c59872009-06-27 04:16:01 +00006740 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00006741
Chris Lattner18c59872009-06-27 04:16:01 +00006742 DebugLoc DL = Op.getDebugLoc();
6743 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006744
6745
Chris Lattner18c59872009-06-27 04:16:01 +00006746 // With PIC, the address is actually $g + Offset.
6747 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00006748 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00006749 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6750 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006751 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006752 Result);
6753 }
Eric Christopherfd179292009-08-27 18:07:15 +00006754
Chris Lattner18c59872009-06-27 04:16:01 +00006755 return Result;
6756}
6757
Dan Gohman475871a2008-07-27 21:46:04 +00006758SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006759X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00006760 // Create the TargetBlockAddressAddress node.
6761 unsigned char OpFlags =
6762 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00006763 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00006764 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00006765 DebugLoc dl = Op.getDebugLoc();
6766 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
6767 /*isTarget=*/true, OpFlags);
6768
Dan Gohmanf705adb2009-10-30 01:28:02 +00006769 if (Subtarget->isPICStyleRIPRel() &&
6770 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00006771 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6772 else
6773 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00006774
Dan Gohman29cbade2009-11-20 23:18:13 +00006775 // With PIC, the address is actually $g + Offset.
6776 if (isGlobalRelativeToPICBase(OpFlags)) {
6777 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6778 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
6779 Result);
6780 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00006781
6782 return Result;
6783}
6784
6785SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00006786X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00006787 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00006788 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00006789 // Create the TargetGlobalAddress node, folding in the constant
6790 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00006791 unsigned char OpFlags =
6792 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006793 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00006794 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006795 if (OpFlags == X86II::MO_NO_FLAG &&
6796 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00006797 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00006798 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00006799 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006800 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00006801 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006802 }
Eric Christopherfd179292009-08-27 18:07:15 +00006803
Chris Lattner4f066492009-07-11 20:29:19 +00006804 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006805 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00006806 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6807 else
6808 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00006809
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006810 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00006811 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006812 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6813 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006814 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006815 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006816
Chris Lattner36c25012009-07-10 07:34:39 +00006817 // For globals that require a load from a stub to get the address, emit the
6818 // load.
6819 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00006820 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006821 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006822
Dan Gohman6520e202008-10-18 02:06:02 +00006823 // If there was a non-zero offset that we didn't fold, create an explicit
6824 // addition for it.
6825 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006826 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006827 DAG.getConstant(Offset, getPointerTy()));
6828
Evan Cheng0db9fe62006-04-25 20:13:52 +00006829 return Result;
6830}
6831
Evan Chengda43bcf2008-09-24 00:05:32 +00006832SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006833X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006834 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006835 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006836 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006837}
6838
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006839static SDValue
6840GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006841 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006842 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006843 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006844 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006845 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006846 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006847 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006848 GA->getOffset(),
6849 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006850 if (InFlag) {
6851 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006852 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006853 } else {
6854 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006855 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006856 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006857
6858 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006859 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006860
Rafael Espindola15f1b662009-04-24 12:59:40 +00006861 SDValue Flag = Chain.getValue(1);
6862 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006863}
6864
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006865// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006866static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006867LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006868 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006869 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006870 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6871 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006872 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006873 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006874 InFlag = Chain.getValue(1);
6875
Chris Lattnerb903bed2009-06-26 21:20:29 +00006876 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006877}
6878
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006879// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006880static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006881LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006882 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006883 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6884 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006885}
6886
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006887// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6888// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006889static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006890 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006891 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006892 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006893
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006894 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6895 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6896 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006897
Michael J. Spencerec38de22010-10-10 22:04:20 +00006898 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006899 DAG.getIntPtrConstant(0),
6900 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006901
Chris Lattnerb903bed2009-06-26 21:20:29 +00006902 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006903 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6904 // initialexec.
6905 unsigned WrapperKind = X86ISD::Wrapper;
6906 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006907 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006908 } else if (is64Bit) {
6909 assert(model == TLSModel::InitialExec);
6910 OperandFlags = X86II::MO_GOTTPOFF;
6911 WrapperKind = X86ISD::WrapperRIP;
6912 } else {
6913 assert(model == TLSModel::InitialExec);
6914 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006915 }
Eric Christopherfd179292009-08-27 18:07:15 +00006916
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006917 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6918 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006919 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006920 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006921 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006922 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006923
Rafael Espindola9a580232009-02-27 13:37:18 +00006924 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006925 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006926 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006927
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006928 // The address of the thread local variable is the add of the thread
6929 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006930 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006931}
6932
Dan Gohman475871a2008-07-27 21:46:04 +00006933SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006934X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006935
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006936 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006937 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006938
Eric Christopher30ef0e52010-06-03 04:07:48 +00006939 if (Subtarget->isTargetELF()) {
6940 // TODO: implement the "local dynamic" model
6941 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006942
Eric Christopher30ef0e52010-06-03 04:07:48 +00006943 // If GV is an alias then use the aliasee for determining
6944 // thread-localness.
6945 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6946 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006947
6948 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006949 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006950
Eric Christopher30ef0e52010-06-03 04:07:48 +00006951 switch (model) {
6952 case TLSModel::GeneralDynamic:
6953 case TLSModel::LocalDynamic: // not implemented
6954 if (Subtarget->is64Bit())
6955 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6956 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006957
Eric Christopher30ef0e52010-06-03 04:07:48 +00006958 case TLSModel::InitialExec:
6959 case TLSModel::LocalExec:
6960 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6961 Subtarget->is64Bit());
6962 }
6963 } else if (Subtarget->isTargetDarwin()) {
6964 // Darwin only has one model of TLS. Lower to that.
6965 unsigned char OpFlag = 0;
6966 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6967 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006968
Eric Christopher30ef0e52010-06-03 04:07:48 +00006969 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6970 // global base reg.
6971 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6972 !Subtarget->is64Bit();
6973 if (PIC32)
6974 OpFlag = X86II::MO_TLVP_PIC_BASE;
6975 else
6976 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006977 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006978 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00006979 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00006980 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00006981 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006982
Eric Christopher30ef0e52010-06-03 04:07:48 +00006983 // With PIC32, the address is actually $g + Offset.
6984 if (PIC32)
6985 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6986 DAG.getNode(X86ISD::GlobalBaseReg,
6987 DebugLoc(), getPointerTy()),
6988 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006989
Eric Christopher30ef0e52010-06-03 04:07:48 +00006990 // Lowering the machine isd will make sure everything is in the right
6991 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00006992 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006993 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00006994 SDValue Args[] = { Chain, Offset };
6995 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006996
Eric Christopher30ef0e52010-06-03 04:07:48 +00006997 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
6998 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6999 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007000
Eric Christopher30ef0e52010-06-03 04:07:48 +00007001 // And our return value (tls address) is in the standard call return value
7002 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007003 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
7004 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007005 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007006
Eric Christopher30ef0e52010-06-03 04:07:48 +00007007 assert(false &&
7008 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00007009
Torok Edwinc23197a2009-07-14 16:55:14 +00007010 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00007011 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007012}
7013
Evan Cheng0db9fe62006-04-25 20:13:52 +00007014
Nadav Rotem43012222011-05-11 08:12:09 +00007015/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00007016/// take a 2 x i32 value to shift plus a shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00007017SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00007018 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00007019 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007020 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007021 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007022 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00007023 SDValue ShOpLo = Op.getOperand(0);
7024 SDValue ShOpHi = Op.getOperand(1);
7025 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00007026 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00007027 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00007028 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00007029
Dan Gohman475871a2008-07-27 21:46:04 +00007030 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007031 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007032 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
7033 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007034 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007035 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
7036 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007037 }
Evan Chenge3413162006-01-09 18:33:28 +00007038
Owen Anderson825b72b2009-08-11 20:47:22 +00007039 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
7040 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00007041 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00007042 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00007043
Dan Gohman475871a2008-07-27 21:46:04 +00007044 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00007045 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00007046 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
7047 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00007048
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007049 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007050 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7051 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007052 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007053 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7054 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007055 }
7056
Dan Gohman475871a2008-07-27 21:46:04 +00007057 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00007058 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007059}
Evan Chenga3195e82006-01-12 22:54:21 +00007060
Dan Gohmand858e902010-04-17 15:26:15 +00007061SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
7062 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00007063 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00007064
Dale Johannesen0488fb62010-09-30 23:57:10 +00007065 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007066 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007067
Owen Anderson825b72b2009-08-11 20:47:22 +00007068 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00007069 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00007070
Eli Friedman36df4992009-05-27 00:47:34 +00007071 // These are really Legal; return the operand so the caller accepts it as
7072 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007073 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00007074 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00007075 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00007076 Subtarget->is64Bit()) {
7077 return Op;
7078 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007079
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007080 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007081 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007082 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00007083 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007084 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00007085 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00007086 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007087 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007088 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007089 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
7090}
Evan Cheng0db9fe62006-04-25 20:13:52 +00007091
Owen Andersone50ed302009-08-10 22:56:29 +00007092SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007093 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00007094 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007095 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00007096 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00007097 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00007098 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007099 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007100 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00007101 else
Owen Anderson825b72b2009-08-11 20:47:22 +00007102 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007103
Chris Lattner492a43e2010-09-22 01:28:21 +00007104 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007105
Stuart Hastings84be9582011-06-02 15:57:11 +00007106 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
7107 MachineMemOperand *MMO;
7108 if (FI) {
7109 int SSFI = FI->getIndex();
7110 MMO =
7111 DAG.getMachineFunction()
7112 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7113 MachineMemOperand::MOLoad, ByteSize, ByteSize);
7114 } else {
7115 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
7116 StackSlot = StackSlot.getOperand(1);
7117 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007118 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007119 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
7120 X86ISD::FILD, DL,
7121 Tys, Ops, array_lengthof(Ops),
7122 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007123
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007124 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007125 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00007126 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007127
7128 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
7129 // shouldn't be necessary except that RFP cannot be live across
7130 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007131 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007132 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
7133 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007134 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00007135 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007136 SDValue Ops[] = {
7137 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
7138 };
Chris Lattner492a43e2010-09-22 01:28:21 +00007139 MachineMemOperand *MMO =
7140 DAG.getMachineFunction()
7141 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007142 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007143
Chris Lattner492a43e2010-09-22 01:28:21 +00007144 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
7145 Ops, array_lengthof(Ops),
7146 Op.getValueType(), MMO);
7147 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007148 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007149 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007150 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007151
Evan Cheng0db9fe62006-04-25 20:13:52 +00007152 return Result;
7153}
7154
Bill Wendling8b8a6362009-01-17 03:56:04 +00007155// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007156SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
7157 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00007158 // This algorithm is not obvious. Here it is in C code, more or less:
7159 /*
7160 double uint64_to_double( uint32_t hi, uint32_t lo ) {
7161 static const __m128i exp = { 0x4330000045300000ULL, 0 };
7162 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00007163
Bill Wendling8b8a6362009-01-17 03:56:04 +00007164 // Copy ints to xmm registers.
7165 __m128i xh = _mm_cvtsi32_si128( hi );
7166 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00007167
Bill Wendling8b8a6362009-01-17 03:56:04 +00007168 // Combine into low half of a single xmm register.
7169 __m128i x = _mm_unpacklo_epi32( xh, xl );
7170 __m128d d;
7171 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00007172
Bill Wendling8b8a6362009-01-17 03:56:04 +00007173 // Merge in appropriate exponents to give the integer bits the right
7174 // magnitude.
7175 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00007176
Bill Wendling8b8a6362009-01-17 03:56:04 +00007177 // Subtract away the biases to deal with the IEEE-754 double precision
7178 // implicit 1.
7179 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00007180
Bill Wendling8b8a6362009-01-17 03:56:04 +00007181 // All conversions up to here are exact. The correctly rounded result is
7182 // calculated using the current rounding mode using the following
7183 // horizontal add.
7184 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
7185 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
7186 // store doesn't really need to be here (except
7187 // maybe to zero the other double)
7188 return sd;
7189 }
7190 */
Dale Johannesen040225f2008-10-21 23:07:49 +00007191
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007192 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00007193 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00007194
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007195 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00007196 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00007197 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
7198 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
7199 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
7200 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007201 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007202 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007203
Bill Wendling8b8a6362009-01-17 03:56:04 +00007204 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00007205 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007206 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00007207 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007208 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007209 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007210 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007211
Owen Anderson825b72b2009-08-11 20:47:22 +00007212 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7213 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007214 Op.getOperand(0),
7215 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007216 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7217 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007218 Op.getOperand(0),
7219 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007220 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
7221 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00007222 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007223 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007224 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007225 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00007226 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00007227 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007228 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007229 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007230
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007231 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00007232 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00007233 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
7234 DAG.getUNDEF(MVT::v2f64), ShufMask);
7235 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
7236 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007237 DAG.getIntPtrConstant(0));
7238}
7239
Bill Wendling8b8a6362009-01-17 03:56:04 +00007240// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007241SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
7242 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007243 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007244 // FP constant to bias correct the final result.
7245 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00007246 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007247
7248 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00007249 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00007250 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007251
Owen Anderson825b72b2009-08-11 20:47:22 +00007252 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007253 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007254 DAG.getIntPtrConstant(0));
7255
7256 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007257 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007258 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007259 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007260 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007261 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007262 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007263 MVT::v2f64, Bias)));
7264 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007265 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007266 DAG.getIntPtrConstant(0));
7267
7268 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007269 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007270
7271 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00007272 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00007273
Owen Anderson825b72b2009-08-11 20:47:22 +00007274 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007275 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00007276 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00007277 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007278 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00007279 }
7280
7281 // Handle final rounding.
7282 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00007283}
7284
Dan Gohmand858e902010-04-17 15:26:15 +00007285SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
7286 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00007287 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007288 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007289
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007290 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00007291 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
7292 // the optimization here.
7293 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00007294 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00007295
Owen Andersone50ed302009-08-10 22:56:29 +00007296 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007297 EVT DstVT = Op.getValueType();
7298 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007299 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007300 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007301 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00007302
7303 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00007304 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007305 if (SrcVT == MVT::i32) {
7306 SDValue WordOff = DAG.getConstant(4, getPointerTy());
7307 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
7308 getPointerTy(), StackSlot, WordOff);
7309 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007310 StackSlot, MachinePointerInfo(),
7311 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007312 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007313 OffsetSlot, MachinePointerInfo(),
7314 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007315 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
7316 return Fild;
7317 }
7318
7319 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
7320 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007321 StackSlot, MachinePointerInfo(),
7322 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007323 // For i64 source, we need to add the appropriate power of 2 if the input
7324 // was negative. This is the same as the optimization in
7325 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
7326 // we must be careful to do the computation in x87 extended precision, not
7327 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00007328 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
7329 MachineMemOperand *MMO =
7330 DAG.getMachineFunction()
7331 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7332 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007333
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007334 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
7335 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007336 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
7337 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007338
7339 APInt FF(32, 0x5F800000ULL);
7340
7341 // Check whether the sign bit is set.
7342 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
7343 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
7344 ISD::SETLT);
7345
7346 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
7347 SDValue FudgePtr = DAG.getConstantPool(
7348 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
7349 getPointerTy());
7350
7351 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
7352 SDValue Zero = DAG.getIntPtrConstant(0);
7353 SDValue Four = DAG.getIntPtrConstant(4);
7354 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
7355 Zero, Four);
7356 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
7357
7358 // Load the value out, extending it from f32 to f80.
7359 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00007360 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00007361 FudgePtr, MachinePointerInfo::getConstantPool(),
7362 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007363 // Extend everything to 80 bits to force it to be done on x87.
7364 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
7365 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007366}
7367
Dan Gohman475871a2008-07-27 21:46:04 +00007368std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00007369FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00007370 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00007371
Owen Andersone50ed302009-08-10 22:56:29 +00007372 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00007373
7374 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007375 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
7376 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00007377 }
7378
Owen Anderson825b72b2009-08-11 20:47:22 +00007379 assert(DstTy.getSimpleVT() <= MVT::i64 &&
7380 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00007381 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00007382
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007383 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007384 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00007385 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007386 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00007387 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007388 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00007389 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007390 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007391
Evan Cheng87c89352007-10-15 20:11:21 +00007392 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
7393 // stack slot.
7394 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00007395 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00007396 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007397 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00007398
Michael J. Spencerec38de22010-10-10 22:04:20 +00007399
7400
Evan Cheng0db9fe62006-04-25 20:13:52 +00007401 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00007402 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007403 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007404 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
7405 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
7406 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007407 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007408
Dan Gohman475871a2008-07-27 21:46:04 +00007409 SDValue Chain = DAG.getEntryNode();
7410 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00007411 EVT TheVT = Op.getOperand(0).getValueType();
7412 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007413 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00007414 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007415 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007416 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007417 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00007418 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00007419 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00007420 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00007421
Chris Lattner492a43e2010-09-22 01:28:21 +00007422 MachineMemOperand *MMO =
7423 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7424 MachineMemOperand::MOLoad, MemSize, MemSize);
7425 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
7426 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007427 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00007428 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007429 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7430 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007431
Chris Lattner07290932010-09-22 01:05:16 +00007432 MachineMemOperand *MMO =
7433 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7434 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007435
Evan Cheng0db9fe62006-04-25 20:13:52 +00007436 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00007437 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00007438 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
7439 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00007440
Chris Lattner27a6c732007-11-24 07:07:01 +00007441 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007442}
7443
Dan Gohmand858e902010-04-17 15:26:15 +00007444SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
7445 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00007446 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007447 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007448
Eli Friedman948e95a2009-05-23 09:59:16 +00007449 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00007450 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00007451 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
7452 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00007453
Chris Lattner27a6c732007-11-24 07:07:01 +00007454 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007455 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007456 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00007457}
7458
Dan Gohmand858e902010-04-17 15:26:15 +00007459SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
7460 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00007461 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
7462 SDValue FIST = Vals.first, StackSlot = Vals.second;
7463 assert(FIST.getNode() && "Unexpected failure");
7464
7465 // Load the result.
7466 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007467 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007468}
7469
Dan Gohmand858e902010-04-17 15:26:15 +00007470SDValue X86TargetLowering::LowerFABS(SDValue Op,
7471 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007472 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007473 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007474 EVT VT = Op.getValueType();
7475 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007476 if (VT.isVector())
7477 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007478 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007479 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007480 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00007481 CV.push_back(C);
7482 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007483 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007484 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00007485 CV.push_back(C);
7486 CV.push_back(C);
7487 CV.push_back(C);
7488 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007489 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007490 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007491 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007492 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007493 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007494 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007495 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007496}
7497
Dan Gohmand858e902010-04-17 15:26:15 +00007498SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007499 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007500 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007501 EVT VT = Op.getValueType();
7502 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00007503 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007504 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007505 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007506 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007507 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00007508 CV.push_back(C);
7509 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007510 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007511 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00007512 CV.push_back(C);
7513 CV.push_back(C);
7514 CV.push_back(C);
7515 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007516 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007517 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007518 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007519 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007520 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007521 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007522 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007523 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007524 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007525 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007526 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007527 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00007528 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007529 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00007530 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007531}
7532
Dan Gohmand858e902010-04-17 15:26:15 +00007533SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007534 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00007535 SDValue Op0 = Op.getOperand(0);
7536 SDValue Op1 = Op.getOperand(1);
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 SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00007540
7541 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007542 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007543 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007544 SrcVT = VT;
7545 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007546 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007547 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007548 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007549 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007550 }
7551
7552 // At this point the operands and the result should have the same
7553 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00007554
Evan Cheng68c47cb2007-01-05 07:55:56 +00007555 // First get the sign bit of second operand.
7556 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007557 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007558 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
7559 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007560 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007561 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
7562 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7563 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7564 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007565 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007566 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007567 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007568 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007569 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007570 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007571 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007572
7573 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007574 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007575 // Op0 is MVT::f32, Op1 is MVT::f64.
7576 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
7577 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
7578 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007579 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00007580 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00007581 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007582 }
7583
Evan Cheng73d6cf12007-01-05 21:37:56 +00007584 // Clear first operand sign bit.
7585 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00007586 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007587 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
7588 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007589 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007590 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
7591 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7592 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7593 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007594 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007595 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007596 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007597 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007598 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007599 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007600 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007601
7602 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00007603 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007604}
7605
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00007606SDValue X86TargetLowering::LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) const {
7607 SDValue N0 = Op.getOperand(0);
7608 DebugLoc dl = Op.getDebugLoc();
7609 EVT VT = Op.getValueType();
7610
7611 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
7612 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
7613 DAG.getConstant(1, VT));
7614 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
7615}
7616
Dan Gohman076aee32009-03-04 19:44:21 +00007617/// Emit nodes that will be selected as "test Op0,Op0", or something
7618/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007619SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007620 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007621 DebugLoc dl = Op.getDebugLoc();
7622
Dan Gohman31125812009-03-07 01:58:32 +00007623 // CF and OF aren't always set the way we want. Determine which
7624 // of these we need.
7625 bool NeedCF = false;
7626 bool NeedOF = false;
7627 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007628 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00007629 case X86::COND_A: case X86::COND_AE:
7630 case X86::COND_B: case X86::COND_BE:
7631 NeedCF = true;
7632 break;
7633 case X86::COND_G: case X86::COND_GE:
7634 case X86::COND_L: case X86::COND_LE:
7635 case X86::COND_O: case X86::COND_NO:
7636 NeedOF = true;
7637 break;
Dan Gohman31125812009-03-07 01:58:32 +00007638 }
7639
Dan Gohman076aee32009-03-04 19:44:21 +00007640 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00007641 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
7642 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007643 if (Op.getResNo() != 0 || NeedOF || NeedCF)
7644 // Emit a CMP with 0, which is the TEST pattern.
7645 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7646 DAG.getConstant(0, Op.getValueType()));
7647
7648 unsigned Opcode = 0;
7649 unsigned NumOperands = 0;
7650 switch (Op.getNode()->getOpcode()) {
7651 case ISD::ADD:
7652 // Due to an isel shortcoming, be conservative if this add is likely to be
7653 // selected as part of a load-modify-store instruction. When the root node
7654 // in a match is a store, isel doesn't know how to remap non-chain non-flag
7655 // uses of other nodes in the match, such as the ADD in this case. This
7656 // leads to the ADD being left around and reselected, with the result being
7657 // two adds in the output. Alas, even if none our users are stores, that
7658 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
7659 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
7660 // climbing the DAG back to the root, and it doesn't seem to be worth the
7661 // effort.
7662 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00007663 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007664 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
7665 goto default_case;
7666
7667 if (ConstantSDNode *C =
7668 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
7669 // An add of one will be selected as an INC.
7670 if (C->getAPIntValue() == 1) {
7671 Opcode = X86ISD::INC;
7672 NumOperands = 1;
7673 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00007674 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007675
7676 // An add of negative one (subtract of one) will be selected as a DEC.
7677 if (C->getAPIntValue().isAllOnesValue()) {
7678 Opcode = X86ISD::DEC;
7679 NumOperands = 1;
7680 break;
7681 }
Dan Gohman076aee32009-03-04 19:44:21 +00007682 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007683
7684 // Otherwise use a regular EFLAGS-setting add.
7685 Opcode = X86ISD::ADD;
7686 NumOperands = 2;
7687 break;
7688 case ISD::AND: {
7689 // If the primary and result isn't used, don't bother using X86ISD::AND,
7690 // because a TEST instruction will be better.
7691 bool NonFlagUse = false;
7692 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7693 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
7694 SDNode *User = *UI;
7695 unsigned UOpNo = UI.getOperandNo();
7696 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
7697 // Look pass truncate.
7698 UOpNo = User->use_begin().getOperandNo();
7699 User = *User->use_begin();
7700 }
7701
7702 if (User->getOpcode() != ISD::BRCOND &&
7703 User->getOpcode() != ISD::SETCC &&
7704 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
7705 NonFlagUse = true;
7706 break;
7707 }
Dan Gohman076aee32009-03-04 19:44:21 +00007708 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007709
7710 if (!NonFlagUse)
7711 break;
7712 }
7713 // FALL THROUGH
7714 case ISD::SUB:
7715 case ISD::OR:
7716 case ISD::XOR:
7717 // Due to the ISEL shortcoming noted above, be conservative if this op is
7718 // likely to be selected as part of a load-modify-store instruction.
7719 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7720 UE = Op.getNode()->use_end(); UI != UE; ++UI)
7721 if (UI->getOpcode() == ISD::STORE)
7722 goto default_case;
7723
7724 // Otherwise use a regular EFLAGS-setting instruction.
7725 switch (Op.getNode()->getOpcode()) {
7726 default: llvm_unreachable("unexpected operator!");
7727 case ISD::SUB: Opcode = X86ISD::SUB; break;
7728 case ISD::OR: Opcode = X86ISD::OR; break;
7729 case ISD::XOR: Opcode = X86ISD::XOR; break;
7730 case ISD::AND: Opcode = X86ISD::AND; break;
7731 }
7732
7733 NumOperands = 2;
7734 break;
7735 case X86ISD::ADD:
7736 case X86ISD::SUB:
7737 case X86ISD::INC:
7738 case X86ISD::DEC:
7739 case X86ISD::OR:
7740 case X86ISD::XOR:
7741 case X86ISD::AND:
7742 return SDValue(Op.getNode(), 1);
7743 default:
7744 default_case:
7745 break;
Dan Gohman076aee32009-03-04 19:44:21 +00007746 }
7747
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007748 if (Opcode == 0)
7749 // Emit a CMP with 0, which is the TEST pattern.
7750 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7751 DAG.getConstant(0, Op.getValueType()));
7752
7753 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
7754 SmallVector<SDValue, 4> Ops;
7755 for (unsigned i = 0; i != NumOperands; ++i)
7756 Ops.push_back(Op.getOperand(i));
7757
7758 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
7759 DAG.ReplaceAllUsesWith(Op, New);
7760 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00007761}
7762
7763/// Emit nodes that will be selected as "cmp Op0,Op1", or something
7764/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007765SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007766 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007767 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
7768 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00007769 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00007770
7771 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00007772 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00007773}
7774
Evan Chengd40d03e2010-01-06 19:38:29 +00007775/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
7776/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00007777SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
7778 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007779 SDValue Op0 = And.getOperand(0);
7780 SDValue Op1 = And.getOperand(1);
7781 if (Op0.getOpcode() == ISD::TRUNCATE)
7782 Op0 = Op0.getOperand(0);
7783 if (Op1.getOpcode() == ISD::TRUNCATE)
7784 Op1 = Op1.getOperand(0);
7785
Evan Chengd40d03e2010-01-06 19:38:29 +00007786 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007787 if (Op1.getOpcode() == ISD::SHL)
7788 std::swap(Op0, Op1);
7789 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007790 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
7791 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007792 // If we looked past a truncate, check that it's only truncating away
7793 // known zeros.
7794 unsigned BitWidth = Op0.getValueSizeInBits();
7795 unsigned AndBitWidth = And.getValueSizeInBits();
7796 if (BitWidth > AndBitWidth) {
7797 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
7798 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
7799 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
7800 return SDValue();
7801 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007802 LHS = Op1;
7803 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00007804 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007805 } else if (Op1.getOpcode() == ISD::Constant) {
7806 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
7807 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00007808 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
7809 LHS = AndLHS.getOperand(0);
7810 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007811 }
Evan Chengd40d03e2010-01-06 19:38:29 +00007812 }
Evan Cheng0488db92007-09-25 01:57:46 +00007813
Evan Chengd40d03e2010-01-06 19:38:29 +00007814 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00007815 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00007816 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00007817 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00007818 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00007819 // Also promote i16 to i32 for performance / code size reason.
7820 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00007821 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00007822 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00007823
Evan Chengd40d03e2010-01-06 19:38:29 +00007824 // If the operand types disagree, extend the shift amount to match. Since
7825 // BT ignores high bits (like shifts) we can use anyextend.
7826 if (LHS.getValueType() != RHS.getValueType())
7827 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007828
Evan Chengd40d03e2010-01-06 19:38:29 +00007829 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
7830 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
7831 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7832 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00007833 }
7834
Evan Cheng54de3ea2010-01-05 06:52:31 +00007835 return SDValue();
7836}
7837
Dan Gohmand858e902010-04-17 15:26:15 +00007838SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00007839 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7840 SDValue Op0 = Op.getOperand(0);
7841 SDValue Op1 = Op.getOperand(1);
7842 DebugLoc dl = Op.getDebugLoc();
7843 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7844
7845 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007846 // Lower (X & (1 << N)) == 0 to BT(X, N).
7847 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7848 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Andrew Trickf6c39412011-03-23 23:11:02 +00007849 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007850 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007851 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007852 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7853 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7854 if (NewSetCC.getNode())
7855 return NewSetCC;
7856 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007857
Chris Lattner481eebc2010-12-19 21:23:48 +00007858 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
7859 // these.
7860 if (Op1.getOpcode() == ISD::Constant &&
Andrew Trickf6c39412011-03-23 23:11:02 +00007861 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
Evan Cheng2c755ba2010-02-27 07:36:59 +00007862 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7863 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007864
Chris Lattner481eebc2010-12-19 21:23:48 +00007865 // If the input is a setcc, then reuse the input setcc or use a new one with
7866 // the inverted condition.
7867 if (Op0.getOpcode() == X86ISD::SETCC) {
7868 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7869 bool Invert = (CC == ISD::SETNE) ^
7870 cast<ConstantSDNode>(Op1)->isNullValue();
7871 if (!Invert) return Op0;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007872
Evan Cheng2c755ba2010-02-27 07:36:59 +00007873 CCode = X86::GetOppositeBranchCondition(CCode);
Chris Lattner481eebc2010-12-19 21:23:48 +00007874 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7875 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7876 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007877 }
7878
Evan Chenge5b51ac2010-04-17 06:13:15 +00007879 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007880 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007881 if (X86CC == X86::COND_INVALID)
7882 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007883
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007884 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00007885 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007886 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
Evan Cheng0488db92007-09-25 01:57:46 +00007887}
7888
Dan Gohmand858e902010-04-17 15:26:15 +00007889SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007890 SDValue Cond;
7891 SDValue Op0 = Op.getOperand(0);
7892 SDValue Op1 = Op.getOperand(1);
7893 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007894 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007895 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7896 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007897 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007898
7899 if (isFP) {
7900 unsigned SSECC = 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007901 EVT VT0 = Op0.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00007902 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
7903 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007904 bool Swap = false;
7905
7906 switch (SetCCOpcode) {
7907 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007908 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007909 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007910 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007911 case ISD::SETGT: Swap = true; // Fallthrough
7912 case ISD::SETLT:
7913 case ISD::SETOLT: SSECC = 1; break;
7914 case ISD::SETOGE:
7915 case ISD::SETGE: Swap = true; // Fallthrough
7916 case ISD::SETLE:
7917 case ISD::SETOLE: SSECC = 2; break;
7918 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007919 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007920 case ISD::SETNE: SSECC = 4; break;
7921 case ISD::SETULE: Swap = true;
7922 case ISD::SETUGE: SSECC = 5; break;
7923 case ISD::SETULT: Swap = true;
7924 case ISD::SETUGT: SSECC = 6; break;
7925 case ISD::SETO: SSECC = 7; break;
7926 }
7927 if (Swap)
7928 std::swap(Op0, Op1);
7929
Nate Begemanfb8ead02008-07-25 19:05:58 +00007930 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007931 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007932 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007933 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007934 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7935 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007936 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007937 }
7938 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007939 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007940 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7941 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007942 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007943 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007944 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007945 }
7946 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007947 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007948 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007949
Nate Begeman30a0de92008-07-17 16:51:19 +00007950 // We are handling one of the integer comparisons here. Since SSE only has
7951 // GT and EQ comparisons for integer, swapping operands and multiple
7952 // operations may be required for some comparisons.
7953 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7954 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007955
Owen Anderson825b72b2009-08-11 20:47:22 +00007956 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007957 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007958 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007959 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007960 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7961 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00007962 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007963
Nate Begeman30a0de92008-07-17 16:51:19 +00007964 switch (SetCCOpcode) {
7965 default: break;
7966 case ISD::SETNE: Invert = true;
7967 case ISD::SETEQ: Opc = EQOpc; break;
7968 case ISD::SETLT: Swap = true;
7969 case ISD::SETGT: Opc = GTOpc; break;
7970 case ISD::SETGE: Swap = true;
7971 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
7972 case ISD::SETULT: Swap = true;
7973 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
7974 case ISD::SETUGE: Swap = true;
7975 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
7976 }
7977 if (Swap)
7978 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007979
Nate Begeman30a0de92008-07-17 16:51:19 +00007980 // Since SSE has no unsigned integer comparisons, we need to flip the sign
7981 // bits of the inputs before performing those operations.
7982 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00007983 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00007984 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
7985 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00007986 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00007987 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
7988 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00007989 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
7990 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00007991 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007992
Dale Johannesenace16102009-02-03 19:33:06 +00007993 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00007994
7995 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00007996 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00007997 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00007998
Nate Begeman30a0de92008-07-17 16:51:19 +00007999 return Result;
8000}
Evan Cheng0488db92007-09-25 01:57:46 +00008001
Evan Cheng370e5342008-12-03 08:38:43 +00008002// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00008003static bool isX86LogicalCmp(SDValue Op) {
8004 unsigned Opc = Op.getNode()->getOpcode();
8005 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
8006 return true;
8007 if (Op.getResNo() == 1 &&
8008 (Opc == X86ISD::ADD ||
8009 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00008010 Opc == X86ISD::ADC ||
8011 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00008012 Opc == X86ISD::SMUL ||
8013 Opc == X86ISD::UMUL ||
8014 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00008015 Opc == X86ISD::DEC ||
8016 Opc == X86ISD::OR ||
8017 Opc == X86ISD::XOR ||
8018 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00008019 return true;
8020
Chris Lattner9637d5b2010-12-05 07:49:54 +00008021 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
8022 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008023
Dan Gohman076aee32009-03-04 19:44:21 +00008024 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00008025}
8026
Chris Lattnera2b56002010-12-05 01:23:24 +00008027static bool isZero(SDValue V) {
8028 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8029 return C && C->isNullValue();
8030}
8031
Chris Lattner96908b12010-12-05 02:00:51 +00008032static bool isAllOnes(SDValue V) {
8033 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8034 return C && C->isAllOnesValue();
8035}
8036
Dan Gohmand858e902010-04-17 15:26:15 +00008037SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008038 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008039 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00008040 SDValue Op1 = Op.getOperand(1);
8041 SDValue Op2 = Op.getOperand(2);
8042 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008043 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00008044
Dan Gohman1a492952009-10-20 16:22:37 +00008045 if (Cond.getOpcode() == ISD::SETCC) {
8046 SDValue NewCond = LowerSETCC(Cond, DAG);
8047 if (NewCond.getNode())
8048 Cond = NewCond;
8049 }
Evan Cheng734503b2006-09-11 02:19:56 +00008050
Chris Lattnera2b56002010-12-05 01:23:24 +00008051 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008052 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00008053 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008054 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008055 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00008056 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
8057 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008058 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008059
Chris Lattnera2b56002010-12-05 01:23:24 +00008060 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008061
8062 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00008063 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
8064 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00008065
8066 SDValue CmpOp0 = Cmp.getOperand(0);
8067 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
8068 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008069
Chris Lattner96908b12010-12-05 02:00:51 +00008070 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00008071 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8072 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008073
Chris Lattner96908b12010-12-05 02:00:51 +00008074 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
8075 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008076
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008077 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00008078 if (N2C == 0 || !N2C->isNullValue())
8079 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
8080 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008081 }
8082 }
8083
Chris Lattnera2b56002010-12-05 01:23:24 +00008084 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00008085 if (Cond.getOpcode() == ISD::AND &&
8086 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8087 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008088 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008089 Cond = Cond.getOperand(0);
8090 }
8091
Evan Cheng3f41d662007-10-08 22:16:29 +00008092 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8093 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008094 if (Cond.getOpcode() == X86ISD::SETCC ||
8095 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008096 CC = Cond.getOperand(0);
8097
Dan Gohman475871a2008-07-27 21:46:04 +00008098 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008099 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00008100 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008101
Evan Cheng3f41d662007-10-08 22:16:29 +00008102 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008103 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00008104 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00008105 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00008106
Chris Lattnerd1980a52009-03-12 06:52:53 +00008107 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
8108 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00008109 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008110 addTest = false;
8111 }
8112 }
8113
8114 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008115 // Look pass the truncate.
8116 if (Cond.getOpcode() == ISD::TRUNCATE)
8117 Cond = Cond.getOperand(0);
8118
8119 // We know the result of AND is compared against zero. Try to match
8120 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008121 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00008122 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00008123 if (NewSetCC.getNode()) {
8124 CC = NewSetCC.getOperand(0);
8125 Cond = NewSetCC.getOperand(1);
8126 addTest = false;
8127 }
8128 }
8129 }
8130
8131 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008132 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008133 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008134 }
8135
Benjamin Kramere915ff32010-12-22 23:09:28 +00008136 // a < b ? -1 : 0 -> RES = ~setcc_carry
8137 // a < b ? 0 : -1 -> RES = setcc_carry
8138 // a >= b ? -1 : 0 -> RES = setcc_carry
8139 // a >= b ? 0 : -1 -> RES = ~setcc_carry
8140 if (Cond.getOpcode() == X86ISD::CMP) {
8141 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
8142
8143 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
8144 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
8145 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8146 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
8147 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
8148 return DAG.getNOT(DL, Res, Res.getValueType());
8149 return Res;
8150 }
8151 }
8152
Evan Cheng0488db92007-09-25 01:57:46 +00008153 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
8154 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008155 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008156 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00008157 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00008158}
8159
Evan Cheng370e5342008-12-03 08:38:43 +00008160// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
8161// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
8162// from the AND / OR.
8163static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
8164 Opc = Op.getOpcode();
8165 if (Opc != ISD::OR && Opc != ISD::AND)
8166 return false;
8167 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8168 Op.getOperand(0).hasOneUse() &&
8169 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
8170 Op.getOperand(1).hasOneUse());
8171}
8172
Evan Cheng961d6d42009-02-02 08:19:07 +00008173// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
8174// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00008175static bool isXor1OfSetCC(SDValue Op) {
8176 if (Op.getOpcode() != ISD::XOR)
8177 return false;
8178 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8179 if (N1C && N1C->getAPIntValue() == 1) {
8180 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8181 Op.getOperand(0).hasOneUse();
8182 }
8183 return false;
8184}
8185
Dan Gohmand858e902010-04-17 15:26:15 +00008186SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008187 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008188 SDValue Chain = Op.getOperand(0);
8189 SDValue Cond = Op.getOperand(1);
8190 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008191 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008192 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00008193
Dan Gohman1a492952009-10-20 16:22:37 +00008194 if (Cond.getOpcode() == ISD::SETCC) {
8195 SDValue NewCond = LowerSETCC(Cond, DAG);
8196 if (NewCond.getNode())
8197 Cond = NewCond;
8198 }
Chris Lattnere55484e2008-12-25 05:34:37 +00008199#if 0
8200 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00008201 else if (Cond.getOpcode() == X86ISD::ADD ||
8202 Cond.getOpcode() == X86ISD::SUB ||
8203 Cond.getOpcode() == X86ISD::SMUL ||
8204 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00008205 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00008206#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00008207
Evan Chengad9c0a32009-12-15 00:53:42 +00008208 // Look pass (and (setcc_carry (cmp ...)), 1).
8209 if (Cond.getOpcode() == ISD::AND &&
8210 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8211 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008212 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008213 Cond = Cond.getOperand(0);
8214 }
8215
Evan Cheng3f41d662007-10-08 22:16:29 +00008216 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8217 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008218 if (Cond.getOpcode() == X86ISD::SETCC ||
8219 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008220 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008221
Dan Gohman475871a2008-07-27 21:46:04 +00008222 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008223 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00008224 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00008225 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00008226 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008227 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00008228 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00008229 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008230 default: break;
8231 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00008232 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00008233 // These can only come from an arithmetic instruction with overflow,
8234 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008235 Cond = Cond.getNode()->getOperand(1);
8236 addTest = false;
8237 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008238 }
Evan Cheng0488db92007-09-25 01:57:46 +00008239 }
Evan Cheng370e5342008-12-03 08:38:43 +00008240 } else {
8241 unsigned CondOpc;
8242 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
8243 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00008244 if (CondOpc == ISD::OR) {
8245 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
8246 // two branches instead of an explicit OR instruction with a
8247 // separate test.
8248 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008249 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00008250 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008251 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008252 Chain, Dest, CC, Cmp);
8253 CC = Cond.getOperand(1).getOperand(0);
8254 Cond = Cmp;
8255 addTest = false;
8256 }
8257 } else { // ISD::AND
8258 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
8259 // two branches instead of an explicit AND instruction with a
8260 // separate test. However, we only do this if this block doesn't
8261 // have a fall-through edge, because this requires an explicit
8262 // jmp when the condition is false.
8263 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008264 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00008265 Op.getNode()->hasOneUse()) {
8266 X86::CondCode CCode =
8267 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8268 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008269 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00008270 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00008271 // Look for an unconditional branch following this conditional branch.
8272 // We need this because we need to reverse the successors in order
8273 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00008274 if (User->getOpcode() == ISD::BR) {
8275 SDValue FalseBB = User->getOperand(1);
8276 SDNode *NewBR =
8277 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00008278 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00008279 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00008280 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00008281
Dale Johannesene4d209d2009-02-03 20:21:25 +00008282 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008283 Chain, Dest, CC, Cmp);
8284 X86::CondCode CCode =
8285 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
8286 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008287 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00008288 Cond = Cmp;
8289 addTest = false;
8290 }
8291 }
Dan Gohman279c22e2008-10-21 03:29:32 +00008292 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00008293 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
8294 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
8295 // It should be transformed during dag combiner except when the condition
8296 // is set by a arithmetics with overflow node.
8297 X86::CondCode CCode =
8298 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8299 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008300 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00008301 Cond = Cond.getOperand(0).getOperand(1);
8302 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00008303 }
Evan Cheng0488db92007-09-25 01:57:46 +00008304 }
8305
8306 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008307 // Look pass the truncate.
8308 if (Cond.getOpcode() == ISD::TRUNCATE)
8309 Cond = Cond.getOperand(0);
8310
8311 // We know the result of AND is compared against zero. Try to match
8312 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008313 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008314 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
8315 if (NewSetCC.getNode()) {
8316 CC = NewSetCC.getOperand(0);
8317 Cond = NewSetCC.getOperand(1);
8318 addTest = false;
8319 }
8320 }
8321 }
8322
8323 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008324 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008325 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008326 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00008327 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00008328 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00008329}
8330
Anton Korobeynikove060b532007-04-17 19:34:00 +00008331
8332// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
8333// Calls to _alloca is needed to probe the stack when allocating more than 4k
8334// bytes in one go. Touching the stack at 4K increments is necessary to ensure
8335// that the guard pages used by the OS virtual memory manager are allocated in
8336// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00008337SDValue
8338X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008339 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00008340 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008341 "This should be used only on Windows targets");
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008342 assert(!Subtarget->isTargetEnvMacho());
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008343 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008344
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008345 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008346 SDValue Chain = Op.getOperand(0);
8347 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008348 // FIXME: Ensure alignment here
8349
Dan Gohman475871a2008-07-27 21:46:04 +00008350 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008351
Owen Anderson825b72b2009-08-11 20:47:22 +00008352 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008353 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008354
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008355 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008356 Flag = Chain.getValue(1);
8357
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008358 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008359
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008360 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00008361 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008362
Dale Johannesendd64c412009-02-04 00:33:20 +00008363 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008364
Dan Gohman475871a2008-07-27 21:46:04 +00008365 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008366 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008367}
8368
Dan Gohmand858e902010-04-17 15:26:15 +00008369SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00008370 MachineFunction &MF = DAG.getMachineFunction();
8371 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
8372
Dan Gohman69de1932008-02-06 22:27:42 +00008373 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00008374 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00008375
Anton Korobeynikove7beda12010-10-03 22:52:07 +00008376 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00008377 // vastart just stores the address of the VarArgsFrameIndex slot into the
8378 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00008379 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8380 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008381 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
8382 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008383 }
8384
8385 // __va_list_tag:
8386 // gp_offset (0 - 6 * 8)
8387 // fp_offset (48 - 48 + 8 * 16)
8388 // overflow_arg_area (point to parameters coming in memory).
8389 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00008390 SmallVector<SDValue, 8> MemOps;
8391 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00008392 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008393 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008394 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
8395 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008396 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008397 MemOps.push_back(Store);
8398
8399 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008400 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008401 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008402 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008403 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
8404 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008405 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008406 MemOps.push_back(Store);
8407
8408 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00008409 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008410 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00008411 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8412 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008413 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
8414 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00008415 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008416 MemOps.push_back(Store);
8417
8418 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00008419 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008420 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00008421 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
8422 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008423 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
8424 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008425 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008426 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00008427 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00008428}
8429
Dan Gohmand858e902010-04-17 15:26:15 +00008430SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00008431 assert(Subtarget->is64Bit() &&
8432 "LowerVAARG only handles 64-bit va_arg!");
8433 assert((Subtarget->isTargetLinux() ||
8434 Subtarget->isTargetDarwin()) &&
8435 "Unhandled target in LowerVAARG");
8436 assert(Op.getNode()->getNumOperands() == 4);
8437 SDValue Chain = Op.getOperand(0);
8438 SDValue SrcPtr = Op.getOperand(1);
8439 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
8440 unsigned Align = Op.getConstantOperandVal(3);
8441 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00008442
Dan Gohman320afb82010-10-12 18:00:49 +00008443 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008444 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Dan Gohman320afb82010-10-12 18:00:49 +00008445 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
8446 uint8_t ArgMode;
8447
8448 // Decide which area this value should be read from.
8449 // TODO: Implement the AMD64 ABI in its entirety. This simple
8450 // selection mechanism works only for the basic types.
8451 if (ArgVT == MVT::f80) {
8452 llvm_unreachable("va_arg for f80 not yet implemented");
8453 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
8454 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
8455 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
8456 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
8457 } else {
8458 llvm_unreachable("Unhandled argument type in LowerVAARG");
8459 }
8460
8461 if (ArgMode == 2) {
8462 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00008463 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00008464 !(DAG.getMachineFunction()
8465 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00008466 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00008467 }
8468
8469 // Insert VAARG_64 node into the DAG
8470 // VAARG_64 returns two values: Variable Argument Address, Chain
8471 SmallVector<SDValue, 11> InstOps;
8472 InstOps.push_back(Chain);
8473 InstOps.push_back(SrcPtr);
8474 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
8475 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
8476 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
8477 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
8478 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
8479 VTs, &InstOps[0], InstOps.size(),
8480 MVT::i64,
8481 MachinePointerInfo(SV),
8482 /*Align=*/0,
8483 /*Volatile=*/false,
8484 /*ReadMem=*/true,
8485 /*WriteMem=*/true);
8486 Chain = VAARG.getValue(1);
8487
8488 // Load the next argument and return it
8489 return DAG.getLoad(ArgVT, dl,
8490 Chain,
8491 VAARG,
8492 MachinePointerInfo(),
8493 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00008494}
8495
Dan Gohmand858e902010-04-17 15:26:15 +00008496SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00008497 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00008498 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00008499 SDValue Chain = Op.getOperand(0);
8500 SDValue DstPtr = Op.getOperand(1);
8501 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00008502 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
8503 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00008504 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00008505
Chris Lattnere72f2022010-09-21 05:40:29 +00008506 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00008507 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008508 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00008509 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00008510}
8511
Dan Gohman475871a2008-07-27 21:46:04 +00008512SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008513X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008514 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008515 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00008516 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00008517 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00008518 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00008519 case Intrinsic::x86_sse_comieq_ss:
8520 case Intrinsic::x86_sse_comilt_ss:
8521 case Intrinsic::x86_sse_comile_ss:
8522 case Intrinsic::x86_sse_comigt_ss:
8523 case Intrinsic::x86_sse_comige_ss:
8524 case Intrinsic::x86_sse_comineq_ss:
8525 case Intrinsic::x86_sse_ucomieq_ss:
8526 case Intrinsic::x86_sse_ucomilt_ss:
8527 case Intrinsic::x86_sse_ucomile_ss:
8528 case Intrinsic::x86_sse_ucomigt_ss:
8529 case Intrinsic::x86_sse_ucomige_ss:
8530 case Intrinsic::x86_sse_ucomineq_ss:
8531 case Intrinsic::x86_sse2_comieq_sd:
8532 case Intrinsic::x86_sse2_comilt_sd:
8533 case Intrinsic::x86_sse2_comile_sd:
8534 case Intrinsic::x86_sse2_comigt_sd:
8535 case Intrinsic::x86_sse2_comige_sd:
8536 case Intrinsic::x86_sse2_comineq_sd:
8537 case Intrinsic::x86_sse2_ucomieq_sd:
8538 case Intrinsic::x86_sse2_ucomilt_sd:
8539 case Intrinsic::x86_sse2_ucomile_sd:
8540 case Intrinsic::x86_sse2_ucomigt_sd:
8541 case Intrinsic::x86_sse2_ucomige_sd:
8542 case Intrinsic::x86_sse2_ucomineq_sd: {
8543 unsigned Opc = 0;
8544 ISD::CondCode CC = ISD::SETCC_INVALID;
8545 switch (IntNo) {
8546 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008547 case Intrinsic::x86_sse_comieq_ss:
8548 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008549 Opc = X86ISD::COMI;
8550 CC = ISD::SETEQ;
8551 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008552 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008553 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008554 Opc = X86ISD::COMI;
8555 CC = ISD::SETLT;
8556 break;
8557 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008558 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008559 Opc = X86ISD::COMI;
8560 CC = ISD::SETLE;
8561 break;
8562 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008563 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008564 Opc = X86ISD::COMI;
8565 CC = ISD::SETGT;
8566 break;
8567 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008568 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008569 Opc = X86ISD::COMI;
8570 CC = ISD::SETGE;
8571 break;
8572 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008573 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008574 Opc = X86ISD::COMI;
8575 CC = ISD::SETNE;
8576 break;
8577 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008578 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008579 Opc = X86ISD::UCOMI;
8580 CC = ISD::SETEQ;
8581 break;
8582 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008583 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008584 Opc = X86ISD::UCOMI;
8585 CC = ISD::SETLT;
8586 break;
8587 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008588 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008589 Opc = X86ISD::UCOMI;
8590 CC = ISD::SETLE;
8591 break;
8592 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008593 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008594 Opc = X86ISD::UCOMI;
8595 CC = ISD::SETGT;
8596 break;
8597 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008598 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008599 Opc = X86ISD::UCOMI;
8600 CC = ISD::SETGE;
8601 break;
8602 case Intrinsic::x86_sse_ucomineq_ss:
8603 case Intrinsic::x86_sse2_ucomineq_sd:
8604 Opc = X86ISD::UCOMI;
8605 CC = ISD::SETNE;
8606 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008607 }
Evan Cheng734503b2006-09-11 02:19:56 +00008608
Dan Gohman475871a2008-07-27 21:46:04 +00008609 SDValue LHS = Op.getOperand(1);
8610 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00008611 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008612 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008613 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
8614 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8615 DAG.getConstant(X86CC, MVT::i8), Cond);
8616 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00008617 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008618 // ptest and testp intrinsics. The intrinsic these come from are designed to
8619 // return an integer value, not just an instruction so lower it to the ptest
8620 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00008621 case Intrinsic::x86_sse41_ptestz:
8622 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008623 case Intrinsic::x86_sse41_ptestnzc:
8624 case Intrinsic::x86_avx_ptestz_256:
8625 case Intrinsic::x86_avx_ptestc_256:
8626 case Intrinsic::x86_avx_ptestnzc_256:
8627 case Intrinsic::x86_avx_vtestz_ps:
8628 case Intrinsic::x86_avx_vtestc_ps:
8629 case Intrinsic::x86_avx_vtestnzc_ps:
8630 case Intrinsic::x86_avx_vtestz_pd:
8631 case Intrinsic::x86_avx_vtestc_pd:
8632 case Intrinsic::x86_avx_vtestnzc_pd:
8633 case Intrinsic::x86_avx_vtestz_ps_256:
8634 case Intrinsic::x86_avx_vtestc_ps_256:
8635 case Intrinsic::x86_avx_vtestnzc_ps_256:
8636 case Intrinsic::x86_avx_vtestz_pd_256:
8637 case Intrinsic::x86_avx_vtestc_pd_256:
8638 case Intrinsic::x86_avx_vtestnzc_pd_256: {
8639 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00008640 unsigned X86CC = 0;
8641 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00008642 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008643 case Intrinsic::x86_avx_vtestz_ps:
8644 case Intrinsic::x86_avx_vtestz_pd:
8645 case Intrinsic::x86_avx_vtestz_ps_256:
8646 case Intrinsic::x86_avx_vtestz_pd_256:
8647 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008648 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008649 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008650 // ZF = 1
8651 X86CC = X86::COND_E;
8652 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008653 case Intrinsic::x86_avx_vtestc_ps:
8654 case Intrinsic::x86_avx_vtestc_pd:
8655 case Intrinsic::x86_avx_vtestc_ps_256:
8656 case Intrinsic::x86_avx_vtestc_pd_256:
8657 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008658 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008659 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008660 // CF = 1
8661 X86CC = X86::COND_B;
8662 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008663 case Intrinsic::x86_avx_vtestnzc_ps:
8664 case Intrinsic::x86_avx_vtestnzc_pd:
8665 case Intrinsic::x86_avx_vtestnzc_ps_256:
8666 case Intrinsic::x86_avx_vtestnzc_pd_256:
8667 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00008668 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008669 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008670 // ZF and CF = 0
8671 X86CC = X86::COND_A;
8672 break;
8673 }
Eric Christopherfd179292009-08-27 18:07:15 +00008674
Eric Christopher71c67532009-07-29 00:28:05 +00008675 SDValue LHS = Op.getOperand(1);
8676 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008677 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
8678 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00008679 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
8680 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
8681 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00008682 }
Evan Cheng5759f972008-05-04 09:15:50 +00008683
8684 // Fix vector shift instructions where the last operand is a non-immediate
8685 // i32 value.
8686 case Intrinsic::x86_sse2_pslli_w:
8687 case Intrinsic::x86_sse2_pslli_d:
8688 case Intrinsic::x86_sse2_pslli_q:
8689 case Intrinsic::x86_sse2_psrli_w:
8690 case Intrinsic::x86_sse2_psrli_d:
8691 case Intrinsic::x86_sse2_psrli_q:
8692 case Intrinsic::x86_sse2_psrai_w:
8693 case Intrinsic::x86_sse2_psrai_d:
8694 case Intrinsic::x86_mmx_pslli_w:
8695 case Intrinsic::x86_mmx_pslli_d:
8696 case Intrinsic::x86_mmx_pslli_q:
8697 case Intrinsic::x86_mmx_psrli_w:
8698 case Intrinsic::x86_mmx_psrli_d:
8699 case Intrinsic::x86_mmx_psrli_q:
8700 case Intrinsic::x86_mmx_psrai_w:
8701 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00008702 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00008703 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00008704 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00008705
8706 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008707 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008708 switch (IntNo) {
8709 case Intrinsic::x86_sse2_pslli_w:
8710 NewIntNo = Intrinsic::x86_sse2_psll_w;
8711 break;
8712 case Intrinsic::x86_sse2_pslli_d:
8713 NewIntNo = Intrinsic::x86_sse2_psll_d;
8714 break;
8715 case Intrinsic::x86_sse2_pslli_q:
8716 NewIntNo = Intrinsic::x86_sse2_psll_q;
8717 break;
8718 case Intrinsic::x86_sse2_psrli_w:
8719 NewIntNo = Intrinsic::x86_sse2_psrl_w;
8720 break;
8721 case Intrinsic::x86_sse2_psrli_d:
8722 NewIntNo = Intrinsic::x86_sse2_psrl_d;
8723 break;
8724 case Intrinsic::x86_sse2_psrli_q:
8725 NewIntNo = Intrinsic::x86_sse2_psrl_q;
8726 break;
8727 case Intrinsic::x86_sse2_psrai_w:
8728 NewIntNo = Intrinsic::x86_sse2_psra_w;
8729 break;
8730 case Intrinsic::x86_sse2_psrai_d:
8731 NewIntNo = Intrinsic::x86_sse2_psra_d;
8732 break;
8733 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008734 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008735 switch (IntNo) {
8736 case Intrinsic::x86_mmx_pslli_w:
8737 NewIntNo = Intrinsic::x86_mmx_psll_w;
8738 break;
8739 case Intrinsic::x86_mmx_pslli_d:
8740 NewIntNo = Intrinsic::x86_mmx_psll_d;
8741 break;
8742 case Intrinsic::x86_mmx_pslli_q:
8743 NewIntNo = Intrinsic::x86_mmx_psll_q;
8744 break;
8745 case Intrinsic::x86_mmx_psrli_w:
8746 NewIntNo = Intrinsic::x86_mmx_psrl_w;
8747 break;
8748 case Intrinsic::x86_mmx_psrli_d:
8749 NewIntNo = Intrinsic::x86_mmx_psrl_d;
8750 break;
8751 case Intrinsic::x86_mmx_psrli_q:
8752 NewIntNo = Intrinsic::x86_mmx_psrl_q;
8753 break;
8754 case Intrinsic::x86_mmx_psrai_w:
8755 NewIntNo = Intrinsic::x86_mmx_psra_w;
8756 break;
8757 case Intrinsic::x86_mmx_psrai_d:
8758 NewIntNo = Intrinsic::x86_mmx_psra_d;
8759 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00008760 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00008761 }
8762 break;
8763 }
8764 }
Mon P Wangefa42202009-09-03 19:56:25 +00008765
8766 // The vector shift intrinsics with scalars uses 32b shift amounts but
8767 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
8768 // to be zero.
8769 SDValue ShOps[4];
8770 ShOps[0] = ShAmt;
8771 ShOps[1] = DAG.getConstant(0, MVT::i32);
8772 if (ShAmtVT == MVT::v4i32) {
8773 ShOps[2] = DAG.getUNDEF(MVT::i32);
8774 ShOps[3] = DAG.getUNDEF(MVT::i32);
8775 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
8776 } else {
8777 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00008778// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00008779 }
8780
Owen Andersone50ed302009-08-10 22:56:29 +00008781 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008782 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008783 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008784 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00008785 Op.getOperand(1), ShAmt);
8786 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00008787 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008788}
Evan Cheng72261582005-12-20 06:22:03 +00008789
Dan Gohmand858e902010-04-17 15:26:15 +00008790SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
8791 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00008792 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8793 MFI->setReturnAddressIsTaken(true);
8794
Bill Wendling64e87322009-01-16 19:25:27 +00008795 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008796 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00008797
8798 if (Depth > 0) {
8799 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
8800 SDValue Offset =
8801 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00008802 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008803 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008804 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008805 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00008806 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00008807 }
8808
8809 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00008810 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00008811 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008812 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008813}
8814
Dan Gohmand858e902010-04-17 15:26:15 +00008815SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00008816 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8817 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00008818
Owen Andersone50ed302009-08-10 22:56:29 +00008819 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008820 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00008821 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
8822 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00008823 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00008824 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00008825 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
8826 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00008827 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00008828 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00008829}
8830
Dan Gohman475871a2008-07-27 21:46:04 +00008831SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008832 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008833 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008834}
8835
Dan Gohmand858e902010-04-17 15:26:15 +00008836SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008837 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00008838 SDValue Chain = Op.getOperand(0);
8839 SDValue Offset = Op.getOperand(1);
8840 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008841 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008842
Dan Gohmand8816272010-08-11 18:14:00 +00008843 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
8844 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
8845 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008846 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008847
Dan Gohmand8816272010-08-11 18:14:00 +00008848 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
8849 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008850 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008851 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
8852 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00008853 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008854 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008855
Dale Johannesene4d209d2009-02-03 20:21:25 +00008856 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008857 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008858 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008859}
8860
Dan Gohman475871a2008-07-27 21:46:04 +00008861SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008862 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008863 SDValue Root = Op.getOperand(0);
8864 SDValue Trmp = Op.getOperand(1); // trampoline
8865 SDValue FPtr = Op.getOperand(2); // nested function
8866 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008867 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008868
Dan Gohman69de1932008-02-06 22:27:42 +00008869 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008870
8871 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008872 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00008873
8874 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00008875 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
8876 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00008877
Evan Cheng0e6a0522011-07-18 20:57:22 +00008878 const unsigned char N86R10 = X86_MC::getX86RegNum(X86::R10);
8879 const unsigned char N86R11 = X86_MC::getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00008880
8881 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
8882
8883 // Load the pointer to the nested function into R11.
8884 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00008885 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008886 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008887 Addr, MachinePointerInfo(TrmpAddr),
8888 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008889
Owen Anderson825b72b2009-08-11 20:47:22 +00008890 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8891 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008892 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8893 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00008894 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008895
8896 // Load the 'nest' parameter value into R10.
8897 // R10 is specified in X86CallingConv.td
8898 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00008899 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8900 DAG.getConstant(10, MVT::i64));
8901 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008902 Addr, MachinePointerInfo(TrmpAddr, 10),
8903 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008904
Owen Anderson825b72b2009-08-11 20:47:22 +00008905 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8906 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008907 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8908 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00008909 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008910
8911 // Jump to the nested function.
8912 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00008913 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8914 DAG.getConstant(20, MVT::i64));
8915 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008916 Addr, MachinePointerInfo(TrmpAddr, 20),
8917 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008918
8919 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008920 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8921 DAG.getConstant(22, MVT::i64));
8922 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008923 MachinePointerInfo(TrmpAddr, 22),
8924 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008925
Dan Gohman475871a2008-07-27 21:46:04 +00008926 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008927 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008928 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008929 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008930 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008931 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008932 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008933 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008934
8935 switch (CC) {
8936 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008937 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008938 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008939 case CallingConv::X86_StdCall: {
8940 // Pass 'nest' parameter in ECX.
8941 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008942 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008943
8944 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008945 FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008946 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008947
Chris Lattner58d74912008-03-12 17:45:29 +00008948 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008949 unsigned InRegCount = 0;
8950 unsigned Idx = 1;
8951
8952 for (FunctionType::param_iterator I = FTy->param_begin(),
8953 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008954 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008955 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008956 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008957
8958 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00008959 report_fatal_error("Nest register in use - reduce number of inreg"
8960 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008961 }
8962 }
8963 break;
8964 }
8965 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00008966 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00008967 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008968 // Pass 'nest' parameter in EAX.
8969 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008970 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008971 break;
8972 }
8973
Dan Gohman475871a2008-07-27 21:46:04 +00008974 SDValue OutChains[4];
8975 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008976
Owen Anderson825b72b2009-08-11 20:47:22 +00008977 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8978 DAG.getConstant(10, MVT::i32));
8979 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008980
Chris Lattnera62fe662010-02-05 19:20:30 +00008981 // This is storing the opcode for MOV32ri.
8982 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Evan Cheng0e6a0522011-07-18 20:57:22 +00008983 const unsigned char N86Reg = X86_MC::getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00008984 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008985 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008986 Trmp, MachinePointerInfo(TrmpAddr),
8987 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008988
Owen Anderson825b72b2009-08-11 20:47:22 +00008989 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8990 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008991 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
8992 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00008993 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008994
Chris Lattnera62fe662010-02-05 19:20:30 +00008995 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00008996 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8997 DAG.getConstant(5, MVT::i32));
8998 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008999 MachinePointerInfo(TrmpAddr, 5),
9000 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009001
Owen Anderson825b72b2009-08-11 20:47:22 +00009002 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9003 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009004 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
9005 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00009006 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009007
Dan Gohman475871a2008-07-27 21:46:04 +00009008 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00009009 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009010 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009011 }
9012}
9013
Dan Gohmand858e902010-04-17 15:26:15 +00009014SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
9015 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009016 /*
9017 The rounding mode is in bits 11:10 of FPSR, and has the following
9018 settings:
9019 00 Round to nearest
9020 01 Round to -inf
9021 10 Round to +inf
9022 11 Round to 0
9023
9024 FLT_ROUNDS, on the other hand, expects the following:
9025 -1 Undefined
9026 0 Round to 0
9027 1 Round to nearest
9028 2 Round to +inf
9029 3 Round to -inf
9030
9031 To perform the conversion, we do:
9032 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
9033 */
9034
9035 MachineFunction &MF = DAG.getMachineFunction();
9036 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00009037 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009038 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00009039 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00009040 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009041
9042 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00009043 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00009044 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009045
Michael J. Spencerec38de22010-10-10 22:04:20 +00009046
Chris Lattner2156b792010-09-22 01:11:26 +00009047 MachineMemOperand *MMO =
9048 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9049 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009050
Chris Lattner2156b792010-09-22 01:11:26 +00009051 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
9052 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
9053 DAG.getVTList(MVT::Other),
9054 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009055
9056 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00009057 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00009058 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009059
9060 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00009061 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00009062 DAG.getNode(ISD::SRL, DL, MVT::i16,
9063 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009064 CWD, DAG.getConstant(0x800, MVT::i16)),
9065 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00009066 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00009067 DAG.getNode(ISD::SRL, DL, MVT::i16,
9068 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009069 CWD, DAG.getConstant(0x400, MVT::i16)),
9070 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009071
Dan Gohman475871a2008-07-27 21:46:04 +00009072 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00009073 DAG.getNode(ISD::AND, DL, MVT::i16,
9074 DAG.getNode(ISD::ADD, DL, MVT::i16,
9075 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00009076 DAG.getConstant(1, MVT::i16)),
9077 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009078
9079
Duncan Sands83ec4b62008-06-06 12:08:01 +00009080 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00009081 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009082}
9083
Dan Gohmand858e902010-04-17 15:26:15 +00009084SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009085 EVT VT = Op.getValueType();
9086 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009087 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009088 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009089
9090 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009091 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00009092 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00009093 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009094 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009095 }
Evan Cheng18efe262007-12-14 02:13:44 +00009096
Evan Cheng152804e2007-12-14 08:30:15 +00009097 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009098 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009099 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009100
9101 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009102 SDValue Ops[] = {
9103 Op,
9104 DAG.getConstant(NumBits+NumBits-1, OpVT),
9105 DAG.getConstant(X86::COND_E, MVT::i8),
9106 Op.getValue(1)
9107 };
9108 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009109
9110 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00009111 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00009112
Owen Anderson825b72b2009-08-11 20:47:22 +00009113 if (VT == MVT::i8)
9114 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009115 return Op;
9116}
9117
Dan Gohmand858e902010-04-17 15:26:15 +00009118SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009119 EVT VT = Op.getValueType();
9120 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009121 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009122 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009123
9124 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009125 if (VT == MVT::i8) {
9126 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009127 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009128 }
Evan Cheng152804e2007-12-14 08:30:15 +00009129
9130 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009131 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009132 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009133
9134 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009135 SDValue Ops[] = {
9136 Op,
9137 DAG.getConstant(NumBits, OpVT),
9138 DAG.getConstant(X86::COND_E, MVT::i8),
9139 Op.getValue(1)
9140 };
9141 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009142
Owen Anderson825b72b2009-08-11 20:47:22 +00009143 if (VT == MVT::i8)
9144 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009145 return Op;
9146}
9147
Dan Gohmand858e902010-04-17 15:26:15 +00009148SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009149 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00009150 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009151 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00009152
Mon P Wangaf9b9522008-12-18 21:42:19 +00009153 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
9154 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
9155 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
9156 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
9157 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
9158 //
9159 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
9160 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
9161 // return AloBlo + AloBhi + AhiBlo;
9162
9163 SDValue A = Op.getOperand(0);
9164 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009165
Dale Johannesene4d209d2009-02-03 20:21:25 +00009166 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009167 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9168 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009169 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009170 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9171 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009172 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009173 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009174 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009175 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009176 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009177 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009178 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009179 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009180 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009181 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009182 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9183 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009184 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009185 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9186 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009187 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
9188 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009189 return Res;
9190}
9191
Nadav Rotem43012222011-05-11 08:12:09 +00009192SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
9193
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009194 EVT VT = Op.getValueType();
9195 DebugLoc dl = Op.getDebugLoc();
9196 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +00009197 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009198
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009199 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009200
Nadav Rotem43012222011-05-11 08:12:09 +00009201 // Must have SSE2.
9202 if (!Subtarget->hasSSE2()) return SDValue();
Nate Begeman51409212010-07-28 00:21:48 +00009203
Nadav Rotem43012222011-05-11 08:12:09 +00009204 // Optimize shl/srl/sra with constant shift amount.
9205 if (isSplatVector(Amt.getNode())) {
9206 SDValue SclrAmt = Amt->getOperand(0);
9207 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
9208 uint64_t ShiftAmt = C->getZExtValue();
9209
9210 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SHL)
9211 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9212 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9213 R, DAG.getConstant(ShiftAmt, MVT::i32));
9214
9215 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SHL)
9216 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9217 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9218 R, DAG.getConstant(ShiftAmt, MVT::i32));
9219
9220 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SHL)
9221 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9222 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9223 R, DAG.getConstant(ShiftAmt, MVT::i32));
9224
9225 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SRL)
9226 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9227 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9228 R, DAG.getConstant(ShiftAmt, MVT::i32));
9229
9230 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRL)
9231 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9232 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
9233 R, DAG.getConstant(ShiftAmt, MVT::i32));
9234
9235 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRL)
9236 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9237 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
9238 R, DAG.getConstant(ShiftAmt, MVT::i32));
9239
9240 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRA)
9241 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9242 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
9243 R, DAG.getConstant(ShiftAmt, MVT::i32));
9244
9245 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRA)
9246 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9247 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
9248 R, DAG.getConstant(ShiftAmt, MVT::i32));
9249 }
9250 }
9251
9252 // Lower SHL with variable shift amount.
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009253 // Cannot lower SHL without SSE2 or later.
9254 if (!Subtarget->hasSSE2()) return SDValue();
Nadav Rotem43012222011-05-11 08:12:09 +00009255
9256 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009257 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9258 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9259 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
9260
9261 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009262
Nate Begeman51409212010-07-28 00:21:48 +00009263 std::vector<Constant*> CV(4, CI);
9264 Constant *C = ConstantVector::get(CV);
9265 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9266 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009267 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009268 false, false, 16);
9269
9270 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009271 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009272 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
9273 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
9274 }
Nadav Rotem43012222011-05-11 08:12:09 +00009275 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009276 // a = a << 5;
9277 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9278 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9279 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
9280
9281 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
9282 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
9283
9284 std::vector<Constant*> CVM1(16, CM1);
9285 std::vector<Constant*> CVM2(16, CM2);
9286 Constant *C = ConstantVector::get(CVM1);
9287 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9288 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009289 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009290 false, false, 16);
9291
9292 // r = pblendv(r, psllw(r & (char16)15, 4), a);
9293 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9294 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9295 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9296 DAG.getConstant(4, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009297 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009298 // a += a
9299 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009300
Nate Begeman51409212010-07-28 00:21:48 +00009301 C = ConstantVector::get(CVM2);
9302 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9303 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009304 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009305 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009306
Nate Begeman51409212010-07-28 00:21:48 +00009307 // r = pblendv(r, psllw(r & (char16)63, 2), a);
9308 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9309 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9310 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9311 DAG.getConstant(2, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009312 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009313 // a += a
9314 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009315
Nate Begeman51409212010-07-28 00:21:48 +00009316 // return pblendv(r, r+r, a);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009317 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT,
Nate Begeman51409212010-07-28 00:21:48 +00009318 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
9319 return R;
9320 }
9321 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009322}
Mon P Wangaf9b9522008-12-18 21:42:19 +00009323
Dan Gohmand858e902010-04-17 15:26:15 +00009324SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00009325 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
9326 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00009327 // looks for this combo and may remove the "setcc" instruction if the "setcc"
9328 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00009329 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00009330 SDValue LHS = N->getOperand(0);
9331 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00009332 unsigned BaseOp = 0;
9333 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009334 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00009335 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009336 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00009337 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00009338 // A subtract of one will be selected as a INC. Note that INC doesn't
9339 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009340 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9341 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009342 BaseOp = X86ISD::INC;
9343 Cond = X86::COND_O;
9344 break;
9345 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009346 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00009347 Cond = X86::COND_O;
9348 break;
9349 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009350 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00009351 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009352 break;
9353 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00009354 // A subtract of one will be selected as a DEC. Note that DEC doesn't
9355 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009356 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9357 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009358 BaseOp = X86ISD::DEC;
9359 Cond = X86::COND_O;
9360 break;
9361 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009362 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00009363 Cond = X86::COND_O;
9364 break;
9365 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009366 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00009367 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009368 break;
9369 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00009370 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00009371 Cond = X86::COND_O;
9372 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009373 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
9374 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
9375 MVT::i32);
9376 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009377
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009378 SDValue SetCC =
9379 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
9380 DAG.getConstant(X86::COND_O, MVT::i32),
9381 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009382
Dan Gohman6e5fda22011-07-22 18:45:15 +00009383 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009384 }
Bill Wendling74c37652008-12-09 22:08:41 +00009385 }
Bill Wendling3fafd932008-11-26 22:37:40 +00009386
Bill Wendling61edeb52008-12-02 01:06:39 +00009387 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009388 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009389 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00009390
Bill Wendling61edeb52008-12-02 01:06:39 +00009391 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009392 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
9393 DAG.getConstant(Cond, MVT::i32),
9394 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00009395
Dan Gohman6e5fda22011-07-22 18:45:15 +00009396 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +00009397}
9398
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009399SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const{
9400 DebugLoc dl = Op.getDebugLoc();
9401 SDNode* Node = Op.getNode();
9402 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
9403 EVT VT = Node->getValueType(0);
9404
9405 if (Subtarget->hasSSE2() && VT.isVector()) {
9406 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
9407 ExtraVT.getScalarType().getSizeInBits();
9408 SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
9409
9410 unsigned SHLIntrinsicsID = 0;
9411 unsigned SRAIntrinsicsID = 0;
9412 switch (VT.getSimpleVT().SimpleTy) {
9413 default:
9414 return SDValue();
9415 case MVT::v2i64: {
9416 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_q;
9417 SRAIntrinsicsID = 0;
9418 break;
9419 }
9420 case MVT::v4i32: {
9421 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_d;
9422 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_d;
9423 break;
9424 }
9425 case MVT::v8i16: {
9426 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_w;
9427 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_w;
9428 break;
9429 }
9430 }
9431
9432 SDValue Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9433 DAG.getConstant(SHLIntrinsicsID, MVT::i32),
9434 Node->getOperand(0), ShAmt);
9435
9436 // In case of 1 bit sext, no need to shr
9437 if (ExtraVT.getScalarType().getSizeInBits() == 1) return Tmp1;
9438
9439 if (SRAIntrinsicsID) {
9440 Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9441 DAG.getConstant(SRAIntrinsicsID, MVT::i32),
9442 Tmp1, ShAmt);
9443 }
9444 return Tmp1;
9445 }
9446
9447 return SDValue();
9448}
9449
9450
Eric Christopher9a9d2752010-07-22 02:48:34 +00009451SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
9452 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009453
Eric Christopher77ed1352011-07-08 00:04:56 +00009454 // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
9455 // There isn't any reason to disable it if the target processor supports it.
9456 if (!Subtarget->hasSSE2() && !Subtarget->is64Bit()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00009457 SDValue Chain = Op.getOperand(0);
Eric Christopher77ed1352011-07-08 00:04:56 +00009458 SDValue Zero = DAG.getConstant(0, MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00009459 SDValue Ops[] = {
9460 DAG.getRegister(X86::ESP, MVT::i32), // Base
9461 DAG.getTargetConstant(1, MVT::i8), // Scale
9462 DAG.getRegister(0, MVT::i32), // Index
9463 DAG.getTargetConstant(0, MVT::i32), // Disp
9464 DAG.getRegister(0, MVT::i32), // Segment.
9465 Zero,
9466 Chain
9467 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00009468 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00009469 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9470 array_lengthof(Ops));
9471 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00009472 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009473
Eric Christopher9a9d2752010-07-22 02:48:34 +00009474 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00009475 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00009476 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009477
Chris Lattner132929a2010-08-14 17:26:09 +00009478 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
9479 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
9480 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
9481 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009482
Chris Lattner132929a2010-08-14 17:26:09 +00009483 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
9484 if (!Op1 && !Op2 && !Op3 && Op4)
9485 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009486
Chris Lattner132929a2010-08-14 17:26:09 +00009487 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
9488 if (Op1 && !Op2 && !Op3 && !Op4)
9489 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009490
9491 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00009492 // (MFENCE)>;
9493 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00009494}
9495
Eli Friedman14648462011-07-27 22:21:52 +00009496SDValue X86TargetLowering::LowerATOMIC_FENCE(SDValue Op,
9497 SelectionDAG &DAG) const {
9498 DebugLoc dl = Op.getDebugLoc();
9499 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
9500 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
9501 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
9502 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
9503
9504 // The only fence that needs an instruction is a sequentially-consistent
9505 // cross-thread fence.
9506 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
9507 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
9508 // no-sse2). There isn't any reason to disable it if the target processor
9509 // supports it.
9510 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
9511 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
9512
9513 SDValue Chain = Op.getOperand(0);
9514 SDValue Zero = DAG.getConstant(0, MVT::i32);
9515 SDValue Ops[] = {
9516 DAG.getRegister(X86::ESP, MVT::i32), // Base
9517 DAG.getTargetConstant(1, MVT::i8), // Scale
9518 DAG.getRegister(0, MVT::i32), // Index
9519 DAG.getTargetConstant(0, MVT::i32), // Disp
9520 DAG.getRegister(0, MVT::i32), // Segment.
9521 Zero,
9522 Chain
9523 };
9524 SDNode *Res =
9525 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9526 array_lengthof(Ops));
9527 return SDValue(Res, 0);
9528 }
9529
9530 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
9531 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
9532}
9533
9534
Dan Gohmand858e902010-04-17 15:26:15 +00009535SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009536 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009537 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00009538 unsigned Reg = 0;
9539 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00009540 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009541 default:
9542 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00009543 case MVT::i8: Reg = X86::AL; size = 1; break;
9544 case MVT::i16: Reg = X86::AX; size = 2; break;
9545 case MVT::i32: Reg = X86::EAX; size = 4; break;
9546 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00009547 assert(Subtarget->is64Bit() && "Node not type legal!");
9548 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00009549 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00009550 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009551 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00009552 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00009553 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009554 Op.getOperand(1),
9555 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00009556 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009557 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009558 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009559 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
9560 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
9561 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00009562 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009563 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00009564 return cpOut;
9565}
9566
Duncan Sands1607f052008-12-01 11:39:25 +00009567SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009568 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00009569 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009570 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009571 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009572 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009573 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009574 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
9575 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00009576 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00009577 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
9578 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00009579 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00009580 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00009581 rdx.getValue(1)
9582 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009583 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009584}
9585
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009586SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +00009587 SelectionDAG &DAG) const {
9588 EVT SrcVT = Op.getOperand(0).getValueType();
9589 EVT DstVT = Op.getValueType();
Chris Lattner2a786eb2010-12-19 20:19:20 +00009590 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
9591 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009592 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00009593 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009594 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +00009595 // i64 <=> MMX conversions are Legal.
9596 if (SrcVT==MVT::i64 && DstVT.isVector())
9597 return Op;
9598 if (DstVT==MVT::i64 && SrcVT.isVector())
9599 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00009600 // MMX <=> MMX conversions are Legal.
9601 if (SrcVT.isVector() && DstVT.isVector())
9602 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00009603 // All other conversions need to be expanded.
9604 return SDValue();
9605}
Chris Lattner5b856542010-12-20 00:59:46 +00009606
Dan Gohmand858e902010-04-17 15:26:15 +00009607SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009608 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009609 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00009610 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009611 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00009612 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009613 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009614 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009615 Node->getOperand(0),
9616 Node->getOperand(1), negOp,
9617 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +00009618 cast<AtomicSDNode>(Node)->getAlignment(),
9619 cast<AtomicSDNode>(Node)->getOrdering(),
9620 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +00009621}
9622
Chris Lattner5b856542010-12-20 00:59:46 +00009623static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
9624 EVT VT = Op.getNode()->getValueType(0);
9625
9626 // Let legalize expand this if it isn't a legal type yet.
9627 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
9628 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009629
Chris Lattner5b856542010-12-20 00:59:46 +00009630 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009631
Chris Lattner5b856542010-12-20 00:59:46 +00009632 unsigned Opc;
9633 bool ExtraOp = false;
9634 switch (Op.getOpcode()) {
9635 default: assert(0 && "Invalid code");
9636 case ISD::ADDC: Opc = X86ISD::ADD; break;
9637 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
9638 case ISD::SUBC: Opc = X86ISD::SUB; break;
9639 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
9640 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009641
Chris Lattner5b856542010-12-20 00:59:46 +00009642 if (!ExtraOp)
9643 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9644 Op.getOperand(1));
9645 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9646 Op.getOperand(1), Op.getOperand(2));
9647}
9648
Evan Cheng0db9fe62006-04-25 20:13:52 +00009649/// LowerOperation - Provide custom lowering hooks for some operations.
9650///
Dan Gohmand858e902010-04-17 15:26:15 +00009651SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00009652 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009653 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009654 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Eric Christopher9a9d2752010-07-22 02:48:34 +00009655 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Eli Friedman14648462011-07-27 22:21:52 +00009656 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009657 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
9658 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009659 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00009660 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009661 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
9662 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
9663 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
David Greene91585092011-01-26 15:38:49 +00009664 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
David Greenecfe33c42011-01-26 19:13:22 +00009665 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009666 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
9667 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
9668 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009669 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00009670 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00009671 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009672 case ISD::SHL_PARTS:
9673 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +00009674 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009675 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00009676 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009677 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00009678 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009679 case ISD::FABS: return LowerFABS(Op, DAG);
9680 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009681 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009682 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009683 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00009684 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009685 case ISD::SELECT: return LowerSELECT(Op, DAG);
9686 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009687 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009688 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00009689 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00009690 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009691 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00009692 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
9693 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009694 case ISD::FRAME_TO_ARGS_OFFSET:
9695 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00009696 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009697 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009698 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00009699 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00009700 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
9701 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009702 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +00009703 case ISD::SRA:
9704 case ISD::SRL:
9705 case ISD::SHL: return LowerShift(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00009706 case ISD::SADDO:
9707 case ISD::UADDO:
9708 case ISD::SSUBO:
9709 case ISD::USUBO:
9710 case ISD::SMULO:
9711 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00009712 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009713 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +00009714 case ISD::ADDC:
9715 case ISD::ADDE:
9716 case ISD::SUBC:
9717 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009718 }
Chris Lattner27a6c732007-11-24 07:07:01 +00009719}
9720
Duncan Sands1607f052008-12-01 11:39:25 +00009721void X86TargetLowering::
9722ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009723 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009724 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009725 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00009726 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00009727
9728 SDValue Chain = Node->getOperand(0);
9729 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009730 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009731 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00009732 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009733 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00009734 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00009735 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00009736 SDValue Result =
9737 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
9738 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00009739 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009740 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009741 Results.push_back(Result.getValue(2));
9742}
9743
Duncan Sands126d9072008-07-04 11:47:58 +00009744/// ReplaceNodeResults - Replace a node with an illegal result type
9745/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00009746void X86TargetLowering::ReplaceNodeResults(SDNode *N,
9747 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009748 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009749 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00009750 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00009751 default:
Duncan Sands1607f052008-12-01 11:39:25 +00009752 assert(false && "Do not know how to custom type legalize this operation!");
9753 return;
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009754 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +00009755 case ISD::ADDC:
9756 case ISD::ADDE:
9757 case ISD::SUBC:
9758 case ISD::SUBE:
9759 // We don't want to expand or promote these.
9760 return;
Duncan Sands1607f052008-12-01 11:39:25 +00009761 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00009762 std::pair<SDValue,SDValue> Vals =
9763 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00009764 SDValue FIST = Vals.first, StackSlot = Vals.second;
9765 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00009766 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00009767 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00009768 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
9769 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00009770 }
9771 return;
9772 }
9773 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009774 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009775 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009776 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009777 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00009778 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00009779 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009780 eax.getValue(2));
9781 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
9782 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00009783 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009784 Results.push_back(edx.getValue(1));
9785 return;
9786 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009787 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00009788 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009789 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00009790 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009791 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9792 DAG.getConstant(0, MVT::i32));
9793 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9794 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009795 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
9796 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009797 cpInL.getValue(1));
9798 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009799 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9800 DAG.getConstant(0, MVT::i32));
9801 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9802 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009803 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00009804 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009805 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009806 swapInL.getValue(1));
9807 SDValue Ops[] = { swapInH.getValue(0),
9808 N->getOperand(1),
9809 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009810 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +00009811 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
9812 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
9813 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +00009814 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009815 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009816 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009817 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00009818 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009819 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009820 Results.push_back(cpOutH.getValue(1));
9821 return;
9822 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009823 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00009824 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
9825 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009826 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00009827 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
9828 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009829 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00009830 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
9831 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009832 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00009833 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
9834 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009835 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00009836 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
9837 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009838 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00009839 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
9840 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009841 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00009842 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
9843 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00009844 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00009845}
9846
Evan Cheng72261582005-12-20 06:22:03 +00009847const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
9848 switch (Opcode) {
9849 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00009850 case X86ISD::BSF: return "X86ISD::BSF";
9851 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00009852 case X86ISD::SHLD: return "X86ISD::SHLD";
9853 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00009854 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009855 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00009856 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009857 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00009858 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00009859 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00009860 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
9861 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
9862 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00009863 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00009864 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00009865 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00009866 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00009867 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00009868 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00009869 case X86ISD::COMI: return "X86ISD::COMI";
9870 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00009871 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00009872 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +00009873 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
9874 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +00009875 case X86ISD::CMOV: return "X86ISD::CMOV";
9876 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00009877 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00009878 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
9879 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00009880 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00009881 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00009882 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009883 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00009884 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009885 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
9886 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00009887 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00009888 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +00009889 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Nate Begemanb65c1752010-12-17 22:55:37 +00009890 case X86ISD::PSIGNB: return "X86ISD::PSIGNB";
9891 case X86ISD::PSIGNW: return "X86ISD::PSIGNW";
9892 case X86ISD::PSIGND: return "X86ISD::PSIGND";
Nate Begeman672fb622010-12-20 22:04:24 +00009893 case X86ISD::PBLENDVB: return "X86ISD::PBLENDVB";
Evan Cheng8ca29322006-11-10 21:43:37 +00009894 case X86ISD::FMAX: return "X86ISD::FMAX";
9895 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00009896 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
9897 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009898 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00009899 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009900 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00009901 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009902 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00009903 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
9904 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009905 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
9906 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
9907 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
9908 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
9909 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
9910 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00009911 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
9912 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00009913 case X86ISD::VSHL: return "X86ISD::VSHL";
9914 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00009915 case X86ISD::CMPPD: return "X86ISD::CMPPD";
9916 case X86ISD::CMPPS: return "X86ISD::CMPPS";
9917 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
9918 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
9919 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
9920 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
9921 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
9922 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
9923 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
9924 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009925 case X86ISD::ADD: return "X86ISD::ADD";
9926 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +00009927 case X86ISD::ADC: return "X86ISD::ADC";
9928 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +00009929 case X86ISD::SMUL: return "X86ISD::SMUL";
9930 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00009931 case X86ISD::INC: return "X86ISD::INC";
9932 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +00009933 case X86ISD::OR: return "X86ISD::OR";
9934 case X86ISD::XOR: return "X86ISD::XOR";
9935 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +00009936 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +00009937 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009938 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009939 case X86ISD::PALIGN: return "X86ISD::PALIGN";
9940 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
9941 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
9942 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
9943 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
9944 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
9945 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
9946 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
9947 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009948 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00009949 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009950 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00009951 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
9952 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009953 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
9954 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
9955 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
9956 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
9957 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
9958 case X86ISD::MOVSD: return "X86ISD::MOVSD";
9959 case X86ISD::MOVSS: return "X86ISD::MOVSS";
9960 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
9961 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
David Greenefbf05d32011-02-22 23:31:46 +00009962 case X86ISD::VUNPCKLPDY: return "X86ISD::VUNPCKLPDY";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009963 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
9964 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
9965 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
9966 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
9967 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
9968 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
9969 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
9970 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
9971 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
9972 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00009973 case X86ISD::VPERMILPS: return "X86ISD::VPERMILPS";
9974 case X86ISD::VPERMILPSY: return "X86ISD::VPERMILPSY";
9975 case X86ISD::VPERMILPD: return "X86ISD::VPERMILPD";
9976 case X86ISD::VPERMILPDY: return "X86ISD::VPERMILPDY";
Dan Gohmand6708ea2009-08-15 01:38:56 +00009977 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +00009978 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009979 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +00009980 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Evan Cheng72261582005-12-20 06:22:03 +00009981 }
9982}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00009983
Chris Lattnerc9addb72007-03-30 23:15:24 +00009984// isLegalAddressingMode - Return true if the addressing mode represented
9985// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00009986bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009987 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +00009988 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009989 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +00009990 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +00009991
Chris Lattnerc9addb72007-03-30 23:15:24 +00009992 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009993 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +00009994 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00009995
Chris Lattnerc9addb72007-03-30 23:15:24 +00009996 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +00009997 unsigned GVFlags =
9998 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009999
Chris Lattnerdfed4132009-07-10 07:38:24 +000010000 // If a reference to this global requires an extra load, we can't fold it.
10001 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010002 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010003
Chris Lattnerdfed4132009-07-10 07:38:24 +000010004 // If BaseGV requires a register for the PIC base, we cannot also have a
10005 // BaseReg specified.
10006 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000010007 return false;
Evan Cheng52787842007-08-01 23:46:47 +000010008
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010009 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000010010 if ((M != CodeModel::Small || R != Reloc::Static) &&
10011 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010012 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000010013 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010014
Chris Lattnerc9addb72007-03-30 23:15:24 +000010015 switch (AM.Scale) {
10016 case 0:
10017 case 1:
10018 case 2:
10019 case 4:
10020 case 8:
10021 // These scales always work.
10022 break;
10023 case 3:
10024 case 5:
10025 case 9:
10026 // These scales are formed with basereg+scalereg. Only accept if there is
10027 // no basereg yet.
10028 if (AM.HasBaseReg)
10029 return false;
10030 break;
10031 default: // Other stuff never works.
10032 return false;
10033 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010034
Chris Lattnerc9addb72007-03-30 23:15:24 +000010035 return true;
10036}
10037
10038
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010039bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010040 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000010041 return false;
Evan Chenge127a732007-10-29 07:57:50 +000010042 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
10043 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010044 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +000010045 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010046 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +000010047}
10048
Owen Andersone50ed302009-08-10 22:56:29 +000010049bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000010050 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010051 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010052 unsigned NumBits1 = VT1.getSizeInBits();
10053 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010054 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010055 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010056 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010057}
Evan Cheng2bd122c2007-10-26 01:56:11 +000010058
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010059bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010060 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010061 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010062}
10063
Owen Andersone50ed302009-08-10 22:56:29 +000010064bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010065 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000010066 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010067}
10068
Owen Andersone50ed302009-08-10 22:56:29 +000010069bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000010070 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000010071 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000010072}
10073
Evan Cheng60c07e12006-07-05 22:17:51 +000010074/// isShuffleMaskLegal - Targets can use this to indicate that they only
10075/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
10076/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
10077/// are assumed to be legal.
10078bool
Eric Christopherfd179292009-08-27 18:07:15 +000010079X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000010080 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +000010081 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000010082 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +000010083 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +000010084
Nate Begemana09008b2009-10-19 02:17:23 +000010085 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +000010086 return (VT.getVectorNumElements() == 2 ||
10087 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
10088 isMOVLMask(M, VT) ||
10089 isSHUFPMask(M, VT) ||
10090 isPSHUFDMask(M, VT) ||
10091 isPSHUFHWMask(M, VT) ||
10092 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +000010093 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +000010094 isUNPCKLMask(M, VT) ||
10095 isUNPCKHMask(M, VT) ||
10096 isUNPCKL_v_undef_Mask(M, VT) ||
10097 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010098}
10099
Dan Gohman7d8143f2008-04-09 20:09:42 +000010100bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000010101X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000010102 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +000010103 unsigned NumElts = VT.getVectorNumElements();
10104 // FIXME: This collection of masks seems suspect.
10105 if (NumElts == 2)
10106 return true;
10107 if (NumElts == 4 && VT.getSizeInBits() == 128) {
10108 return (isMOVLMask(Mask, VT) ||
10109 isCommutedMOVLMask(Mask, VT, true) ||
10110 isSHUFPMask(Mask, VT) ||
10111 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010112 }
10113 return false;
10114}
10115
10116//===----------------------------------------------------------------------===//
10117// X86 Scheduler Hooks
10118//===----------------------------------------------------------------------===//
10119
Mon P Wang63307c32008-05-05 19:05:59 +000010120// private utility function
10121MachineBasicBlock *
10122X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
10123 MachineBasicBlock *MBB,
10124 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010125 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010126 unsigned LoadOpc,
10127 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010128 unsigned notOpc,
10129 unsigned EAXreg,
10130 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010131 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010132 // For the atomic bitwise operator, we generate
10133 // thisMBB:
10134 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010135 // ld t1 = [bitinstr.addr]
10136 // op t2 = t1, [bitinstr.val]
10137 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010138 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10139 // bz newMBB
10140 // fallthrough -->nextMBB
10141 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10142 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010143 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010144 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010145
Mon P Wang63307c32008-05-05 19:05:59 +000010146 /// First build the CFG
10147 MachineFunction *F = MBB->getParent();
10148 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010149 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10150 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10151 F->insert(MBBIter, newMBB);
10152 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010153
Dan Gohman14152b42010-07-06 20:24:04 +000010154 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10155 nextMBB->splice(nextMBB->begin(), thisMBB,
10156 llvm::next(MachineBasicBlock::iterator(bInstr)),
10157 thisMBB->end());
10158 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010159
Mon P Wang63307c32008-05-05 19:05:59 +000010160 // Update thisMBB to fall through to newMBB
10161 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010162
Mon P Wang63307c32008-05-05 19:05:59 +000010163 // newMBB jumps to itself and fall through to nextMBB
10164 newMBB->addSuccessor(nextMBB);
10165 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010166
Mon P Wang63307c32008-05-05 19:05:59 +000010167 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010168 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010169 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +000010170 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010171 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010172 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010173 int numArgs = bInstr->getNumOperands() - 1;
10174 for (int i=0; i < numArgs; ++i)
10175 argOpers[i] = &bInstr->getOperand(i+1);
10176
10177 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010178 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010179 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010180
Dale Johannesen140be2d2008-08-19 18:47:28 +000010181 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010182 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010183 for (int i=0; i <= lastAddrIndx; ++i)
10184 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010185
Dale Johannesen140be2d2008-08-19 18:47:28 +000010186 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010187 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010188 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010189 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010190 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010191 tt = t1;
10192
Dale Johannesen140be2d2008-08-19 18:47:28 +000010193 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +000010194 assert((argOpers[valArgIndx]->isReg() ||
10195 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010196 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +000010197 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010198 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010199 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010200 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010201 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +000010202 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010203
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010204 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +000010205 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010206
Dale Johannesene4d209d2009-02-03 20:21:25 +000010207 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +000010208 for (int i=0; i <= lastAddrIndx; ++i)
10209 (*MIB).addOperand(*argOpers[i]);
10210 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +000010211 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010212 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10213 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +000010214
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010215 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +000010216 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +000010217
Mon P Wang63307c32008-05-05 19:05:59 +000010218 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010219 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010220
Dan Gohman14152b42010-07-06 20:24:04 +000010221 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010222 return nextMBB;
10223}
10224
Dale Johannesen1b54c7f2008-10-03 19:41:08 +000010225// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +000010226MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010227X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
10228 MachineBasicBlock *MBB,
10229 unsigned regOpcL,
10230 unsigned regOpcH,
10231 unsigned immOpcL,
10232 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010233 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010234 // For the atomic bitwise operator, we generate
10235 // thisMBB (instructions are in pairs, except cmpxchg8b)
10236 // ld t1,t2 = [bitinstr.addr]
10237 // newMBB:
10238 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
10239 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +000010240 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010241 // mov ECX, EBX <- t5, t6
10242 // mov EAX, EDX <- t1, t2
10243 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
10244 // mov t3, t4 <- EAX, EDX
10245 // bz newMBB
10246 // result in out1, out2
10247 // fallthrough -->nextMBB
10248
10249 const TargetRegisterClass *RC = X86::GR32RegisterClass;
10250 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010251 const unsigned NotOpc = X86::NOT32r;
10252 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10253 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10254 MachineFunction::iterator MBBIter = MBB;
10255 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010256
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010257 /// First build the CFG
10258 MachineFunction *F = MBB->getParent();
10259 MachineBasicBlock *thisMBB = MBB;
10260 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10261 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10262 F->insert(MBBIter, newMBB);
10263 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010264
Dan Gohman14152b42010-07-06 20:24:04 +000010265 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10266 nextMBB->splice(nextMBB->begin(), thisMBB,
10267 llvm::next(MachineBasicBlock::iterator(bInstr)),
10268 thisMBB->end());
10269 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010270
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010271 // Update thisMBB to fall through to newMBB
10272 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010273
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010274 // newMBB jumps to itself and fall through to nextMBB
10275 newMBB->addSuccessor(nextMBB);
10276 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010277
Dale Johannesene4d209d2009-02-03 20:21:25 +000010278 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010279 // Insert instructions into newMBB based on incoming instruction
10280 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010281 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010282 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010283 MachineOperand& dest1Oper = bInstr->getOperand(0);
10284 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010285 MachineOperand* argOpers[2 + X86::AddrNumOperands];
10286 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010287 argOpers[i] = &bInstr->getOperand(i+2);
10288
Dan Gohman71ea4e52010-05-14 21:01:44 +000010289 // We use some of the operands multiple times, so conservatively just
10290 // clear any kill flags that might be present.
10291 if (argOpers[i]->isReg() && argOpers[i]->isUse())
10292 argOpers[i]->setIsKill(false);
10293 }
10294
Evan Chengad5b52f2010-01-08 19:14:57 +000010295 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010296 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +000010297
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010298 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010299 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010300 for (int i=0; i <= lastAddrIndx; ++i)
10301 (*MIB).addOperand(*argOpers[i]);
10302 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010303 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +000010304 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +000010305 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010306 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +000010307 MachineOperand newOp3 = *(argOpers[3]);
10308 if (newOp3.isImm())
10309 newOp3.setImm(newOp3.getImm()+4);
10310 else
10311 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010312 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +000010313 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010314
10315 // t3/4 are defined later, at the bottom of the loop
10316 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
10317 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010318 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010319 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010320 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010321 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
10322
Evan Cheng306b4ca2010-01-08 23:41:50 +000010323 // The subsequent operations should be using the destination registers of
10324 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +000010325 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010326 t1 = F->getRegInfo().createVirtualRegister(RC);
10327 t2 = F->getRegInfo().createVirtualRegister(RC);
10328 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
10329 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010330 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010331 t1 = dest1Oper.getReg();
10332 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010333 }
10334
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010335 int valArgIndx = lastAddrIndx + 1;
10336 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +000010337 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010338 "invalid operand");
10339 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
10340 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010341 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010342 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010343 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010344 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +000010345 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010346 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010347 (*MIB).addOperand(*argOpers[valArgIndx]);
10348 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010349 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010350 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010351 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010352 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010353 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010354 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010355 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +000010356 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010357 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010358 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010359
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010360 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010361 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010362 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010363 MIB.addReg(t2);
10364
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010365 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010366 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010367 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010368 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +000010369
Dale Johannesene4d209d2009-02-03 20:21:25 +000010370 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010371 for (int i=0; i <= lastAddrIndx; ++i)
10372 (*MIB).addOperand(*argOpers[i]);
10373
10374 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010375 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10376 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010377
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010378 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010379 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010380 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010381 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010382
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010383 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010384 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010385
Dan Gohman14152b42010-07-06 20:24:04 +000010386 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010387 return nextMBB;
10388}
10389
10390// private utility function
10391MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +000010392X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
10393 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010394 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010395 // For the atomic min/max operator, we generate
10396 // thisMBB:
10397 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010398 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +000010399 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +000010400 // cmp t1, t2
10401 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +000010402 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010403 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10404 // bz newMBB
10405 // fallthrough -->nextMBB
10406 //
10407 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10408 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010409 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010410 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010411
Mon P Wang63307c32008-05-05 19:05:59 +000010412 /// First build the CFG
10413 MachineFunction *F = MBB->getParent();
10414 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010415 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10416 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10417 F->insert(MBBIter, newMBB);
10418 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010419
Dan Gohman14152b42010-07-06 20:24:04 +000010420 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10421 nextMBB->splice(nextMBB->begin(), thisMBB,
10422 llvm::next(MachineBasicBlock::iterator(mInstr)),
10423 thisMBB->end());
10424 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010425
Mon P Wang63307c32008-05-05 19:05:59 +000010426 // Update thisMBB to fall through to newMBB
10427 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010428
Mon P Wang63307c32008-05-05 19:05:59 +000010429 // newMBB jumps to newMBB and fall through to nextMBB
10430 newMBB->addSuccessor(nextMBB);
10431 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010432
Dale Johannesene4d209d2009-02-03 20:21:25 +000010433 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010434 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010435 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010436 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +000010437 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010438 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010439 int numArgs = mInstr->getNumOperands() - 1;
10440 for (int i=0; i < numArgs; ++i)
10441 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010442
Mon P Wang63307c32008-05-05 19:05:59 +000010443 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010444 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010445 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010446
Mon P Wangab3e7472008-05-05 22:56:23 +000010447 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010448 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010449 for (int i=0; i <= lastAddrIndx; ++i)
10450 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +000010451
Mon P Wang63307c32008-05-05 19:05:59 +000010452 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +000010453 assert((argOpers[valArgIndx]->isReg() ||
10454 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010455 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +000010456
10457 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +000010458 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010459 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +000010460 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010461 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010462 (*MIB).addOperand(*argOpers[valArgIndx]);
10463
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010464 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +000010465 MIB.addReg(t1);
10466
Dale Johannesene4d209d2009-02-03 20:21:25 +000010467 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +000010468 MIB.addReg(t1);
10469 MIB.addReg(t2);
10470
10471 // Generate movc
10472 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010473 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +000010474 MIB.addReg(t2);
10475 MIB.addReg(t1);
10476
10477 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +000010478 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +000010479 for (int i=0; i <= lastAddrIndx; ++i)
10480 (*MIB).addOperand(*argOpers[i]);
10481 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +000010482 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010483 (*MIB).setMemRefs(mInstr->memoperands_begin(),
10484 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000010485
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010486 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +000010487 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010488
Mon P Wang63307c32008-05-05 19:05:59 +000010489 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010490 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010491
Dan Gohman14152b42010-07-06 20:24:04 +000010492 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010493 return nextMBB;
10494}
10495
Eric Christopherf83a5de2009-08-27 18:08:16 +000010496// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010497// or XMM0_V32I8 in AVX all of this code can be replaced with that
10498// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010499MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +000010500X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +000010501 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010502 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
10503 "Target must have SSE4.2 or AVX features enabled");
10504
Eric Christopherb120ab42009-08-18 22:50:32 +000010505 DebugLoc dl = MI->getDebugLoc();
10506 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +000010507 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010508 if (!Subtarget->hasAVX()) {
10509 if (memArg)
10510 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
10511 else
10512 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
10513 } else {
10514 if (memArg)
10515 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
10516 else
10517 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
10518 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010519
Eric Christopher41c902f2010-11-30 08:20:21 +000010520 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +000010521 for (unsigned i = 0; i < numArgs; ++i) {
10522 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +000010523 if (!(Op.isReg() && Op.isImplicit()))
10524 MIB.addOperand(Op);
10525 }
Eric Christopher41c902f2010-11-30 08:20:21 +000010526 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000010527 .addReg(X86::XMM0);
10528
Dan Gohman14152b42010-07-06 20:24:04 +000010529 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000010530 return BB;
10531}
10532
10533MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +000010534X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010535 DebugLoc dl = MI->getDebugLoc();
10536 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010537
Eric Christopher228232b2010-11-30 07:20:12 +000010538 // Address into RAX/EAX, other two args into ECX, EDX.
10539 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
10540 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
10541 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
10542 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000010543 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010544
Eric Christopher228232b2010-11-30 07:20:12 +000010545 unsigned ValOps = X86::AddrNumOperands;
10546 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10547 .addReg(MI->getOperand(ValOps).getReg());
10548 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
10549 .addReg(MI->getOperand(ValOps+1).getReg());
10550
10551 // The instruction doesn't actually take any operands though.
10552 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010553
Eric Christopher228232b2010-11-30 07:20:12 +000010554 MI->eraseFromParent(); // The pseudo is gone now.
10555 return BB;
10556}
10557
10558MachineBasicBlock *
10559X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010560 DebugLoc dl = MI->getDebugLoc();
10561 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010562
Eric Christopher228232b2010-11-30 07:20:12 +000010563 // First arg in ECX, the second in EAX.
10564 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10565 .addReg(MI->getOperand(0).getReg());
10566 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
10567 .addReg(MI->getOperand(1).getReg());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010568
Eric Christopher228232b2010-11-30 07:20:12 +000010569 // The instruction doesn't actually take any operands though.
10570 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010571
Eric Christopher228232b2010-11-30 07:20:12 +000010572 MI->eraseFromParent(); // The pseudo is gone now.
10573 return BB;
10574}
10575
10576MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000010577X86TargetLowering::EmitVAARG64WithCustomInserter(
10578 MachineInstr *MI,
10579 MachineBasicBlock *MBB) const {
10580 // Emit va_arg instruction on X86-64.
10581
10582 // Operands to this pseudo-instruction:
10583 // 0 ) Output : destination address (reg)
10584 // 1-5) Input : va_list address (addr, i64mem)
10585 // 6 ) ArgSize : Size (in bytes) of vararg type
10586 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
10587 // 8 ) Align : Alignment of type
10588 // 9 ) EFLAGS (implicit-def)
10589
10590 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
10591 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
10592
10593 unsigned DestReg = MI->getOperand(0).getReg();
10594 MachineOperand &Base = MI->getOperand(1);
10595 MachineOperand &Scale = MI->getOperand(2);
10596 MachineOperand &Index = MI->getOperand(3);
10597 MachineOperand &Disp = MI->getOperand(4);
10598 MachineOperand &Segment = MI->getOperand(5);
10599 unsigned ArgSize = MI->getOperand(6).getImm();
10600 unsigned ArgMode = MI->getOperand(7).getImm();
10601 unsigned Align = MI->getOperand(8).getImm();
10602
10603 // Memory Reference
10604 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
10605 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
10606 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
10607
10608 // Machine Information
10609 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10610 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
10611 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
10612 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
10613 DebugLoc DL = MI->getDebugLoc();
10614
10615 // struct va_list {
10616 // i32 gp_offset
10617 // i32 fp_offset
10618 // i64 overflow_area (address)
10619 // i64 reg_save_area (address)
10620 // }
10621 // sizeof(va_list) = 24
10622 // alignment(va_list) = 8
10623
10624 unsigned TotalNumIntRegs = 6;
10625 unsigned TotalNumXMMRegs = 8;
10626 bool UseGPOffset = (ArgMode == 1);
10627 bool UseFPOffset = (ArgMode == 2);
10628 unsigned MaxOffset = TotalNumIntRegs * 8 +
10629 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
10630
10631 /* Align ArgSize to a multiple of 8 */
10632 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
10633 bool NeedsAlign = (Align > 8);
10634
10635 MachineBasicBlock *thisMBB = MBB;
10636 MachineBasicBlock *overflowMBB;
10637 MachineBasicBlock *offsetMBB;
10638 MachineBasicBlock *endMBB;
10639
10640 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
10641 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
10642 unsigned OffsetReg = 0;
10643
10644 if (!UseGPOffset && !UseFPOffset) {
10645 // If we only pull from the overflow region, we don't create a branch.
10646 // We don't need to alter control flow.
10647 OffsetDestReg = 0; // unused
10648 OverflowDestReg = DestReg;
10649
10650 offsetMBB = NULL;
10651 overflowMBB = thisMBB;
10652 endMBB = thisMBB;
10653 } else {
10654 // First emit code to check if gp_offset (or fp_offset) is below the bound.
10655 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
10656 // If not, pull from overflow_area. (branch to overflowMBB)
10657 //
10658 // thisMBB
10659 // | .
10660 // | .
10661 // offsetMBB overflowMBB
10662 // | .
10663 // | .
10664 // endMBB
10665
10666 // Registers for the PHI in endMBB
10667 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
10668 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
10669
10670 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10671 MachineFunction *MF = MBB->getParent();
10672 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10673 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10674 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10675
10676 MachineFunction::iterator MBBIter = MBB;
10677 ++MBBIter;
10678
10679 // Insert the new basic blocks
10680 MF->insert(MBBIter, offsetMBB);
10681 MF->insert(MBBIter, overflowMBB);
10682 MF->insert(MBBIter, endMBB);
10683
10684 // Transfer the remainder of MBB and its successor edges to endMBB.
10685 endMBB->splice(endMBB->begin(), thisMBB,
10686 llvm::next(MachineBasicBlock::iterator(MI)),
10687 thisMBB->end());
10688 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
10689
10690 // Make offsetMBB and overflowMBB successors of thisMBB
10691 thisMBB->addSuccessor(offsetMBB);
10692 thisMBB->addSuccessor(overflowMBB);
10693
10694 // endMBB is a successor of both offsetMBB and overflowMBB
10695 offsetMBB->addSuccessor(endMBB);
10696 overflowMBB->addSuccessor(endMBB);
10697
10698 // Load the offset value into a register
10699 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10700 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
10701 .addOperand(Base)
10702 .addOperand(Scale)
10703 .addOperand(Index)
10704 .addDisp(Disp, UseFPOffset ? 4 : 0)
10705 .addOperand(Segment)
10706 .setMemRefs(MMOBegin, MMOEnd);
10707
10708 // Check if there is enough room left to pull this argument.
10709 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
10710 .addReg(OffsetReg)
10711 .addImm(MaxOffset + 8 - ArgSizeA8);
10712
10713 // Branch to "overflowMBB" if offset >= max
10714 // Fall through to "offsetMBB" otherwise
10715 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
10716 .addMBB(overflowMBB);
10717 }
10718
10719 // In offsetMBB, emit code to use the reg_save_area.
10720 if (offsetMBB) {
10721 assert(OffsetReg != 0);
10722
10723 // Read the reg_save_area address.
10724 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
10725 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
10726 .addOperand(Base)
10727 .addOperand(Scale)
10728 .addOperand(Index)
10729 .addDisp(Disp, 16)
10730 .addOperand(Segment)
10731 .setMemRefs(MMOBegin, MMOEnd);
10732
10733 // Zero-extend the offset
10734 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
10735 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
10736 .addImm(0)
10737 .addReg(OffsetReg)
10738 .addImm(X86::sub_32bit);
10739
10740 // Add the offset to the reg_save_area to get the final address.
10741 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
10742 .addReg(OffsetReg64)
10743 .addReg(RegSaveReg);
10744
10745 // Compute the offset for the next argument
10746 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10747 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
10748 .addReg(OffsetReg)
10749 .addImm(UseFPOffset ? 16 : 8);
10750
10751 // Store it back into the va_list.
10752 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
10753 .addOperand(Base)
10754 .addOperand(Scale)
10755 .addOperand(Index)
10756 .addDisp(Disp, UseFPOffset ? 4 : 0)
10757 .addOperand(Segment)
10758 .addReg(NextOffsetReg)
10759 .setMemRefs(MMOBegin, MMOEnd);
10760
10761 // Jump to endMBB
10762 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
10763 .addMBB(endMBB);
10764 }
10765
10766 //
10767 // Emit code to use overflow area
10768 //
10769
10770 // Load the overflow_area address into a register.
10771 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
10772 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
10773 .addOperand(Base)
10774 .addOperand(Scale)
10775 .addOperand(Index)
10776 .addDisp(Disp, 8)
10777 .addOperand(Segment)
10778 .setMemRefs(MMOBegin, MMOEnd);
10779
10780 // If we need to align it, do so. Otherwise, just copy the address
10781 // to OverflowDestReg.
10782 if (NeedsAlign) {
10783 // Align the overflow address
10784 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
10785 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
10786
10787 // aligned_addr = (addr + (align-1)) & ~(align-1)
10788 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
10789 .addReg(OverflowAddrReg)
10790 .addImm(Align-1);
10791
10792 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
10793 .addReg(TmpReg)
10794 .addImm(~(uint64_t)(Align-1));
10795 } else {
10796 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
10797 .addReg(OverflowAddrReg);
10798 }
10799
10800 // Compute the next overflow address after this argument.
10801 // (the overflow address should be kept 8-byte aligned)
10802 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
10803 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
10804 .addReg(OverflowDestReg)
10805 .addImm(ArgSizeA8);
10806
10807 // Store the new overflow address.
10808 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
10809 .addOperand(Base)
10810 .addOperand(Scale)
10811 .addOperand(Index)
10812 .addDisp(Disp, 8)
10813 .addOperand(Segment)
10814 .addReg(NextAddrReg)
10815 .setMemRefs(MMOBegin, MMOEnd);
10816
10817 // If we branched, emit the PHI to the front of endMBB.
10818 if (offsetMBB) {
10819 BuildMI(*endMBB, endMBB->begin(), DL,
10820 TII->get(X86::PHI), DestReg)
10821 .addReg(OffsetDestReg).addMBB(offsetMBB)
10822 .addReg(OverflowDestReg).addMBB(overflowMBB);
10823 }
10824
10825 // Erase the pseudo instruction
10826 MI->eraseFromParent();
10827
10828 return endMBB;
10829}
10830
10831MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000010832X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
10833 MachineInstr *MI,
10834 MachineBasicBlock *MBB) const {
10835 // Emit code to save XMM registers to the stack. The ABI says that the
10836 // number of registers to save is given in %al, so it's theoretically
10837 // possible to do an indirect jump trick to avoid saving all of them,
10838 // however this code takes a simpler approach and just executes all
10839 // of the stores if %al is non-zero. It's less code, and it's probably
10840 // easier on the hardware branch predictor, and stores aren't all that
10841 // expensive anyway.
10842
10843 // Create the new basic blocks. One block contains all the XMM stores,
10844 // and one block is the final destination regardless of whether any
10845 // stores were performed.
10846 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10847 MachineFunction *F = MBB->getParent();
10848 MachineFunction::iterator MBBIter = MBB;
10849 ++MBBIter;
10850 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
10851 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
10852 F->insert(MBBIter, XMMSaveMBB);
10853 F->insert(MBBIter, EndMBB);
10854
Dan Gohman14152b42010-07-06 20:24:04 +000010855 // Transfer the remainder of MBB and its successor edges to EndMBB.
10856 EndMBB->splice(EndMBB->begin(), MBB,
10857 llvm::next(MachineBasicBlock::iterator(MI)),
10858 MBB->end());
10859 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
10860
Dan Gohmand6708ea2009-08-15 01:38:56 +000010861 // The original block will now fall through to the XMM save block.
10862 MBB->addSuccessor(XMMSaveMBB);
10863 // The XMMSaveMBB will fall through to the end block.
10864 XMMSaveMBB->addSuccessor(EndMBB);
10865
10866 // Now add the instructions.
10867 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10868 DebugLoc DL = MI->getDebugLoc();
10869
10870 unsigned CountReg = MI->getOperand(0).getReg();
10871 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
10872 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
10873
10874 if (!Subtarget->isTargetWin64()) {
10875 // If %al is 0, branch around the XMM save block.
10876 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010877 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010878 MBB->addSuccessor(EndMBB);
10879 }
10880
10881 // In the XMM save block, save all the XMM argument registers.
10882 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
10883 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000010884 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000010885 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000010886 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000010887 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000010888 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010889 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
10890 .addFrameIndex(RegSaveFrameIndex)
10891 .addImm(/*Scale=*/1)
10892 .addReg(/*IndexReg=*/0)
10893 .addImm(/*Disp=*/Offset)
10894 .addReg(/*Segment=*/0)
10895 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000010896 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010897 }
10898
Dan Gohman14152b42010-07-06 20:24:04 +000010899 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010900
10901 return EndMBB;
10902}
Mon P Wang63307c32008-05-05 19:05:59 +000010903
Evan Cheng60c07e12006-07-05 22:17:51 +000010904MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000010905X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010906 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000010907 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10908 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000010909
Chris Lattner52600972009-09-02 05:57:00 +000010910 // To "insert" a SELECT_CC instruction, we actually have to insert the
10911 // diamond control-flow pattern. The incoming instruction knows the
10912 // destination vreg to set, the condition code register to branch on, the
10913 // true/false values to select between, and a branch opcode to use.
10914 const BasicBlock *LLVM_BB = BB->getBasicBlock();
10915 MachineFunction::iterator It = BB;
10916 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000010917
Chris Lattner52600972009-09-02 05:57:00 +000010918 // thisMBB:
10919 // ...
10920 // TrueVal = ...
10921 // cmpTY ccX, r1, r2
10922 // bCC copy1MBB
10923 // fallthrough --> copy0MBB
10924 MachineBasicBlock *thisMBB = BB;
10925 MachineFunction *F = BB->getParent();
10926 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
10927 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000010928 F->insert(It, copy0MBB);
10929 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000010930
Bill Wendling730c07e2010-06-25 20:48:10 +000010931 // If the EFLAGS register isn't dead in the terminator, then claim that it's
10932 // live into the sink and copy blocks.
10933 const MachineFunction *MF = BB->getParent();
10934 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
10935 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +000010936
Dan Gohman14152b42010-07-06 20:24:04 +000010937 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
10938 const MachineOperand &MO = MI->getOperand(I);
10939 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +000010940 unsigned Reg = MO.getReg();
10941 if (Reg != X86::EFLAGS) continue;
10942 copy0MBB->addLiveIn(Reg);
10943 sinkMBB->addLiveIn(Reg);
10944 }
10945
Dan Gohman14152b42010-07-06 20:24:04 +000010946 // Transfer the remainder of BB and its successor edges to sinkMBB.
10947 sinkMBB->splice(sinkMBB->begin(), BB,
10948 llvm::next(MachineBasicBlock::iterator(MI)),
10949 BB->end());
10950 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
10951
10952 // Add the true and fallthrough blocks as its successors.
10953 BB->addSuccessor(copy0MBB);
10954 BB->addSuccessor(sinkMBB);
10955
10956 // Create the conditional branch instruction.
10957 unsigned Opc =
10958 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
10959 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
10960
Chris Lattner52600972009-09-02 05:57:00 +000010961 // copy0MBB:
10962 // %FalseValue = ...
10963 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000010964 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000010965
Chris Lattner52600972009-09-02 05:57:00 +000010966 // sinkMBB:
10967 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
10968 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000010969 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
10970 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000010971 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
10972 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
10973
Dan Gohman14152b42010-07-06 20:24:04 +000010974 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000010975 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000010976}
10977
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010978MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010979X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010980 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010981 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10982 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010983
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000010984 assert(!Subtarget->isTargetEnvMacho());
10985
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010986 // The lowering is pretty easy: we're just emitting the call to _alloca. The
10987 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010988
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000010989 if (Subtarget->isTargetWin64()) {
10990 if (Subtarget->isTargetCygMing()) {
10991 // ___chkstk(Mingw64):
10992 // Clobbers R10, R11, RAX and EFLAGS.
10993 // Updates RSP.
10994 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
10995 .addExternalSymbol("___chkstk")
10996 .addReg(X86::RAX, RegState::Implicit)
10997 .addReg(X86::RSP, RegState::Implicit)
10998 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
10999 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
11000 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11001 } else {
11002 // __chkstk(MSVCRT): does not update stack pointer.
11003 // Clobbers R10, R11 and EFLAGS.
11004 // FIXME: RAX(allocated size) might be reused and not killed.
11005 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11006 .addExternalSymbol("__chkstk")
11007 .addReg(X86::RAX, RegState::Implicit)
11008 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11009 // RAX has the offset to subtracted from RSP.
11010 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
11011 .addReg(X86::RSP)
11012 .addReg(X86::RAX);
11013 }
11014 } else {
11015 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011016 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
11017
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011018 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
11019 .addExternalSymbol(StackProbeSymbol)
11020 .addReg(X86::EAX, RegState::Implicit)
11021 .addReg(X86::ESP, RegState::Implicit)
11022 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
11023 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
11024 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11025 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011026
Dan Gohman14152b42010-07-06 20:24:04 +000011027 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011028 return BB;
11029}
Chris Lattner52600972009-09-02 05:57:00 +000011030
11031MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000011032X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
11033 MachineBasicBlock *BB) const {
11034 // This is pretty easy. We're taking the value that we received from
11035 // our load from the relocation, sticking it in either RDI (x86-64)
11036 // or EAX and doing an indirect call. The return value will then
11037 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000011038 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000011039 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000011040 DebugLoc DL = MI->getDebugLoc();
11041 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000011042
11043 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000011044 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000011045
Eric Christopher30ef0e52010-06-03 04:07:48 +000011046 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000011047 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11048 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000011049 .addReg(X86::RIP)
11050 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011051 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011052 MI->getOperand(3).getTargetFlags())
11053 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000011054 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000011055 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000011056 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000011057 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11058 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000011059 .addReg(0)
11060 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011061 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000011062 MI->getOperand(3).getTargetFlags())
11063 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011064 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011065 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011066 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000011067 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11068 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000011069 .addReg(TII->getGlobalBaseReg(F))
11070 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011071 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011072 MI->getOperand(3).getTargetFlags())
11073 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011074 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011075 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011076 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000011077
Dan Gohman14152b42010-07-06 20:24:04 +000011078 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000011079 return BB;
11080}
11081
11082MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000011083X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011084 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000011085 switch (MI->getOpcode()) {
11086 default: assert(false && "Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000011087 case X86::TAILJMPd64:
11088 case X86::TAILJMPr64:
11089 case X86::TAILJMPm64:
11090 assert(!"TAILJMP64 would not be touched here.");
11091 case X86::TCRETURNdi64:
11092 case X86::TCRETURNri64:
11093 case X86::TCRETURNmi64:
11094 // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
11095 // On AMD64, additional defs should be added before register allocation.
11096 if (!Subtarget->isTargetWin64()) {
11097 MI->addRegisterDefined(X86::RSI);
11098 MI->addRegisterDefined(X86::RDI);
11099 MI->addRegisterDefined(X86::XMM6);
11100 MI->addRegisterDefined(X86::XMM7);
11101 MI->addRegisterDefined(X86::XMM8);
11102 MI->addRegisterDefined(X86::XMM9);
11103 MI->addRegisterDefined(X86::XMM10);
11104 MI->addRegisterDefined(X86::XMM11);
11105 MI->addRegisterDefined(X86::XMM12);
11106 MI->addRegisterDefined(X86::XMM13);
11107 MI->addRegisterDefined(X86::XMM14);
11108 MI->addRegisterDefined(X86::XMM15);
11109 }
11110 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011111 case X86::WIN_ALLOCA:
11112 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011113 case X86::TLSCall_32:
11114 case X86::TLSCall_64:
11115 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000011116 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000011117 case X86::CMOV_FR32:
11118 case X86::CMOV_FR64:
11119 case X86::CMOV_V4F32:
11120 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000011121 case X86::CMOV_V2I64:
Chris Lattner314a1132010-03-14 18:31:44 +000011122 case X86::CMOV_GR16:
11123 case X86::CMOV_GR32:
11124 case X86::CMOV_RFP32:
11125 case X86::CMOV_RFP64:
11126 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011127 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011128
Dale Johannesen849f2142007-07-03 00:53:03 +000011129 case X86::FP32_TO_INT16_IN_MEM:
11130 case X86::FP32_TO_INT32_IN_MEM:
11131 case X86::FP32_TO_INT64_IN_MEM:
11132 case X86::FP64_TO_INT16_IN_MEM:
11133 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000011134 case X86::FP64_TO_INT64_IN_MEM:
11135 case X86::FP80_TO_INT16_IN_MEM:
11136 case X86::FP80_TO_INT32_IN_MEM:
11137 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000011138 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11139 DebugLoc DL = MI->getDebugLoc();
11140
Evan Cheng60c07e12006-07-05 22:17:51 +000011141 // Change the floating point control register to use "round towards zero"
11142 // mode when truncating to an integer value.
11143 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000011144 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000011145 addFrameReference(BuildMI(*BB, MI, DL,
11146 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011147
11148 // Load the old value of the high byte of the control word...
11149 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000011150 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000011151 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000011152 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011153
11154 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000011155 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000011156 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000011157
11158 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000011159 addFrameReference(BuildMI(*BB, MI, DL,
11160 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011161
11162 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000011163 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000011164 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000011165
11166 // Get the X86 opcode to use.
11167 unsigned Opc;
11168 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000011169 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000011170 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
11171 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
11172 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
11173 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
11174 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
11175 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000011176 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
11177 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
11178 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000011179 }
11180
11181 X86AddressMode AM;
11182 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000011183 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000011184 AM.BaseType = X86AddressMode::RegBase;
11185 AM.Base.Reg = Op.getReg();
11186 } else {
11187 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000011188 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000011189 }
11190 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000011191 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000011192 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011193 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000011194 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000011195 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011196 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000011197 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000011198 AM.GV = Op.getGlobal();
11199 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000011200 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000011201 }
Dan Gohman14152b42010-07-06 20:24:04 +000011202 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011203 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000011204
11205 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000011206 addFrameReference(BuildMI(*BB, MI, DL,
11207 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000011208
Dan Gohman14152b42010-07-06 20:24:04 +000011209 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000011210 return BB;
11211 }
Eric Christopherb120ab42009-08-18 22:50:32 +000011212 // String/text processing lowering.
11213 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011214 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000011215 return EmitPCMP(MI, BB, 3, false /* in-mem */);
11216 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011217 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000011218 return EmitPCMP(MI, BB, 3, true /* in-mem */);
11219 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011220 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000011221 return EmitPCMP(MI, BB, 5, false /* in mem */);
11222 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011223 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000011224 return EmitPCMP(MI, BB, 5, true /* in mem */);
11225
Eric Christopher228232b2010-11-30 07:20:12 +000011226 // Thread synchronization.
11227 case X86::MONITOR:
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011228 return EmitMonitor(MI, BB);
Eric Christopher228232b2010-11-30 07:20:12 +000011229 case X86::MWAIT:
11230 return EmitMwait(MI, BB);
11231
Eric Christopherb120ab42009-08-18 22:50:32 +000011232 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000011233 case X86::ATOMAND32:
11234 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011235 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011236 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011237 X86::NOT32r, X86::EAX,
11238 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011239 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000011240 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
11241 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011242 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011243 X86::NOT32r, X86::EAX,
11244 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000011245 case X86::ATOMXOR32:
11246 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011247 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011248 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011249 X86::NOT32r, X86::EAX,
11250 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000011251 case X86::ATOMNAND32:
11252 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011253 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011254 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011255 X86::NOT32r, X86::EAX,
11256 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000011257 case X86::ATOMMIN32:
11258 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
11259 case X86::ATOMMAX32:
11260 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
11261 case X86::ATOMUMIN32:
11262 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
11263 case X86::ATOMUMAX32:
11264 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000011265
11266 case X86::ATOMAND16:
11267 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11268 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011269 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011270 X86::NOT16r, X86::AX,
11271 X86::GR16RegisterClass);
11272 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000011273 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011274 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011275 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011276 X86::NOT16r, X86::AX,
11277 X86::GR16RegisterClass);
11278 case X86::ATOMXOR16:
11279 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
11280 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011281 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011282 X86::NOT16r, X86::AX,
11283 X86::GR16RegisterClass);
11284 case X86::ATOMNAND16:
11285 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11286 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011287 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011288 X86::NOT16r, X86::AX,
11289 X86::GR16RegisterClass, true);
11290 case X86::ATOMMIN16:
11291 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
11292 case X86::ATOMMAX16:
11293 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
11294 case X86::ATOMUMIN16:
11295 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
11296 case X86::ATOMUMAX16:
11297 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
11298
11299 case X86::ATOMAND8:
11300 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11301 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011302 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011303 X86::NOT8r, X86::AL,
11304 X86::GR8RegisterClass);
11305 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000011306 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011307 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011308 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011309 X86::NOT8r, X86::AL,
11310 X86::GR8RegisterClass);
11311 case X86::ATOMXOR8:
11312 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
11313 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011314 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011315 X86::NOT8r, X86::AL,
11316 X86::GR8RegisterClass);
11317 case X86::ATOMNAND8:
11318 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11319 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011320 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011321 X86::NOT8r, X86::AL,
11322 X86::GR8RegisterClass, true);
11323 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011324 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000011325 case X86::ATOMAND64:
11326 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011327 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011328 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011329 X86::NOT64r, X86::RAX,
11330 X86::GR64RegisterClass);
11331 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000011332 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
11333 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011334 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011335 X86::NOT64r, X86::RAX,
11336 X86::GR64RegisterClass);
11337 case X86::ATOMXOR64:
11338 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011339 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011340 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011341 X86::NOT64r, X86::RAX,
11342 X86::GR64RegisterClass);
11343 case X86::ATOMNAND64:
11344 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
11345 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011346 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011347 X86::NOT64r, X86::RAX,
11348 X86::GR64RegisterClass, true);
11349 case X86::ATOMMIN64:
11350 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
11351 case X86::ATOMMAX64:
11352 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
11353 case X86::ATOMUMIN64:
11354 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
11355 case X86::ATOMUMAX64:
11356 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011357
11358 // This group does 64-bit operations on a 32-bit host.
11359 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011360 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011361 X86::AND32rr, X86::AND32rr,
11362 X86::AND32ri, X86::AND32ri,
11363 false);
11364 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011365 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011366 X86::OR32rr, X86::OR32rr,
11367 X86::OR32ri, X86::OR32ri,
11368 false);
11369 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011370 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011371 X86::XOR32rr, X86::XOR32rr,
11372 X86::XOR32ri, X86::XOR32ri,
11373 false);
11374 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011375 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011376 X86::AND32rr, X86::AND32rr,
11377 X86::AND32ri, X86::AND32ri,
11378 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011379 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011380 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011381 X86::ADD32rr, X86::ADC32rr,
11382 X86::ADD32ri, X86::ADC32ri,
11383 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011384 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011385 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011386 X86::SUB32rr, X86::SBB32rr,
11387 X86::SUB32ri, X86::SBB32ri,
11388 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000011389 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011390 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000011391 X86::MOV32rr, X86::MOV32rr,
11392 X86::MOV32ri, X86::MOV32ri,
11393 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011394 case X86::VASTART_SAVE_XMM_REGS:
11395 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000011396
11397 case X86::VAARG_64:
11398 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011399 }
11400}
11401
11402//===----------------------------------------------------------------------===//
11403// X86 Optimization Hooks
11404//===----------------------------------------------------------------------===//
11405
Dan Gohman475871a2008-07-27 21:46:04 +000011406void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000011407 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011408 APInt &KnownZero,
11409 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000011410 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000011411 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011412 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000011413 assert((Opc >= ISD::BUILTIN_OP_END ||
11414 Opc == ISD::INTRINSIC_WO_CHAIN ||
11415 Opc == ISD::INTRINSIC_W_CHAIN ||
11416 Opc == ISD::INTRINSIC_VOID) &&
11417 "Should use MaskedValueIsZero if you don't know whether Op"
11418 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011419
Dan Gohmanf4f92f52008-02-13 23:07:24 +000011420 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011421 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000011422 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011423 case X86ISD::ADD:
11424 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000011425 case X86ISD::ADC:
11426 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011427 case X86ISD::SMUL:
11428 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000011429 case X86ISD::INC:
11430 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000011431 case X86ISD::OR:
11432 case X86ISD::XOR:
11433 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011434 // These nodes' second result is a boolean.
11435 if (Op.getResNo() == 0)
11436 break;
11437 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011438 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011439 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
11440 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000011441 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011442 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011443}
Chris Lattner259e97c2006-01-31 19:43:35 +000011444
Owen Andersonbc146b02010-09-21 20:42:50 +000011445unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
11446 unsigned Depth) const {
11447 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
11448 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
11449 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000011450
Owen Andersonbc146b02010-09-21 20:42:50 +000011451 // Fallback case.
11452 return 1;
11453}
11454
Evan Cheng206ee9d2006-07-07 08:33:52 +000011455/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000011456/// node is a GlobalAddress + offset.
11457bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000011458 const GlobalValue* &GA,
11459 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000011460 if (N->getOpcode() == X86ISD::Wrapper) {
11461 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011462 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000011463 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011464 return true;
11465 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000011466 }
Evan Chengad4196b2008-05-12 19:56:52 +000011467 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011468}
11469
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011470/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
11471static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
11472 TargetLowering::DAGCombinerInfo &DCI) {
11473 DebugLoc dl = N->getDebugLoc();
11474 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
11475 SDValue V1 = SVOp->getOperand(0);
11476 SDValue V2 = SVOp->getOperand(1);
11477 EVT VT = SVOp->getValueType(0);
11478
11479 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
11480 V2.getOpcode() == ISD::CONCAT_VECTORS) {
11481 //
11482 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000011483 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011484 // V UNDEF BUILD_VECTOR UNDEF
11485 // \ / \ /
11486 // CONCAT_VECTOR CONCAT_VECTOR
11487 // \ /
11488 // \ /
11489 // RESULT: V + zero extended
11490 //
11491 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
11492 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
11493 V1.getOperand(1).getOpcode() != ISD::UNDEF)
11494 return SDValue();
11495
11496 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
11497 return SDValue();
11498
11499 // To match the shuffle mask, the first half of the mask should
11500 // be exactly the first vector, and all the rest a splat with the
11501 // first element of the second one.
11502 int NumElems = VT.getVectorNumElements();
11503 for (int i = 0; i < NumElems/2; ++i)
11504 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
11505 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
11506 return SDValue();
11507
11508 // Emit a zeroed vector and insert the desired subvector on its
11509 // first half.
11510 SDValue Zeros = getZeroVector(VT, true /* HasSSE2 */, DAG, dl);
11511 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0),
11512 DAG.getConstant(0, MVT::i32), DAG, dl);
11513 return DCI.CombineTo(N, InsV);
11514 }
11515
11516 return SDValue();
11517}
11518
11519/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000011520static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011521 TargetLowering::DAGCombinerInfo &DCI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000011522 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000011523 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000011524
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011525 // Don't create instructions with illegal types after legalize types has run.
11526 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11527 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
11528 return SDValue();
11529
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011530 // Only handle pure VECTOR_SHUFFLE nodes.
11531 if (VT.getSizeInBits() == 256 && N->getOpcode() == ISD::VECTOR_SHUFFLE)
11532 return PerformShuffleCombine256(N, DAG, DCI);
11533
11534 // Only handle 128 wide vector from here on.
11535 if (VT.getSizeInBits() != 128)
11536 return SDValue();
11537
11538 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
11539 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
11540 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000011541 SmallVector<SDValue, 16> Elts;
11542 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011543 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000011544
Nate Begemanfdea31a2010-03-24 20:49:50 +000011545 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000011546}
Evan Chengd880b972008-05-09 21:53:03 +000011547
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000011548/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
11549/// generation and convert it from being a bunch of shuffles and extracts
11550/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011551static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
11552 const TargetLowering &TLI) {
11553 SDValue InputVector = N->getOperand(0);
11554
11555 // Only operate on vectors of 4 elements, where the alternative shuffling
11556 // gets to be more expensive.
11557 if (InputVector.getValueType() != MVT::v4i32)
11558 return SDValue();
11559
11560 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
11561 // single use which is a sign-extend or zero-extend, and all elements are
11562 // used.
11563 SmallVector<SDNode *, 4> Uses;
11564 unsigned ExtractedElements = 0;
11565 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
11566 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
11567 if (UI.getUse().getResNo() != InputVector.getResNo())
11568 return SDValue();
11569
11570 SDNode *Extract = *UI;
11571 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
11572 return SDValue();
11573
11574 if (Extract->getValueType(0) != MVT::i32)
11575 return SDValue();
11576 if (!Extract->hasOneUse())
11577 return SDValue();
11578 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
11579 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
11580 return SDValue();
11581 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
11582 return SDValue();
11583
11584 // Record which element was extracted.
11585 ExtractedElements |=
11586 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
11587
11588 Uses.push_back(Extract);
11589 }
11590
11591 // If not all the elements were used, this may not be worthwhile.
11592 if (ExtractedElements != 15)
11593 return SDValue();
11594
11595 // Ok, we've now decided to do the transformation.
11596 DebugLoc dl = InputVector.getDebugLoc();
11597
11598 // Store the value to a temporary stack slot.
11599 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000011600 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
11601 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011602
11603 // Replace each use (extract) with a load of the appropriate element.
11604 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
11605 UE = Uses.end(); UI != UE; ++UI) {
11606 SDNode *Extract = *UI;
11607
Nadav Rotem86694292011-05-17 08:31:57 +000011608 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011609 SDValue Idx = Extract->getOperand(1);
11610 unsigned EltSize =
11611 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
11612 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
11613 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
11614
Nadav Rotem86694292011-05-17 08:31:57 +000011615 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011616 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011617
11618 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000011619 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000011620 ScalarAddr, MachinePointerInfo(),
11621 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011622
11623 // Replace the exact with the load.
11624 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
11625 }
11626
11627 // The replacement was made in place; don't return anything.
11628 return SDValue();
11629}
11630
Chris Lattner83e6c992006-10-04 06:57:07 +000011631/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011632static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000011633 const X86Subtarget *Subtarget) {
11634 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000011635 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000011636 // Get the LHS/RHS of the select.
11637 SDValue LHS = N->getOperand(1);
11638 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000011639
Dan Gohman670e5392009-09-21 18:03:22 +000011640 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000011641 // instructions match the semantics of the common C idiom x<y?x:y but not
11642 // x<=y?x:y, because of how they handle negative zero (which can be
11643 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000011644 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000011645 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000011646 Cond.getOpcode() == ISD::SETCC) {
11647 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011648
Chris Lattner47b4ce82009-03-11 05:48:52 +000011649 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000011650 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000011651 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
11652 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000011653 switch (CC) {
11654 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000011655 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011656 // Converting this to a min would handle NaNs incorrectly, and swapping
11657 // the operands would cause it to handle comparisons between positive
11658 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011659 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000011660 if (!UnsafeFPMath &&
11661 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11662 break;
11663 std::swap(LHS, RHS);
11664 }
Dan Gohman670e5392009-09-21 18:03:22 +000011665 Opcode = X86ISD::FMIN;
11666 break;
11667 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000011668 // Converting this to a min would handle comparisons between positive
11669 // and negative zero incorrectly.
11670 if (!UnsafeFPMath &&
11671 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
11672 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011673 Opcode = X86ISD::FMIN;
11674 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000011675 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000011676 // Converting this to a min would handle both negative zeros and NaNs
11677 // incorrectly, but we can swap the operands to fix both.
11678 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011679 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011680 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000011681 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011682 Opcode = X86ISD::FMIN;
11683 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011684
Dan Gohman670e5392009-09-21 18:03:22 +000011685 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011686 // Converting this to a max would handle comparisons between positive
11687 // and negative zero incorrectly.
11688 if (!UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000011689 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011690 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011691 Opcode = X86ISD::FMAX;
11692 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000011693 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000011694 // Converting this to a max would handle NaNs incorrectly, and swapping
11695 // the operands would cause it to handle comparisons between positive
11696 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011697 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000011698 if (!UnsafeFPMath &&
11699 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11700 break;
11701 std::swap(LHS, RHS);
11702 }
Dan Gohman670e5392009-09-21 18:03:22 +000011703 Opcode = X86ISD::FMAX;
11704 break;
11705 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011706 // Converting this to a max would handle both negative zeros and NaNs
11707 // incorrectly, but we can swap the operands to fix both.
11708 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011709 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011710 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011711 case ISD::SETGE:
11712 Opcode = X86ISD::FMAX;
11713 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000011714 }
Dan Gohman670e5392009-09-21 18:03:22 +000011715 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000011716 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
11717 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000011718 switch (CC) {
11719 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000011720 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011721 // Converting this to a min would handle comparisons between positive
11722 // and negative zero incorrectly, and swapping the operands would
11723 // cause it to handle NaNs incorrectly.
11724 if (!UnsafeFPMath &&
11725 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000011726 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011727 break;
11728 std::swap(LHS, RHS);
11729 }
Dan Gohman670e5392009-09-21 18:03:22 +000011730 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000011731 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011732 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000011733 // Converting this to a min would handle NaNs incorrectly.
11734 if (!UnsafeFPMath &&
11735 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
11736 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011737 Opcode = X86ISD::FMIN;
11738 break;
11739 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011740 // Converting this to a min would handle both negative zeros and NaNs
11741 // incorrectly, but we can swap the operands to fix both.
11742 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011743 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011744 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011745 case ISD::SETGE:
11746 Opcode = X86ISD::FMIN;
11747 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011748
Dan Gohman670e5392009-09-21 18:03:22 +000011749 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011750 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011751 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011752 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011753 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000011754 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011755 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000011756 // Converting this to a max would handle comparisons between positive
11757 // and negative zero incorrectly, and swapping the operands would
11758 // cause it to handle NaNs incorrectly.
11759 if (!UnsafeFPMath &&
11760 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000011761 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011762 break;
11763 std::swap(LHS, RHS);
11764 }
Dan Gohman670e5392009-09-21 18:03:22 +000011765 Opcode = X86ISD::FMAX;
11766 break;
11767 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000011768 // Converting this to a max would handle both negative zeros and NaNs
11769 // incorrectly, but we can swap the operands to fix both.
11770 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011771 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011772 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000011773 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011774 Opcode = X86ISD::FMAX;
11775 break;
11776 }
Chris Lattner83e6c992006-10-04 06:57:07 +000011777 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011778
Chris Lattner47b4ce82009-03-11 05:48:52 +000011779 if (Opcode)
11780 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000011781 }
Eric Christopherfd179292009-08-27 18:07:15 +000011782
Chris Lattnerd1980a52009-03-12 06:52:53 +000011783 // If this is a select between two integer constants, try to do some
11784 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000011785 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
11786 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000011787 // Don't do this for crazy integer types.
11788 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
11789 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000011790 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011791 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000011792
Chris Lattnercee56e72009-03-13 05:53:31 +000011793 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000011794 // Efficiently invertible.
11795 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
11796 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
11797 isa<ConstantSDNode>(Cond.getOperand(1))))) {
11798 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000011799 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011800 }
Eric Christopherfd179292009-08-27 18:07:15 +000011801
Chris Lattnerd1980a52009-03-12 06:52:53 +000011802 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011803 if (FalseC->getAPIntValue() == 0 &&
11804 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000011805 if (NeedsCondInvert) // Invert the condition if needed.
11806 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11807 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011808
Chris Lattnerd1980a52009-03-12 06:52:53 +000011809 // Zero extend the condition if needed.
11810 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011811
Chris Lattnercee56e72009-03-13 05:53:31 +000011812 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000011813 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011814 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011815 }
Eric Christopherfd179292009-08-27 18:07:15 +000011816
Chris Lattner97a29a52009-03-13 05:22:11 +000011817 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000011818 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000011819 if (NeedsCondInvert) // Invert the condition if needed.
11820 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11821 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011822
Chris Lattner97a29a52009-03-13 05:22:11 +000011823 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000011824 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11825 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000011826 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000011827 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000011828 }
Eric Christopherfd179292009-08-27 18:07:15 +000011829
Chris Lattnercee56e72009-03-13 05:53:31 +000011830 // Optimize cases that will turn into an LEA instruction. This requires
11831 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000011832 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000011833 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011834 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000011835
Chris Lattnercee56e72009-03-13 05:53:31 +000011836 bool isFastMultiplier = false;
11837 if (Diff < 10) {
11838 switch ((unsigned char)Diff) {
11839 default: break;
11840 case 1: // result = add base, cond
11841 case 2: // result = lea base( , cond*2)
11842 case 3: // result = lea base(cond, cond*2)
11843 case 4: // result = lea base( , cond*4)
11844 case 5: // result = lea base(cond, cond*4)
11845 case 8: // result = lea base( , cond*8)
11846 case 9: // result = lea base(cond, cond*8)
11847 isFastMultiplier = true;
11848 break;
11849 }
11850 }
Eric Christopherfd179292009-08-27 18:07:15 +000011851
Chris Lattnercee56e72009-03-13 05:53:31 +000011852 if (isFastMultiplier) {
11853 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
11854 if (NeedsCondInvert) // Invert the condition if needed.
11855 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11856 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011857
Chris Lattnercee56e72009-03-13 05:53:31 +000011858 // Zero extend the condition if needed.
11859 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
11860 Cond);
11861 // Scale the condition by the difference.
11862 if (Diff != 1)
11863 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
11864 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011865
Chris Lattnercee56e72009-03-13 05:53:31 +000011866 // Add the base if non-zero.
11867 if (FalseC->getAPIntValue() != 0)
11868 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11869 SDValue(FalseC, 0));
11870 return Cond;
11871 }
Eric Christopherfd179292009-08-27 18:07:15 +000011872 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000011873 }
11874 }
Eric Christopherfd179292009-08-27 18:07:15 +000011875
Dan Gohman475871a2008-07-27 21:46:04 +000011876 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000011877}
11878
Chris Lattnerd1980a52009-03-12 06:52:53 +000011879/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
11880static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
11881 TargetLowering::DAGCombinerInfo &DCI) {
11882 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000011883
Chris Lattnerd1980a52009-03-12 06:52:53 +000011884 // If the flag operand isn't dead, don't touch this CMOV.
11885 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
11886 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000011887
Evan Chengb5a55d92011-05-24 01:48:22 +000011888 SDValue FalseOp = N->getOperand(0);
11889 SDValue TrueOp = N->getOperand(1);
11890 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
11891 SDValue Cond = N->getOperand(3);
11892 if (CC == X86::COND_E || CC == X86::COND_NE) {
11893 switch (Cond.getOpcode()) {
11894 default: break;
11895 case X86ISD::BSR:
11896 case X86ISD::BSF:
11897 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
11898 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
11899 return (CC == X86::COND_E) ? FalseOp : TrueOp;
11900 }
11901 }
11902
Chris Lattnerd1980a52009-03-12 06:52:53 +000011903 // If this is a select between two integer constants, try to do some
11904 // optimizations. Note that the operands are ordered the opposite of SELECT
11905 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000011906 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
11907 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000011908 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
11909 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000011910 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
11911 CC = X86::GetOppositeBranchCondition(CC);
11912 std::swap(TrueC, FalseC);
11913 }
Eric Christopherfd179292009-08-27 18:07:15 +000011914
Chris Lattnerd1980a52009-03-12 06:52:53 +000011915 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011916 // This is efficient for any integer data type (including i8/i16) and
11917 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011918 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011919 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11920 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011921
Chris Lattnerd1980a52009-03-12 06:52:53 +000011922 // Zero extend the condition if needed.
11923 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011924
Chris Lattnerd1980a52009-03-12 06:52:53 +000011925 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
11926 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011927 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011928 if (N->getNumValues() == 2) // Dead flag value?
11929 return DCI.CombineTo(N, Cond, SDValue());
11930 return Cond;
11931 }
Eric Christopherfd179292009-08-27 18:07:15 +000011932
Chris Lattnercee56e72009-03-13 05:53:31 +000011933 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
11934 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000011935 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011936 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11937 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011938
Chris Lattner97a29a52009-03-13 05:22:11 +000011939 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000011940 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11941 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000011942 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11943 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000011944
Chris Lattner97a29a52009-03-13 05:22:11 +000011945 if (N->getNumValues() == 2) // Dead flag value?
11946 return DCI.CombineTo(N, Cond, SDValue());
11947 return Cond;
11948 }
Eric Christopherfd179292009-08-27 18:07:15 +000011949
Chris Lattnercee56e72009-03-13 05:53:31 +000011950 // Optimize cases that will turn into an LEA instruction. This requires
11951 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000011952 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000011953 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011954 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000011955
Chris Lattnercee56e72009-03-13 05:53:31 +000011956 bool isFastMultiplier = false;
11957 if (Diff < 10) {
11958 switch ((unsigned char)Diff) {
11959 default: break;
11960 case 1: // result = add base, cond
11961 case 2: // result = lea base( , cond*2)
11962 case 3: // result = lea base(cond, cond*2)
11963 case 4: // result = lea base( , cond*4)
11964 case 5: // result = lea base(cond, cond*4)
11965 case 8: // result = lea base( , cond*8)
11966 case 9: // result = lea base(cond, cond*8)
11967 isFastMultiplier = true;
11968 break;
11969 }
11970 }
Eric Christopherfd179292009-08-27 18:07:15 +000011971
Chris Lattnercee56e72009-03-13 05:53:31 +000011972 if (isFastMultiplier) {
11973 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011974 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11975 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000011976 // Zero extend the condition if needed.
11977 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
11978 Cond);
11979 // Scale the condition by the difference.
11980 if (Diff != 1)
11981 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
11982 DAG.getConstant(Diff, Cond.getValueType()));
11983
11984 // Add the base if non-zero.
11985 if (FalseC->getAPIntValue() != 0)
11986 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11987 SDValue(FalseC, 0));
11988 if (N->getNumValues() == 2) // Dead flag value?
11989 return DCI.CombineTo(N, Cond, SDValue());
11990 return Cond;
11991 }
Eric Christopherfd179292009-08-27 18:07:15 +000011992 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000011993 }
11994 }
11995 return SDValue();
11996}
11997
11998
Evan Cheng0b0cd912009-03-28 05:57:29 +000011999/// PerformMulCombine - Optimize a single multiply with constant into two
12000/// in order to implement it with two cheaper instructions, e.g.
12001/// LEA + SHL, LEA + LEA.
12002static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
12003 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000012004 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
12005 return SDValue();
12006
Owen Andersone50ed302009-08-10 22:56:29 +000012007 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012008 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000012009 return SDValue();
12010
12011 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
12012 if (!C)
12013 return SDValue();
12014 uint64_t MulAmt = C->getZExtValue();
12015 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
12016 return SDValue();
12017
12018 uint64_t MulAmt1 = 0;
12019 uint64_t MulAmt2 = 0;
12020 if ((MulAmt % 9) == 0) {
12021 MulAmt1 = 9;
12022 MulAmt2 = MulAmt / 9;
12023 } else if ((MulAmt % 5) == 0) {
12024 MulAmt1 = 5;
12025 MulAmt2 = MulAmt / 5;
12026 } else if ((MulAmt % 3) == 0) {
12027 MulAmt1 = 3;
12028 MulAmt2 = MulAmt / 3;
12029 }
12030 if (MulAmt2 &&
12031 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
12032 DebugLoc DL = N->getDebugLoc();
12033
12034 if (isPowerOf2_64(MulAmt2) &&
12035 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
12036 // If second multiplifer is pow2, issue it first. We want the multiply by
12037 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
12038 // is an add.
12039 std::swap(MulAmt1, MulAmt2);
12040
12041 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000012042 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012043 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000012044 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000012045 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012046 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000012047 DAG.getConstant(MulAmt1, VT));
12048
Eric Christopherfd179292009-08-27 18:07:15 +000012049 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012050 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000012051 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000012052 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012053 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000012054 DAG.getConstant(MulAmt2, VT));
12055
12056 // Do not add new nodes to DAG combiner worklist.
12057 DCI.CombineTo(N, NewMul, false);
12058 }
12059 return SDValue();
12060}
12061
Evan Chengad9c0a32009-12-15 00:53:42 +000012062static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
12063 SDValue N0 = N->getOperand(0);
12064 SDValue N1 = N->getOperand(1);
12065 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
12066 EVT VT = N0.getValueType();
12067
12068 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
12069 // since the result of setcc_c is all zero's or all ones.
12070 if (N1C && N0.getOpcode() == ISD::AND &&
12071 N0.getOperand(1).getOpcode() == ISD::Constant) {
12072 SDValue N00 = N0.getOperand(0);
12073 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
12074 ((N00.getOpcode() == ISD::ANY_EXTEND ||
12075 N00.getOpcode() == ISD::ZERO_EXTEND) &&
12076 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
12077 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
12078 APInt ShAmt = N1C->getAPIntValue();
12079 Mask = Mask.shl(ShAmt);
12080 if (Mask != 0)
12081 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
12082 N00, DAG.getConstant(Mask, VT));
12083 }
12084 }
12085
12086 return SDValue();
12087}
Evan Cheng0b0cd912009-03-28 05:57:29 +000012088
Nate Begeman740ab032009-01-26 00:52:55 +000012089/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
12090/// when possible.
12091static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
12092 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000012093 EVT VT = N->getValueType(0);
12094 if (!VT.isVector() && VT.isInteger() &&
12095 N->getOpcode() == ISD::SHL)
12096 return PerformSHLCombine(N, DAG);
12097
Nate Begeman740ab032009-01-26 00:52:55 +000012098 // On X86 with SSE2 support, we can transform this to a vector shift if
12099 // all elements are shifted by the same amount. We can't do this in legalize
12100 // because the a constant vector is typically transformed to a constant pool
12101 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012102 if (!Subtarget->hasSSE2())
12103 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000012104
Owen Anderson825b72b2009-08-11 20:47:22 +000012105 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012106 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000012107
Mon P Wang3becd092009-01-28 08:12:05 +000012108 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000012109 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000012110 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000012111 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000012112 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
12113 unsigned NumElts = VT.getVectorNumElements();
12114 unsigned i = 0;
12115 for (; i != NumElts; ++i) {
12116 SDValue Arg = ShAmtOp.getOperand(i);
12117 if (Arg.getOpcode() == ISD::UNDEF) continue;
12118 BaseShAmt = Arg;
12119 break;
12120 }
12121 for (; i != NumElts; ++i) {
12122 SDValue Arg = ShAmtOp.getOperand(i);
12123 if (Arg.getOpcode() == ISD::UNDEF) continue;
12124 if (Arg != BaseShAmt) {
12125 return SDValue();
12126 }
12127 }
12128 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000012129 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000012130 SDValue InVec = ShAmtOp.getOperand(0);
12131 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12132 unsigned NumElts = InVec.getValueType().getVectorNumElements();
12133 unsigned i = 0;
12134 for (; i != NumElts; ++i) {
12135 SDValue Arg = InVec.getOperand(i);
12136 if (Arg.getOpcode() == ISD::UNDEF) continue;
12137 BaseShAmt = Arg;
12138 break;
12139 }
12140 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12141 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000012142 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000012143 if (C->getZExtValue() == SplatIdx)
12144 BaseShAmt = InVec.getOperand(1);
12145 }
12146 }
12147 if (BaseShAmt.getNode() == 0)
12148 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
12149 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000012150 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012151 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000012152
Mon P Wangefa42202009-09-03 19:56:25 +000012153 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000012154 if (EltVT.bitsGT(MVT::i32))
12155 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
12156 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000012157 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000012158
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012159 // The shift amount is identical so we can do a vector shift.
12160 SDValue ValOp = N->getOperand(0);
12161 switch (N->getOpcode()) {
12162 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000012163 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012164 break;
12165 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000012166 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012167 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012168 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012169 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012170 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012171 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012172 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012173 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012174 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012175 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012176 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012177 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012178 break;
12179 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000012180 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012181 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012182 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012183 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012184 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012185 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012186 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012187 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012188 break;
12189 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000012190 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012191 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012192 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012193 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012194 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012195 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012196 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012197 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000012198 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000012199 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000012200 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000012201 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000012202 break;
Nate Begeman740ab032009-01-26 00:52:55 +000012203 }
12204 return SDValue();
12205}
12206
Nate Begemanb65c1752010-12-17 22:55:37 +000012207
Stuart Hastings865f0932011-06-03 23:53:54 +000012208// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
12209// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
12210// and friends. Likewise for OR -> CMPNEQSS.
12211static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
12212 TargetLowering::DAGCombinerInfo &DCI,
12213 const X86Subtarget *Subtarget) {
12214 unsigned opcode;
12215
12216 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
12217 // we're requiring SSE2 for both.
12218 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
12219 SDValue N0 = N->getOperand(0);
12220 SDValue N1 = N->getOperand(1);
12221 SDValue CMP0 = N0->getOperand(1);
12222 SDValue CMP1 = N1->getOperand(1);
12223 DebugLoc DL = N->getDebugLoc();
12224
12225 // The SETCCs should both refer to the same CMP.
12226 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
12227 return SDValue();
12228
12229 SDValue CMP00 = CMP0->getOperand(0);
12230 SDValue CMP01 = CMP0->getOperand(1);
12231 EVT VT = CMP00.getValueType();
12232
12233 if (VT == MVT::f32 || VT == MVT::f64) {
12234 bool ExpectingFlags = false;
12235 // Check for any users that want flags:
12236 for (SDNode::use_iterator UI = N->use_begin(),
12237 UE = N->use_end();
12238 !ExpectingFlags && UI != UE; ++UI)
12239 switch (UI->getOpcode()) {
12240 default:
12241 case ISD::BR_CC:
12242 case ISD::BRCOND:
12243 case ISD::SELECT:
12244 ExpectingFlags = true;
12245 break;
12246 case ISD::CopyToReg:
12247 case ISD::SIGN_EXTEND:
12248 case ISD::ZERO_EXTEND:
12249 case ISD::ANY_EXTEND:
12250 break;
12251 }
12252
12253 if (!ExpectingFlags) {
12254 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
12255 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
12256
12257 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
12258 X86::CondCode tmp = cc0;
12259 cc0 = cc1;
12260 cc1 = tmp;
12261 }
12262
12263 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
12264 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
12265 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
12266 X86ISD::NodeType NTOperator = is64BitFP ?
12267 X86ISD::FSETCCsd : X86ISD::FSETCCss;
12268 // FIXME: need symbolic constants for these magic numbers.
12269 // See X86ATTInstPrinter.cpp:printSSECC().
12270 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
12271 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
12272 DAG.getConstant(x86cc, MVT::i8));
12273 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
12274 OnesOrZeroesF);
12275 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
12276 DAG.getConstant(1, MVT::i32));
12277 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
12278 return OneBitOfTruth;
12279 }
12280 }
12281 }
12282 }
12283 return SDValue();
12284}
12285
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012286/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
12287/// so it can be folded inside ANDNP.
12288static bool CanFoldXORWithAllOnes(const SDNode *N) {
12289 EVT VT = N->getValueType(0);
12290
12291 // Match direct AllOnes for 128 and 256-bit vectors
12292 if (ISD::isBuildVectorAllOnes(N))
12293 return true;
12294
12295 // Look through a bit convert.
12296 if (N->getOpcode() == ISD::BITCAST)
12297 N = N->getOperand(0).getNode();
12298
12299 // Sometimes the operand may come from a insert_subvector building a 256-bit
12300 // allones vector
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012301 if (VT.getSizeInBits() == 256 &&
Bill Wendling456a9252011-08-04 00:32:58 +000012302 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
12303 SDValue V1 = N->getOperand(0);
12304 SDValue V2 = N->getOperand(1);
12305
12306 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
12307 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
12308 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
12309 ISD::isBuildVectorAllOnes(V2.getNode()))
12310 return true;
12311 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012312
12313 return false;
12314}
12315
Nate Begemanb65c1752010-12-17 22:55:37 +000012316static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
12317 TargetLowering::DAGCombinerInfo &DCI,
12318 const X86Subtarget *Subtarget) {
12319 if (DCI.isBeforeLegalizeOps())
12320 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012321
Stuart Hastings865f0932011-06-03 23:53:54 +000012322 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12323 if (R.getNode())
12324 return R;
12325
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000012326 // Want to form ANDNP nodes:
12327 // 1) In the hopes of then easily combining them with OR and AND nodes
12328 // to form PBLEND/PSIGN.
12329 // 2) To match ANDN packed intrinsics
Nate Begemanb65c1752010-12-17 22:55:37 +000012330 EVT VT = N->getValueType(0);
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000012331 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000012332 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012333
Nate Begemanb65c1752010-12-17 22:55:37 +000012334 SDValue N0 = N->getOperand(0);
12335 SDValue N1 = N->getOperand(1);
12336 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012337
Nate Begemanb65c1752010-12-17 22:55:37 +000012338 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012339 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012340 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
12341 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012342 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000012343
12344 // Check RHS for vnot
12345 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000012346 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
12347 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012348 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012349
Nate Begemanb65c1752010-12-17 22:55:37 +000012350 return SDValue();
12351}
12352
Evan Cheng760d1942010-01-04 21:22:48 +000012353static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000012354 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000012355 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000012356 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000012357 return SDValue();
12358
Stuart Hastings865f0932011-06-03 23:53:54 +000012359 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12360 if (R.getNode())
12361 return R;
12362
Evan Cheng760d1942010-01-04 21:22:48 +000012363 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000012364 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64 && VT != MVT::v2i64)
Evan Cheng760d1942010-01-04 21:22:48 +000012365 return SDValue();
12366
Evan Cheng760d1942010-01-04 21:22:48 +000012367 SDValue N0 = N->getOperand(0);
12368 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012369
Nate Begemanb65c1752010-12-17 22:55:37 +000012370 // look for psign/blend
12371 if (Subtarget->hasSSSE3()) {
12372 if (VT == MVT::v2i64) {
12373 // Canonicalize pandn to RHS
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012374 if (N0.getOpcode() == X86ISD::ANDNP)
Nate Begemanb65c1752010-12-17 22:55:37 +000012375 std::swap(N0, N1);
12376 // or (and (m, x), (pandn m, y))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012377 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
Nate Begemanb65c1752010-12-17 22:55:37 +000012378 SDValue Mask = N1.getOperand(0);
12379 SDValue X = N1.getOperand(1);
12380 SDValue Y;
12381 if (N0.getOperand(0) == Mask)
12382 Y = N0.getOperand(1);
12383 if (N0.getOperand(1) == Mask)
12384 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012385
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012386 // Check to see if the mask appeared in both the AND and ANDNP and
Nate Begemanb65c1752010-12-17 22:55:37 +000012387 if (!Y.getNode())
12388 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012389
Nate Begemanb65c1752010-12-17 22:55:37 +000012390 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
12391 if (Mask.getOpcode() != ISD::BITCAST ||
12392 X.getOpcode() != ISD::BITCAST ||
12393 Y.getOpcode() != ISD::BITCAST)
12394 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012395
Nate Begemanb65c1752010-12-17 22:55:37 +000012396 // Look through mask bitcast.
12397 Mask = Mask.getOperand(0);
12398 EVT MaskVT = Mask.getValueType();
12399
12400 // Validate that the Mask operand is a vector sra node. The sra node
12401 // will be an intrinsic.
12402 if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
12403 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012404
Nate Begemanb65c1752010-12-17 22:55:37 +000012405 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
12406 // there is no psrai.b
12407 switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
12408 case Intrinsic::x86_sse2_psrai_w:
12409 case Intrinsic::x86_sse2_psrai_d:
12410 break;
12411 default: return SDValue();
12412 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012413
Nate Begemanb65c1752010-12-17 22:55:37 +000012414 // Check that the SRA is all signbits.
12415 SDValue SraC = Mask.getOperand(2);
12416 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
12417 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
12418 if ((SraAmt + 1) != EltBits)
12419 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012420
Nate Begemanb65c1752010-12-17 22:55:37 +000012421 DebugLoc DL = N->getDebugLoc();
12422
12423 // Now we know we at least have a plendvb with the mask val. See if
12424 // we can form a psignb/w/d.
12425 // psign = x.type == y.type == mask.type && y = sub(0, x);
12426 X = X.getOperand(0);
12427 Y = Y.getOperand(0);
12428 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
12429 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
12430 X.getValueType() == MaskVT && X.getValueType() == Y.getValueType()){
12431 unsigned Opc = 0;
12432 switch (EltBits) {
12433 case 8: Opc = X86ISD::PSIGNB; break;
12434 case 16: Opc = X86ISD::PSIGNW; break;
12435 case 32: Opc = X86ISD::PSIGND; break;
12436 default: break;
12437 }
12438 if (Opc) {
12439 SDValue Sign = DAG.getNode(Opc, DL, MaskVT, X, Mask.getOperand(1));
12440 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Sign);
12441 }
12442 }
12443 // PBLENDVB only available on SSE 4.1
12444 if (!Subtarget->hasSSE41())
12445 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012446
Nate Begemanb65c1752010-12-17 22:55:37 +000012447 X = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, X);
12448 Y = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Y);
12449 Mask = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Mask);
Nate Begeman672fb622010-12-20 22:04:24 +000012450 Mask = DAG.getNode(X86ISD::PBLENDVB, DL, MVT::v16i8, X, Y, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000012451 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Mask);
12452 }
12453 }
12454 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012455
Nate Begemanb65c1752010-12-17 22:55:37 +000012456 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000012457 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
12458 std::swap(N0, N1);
12459 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
12460 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000012461 if (!N0.hasOneUse() || !N1.hasOneUse())
12462 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000012463
12464 SDValue ShAmt0 = N0.getOperand(1);
12465 if (ShAmt0.getValueType() != MVT::i8)
12466 return SDValue();
12467 SDValue ShAmt1 = N1.getOperand(1);
12468 if (ShAmt1.getValueType() != MVT::i8)
12469 return SDValue();
12470 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
12471 ShAmt0 = ShAmt0.getOperand(0);
12472 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
12473 ShAmt1 = ShAmt1.getOperand(0);
12474
12475 DebugLoc DL = N->getDebugLoc();
12476 unsigned Opc = X86ISD::SHLD;
12477 SDValue Op0 = N0.getOperand(0);
12478 SDValue Op1 = N1.getOperand(0);
12479 if (ShAmt0.getOpcode() == ISD::SUB) {
12480 Opc = X86ISD::SHRD;
12481 std::swap(Op0, Op1);
12482 std::swap(ShAmt0, ShAmt1);
12483 }
12484
Evan Cheng8b1190a2010-04-28 01:18:01 +000012485 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000012486 if (ShAmt1.getOpcode() == ISD::SUB) {
12487 SDValue Sum = ShAmt1.getOperand(0);
12488 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000012489 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
12490 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
12491 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
12492 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000012493 return DAG.getNode(Opc, DL, VT,
12494 Op0, Op1,
12495 DAG.getNode(ISD::TRUNCATE, DL,
12496 MVT::i8, ShAmt0));
12497 }
12498 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
12499 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
12500 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000012501 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000012502 return DAG.getNode(Opc, DL, VT,
12503 N0.getOperand(0), N1.getOperand(0),
12504 DAG.getNode(ISD::TRUNCATE, DL,
12505 MVT::i8, ShAmt0));
12506 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012507
Evan Cheng760d1942010-01-04 21:22:48 +000012508 return SDValue();
12509}
12510
Chris Lattner149a4e52008-02-22 02:09:43 +000012511/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012512static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000012513 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +000012514 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
12515 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000012516 // A preferable solution to the general problem is to figure out the right
12517 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000012518
12519 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +000012520 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +000012521 EVT VT = St->getValue().getValueType();
Evan Cheng536e6672009-03-12 05:59:15 +000012522 if (VT.getSizeInBits() != 64)
12523 return SDValue();
12524
Devang Patel578efa92009-06-05 21:57:13 +000012525 const Function *F = DAG.getMachineFunction().getFunction();
12526 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000012527 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000012528 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000012529 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000012530 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000012531 isa<LoadSDNode>(St->getValue()) &&
12532 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
12533 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000012534 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012535 LoadSDNode *Ld = 0;
12536 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000012537 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000012538 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012539 // Must be a store of a load. We currently handle two cases: the load
12540 // is a direct child, and it's under an intervening TokenFactor. It is
12541 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000012542 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000012543 Ld = cast<LoadSDNode>(St->getChain());
12544 else if (St->getValue().hasOneUse() &&
12545 ChainVal->getOpcode() == ISD::TokenFactor) {
12546 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000012547 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000012548 TokenFactorIndex = i;
12549 Ld = cast<LoadSDNode>(St->getValue());
12550 } else
12551 Ops.push_back(ChainVal->getOperand(i));
12552 }
12553 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000012554
Evan Cheng536e6672009-03-12 05:59:15 +000012555 if (!Ld || !ISD::isNormalLoad(Ld))
12556 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012557
Evan Cheng536e6672009-03-12 05:59:15 +000012558 // If this is not the MMX case, i.e. we are just turning i64 load/store
12559 // into f64 load/store, avoid the transformation if there are multiple
12560 // uses of the loaded value.
12561 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
12562 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012563
Evan Cheng536e6672009-03-12 05:59:15 +000012564 DebugLoc LdDL = Ld->getDebugLoc();
12565 DebugLoc StDL = N->getDebugLoc();
12566 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
12567 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
12568 // pair instead.
12569 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012570 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000012571 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
12572 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000012573 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000012574 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000012575 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000012576 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000012577 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000012578 Ops.size());
12579 }
Evan Cheng536e6672009-03-12 05:59:15 +000012580 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000012581 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012582 St->isVolatile(), St->isNonTemporal(),
12583 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000012584 }
Evan Cheng536e6672009-03-12 05:59:15 +000012585
12586 // Otherwise, lower to two pairs of 32-bit loads / stores.
12587 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000012588 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
12589 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000012590
Owen Anderson825b72b2009-08-11 20:47:22 +000012591 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000012592 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012593 Ld->isVolatile(), Ld->isNonTemporal(),
12594 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000012595 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000012596 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000012597 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000012598 MinAlign(Ld->getAlignment(), 4));
12599
12600 SDValue NewChain = LoLd.getValue(1);
12601 if (TokenFactorIndex != -1) {
12602 Ops.push_back(LoLd);
12603 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000012604 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000012605 Ops.size());
12606 }
12607
12608 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000012609 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
12610 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000012611
12612 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012613 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012614 St->isVolatile(), St->isNonTemporal(),
12615 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000012616 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012617 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000012618 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000012619 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000012620 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000012621 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000012622 }
Dan Gohman475871a2008-07-27 21:46:04 +000012623 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000012624}
12625
Chris Lattner6cf73262008-01-25 06:14:17 +000012626/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
12627/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012628static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000012629 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
12630 // F[X]OR(0.0, x) -> x
12631 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000012632 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
12633 if (C->getValueAPF().isPosZero())
12634 return N->getOperand(1);
12635 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
12636 if (C->getValueAPF().isPosZero())
12637 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000012638 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000012639}
12640
12641/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012642static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000012643 // FAND(0.0, x) -> 0.0
12644 // FAND(x, 0.0) -> 0.0
12645 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
12646 if (C->getValueAPF().isPosZero())
12647 return N->getOperand(0);
12648 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
12649 if (C->getValueAPF().isPosZero())
12650 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000012651 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000012652}
12653
Dan Gohmane5af2d32009-01-29 01:59:02 +000012654static SDValue PerformBTCombine(SDNode *N,
12655 SelectionDAG &DAG,
12656 TargetLowering::DAGCombinerInfo &DCI) {
12657 // BT ignores high bits in the bit index operand.
12658 SDValue Op1 = N->getOperand(1);
12659 if (Op1.hasOneUse()) {
12660 unsigned BitWidth = Op1.getValueSizeInBits();
12661 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
12662 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012663 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
12664 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000012665 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000012666 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
12667 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
12668 DCI.CommitTargetLoweringOpt(TLO);
12669 }
12670 return SDValue();
12671}
Chris Lattner83e6c992006-10-04 06:57:07 +000012672
Eli Friedman7a5e5552009-06-07 06:52:44 +000012673static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
12674 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012675 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000012676 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000012677 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000012678 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000012679 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000012680 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012681 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000012682 }
12683 return SDValue();
12684}
12685
Evan Cheng2e489c42009-12-16 00:53:11 +000012686static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
12687 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
12688 // (and (i32 x86isd::setcc_carry), 1)
12689 // This eliminates the zext. This transformation is necessary because
12690 // ISD::SETCC is always legalized to i8.
12691 DebugLoc dl = N->getDebugLoc();
12692 SDValue N0 = N->getOperand(0);
12693 EVT VT = N->getValueType(0);
12694 if (N0.getOpcode() == ISD::AND &&
12695 N0.hasOneUse() &&
12696 N0.getOperand(0).hasOneUse()) {
12697 SDValue N00 = N0.getOperand(0);
12698 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
12699 return SDValue();
12700 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
12701 if (!C || C->getZExtValue() != 1)
12702 return SDValue();
12703 return DAG.getNode(ISD::AND, dl, VT,
12704 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
12705 N00.getOperand(0), N00.getOperand(1)),
12706 DAG.getConstant(1, VT));
12707 }
12708
12709 return SDValue();
12710}
12711
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012712// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
12713static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
12714 unsigned X86CC = N->getConstantOperandVal(0);
12715 SDValue EFLAG = N->getOperand(1);
12716 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012717
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012718 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
12719 // a zext and produces an all-ones bit which is more useful than 0/1 in some
12720 // cases.
12721 if (X86CC == X86::COND_B)
12722 return DAG.getNode(ISD::AND, DL, MVT::i8,
12723 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
12724 DAG.getConstant(X86CC, MVT::i8), EFLAG),
12725 DAG.getConstant(1, MVT::i8));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012726
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012727 return SDValue();
12728}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012729
Benjamin Kramer1396c402011-06-18 11:09:41 +000012730static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
12731 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000012732 SDValue Op0 = N->getOperand(0);
12733 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
12734 // a 32-bit target where SSE doesn't support i64->FP operations.
12735 if (Op0.getOpcode() == ISD::LOAD) {
12736 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
12737 EVT VT = Ld->getValueType(0);
12738 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
12739 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
12740 !XTLI->getSubtarget()->is64Bit() &&
12741 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000012742 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
12743 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000012744 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
12745 return FILDChain;
12746 }
12747 }
12748 return SDValue();
12749}
12750
Chris Lattner23a01992010-12-20 01:37:09 +000012751// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
12752static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
12753 X86TargetLowering::DAGCombinerInfo &DCI) {
12754 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
12755 // the result is either zero or one (depending on the input carry bit).
12756 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
12757 if (X86::isZeroNode(N->getOperand(0)) &&
12758 X86::isZeroNode(N->getOperand(1)) &&
12759 // We don't have a good way to replace an EFLAGS use, so only do this when
12760 // dead right now.
12761 SDValue(N, 1).use_empty()) {
12762 DebugLoc DL = N->getDebugLoc();
12763 EVT VT = N->getValueType(0);
12764 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
12765 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
12766 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
12767 DAG.getConstant(X86::COND_B,MVT::i8),
12768 N->getOperand(2)),
12769 DAG.getConstant(1, VT));
12770 return DCI.CombineTo(N, Res1, CarryOut);
12771 }
12772
12773 return SDValue();
12774}
12775
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012776// fold (add Y, (sete X, 0)) -> adc 0, Y
12777// (add Y, (setne X, 0)) -> sbb -1, Y
12778// (sub (sete X, 0), Y) -> sbb 0, Y
12779// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000012780static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012781 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012782
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012783 // Look through ZExts.
12784 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
12785 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
12786 return SDValue();
12787
12788 SDValue SetCC = Ext.getOperand(0);
12789 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
12790 return SDValue();
12791
12792 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
12793 if (CC != X86::COND_E && CC != X86::COND_NE)
12794 return SDValue();
12795
12796 SDValue Cmp = SetCC.getOperand(1);
12797 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000012798 !X86::isZeroNode(Cmp.getOperand(1)) ||
12799 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012800 return SDValue();
12801
12802 SDValue CmpOp0 = Cmp.getOperand(0);
12803 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
12804 DAG.getConstant(1, CmpOp0.getValueType()));
12805
12806 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
12807 if (CC == X86::COND_NE)
12808 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
12809 DL, OtherVal.getValueType(), OtherVal,
12810 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
12811 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
12812 DL, OtherVal.getValueType(), OtherVal,
12813 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
12814}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012815
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000012816static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG) {
12817 SDValue Op0 = N->getOperand(0);
12818 SDValue Op1 = N->getOperand(1);
12819
12820 // X86 can't encode an immediate LHS of a sub. See if we can push the
12821 // negation into a preceding instruction.
12822 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
12823 uint64_t Op0C = C->getSExtValue();
12824
12825 // If the RHS of the sub is a XOR with one use and a constant, invert the
12826 // immediate. Then add one to the LHS of the sub so we can turn
12827 // X-Y -> X+~Y+1, saving one register.
12828 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
12829 isa<ConstantSDNode>(Op1.getOperand(1))) {
12830 uint64_t XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getSExtValue();
12831 EVT VT = Op0.getValueType();
12832 SDValue NewXor = DAG.getNode(ISD::XOR, Op1.getDebugLoc(), VT,
12833 Op1.getOperand(0),
12834 DAG.getConstant(~XorC, VT));
12835 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, NewXor,
12836 DAG.getConstant(Op0C+1, VT));
12837 }
12838 }
12839
12840 return OptimizeConditionalInDecrement(N, DAG);
12841}
12842
Dan Gohman475871a2008-07-27 21:46:04 +000012843SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000012844 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000012845 SelectionDAG &DAG = DCI.DAG;
12846 switch (N->getOpcode()) {
12847 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012848 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012849 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000012850 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000012851 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000012852 case ISD::ADD: return OptimizeConditionalInDecrement(N, DAG);
12853 case ISD::SUB: return PerformSubCombine(N, DAG);
Chris Lattner23a01992010-12-20 01:37:09 +000012854 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000012855 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000012856 case ISD::SHL:
12857 case ISD::SRA:
12858 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000012859 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000012860 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000012861 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000012862 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Chris Lattner6cf73262008-01-25 06:14:17 +000012863 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000012864 case X86ISD::FOR: return PerformFORCombine(N, DAG);
12865 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000012866 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000012867 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000012868 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012869 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012870 case X86ISD::SHUFPS: // Handle all target specific shuffles
12871 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000012872 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012873 case X86ISD::PUNPCKHBW:
12874 case X86ISD::PUNPCKHWD:
12875 case X86ISD::PUNPCKHDQ:
12876 case X86ISD::PUNPCKHQDQ:
12877 case X86ISD::UNPCKHPS:
12878 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +000012879 case X86ISD::VUNPCKHPSY:
12880 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012881 case X86ISD::PUNPCKLBW:
12882 case X86ISD::PUNPCKLWD:
12883 case X86ISD::PUNPCKLDQ:
12884 case X86ISD::PUNPCKLQDQ:
12885 case X86ISD::UNPCKLPS:
12886 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +000012887 case X86ISD::VUNPCKLPSY:
12888 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012889 case X86ISD::MOVHLPS:
12890 case X86ISD::MOVLHPS:
12891 case X86ISD::PSHUFD:
12892 case X86ISD::PSHUFHW:
12893 case X86ISD::PSHUFLW:
12894 case X86ISD::MOVSS:
12895 case X86ISD::MOVSD:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000012896 case X86ISD::VPERMILPS:
12897 case X86ISD::VPERMILPSY:
12898 case X86ISD::VPERMILPD:
12899 case X86ISD::VPERMILPDY:
Mon P Wanga0fd0d52010-12-19 23:55:53 +000012900 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI);
Evan Cheng206ee9d2006-07-07 08:33:52 +000012901 }
12902
Dan Gohman475871a2008-07-27 21:46:04 +000012903 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000012904}
12905
Evan Chenge5b51ac2010-04-17 06:13:15 +000012906/// isTypeDesirableForOp - Return true if the target has native support for
12907/// the specified value type and it is 'desirable' to use the type for the
12908/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
12909/// instruction encodings are longer and some i16 instructions are slow.
12910bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
12911 if (!isTypeLegal(VT))
12912 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012913 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000012914 return true;
12915
12916 switch (Opc) {
12917 default:
12918 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000012919 case ISD::LOAD:
12920 case ISD::SIGN_EXTEND:
12921 case ISD::ZERO_EXTEND:
12922 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000012923 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000012924 case ISD::SRL:
12925 case ISD::SUB:
12926 case ISD::ADD:
12927 case ISD::MUL:
12928 case ISD::AND:
12929 case ISD::OR:
12930 case ISD::XOR:
12931 return false;
12932 }
12933}
12934
12935/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000012936/// beneficial for dag combiner to promote the specified node. If true, it
12937/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000012938bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000012939 EVT VT = Op.getValueType();
12940 if (VT != MVT::i16)
12941 return false;
12942
Evan Cheng4c26e932010-04-19 19:29:22 +000012943 bool Promote = false;
12944 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012945 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000012946 default: break;
12947 case ISD::LOAD: {
12948 LoadSDNode *LD = cast<LoadSDNode>(Op);
12949 // If the non-extending load has a single use and it's not live out, then it
12950 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012951 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
12952 Op.hasOneUse()*/) {
12953 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
12954 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
12955 // The only case where we'd want to promote LOAD (rather then it being
12956 // promoted as an operand is when it's only use is liveout.
12957 if (UI->getOpcode() != ISD::CopyToReg)
12958 return false;
12959 }
12960 }
Evan Cheng4c26e932010-04-19 19:29:22 +000012961 Promote = true;
12962 break;
12963 }
12964 case ISD::SIGN_EXTEND:
12965 case ISD::ZERO_EXTEND:
12966 case ISD::ANY_EXTEND:
12967 Promote = true;
12968 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012969 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012970 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000012971 SDValue N0 = Op.getOperand(0);
12972 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000012973 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000012974 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000012975 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012976 break;
12977 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000012978 case ISD::ADD:
12979 case ISD::MUL:
12980 case ISD::AND:
12981 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000012982 case ISD::XOR:
12983 Commute = true;
12984 // fallthrough
12985 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000012986 SDValue N0 = Op.getOperand(0);
12987 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000012988 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012989 return false;
12990 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000012991 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012992 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000012993 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012994 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000012995 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012996 }
12997 }
12998
12999 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000013000 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013001}
13002
Evan Cheng60c07e12006-07-05 22:17:51 +000013003//===----------------------------------------------------------------------===//
13004// X86 Inline Assembly Support
13005//===----------------------------------------------------------------------===//
13006
Chris Lattnerb8105652009-07-20 17:51:36 +000013007bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
13008 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000013009
13010 std::string AsmStr = IA->getAsmString();
13011
13012 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000013013 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000013014 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000013015
13016 switch (AsmPieces.size()) {
13017 default: return false;
13018 case 1:
13019 AsmStr = AsmPieces[0];
13020 AsmPieces.clear();
13021 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
13022
Chris Lattner7a2bdde2011-04-15 05:18:47 +000013023 // FIXME: this should verify that we are targeting a 486 or better. If not,
Evan Cheng55d42002011-01-08 01:24:27 +000013024 // we will turn this bswap into something that will be lowered to logical ops
13025 // instead of emitting the bswap asm. For now, we don't support 486 or lower
13026 // so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000013027 // bswap $0
13028 if (AsmPieces.size() == 2 &&
13029 (AsmPieces[0] == "bswap" ||
13030 AsmPieces[0] == "bswapq" ||
13031 AsmPieces[0] == "bswapl") &&
13032 (AsmPieces[1] == "$0" ||
13033 AsmPieces[1] == "${0:q}")) {
13034 // No need to check constraints, nothing other than the equivalent of
13035 // "=r,0" would be valid here.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013036 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013037 if (!Ty || Ty->getBitWidth() % 16 != 0)
13038 return false;
13039 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000013040 }
13041 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000013042 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000013043 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000013044 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000013045 AsmPieces[1] == "$$8," &&
13046 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000013047 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
13048 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013049 const std::string &ConstraintsStr = IA->getConstraintString();
13050 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000013051 std::sort(AsmPieces.begin(), AsmPieces.end());
13052 if (AsmPieces.size() == 4 &&
13053 AsmPieces[0] == "~{cc}" &&
13054 AsmPieces[1] == "~{dirflag}" &&
13055 AsmPieces[2] == "~{flags}" &&
13056 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013057 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013058 if (!Ty || Ty->getBitWidth() % 16 != 0)
13059 return false;
13060 return IntrinsicLowering::LowerToByteSwap(CI);
Dan Gohman0ef701e2010-03-04 19:58:08 +000013061 }
Chris Lattnerb8105652009-07-20 17:51:36 +000013062 }
13063 break;
13064 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000013065 if (CI->getType()->isIntegerTy(32) &&
13066 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
13067 SmallVector<StringRef, 4> Words;
13068 SplitString(AsmPieces[0], Words, " \t,");
13069 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13070 Words[2] == "${0:w}") {
13071 Words.clear();
13072 SplitString(AsmPieces[1], Words, " \t,");
13073 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
13074 Words[2] == "$0") {
13075 Words.clear();
13076 SplitString(AsmPieces[2], Words, " \t,");
13077 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13078 Words[2] == "${0:w}") {
13079 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013080 const std::string &ConstraintsStr = IA->getConstraintString();
13081 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Peter Collingbourne948cf022010-11-13 19:54:30 +000013082 std::sort(AsmPieces.begin(), AsmPieces.end());
13083 if (AsmPieces.size() == 4 &&
13084 AsmPieces[0] == "~{cc}" &&
13085 AsmPieces[1] == "~{dirflag}" &&
13086 AsmPieces[2] == "~{flags}" &&
13087 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013088 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013089 if (!Ty || Ty->getBitWidth() % 16 != 0)
13090 return false;
13091 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000013092 }
13093 }
13094 }
13095 }
13096 }
Evan Cheng55d42002011-01-08 01:24:27 +000013097
13098 if (CI->getType()->isIntegerTy(64)) {
13099 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
13100 if (Constraints.size() >= 2 &&
13101 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
13102 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
13103 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
13104 SmallVector<StringRef, 4> Words;
13105 SplitString(AsmPieces[0], Words, " \t");
13106 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
Chris Lattnerb8105652009-07-20 17:51:36 +000013107 Words.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000013108 SplitString(AsmPieces[1], Words, " \t");
13109 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
13110 Words.clear();
13111 SplitString(AsmPieces[2], Words, " \t,");
13112 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
13113 Words[2] == "%edx") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013114 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000013115 if (!Ty || Ty->getBitWidth() % 16 != 0)
13116 return false;
13117 return IntrinsicLowering::LowerToByteSwap(CI);
13118 }
Chris Lattnerb8105652009-07-20 17:51:36 +000013119 }
13120 }
13121 }
13122 }
13123 break;
13124 }
13125 return false;
13126}
13127
13128
13129
Chris Lattnerf4dff842006-07-11 02:54:03 +000013130/// getConstraintType - Given a constraint letter, return the type of
13131/// constraint it is for this target.
13132X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000013133X86TargetLowering::getConstraintType(const std::string &Constraint) const {
13134 if (Constraint.size() == 1) {
13135 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000013136 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000013137 case 'q':
13138 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000013139 case 'f':
13140 case 't':
13141 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000013142 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000013143 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000013144 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000013145 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000013146 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000013147 case 'a':
13148 case 'b':
13149 case 'c':
13150 case 'd':
13151 case 'S':
13152 case 'D':
13153 case 'A':
13154 return C_Register;
13155 case 'I':
13156 case 'J':
13157 case 'K':
13158 case 'L':
13159 case 'M':
13160 case 'N':
13161 case 'G':
13162 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000013163 case 'e':
13164 case 'Z':
13165 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000013166 default:
13167 break;
13168 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000013169 }
Chris Lattner4234f572007-03-25 02:14:49 +000013170 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000013171}
13172
John Thompson44ab89e2010-10-29 17:29:13 +000013173/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000013174/// This object must already have been set up with the operand type
13175/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000013176TargetLowering::ConstraintWeight
13177 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000013178 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000013179 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013180 Value *CallOperandVal = info.CallOperandVal;
13181 // If we don't have a value, we can't do a match,
13182 // but allow it at the lowest weight.
13183 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000013184 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000013185 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000013186 // Look at the constraint type.
13187 switch (*constraint) {
13188 default:
John Thompson44ab89e2010-10-29 17:29:13 +000013189 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
13190 case 'R':
13191 case 'q':
13192 case 'Q':
13193 case 'a':
13194 case 'b':
13195 case 'c':
13196 case 'd':
13197 case 'S':
13198 case 'D':
13199 case 'A':
13200 if (CallOperandVal->getType()->isIntegerTy())
13201 weight = CW_SpecificReg;
13202 break;
13203 case 'f':
13204 case 't':
13205 case 'u':
13206 if (type->isFloatingPointTy())
13207 weight = CW_SpecificReg;
13208 break;
13209 case 'y':
Chris Lattner2a786eb2010-12-19 20:19:20 +000013210 if (type->isX86_MMXTy() && Subtarget->hasMMX())
John Thompson44ab89e2010-10-29 17:29:13 +000013211 weight = CW_SpecificReg;
13212 break;
13213 case 'x':
13214 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013215 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000013216 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013217 break;
13218 case 'I':
13219 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
13220 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000013221 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013222 }
13223 break;
John Thompson44ab89e2010-10-29 17:29:13 +000013224 case 'J':
13225 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13226 if (C->getZExtValue() <= 63)
13227 weight = CW_Constant;
13228 }
13229 break;
13230 case 'K':
13231 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13232 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
13233 weight = CW_Constant;
13234 }
13235 break;
13236 case 'L':
13237 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13238 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
13239 weight = CW_Constant;
13240 }
13241 break;
13242 case 'M':
13243 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13244 if (C->getZExtValue() <= 3)
13245 weight = CW_Constant;
13246 }
13247 break;
13248 case 'N':
13249 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13250 if (C->getZExtValue() <= 0xff)
13251 weight = CW_Constant;
13252 }
13253 break;
13254 case 'G':
13255 case 'C':
13256 if (dyn_cast<ConstantFP>(CallOperandVal)) {
13257 weight = CW_Constant;
13258 }
13259 break;
13260 case 'e':
13261 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13262 if ((C->getSExtValue() >= -0x80000000LL) &&
13263 (C->getSExtValue() <= 0x7fffffffLL))
13264 weight = CW_Constant;
13265 }
13266 break;
13267 case 'Z':
13268 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13269 if (C->getZExtValue() <= 0xffffffff)
13270 weight = CW_Constant;
13271 }
13272 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000013273 }
13274 return weight;
13275}
13276
Dale Johannesenba2a0b92008-01-29 02:21:21 +000013277/// LowerXConstraint - try to replace an X constraint, which matches anything,
13278/// with another that has more specific requirements based on the type of the
13279/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000013280const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000013281LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000013282 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
13283 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000013284 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013285 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000013286 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013287 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000013288 return "x";
13289 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013290
Chris Lattner5e764232008-04-26 23:02:14 +000013291 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000013292}
13293
Chris Lattner48884cd2007-08-25 00:47:38 +000013294/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
13295/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000013296void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000013297 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000013298 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000013299 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000013300 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000013301
Eric Christopher100c8332011-06-02 23:16:42 +000013302 // Only support length 1 constraints for now.
13303 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000013304
Eric Christopher100c8332011-06-02 23:16:42 +000013305 char ConstraintLetter = Constraint[0];
13306 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013307 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000013308 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000013309 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000013310 if (C->getZExtValue() <= 31) {
13311 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000013312 break;
13313 }
Devang Patel84f7fd22007-03-17 00:13:28 +000013314 }
Chris Lattner48884cd2007-08-25 00:47:38 +000013315 return;
Evan Cheng364091e2008-09-22 23:57:37 +000013316 case 'J':
13317 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000013318 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000013319 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13320 break;
13321 }
13322 }
13323 return;
13324 case 'K':
13325 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000013326 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000013327 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13328 break;
13329 }
13330 }
13331 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000013332 case 'N':
13333 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000013334 if (C->getZExtValue() <= 255) {
13335 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000013336 break;
13337 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000013338 }
Chris Lattner48884cd2007-08-25 00:47:38 +000013339 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000013340 case 'e': {
13341 // 32-bit signed value
13342 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000013343 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13344 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013345 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000013346 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000013347 break;
13348 }
13349 // FIXME gcc accepts some relocatable values here too, but only in certain
13350 // memory models; it's complicated.
13351 }
13352 return;
13353 }
13354 case 'Z': {
13355 // 32-bit unsigned value
13356 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000013357 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13358 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013359 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13360 break;
13361 }
13362 }
13363 // FIXME gcc accepts some relocatable values here too, but only in certain
13364 // memory models; it's complicated.
13365 return;
13366 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013367 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013368 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000013369 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013370 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000013371 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000013372 break;
13373 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013374
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013375 // In any sort of PIC mode addresses need to be computed at runtime by
13376 // adding in a register or some sort of table lookup. These can't
13377 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000013378 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013379 return;
13380
Chris Lattnerdc43a882007-05-03 16:52:29 +000013381 // If we are in non-pic codegen mode, we allow the address of a global (with
13382 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000013383 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013384 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000013385
Chris Lattner49921962009-05-08 18:23:14 +000013386 // Match either (GA), (GA+C), (GA+C1+C2), etc.
13387 while (1) {
13388 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
13389 Offset += GA->getOffset();
13390 break;
13391 } else if (Op.getOpcode() == ISD::ADD) {
13392 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13393 Offset += C->getZExtValue();
13394 Op = Op.getOperand(0);
13395 continue;
13396 }
13397 } else if (Op.getOpcode() == ISD::SUB) {
13398 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13399 Offset += -C->getZExtValue();
13400 Op = Op.getOperand(0);
13401 continue;
13402 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013403 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013404
Chris Lattner49921962009-05-08 18:23:14 +000013405 // Otherwise, this isn't something we can handle, reject it.
13406 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013407 }
Eric Christopherfd179292009-08-27 18:07:15 +000013408
Dan Gohman46510a72010-04-15 01:51:59 +000013409 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013410 // If we require an extra load to get this address, as in PIC mode, we
13411 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000013412 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
13413 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013414 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000013415
Devang Patel0d881da2010-07-06 22:08:15 +000013416 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
13417 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000013418 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013419 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013420 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013421
Gabor Greifba36cb52008-08-28 21:40:38 +000013422 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000013423 Ops.push_back(Result);
13424 return;
13425 }
Dale Johannesen1784d162010-06-25 21:55:36 +000013426 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013427}
13428
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013429std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000013430X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000013431 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000013432 // First, see if this is a constraint that directly corresponds to an LLVM
13433 // register class.
13434 if (Constraint.size() == 1) {
13435 // GCC Constraint Letters
13436 switch (Constraint[0]) {
13437 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000013438 // TODO: Slight differences here in allocation order and leaving
13439 // RIP in the class. Do they matter any more here than they do
13440 // in the normal allocation?
13441 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
13442 if (Subtarget->is64Bit()) {
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013443 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000013444 return std::make_pair(0U, X86::GR32RegisterClass);
13445 else if (VT == MVT::i16)
13446 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000013447 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000013448 return std::make_pair(0U, X86::GR8RegisterClass);
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013449 else if (VT == MVT::i64 || VT == MVT::f64)
Eric Christopherd176af82011-06-29 17:23:50 +000013450 return std::make_pair(0U, X86::GR64RegisterClass);
13451 break;
13452 }
13453 // 32-bit fallthrough
13454 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013455 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000013456 return std::make_pair(0U, X86::GR32_ABCDRegisterClass);
13457 else if (VT == MVT::i16)
13458 return std::make_pair(0U, X86::GR16_ABCDRegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000013459 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000013460 return std::make_pair(0U, X86::GR8_ABCD_LRegisterClass);
13461 else if (VT == MVT::i64)
13462 return std::make_pair(0U, X86::GR64_ABCDRegisterClass);
13463 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000013464 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000013465 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000013466 if (VT == MVT::i8 || VT == MVT::i1)
Chris Lattner0f65cad2007-04-09 05:49:22 +000013467 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013468 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000013469 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000013470 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000013471 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000013472 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000013473 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000013474 if (VT == MVT::i8 || VT == MVT::i1)
Dale Johannesen5f3663e2009-10-07 22:47:20 +000013475 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
13476 if (VT == MVT::i16)
13477 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
13478 if (VT == MVT::i32 || !Subtarget->is64Bit())
13479 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
13480 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013481 case 'f': // FP Stack registers.
13482 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
13483 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000013484 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013485 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013486 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013487 return std::make_pair(0U, X86::RFP64RegisterClass);
13488 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000013489 case 'y': // MMX_REGS if MMX allowed.
13490 if (!Subtarget->hasMMX()) break;
13491 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000013492 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013493 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000013494 // FALL THROUGH.
13495 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013496 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000013497
Owen Anderson825b72b2009-08-11 20:47:22 +000013498 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000013499 default: break;
13500 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000013501 case MVT::f32:
13502 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000013503 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013504 case MVT::f64:
13505 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000013506 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000013507 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000013508 case MVT::v16i8:
13509 case MVT::v8i16:
13510 case MVT::v4i32:
13511 case MVT::v2i64:
13512 case MVT::v4f32:
13513 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000013514 return std::make_pair(0U, X86::VR128RegisterClass);
13515 }
Chris Lattnerad043e82007-04-09 05:11:28 +000013516 break;
13517 }
13518 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013519
Chris Lattnerf76d1802006-07-31 23:26:50 +000013520 // Use the default implementation in TargetLowering to convert the register
13521 // constraint into a member of a register class.
13522 std::pair<unsigned, const TargetRegisterClass*> Res;
13523 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000013524
13525 // Not found as a standard register?
13526 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000013527 // Map st(0) -> st(7) -> ST0
13528 if (Constraint.size() == 7 && Constraint[0] == '{' &&
13529 tolower(Constraint[1]) == 's' &&
13530 tolower(Constraint[2]) == 't' &&
13531 Constraint[3] == '(' &&
13532 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
13533 Constraint[5] == ')' &&
13534 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000013535
Chris Lattner56d77c72009-09-13 22:41:48 +000013536 Res.first = X86::ST0+Constraint[4]-'0';
13537 Res.second = X86::RFP80RegisterClass;
13538 return Res;
13539 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000013540
Chris Lattner56d77c72009-09-13 22:41:48 +000013541 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000013542 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000013543 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000013544 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000013545 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000013546 }
Chris Lattner56d77c72009-09-13 22:41:48 +000013547
13548 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000013549 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000013550 Res.first = X86::EFLAGS;
13551 Res.second = X86::CCRRegisterClass;
13552 return Res;
13553 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000013554
Dale Johannesen330169f2008-11-13 21:52:36 +000013555 // 'A' means EAX + EDX.
13556 if (Constraint == "A") {
13557 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000013558 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000013559 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000013560 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000013561 return Res;
13562 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013563
Chris Lattnerf76d1802006-07-31 23:26:50 +000013564 // Otherwise, check to see if this is a register class of the wrong value
13565 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
13566 // turn into {ax},{dx}.
13567 if (Res.second->hasType(VT))
13568 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013569
Chris Lattnerf76d1802006-07-31 23:26:50 +000013570 // All of the single-register GCC register classes map their values onto
13571 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
13572 // really want an 8-bit or 32-bit register, map to the appropriate register
13573 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000013574 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000013575 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013576 unsigned DestReg = 0;
13577 switch (Res.first) {
13578 default: break;
13579 case X86::AX: DestReg = X86::AL; break;
13580 case X86::DX: DestReg = X86::DL; break;
13581 case X86::CX: DestReg = X86::CL; break;
13582 case X86::BX: DestReg = X86::BL; break;
13583 }
13584 if (DestReg) {
13585 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013586 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013587 }
Owen Anderson825b72b2009-08-11 20:47:22 +000013588 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013589 unsigned DestReg = 0;
13590 switch (Res.first) {
13591 default: break;
13592 case X86::AX: DestReg = X86::EAX; break;
13593 case X86::DX: DestReg = X86::EDX; break;
13594 case X86::CX: DestReg = X86::ECX; break;
13595 case X86::BX: DestReg = X86::EBX; break;
13596 case X86::SI: DestReg = X86::ESI; break;
13597 case X86::DI: DestReg = X86::EDI; break;
13598 case X86::BP: DestReg = X86::EBP; break;
13599 case X86::SP: DestReg = X86::ESP; break;
13600 }
13601 if (DestReg) {
13602 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013603 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013604 }
Owen Anderson825b72b2009-08-11 20:47:22 +000013605 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013606 unsigned DestReg = 0;
13607 switch (Res.first) {
13608 default: break;
13609 case X86::AX: DestReg = X86::RAX; break;
13610 case X86::DX: DestReg = X86::RDX; break;
13611 case X86::CX: DestReg = X86::RCX; break;
13612 case X86::BX: DestReg = X86::RBX; break;
13613 case X86::SI: DestReg = X86::RSI; break;
13614 case X86::DI: DestReg = X86::RDI; break;
13615 case X86::BP: DestReg = X86::RBP; break;
13616 case X86::SP: DestReg = X86::RSP; break;
13617 }
13618 if (DestReg) {
13619 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013620 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013621 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000013622 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000013623 } else if (Res.second == X86::FR32RegisterClass ||
13624 Res.second == X86::FR64RegisterClass ||
13625 Res.second == X86::VR128RegisterClass) {
13626 // Handle references to XMM physical registers that got mapped into the
13627 // wrong class. This can happen with constraints like {xmm0} where the
13628 // target independent register mapper will just pick the first match it can
13629 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000013630 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000013631 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000013632 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000013633 Res.second = X86::FR64RegisterClass;
13634 else if (X86::VR128RegisterClass->hasType(VT))
13635 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000013636 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013637
Chris Lattnerf76d1802006-07-31 23:26:50 +000013638 return Res;
13639}