blob: c3fa9d1fa2deeb572f09d3bd7e63e64dcac7f705 [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>();
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000171 X86ScalarSSEf64 = Subtarget->hasXMMInt();
172 X86ScalarSSEf32 = Subtarget->hasXMM();
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 // We may not have a libcall for MEMBARRIER so we should lower this.
453 setOperationAction(ISD::MEMBARRIER , 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 Lopes5bc37dd2011-07-15 22:24:33 +0000967 // Custom lower several nodes for 256-bit types.
David Greene54d8eba2011-01-27 22:38:56 +0000968 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000969 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
970 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
971 EVT VT = SVT;
972
973 // Extract subvector is special because the value type
974 // (result) is 128-bit but the source is 256-bit wide.
975 if (VT.is128BitVector())
976 setOperationAction(ISD::EXTRACT_SUBVECTOR, SVT, Custom);
977
978 // Do not attempt to custom lower other non-256-bit vectors
979 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000980 continue;
David Greene54d8eba2011-01-27 22:38:56 +0000981
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000982 setOperationAction(ISD::BUILD_VECTOR, SVT, Custom);
983 setOperationAction(ISD::VECTOR_SHUFFLE, SVT, Custom);
984 setOperationAction(ISD::INSERT_VECTOR_ELT, SVT, Custom);
985 setOperationAction(ISD::EXTRACT_VECTOR_ELT, SVT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000986 setOperationAction(ISD::INSERT_SUBVECTOR, SVT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000987 }
988
David Greene54d8eba2011-01-27 22:38:56 +0000989 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000990 for (unsigned i = (unsigned)MVT::v32i8; i != (unsigned)MVT::v4i64; ++i) {
991 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
992 EVT VT = SVT;
David Greene54d8eba2011-01-27 22:38:56 +0000993
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000994 // Do not attempt to promote non-256-bit vectors
995 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +0000996 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +0000997
998 setOperationAction(ISD::AND, SVT, Promote);
999 AddPromotedToType (ISD::AND, SVT, MVT::v4i64);
1000 setOperationAction(ISD::OR, SVT, Promote);
1001 AddPromotedToType (ISD::OR, SVT, MVT::v4i64);
1002 setOperationAction(ISD::XOR, SVT, Promote);
1003 AddPromotedToType (ISD::XOR, SVT, MVT::v4i64);
1004 setOperationAction(ISD::LOAD, SVT, Promote);
1005 AddPromotedToType (ISD::LOAD, SVT, MVT::v4i64);
1006 setOperationAction(ISD::SELECT, SVT, Promote);
1007 AddPromotedToType (ISD::SELECT, SVT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001008 }
David Greene9b9838d2009-06-29 16:47:10 +00001009 }
1010
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001011 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1012 // of this type with custom code.
1013 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1014 VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE; VT++) {
1015 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT, Custom);
1016 }
1017
Evan Cheng6be2c582006-04-05 23:38:46 +00001018 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001019 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001020
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001021
Eli Friedman962f5492010-06-02 19:35:46 +00001022 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1023 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001024 //
Eli Friedman962f5492010-06-02 19:35:46 +00001025 // FIXME: We really should do custom legalization for addition and
1026 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1027 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001028 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1029 // Add/Sub/Mul with overflow operations are custom lowered.
1030 MVT VT = IntVTs[i];
1031 setOperationAction(ISD::SADDO, VT, Custom);
1032 setOperationAction(ISD::UADDO, VT, Custom);
1033 setOperationAction(ISD::SSUBO, VT, Custom);
1034 setOperationAction(ISD::USUBO, VT, Custom);
1035 setOperationAction(ISD::SMULO, VT, Custom);
1036 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001037 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001038
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001039 // There are no 8-bit 3-address imul/mul instructions
1040 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1041 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001042
Evan Chengd54f2d52009-03-31 19:38:51 +00001043 if (!Subtarget->is64Bit()) {
1044 // These libcalls are not available in 32-bit.
1045 setLibcallName(RTLIB::SHL_I128, 0);
1046 setLibcallName(RTLIB::SRL_I128, 0);
1047 setLibcallName(RTLIB::SRA_I128, 0);
1048 }
1049
Evan Cheng206ee9d2006-07-07 08:33:52 +00001050 // We have target-specific dag combine patterns for the following nodes:
1051 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001052 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +00001053 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +00001054 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001055 setTargetDAGCombine(ISD::SHL);
1056 setTargetDAGCombine(ISD::SRA);
1057 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001058 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001059 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001060 setTargetDAGCombine(ISD::ADD);
1061 setTargetDAGCombine(ISD::SUB);
Chris Lattner149a4e52008-02-22 02:09:43 +00001062 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001063 setTargetDAGCombine(ISD::ZERO_EXTEND);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001064 setTargetDAGCombine(ISD::SINT_TO_FP);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001065 if (Subtarget->is64Bit())
1066 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001067
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001068 computeRegisterProperties();
1069
Evan Cheng05219282011-01-06 06:52:41 +00001070 // On Darwin, -Os means optimize for size without hurting performance,
1071 // do not reduce the limit.
Dan Gohman87060f52008-06-30 21:00:56 +00001072 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001073 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
Evan Cheng255f20f2010-04-01 06:04:33 +00001074 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001075 maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1076 maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1077 maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Evan Chengfb8075d2008-02-28 00:43:03 +00001078 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +00001079 benefitFromCodePlacementOpt = true;
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001080
1081 setPrefFunctionAlignment(4);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001082}
1083
Scott Michel5b8f82e2008-03-10 15:42:14 +00001084
Owen Anderson825b72b2009-08-11 20:47:22 +00001085MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1086 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +00001087}
1088
1089
Evan Cheng29286502008-01-23 23:17:41 +00001090/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1091/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001092static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001093 if (MaxAlign == 16)
1094 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001095 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001096 if (VTy->getBitWidth() == 128)
1097 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001098 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001099 unsigned EltAlign = 0;
1100 getMaxByValAlign(ATy->getElementType(), EltAlign);
1101 if (EltAlign > MaxAlign)
1102 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001103 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001104 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1105 unsigned EltAlign = 0;
1106 getMaxByValAlign(STy->getElementType(i), EltAlign);
1107 if (EltAlign > MaxAlign)
1108 MaxAlign = EltAlign;
1109 if (MaxAlign == 16)
1110 break;
1111 }
1112 }
1113 return;
1114}
1115
1116/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1117/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001118/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1119/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001120unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001121 if (Subtarget->is64Bit()) {
1122 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001123 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001124 if (TyAlign > 8)
1125 return TyAlign;
1126 return 8;
1127 }
1128
Evan Cheng29286502008-01-23 23:17:41 +00001129 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001130 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001131 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001132 return Align;
1133}
Chris Lattner2b02a442007-02-25 08:29:00 +00001134
Evan Chengf0df0312008-05-15 08:39:06 +00001135/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001136/// and store operations as a result of memset, memcpy, and memmove
1137/// lowering. If DstAlign is zero that means it's safe to destination
1138/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1139/// means there isn't a need to check it against alignment requirement,
1140/// probably because the source does not need to be loaded. If
1141/// 'NonScalarIntSafe' is true, that means it's safe to return a
1142/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1143/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1144/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001145/// It returns EVT::Other if the type should be determined using generic
1146/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001147EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001148X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1149 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001150 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001151 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001152 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001153 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1154 // linux. This is because the stack realignment code can't handle certain
1155 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001156 const Function *F = MF.getFunction();
Evan Chenga5e13622011-01-07 19:35:30 +00001157 if (NonScalarIntSafe &&
1158 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001159 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001160 (Subtarget->isUnalignedMemAccessFast() ||
1161 ((DstAlign == 0 || DstAlign >= 16) &&
1162 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001163 Subtarget->getStackAlignment() >= 16) {
1164 if (Subtarget->hasSSE2())
1165 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001166 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001167 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001168 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001169 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001170 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001171 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001172 // Do not use f64 to lower memcpy if source is string constant. It's
1173 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001174 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001175 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001176 }
Evan Chengf0df0312008-05-15 08:39:06 +00001177 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001178 return MVT::i64;
1179 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001180}
1181
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001182/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1183/// current function. The returned value is a member of the
1184/// MachineJumpTableInfo::JTEntryKind enum.
1185unsigned X86TargetLowering::getJumpTableEncoding() const {
1186 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1187 // symbol.
1188 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1189 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001190 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001191
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001192 // Otherwise, use the normal jump table encoding heuristics.
1193 return TargetLowering::getJumpTableEncoding();
1194}
1195
Chris Lattnerc64daab2010-01-26 05:02:42 +00001196const MCExpr *
1197X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1198 const MachineBasicBlock *MBB,
1199 unsigned uid,MCContext &Ctx) const{
1200 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1201 Subtarget->isPICStyleGOT());
1202 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1203 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001204 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1205 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001206}
1207
Evan Chengcc415862007-11-09 01:32:10 +00001208/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1209/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001210SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001211 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001212 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001213 // This doesn't have DebugLoc associated with it, but is not really the
1214 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001215 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001216 return Table;
1217}
1218
Chris Lattner589c6f62010-01-26 06:28:43 +00001219/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1220/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1221/// MCExpr.
1222const MCExpr *X86TargetLowering::
1223getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1224 MCContext &Ctx) const {
1225 // X86-64 uses RIP relative addressing based on the jump table label.
1226 if (Subtarget->isPICStyleRIPRel())
1227 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1228
1229 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001230 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001231}
1232
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001233// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001234std::pair<const TargetRegisterClass*, uint8_t>
1235X86TargetLowering::findRepresentativeClass(EVT VT) const{
1236 const TargetRegisterClass *RRC = 0;
1237 uint8_t Cost = 1;
1238 switch (VT.getSimpleVT().SimpleTy) {
1239 default:
1240 return TargetLowering::findRepresentativeClass(VT);
1241 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1242 RRC = (Subtarget->is64Bit()
1243 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1244 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001245 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001246 RRC = X86::VR64RegisterClass;
1247 break;
1248 case MVT::f32: case MVT::f64:
1249 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1250 case MVT::v4f32: case MVT::v2f64:
1251 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1252 case MVT::v4f64:
1253 RRC = X86::VR128RegisterClass;
1254 break;
1255 }
1256 return std::make_pair(RRC, Cost);
1257}
1258
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001259bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1260 unsigned &Offset) const {
1261 if (!Subtarget->isTargetLinux())
1262 return false;
1263
1264 if (Subtarget->is64Bit()) {
1265 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1266 Offset = 0x28;
1267 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1268 AddressSpace = 256;
1269 else
1270 AddressSpace = 257;
1271 } else {
1272 // %gs:0x14 on i386
1273 Offset = 0x14;
1274 AddressSpace = 256;
1275 }
1276 return true;
1277}
1278
1279
Chris Lattner2b02a442007-02-25 08:29:00 +00001280//===----------------------------------------------------------------------===//
1281// Return Value Calling Convention Implementation
1282//===----------------------------------------------------------------------===//
1283
Chris Lattner59ed56b2007-02-28 04:55:35 +00001284#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001285
Michael J. Spencerec38de22010-10-10 22:04:20 +00001286bool
Eric Christopher471e4222011-06-08 23:55:35 +00001287X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1288 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001289 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001290 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001291 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001292 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001293 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001294 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001295}
1296
Dan Gohman98ca4f22009-08-05 01:29:28 +00001297SDValue
1298X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001299 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001300 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001301 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001302 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001303 MachineFunction &MF = DAG.getMachineFunction();
1304 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001305
Chris Lattner9774c912007-02-27 05:28:59 +00001306 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001307 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001308 RVLocs, *DAG.getContext());
1309 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001310
Evan Chengdcea1632010-02-04 02:40:39 +00001311 // Add the regs to the liveout set for the function.
1312 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1313 for (unsigned i = 0; i != RVLocs.size(); ++i)
1314 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1315 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001316
Dan Gohman475871a2008-07-27 21:46:04 +00001317 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001318
Dan Gohman475871a2008-07-27 21:46:04 +00001319 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001320 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1321 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001322 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1323 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001324
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001325 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001326 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1327 CCValAssign &VA = RVLocs[i];
1328 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001329 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001330 EVT ValVT = ValToCopy.getValueType();
1331
Dale Johannesenc4510512010-09-24 19:05:48 +00001332 // If this is x86-64, and we disabled SSE, we can't return FP values,
1333 // or SSE or MMX vectors.
1334 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1335 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001336 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001337 report_fatal_error("SSE register return with SSE disabled");
1338 }
1339 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1340 // llvm-gcc has never done it right and no one has noticed, so this
1341 // should be OK for now.
1342 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001343 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001344 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001345
Chris Lattner447ff682008-03-11 03:23:40 +00001346 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1347 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001348 if (VA.getLocReg() == X86::ST0 ||
1349 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001350 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1351 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001352 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001353 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001354 RetOps.push_back(ValToCopy);
1355 // Don't emit a copytoreg.
1356 continue;
1357 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001358
Evan Cheng242b38b2009-02-23 09:03:22 +00001359 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1360 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001361 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001362 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001363 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001364 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001365 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1366 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001367 // If we don't have SSE2 available, convert to v4f32 so the generated
1368 // register is legal.
1369 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001370 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001371 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001372 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001373 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001374
Dale Johannesendd64c412009-02-04 00:33:20 +00001375 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001376 Flag = Chain.getValue(1);
1377 }
Dan Gohman61a92132008-04-21 23:59:07 +00001378
1379 // The x86-64 ABI for returning structs by value requires that we copy
1380 // the sret argument into %rax for the return. We saved the argument into
1381 // a virtual register in the entry block, so now we copy the value out
1382 // and into %rax.
1383 if (Subtarget->is64Bit() &&
1384 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1385 MachineFunction &MF = DAG.getMachineFunction();
1386 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1387 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001388 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001389 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001390 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001391
Dale Johannesendd64c412009-02-04 00:33:20 +00001392 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001393 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001394
1395 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001396 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001397 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001398
Chris Lattner447ff682008-03-11 03:23:40 +00001399 RetOps[0] = Chain; // Update chain.
1400
1401 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001402 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001403 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001404
1405 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001406 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001407}
1408
Evan Cheng3d2125c2010-11-30 23:55:39 +00001409bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1410 if (N->getNumValues() != 1)
1411 return false;
1412 if (!N->hasNUsesOfValue(1, 0))
1413 return false;
1414
1415 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001416 if (Copy->getOpcode() != ISD::CopyToReg &&
1417 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001418 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001419
1420 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001421 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001422 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001423 if (UI->getOpcode() != X86ISD::RET_FLAG)
1424 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001425 HasRet = true;
1426 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001427
Evan Cheng1bf891a2010-12-01 22:59:46 +00001428 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001429}
1430
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001431EVT
1432X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001433 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001434 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001435 // TODO: Is this also valid on 32-bit?
1436 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001437 ReturnMVT = MVT::i8;
1438 else
1439 ReturnMVT = MVT::i32;
1440
1441 EVT MinVT = getRegisterType(Context, ReturnMVT);
1442 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001443}
1444
Dan Gohman98ca4f22009-08-05 01:29:28 +00001445/// LowerCallResult - Lower the result values of a call into the
1446/// appropriate copies out of appropriate physical registers.
1447///
1448SDValue
1449X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001450 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001451 const SmallVectorImpl<ISD::InputArg> &Ins,
1452 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001453 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001454
Chris Lattnere32bbf62007-02-28 07:09:55 +00001455 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001456 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001457 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001458 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1459 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001460 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001461
Chris Lattner3085e152007-02-25 08:59:22 +00001462 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001463 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001464 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001465 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001466
Torok Edwin3f142c32009-02-01 18:15:56 +00001467 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001468 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001469 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001470 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001471 }
1472
Evan Cheng79fb3b42009-02-20 20:43:02 +00001473 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001474
1475 // If this is a call to a function that returns an fp value on the floating
1476 // point stack, we must guarantee the the value is popped from the stack, so
1477 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001478 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001479 // instead.
1480 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1481 // If we prefer to use the value in xmm registers, copy it out as f80 and
1482 // use a truncate to move it from fp stack reg to xmm reg.
1483 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001484 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001485 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1486 MVT::Other, MVT::Glue, Ops, 2), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001487 Val = Chain.getValue(0);
1488
1489 // Round the f80 to the right size, which also moves it to the appropriate
1490 // xmm register.
1491 if (CopyVT != VA.getValVT())
1492 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1493 // This truncation won't change the value.
1494 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001495 } else {
1496 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1497 CopyVT, InFlag).getValue(1);
1498 Val = Chain.getValue(0);
1499 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001500 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001501 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001502 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001503
Dan Gohman98ca4f22009-08-05 01:29:28 +00001504 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001505}
1506
1507
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001508//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001509// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001510//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001511// StdCall calling convention seems to be standard for many Windows' API
1512// routines and around. It differs from C calling convention just a little:
1513// callee should clean up the stack, not caller. Symbols should be also
1514// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001515// For info on fast calling convention see Fast Calling Convention (tail call)
1516// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001517
Dan Gohman98ca4f22009-08-05 01:29:28 +00001518/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001519/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001520static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1521 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001522 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001523
Dan Gohman98ca4f22009-08-05 01:29:28 +00001524 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001525}
1526
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001527/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001528/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001529static bool
1530ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1531 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001532 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001533
Dan Gohman98ca4f22009-08-05 01:29:28 +00001534 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001535}
1536
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001537/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1538/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001539/// the specific parameter attribute. The copy will be passed as a byval
1540/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001541static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001542CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001543 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1544 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001545 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001546
Dale Johannesendd64c412009-02-04 00:33:20 +00001547 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00001548 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001549 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001550}
1551
Chris Lattner29689432010-03-11 00:22:57 +00001552/// IsTailCallConvention - Return true if the calling convention is one that
1553/// supports tail call optimization.
1554static bool IsTailCallConvention(CallingConv::ID CC) {
1555 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1556}
1557
Evan Cheng485fafc2011-03-21 01:19:09 +00001558bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1559 if (!CI->isTailCall())
1560 return false;
1561
1562 CallSite CS(CI);
1563 CallingConv::ID CalleeCC = CS.getCallingConv();
1564 if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1565 return false;
1566
1567 return true;
1568}
1569
Evan Cheng0c439eb2010-01-27 00:07:07 +00001570/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1571/// a tailcall target by changing its ABI.
1572static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001573 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001574}
1575
Dan Gohman98ca4f22009-08-05 01:29:28 +00001576SDValue
1577X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001578 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001579 const SmallVectorImpl<ISD::InputArg> &Ins,
1580 DebugLoc dl, SelectionDAG &DAG,
1581 const CCValAssign &VA,
1582 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001583 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001584 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001585 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001586 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001587 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001588 EVT ValVT;
1589
1590 // If value is passed by pointer we have address passed instead of the value
1591 // itself.
1592 if (VA.getLocInfo() == CCValAssign::Indirect)
1593 ValVT = VA.getLocVT();
1594 else
1595 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001596
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001597 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001598 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001599 // In case of tail call optimization mark all arguments mutable. Since they
1600 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001601 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00001602 unsigned Bytes = Flags.getByValSize();
1603 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1604 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001605 return DAG.getFrameIndex(FI, getPointerTy());
1606 } else {
1607 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001608 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001609 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1610 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001611 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001612 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001613 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001614}
1615
Dan Gohman475871a2008-07-27 21:46:04 +00001616SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001617X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001618 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001619 bool isVarArg,
1620 const SmallVectorImpl<ISD::InputArg> &Ins,
1621 DebugLoc dl,
1622 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001623 SmallVectorImpl<SDValue> &InVals)
1624 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001625 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001626 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001627
Gordon Henriksen86737662008-01-05 16:56:59 +00001628 const Function* Fn = MF.getFunction();
1629 if (Fn->hasExternalLinkage() &&
1630 Subtarget->isTargetCygMing() &&
1631 Fn->getName() == "main")
1632 FuncInfo->setForceFramePointer(true);
1633
Evan Cheng1bc78042006-04-26 01:20:17 +00001634 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001635 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001636 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001637
Chris Lattner29689432010-03-11 00:22:57 +00001638 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1639 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001640
Chris Lattner638402b2007-02-28 07:00:42 +00001641 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001642 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001643 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001644 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001645
1646 // Allocate shadow area for Win64
1647 if (IsWin64) {
1648 CCInfo.AllocateStack(32, 8);
1649 }
1650
Duncan Sands45907662010-10-31 13:21:44 +00001651 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001652
Chris Lattnerf39f7712007-02-28 05:46:49 +00001653 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001654 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001655 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1656 CCValAssign &VA = ArgLocs[i];
1657 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1658 // places.
1659 assert(VA.getValNo() != LastVal &&
1660 "Don't support value assigned to multiple locs yet");
1661 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001662
Chris Lattnerf39f7712007-02-28 05:46:49 +00001663 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001664 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001665 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001666 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001667 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001668 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001669 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001670 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001671 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001672 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001673 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001674 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1675 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001676 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001677 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001678 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001679 RC = X86::VR64RegisterClass;
1680 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001681 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001682
Devang Patel68e6bee2011-02-21 23:21:26 +00001683 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001684 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001685
Chris Lattnerf39f7712007-02-28 05:46:49 +00001686 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1687 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1688 // right size.
1689 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001690 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001691 DAG.getValueType(VA.getValVT()));
1692 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001693 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001694 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001695 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001696 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001697
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001698 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001699 // Handle MMX values passed in XMM regs.
1700 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001701 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1702 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001703 } else
1704 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001705 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001706 } else {
1707 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001708 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001709 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001710
1711 // If value is passed via pointer - do a load.
1712 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001713 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1714 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001715
Dan Gohman98ca4f22009-08-05 01:29:28 +00001716 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001717 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001718
Dan Gohman61a92132008-04-21 23:59:07 +00001719 // The x86-64 ABI for returning structs by value requires that we copy
1720 // the sret argument into %rax for the return. Save the argument into
1721 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001722 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001723 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1724 unsigned Reg = FuncInfo->getSRetReturnReg();
1725 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001726 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001727 FuncInfo->setSRetReturnReg(Reg);
1728 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001729 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001730 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001731 }
1732
Chris Lattnerf39f7712007-02-28 05:46:49 +00001733 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001734 // Align stack specially for tail calls.
1735 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001736 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001737
Evan Cheng1bc78042006-04-26 01:20:17 +00001738 // If the function takes variable number of arguments, make a frame index for
1739 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001740 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001741 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1742 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001743 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001744 }
1745 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001746 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1747
1748 // FIXME: We should really autogenerate these arrays
1749 static const unsigned GPR64ArgRegsWin64[] = {
1750 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001751 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001752 static const unsigned GPR64ArgRegs64Bit[] = {
1753 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1754 };
1755 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001756 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1757 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1758 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001759 const unsigned *GPR64ArgRegs;
1760 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001761
1762 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001763 // The XMM registers which might contain var arg parameters are shadowed
1764 // in their paired GPR. So we only need to save the GPR to their home
1765 // slots.
1766 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001767 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001768 } else {
1769 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1770 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001771
1772 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001773 }
1774 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1775 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001776
Devang Patel578efa92009-06-05 21:57:13 +00001777 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001778 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001779 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001780 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001781 "SSE register cannot be used when SSE is disabled!");
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001782 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001783 // Kernel mode asks for SSE to be disabled, so don't push them
1784 // on the stack.
1785 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001786
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001787 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001788 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001789 // Get to the caller-allocated home save location. Add 8 to account
1790 // for the return address.
1791 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001792 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001793 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001794 // Fixup to set vararg frame on shadow area (4 x i64).
1795 if (NumIntRegs < 4)
1796 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001797 } else {
1798 // For X86-64, if there are vararg parameters that are passed via
1799 // registers, then we must store them to their spots on the stack so they
1800 // may be loaded by deferencing the result of va_next.
1801 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1802 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1803 FuncInfo->setRegSaveFrameIndex(
1804 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001805 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001806 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001807
Gordon Henriksen86737662008-01-05 16:56:59 +00001808 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001809 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001810 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1811 getPointerTy());
1812 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001813 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001814 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1815 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001816 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001817 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001818 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001819 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001820 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001821 MachinePointerInfo::getFixedStack(
1822 FuncInfo->getRegSaveFrameIndex(), Offset),
1823 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001824 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001825 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001826 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001827
Dan Gohmanface41a2009-08-16 21:24:25 +00001828 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1829 // Now store the XMM (fp + vector) parameter registers.
1830 SmallVector<SDValue, 11> SaveXMMOps;
1831 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001832
Devang Patel68e6bee2011-02-21 23:21:26 +00001833 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001834 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1835 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001836
Dan Gohman1e93df62010-04-17 14:41:14 +00001837 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1838 FuncInfo->getRegSaveFrameIndex()));
1839 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1840 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001841
Dan Gohmanface41a2009-08-16 21:24:25 +00001842 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001843 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001844 X86::VR128RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001845 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1846 SaveXMMOps.push_back(Val);
1847 }
1848 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1849 MVT::Other,
1850 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001851 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001852
1853 if (!MemOps.empty())
1854 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1855 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001856 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001857 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001858
Gordon Henriksen86737662008-01-05 16:56:59 +00001859 // Some CCs need callee pop.
Evan Chengef41ff62011-06-23 17:54:54 +00001860 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001861 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001862 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001863 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001864 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001865 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001866 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001867 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001868
Gordon Henriksen86737662008-01-05 16:56:59 +00001869 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001870 // RegSaveFrameIndex is X86-64 only.
1871 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001872 if (CallConv == CallingConv::X86_FastCall ||
1873 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001874 // fastcc functions can't have varargs.
1875 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001876 }
Evan Cheng25caf632006-05-23 21:06:34 +00001877
Dan Gohman98ca4f22009-08-05 01:29:28 +00001878 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001879}
1880
Dan Gohman475871a2008-07-27 21:46:04 +00001881SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001882X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1883 SDValue StackPtr, SDValue Arg,
1884 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001885 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001886 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001887 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001888 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001889 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001890 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001891 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001892
1893 return DAG.getStore(Chain, dl, Arg, PtrOff,
1894 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001895 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001896}
1897
Bill Wendling64e87322009-01-16 19:25:27 +00001898/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001899/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001900SDValue
1901X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001902 SDValue &OutRetAddr, SDValue Chain,
1903 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001904 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001905 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001906 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001907 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001908
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001909 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001910 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1911 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001912 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001913}
1914
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001915/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001916/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001917static SDValue
1918EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001919 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001920 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001921 // Store the return address to the appropriate stack slot.
1922 if (!FPDiff) return Chain;
1923 // Calculate the new stack slot for the return address.
1924 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001925 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001926 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001927 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001928 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001929 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001930 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001931 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001932 return Chain;
1933}
1934
Dan Gohman98ca4f22009-08-05 01:29:28 +00001935SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001936X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001937 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001938 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001939 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001940 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001941 const SmallVectorImpl<ISD::InputArg> &Ins,
1942 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001943 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001944 MachineFunction &MF = DAG.getMachineFunction();
1945 bool Is64Bit = Subtarget->is64Bit();
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00001946 bool IsWin64 = Subtarget->isTargetWin64();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001947 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001948 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001949
Evan Cheng5f941932010-02-05 02:21:12 +00001950 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001951 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001952 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1953 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001954 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001955
1956 // Sibcalls are automatically detected tailcalls which do not require
1957 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001958 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001959 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001960
1961 if (isTailCall)
1962 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001963 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001964
Chris Lattner29689432010-03-11 00:22:57 +00001965 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1966 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001967
Chris Lattner638402b2007-02-28 07:00:42 +00001968 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00001969 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001970 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001971 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001972
1973 // Allocate shadow area for Win64
1974 if (IsWin64) {
1975 CCInfo.AllocateStack(32, 8);
1976 }
1977
Duncan Sands45907662010-10-31 13:21:44 +00001978 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001979
Chris Lattner423c5f42007-02-28 05:31:48 +00001980 // Get a count of how many bytes are to be pushed on the stack.
1981 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00001982 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00001983 // This is a sibcall. The memory operands are available in caller's
1984 // own caller's stack.
1985 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00001986 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00001987 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001988
Gordon Henriksen86737662008-01-05 16:56:59 +00001989 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00001990 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001991 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00001992 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00001993 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1994 FPDiff = NumBytesCallerPushed - NumBytes;
1995
1996 // Set the delta of movement of the returnaddr stackslot.
1997 // But only set if delta is greater than previous delta.
1998 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1999 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2000 }
2001
Evan Chengf22f9b32010-02-06 03:28:46 +00002002 if (!IsSibcall)
2003 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002004
Dan Gohman475871a2008-07-27 21:46:04 +00002005 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002006 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002007 if (isTailCall && FPDiff)
2008 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2009 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002010
Dan Gohman475871a2008-07-27 21:46:04 +00002011 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2012 SmallVector<SDValue, 8> MemOpChains;
2013 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002014
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002015 // Walk the register/memloc assignments, inserting copies/loads. In the case
2016 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00002017 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2018 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002019 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002020 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002021 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002022 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002023
Chris Lattner423c5f42007-02-28 05:31:48 +00002024 // Promote the value if needed.
2025 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002026 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002027 case CCValAssign::Full: break;
2028 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002029 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002030 break;
2031 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002032 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002033 break;
2034 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002035 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2036 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002037 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002038 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2039 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002040 } else
2041 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2042 break;
2043 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002044 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002045 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002046 case CCValAssign::Indirect: {
2047 // Store the argument.
2048 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002049 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002050 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002051 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002052 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002053 Arg = SpillSlot;
2054 break;
2055 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002056 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002057
Chris Lattner423c5f42007-02-28 05:31:48 +00002058 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002059 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2060 if (isVarArg && IsWin64) {
2061 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2062 // shadow reg if callee is a varargs function.
2063 unsigned ShadowReg = 0;
2064 switch (VA.getLocReg()) {
2065 case X86::XMM0: ShadowReg = X86::RCX; break;
2066 case X86::XMM1: ShadowReg = X86::RDX; break;
2067 case X86::XMM2: ShadowReg = X86::R8; break;
2068 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002069 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002070 if (ShadowReg)
2071 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002072 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002073 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002074 assert(VA.isMemLoc());
2075 if (StackPtr.getNode() == 0)
2076 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2077 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2078 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002079 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002080 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002081
Evan Cheng32fe1032006-05-25 00:59:30 +00002082 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002083 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002084 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002085
Evan Cheng347d5f72006-04-28 21:29:37 +00002086 // Build a sequence of copy-to-reg nodes chained together with token chain
2087 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002088 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002089 // Tail call byval lowering might overwrite argument registers so in case of
2090 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002091 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002092 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002093 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002094 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002095 InFlag = Chain.getValue(1);
2096 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002097
Chris Lattner88e1fd52009-07-09 04:24:46 +00002098 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002099 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2100 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002101 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002102 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2103 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002104 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002105 InFlag);
2106 InFlag = Chain.getValue(1);
2107 } else {
2108 // If we are tail calling and generating PIC/GOT style code load the
2109 // address of the callee into ECX. The value in ecx is used as target of
2110 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2111 // for tail calls on PIC/GOT architectures. Normally we would just put the
2112 // address of GOT into ebx and then call target@PLT. But for tail calls
2113 // ebx would be restored (since ebx is callee saved) before jumping to the
2114 // target@PLT.
2115
2116 // Note: The actual moving to ECX is done further down.
2117 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2118 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2119 !G->getGlobal()->hasProtectedVisibility())
2120 Callee = LowerGlobalAddress(Callee, DAG);
2121 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002122 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002123 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002124 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002125
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002126 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002127 // From AMD64 ABI document:
2128 // For calls that may call functions that use varargs or stdargs
2129 // (prototype-less calls or calls to functions containing ellipsis (...) in
2130 // the declaration) %al is used as hidden argument to specify the number
2131 // of SSE registers used. The contents of %al do not need to match exactly
2132 // the number of registers, but must be an ubound on the number of SSE
2133 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002134
Gordon Henriksen86737662008-01-05 16:56:59 +00002135 // Count the number of XMM registers allocated.
2136 static const unsigned XMMArgRegs[] = {
2137 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2138 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2139 };
2140 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002141 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002142 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002143
Dale Johannesendd64c412009-02-04 00:33:20 +00002144 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002145 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002146 InFlag = Chain.getValue(1);
2147 }
2148
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002149
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002150 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002151 if (isTailCall) {
2152 // Force all the incoming stack arguments to be loaded from the stack
2153 // before any new outgoing arguments are stored to the stack, because the
2154 // outgoing stack slots may alias the incoming argument stack slots, and
2155 // the alias isn't otherwise explicit. This is slightly more conservative
2156 // than necessary, because it means that each store effectively depends
2157 // on every argument instead of just those arguments it would clobber.
2158 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2159
Dan Gohman475871a2008-07-27 21:46:04 +00002160 SmallVector<SDValue, 8> MemOpChains2;
2161 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002162 int FI = 0;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002163 // Do not flag preceding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002164 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002165 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002166 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2167 CCValAssign &VA = ArgLocs[i];
2168 if (VA.isRegLoc())
2169 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002170 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002171 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002172 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002173 // Create frame index.
2174 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002175 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002176 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002177 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002178
Duncan Sands276dcbd2008-03-21 09:14:45 +00002179 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002180 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002181 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002182 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002183 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002184 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002185 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002186
Dan Gohman98ca4f22009-08-05 01:29:28 +00002187 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2188 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002189 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002190 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002191 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002192 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002193 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002194 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002195 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002196 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002197 }
2198 }
2199
2200 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002201 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002202 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002203
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002204 // Copy arguments to their registers.
2205 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002206 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002207 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002208 InFlag = Chain.getValue(1);
2209 }
Dan Gohman475871a2008-07-27 21:46:04 +00002210 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002211
Gordon Henriksen86737662008-01-05 16:56:59 +00002212 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002213 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002214 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002215 }
2216
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002217 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2218 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2219 // In the 64-bit large code model, we have to make all calls
2220 // through a register, since the call instruction's 32-bit
2221 // pc-relative offset may not be large enough to hold the whole
2222 // address.
2223 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002224 // If the callee is a GlobalAddress node (quite common, every direct call
2225 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2226 // it.
2227
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002228 // We should use extra load for direct calls to dllimported functions in
2229 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002230 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002231 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002232 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002233 bool ExtraLoad = false;
2234 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002235
Chris Lattner48a7d022009-07-09 05:02:21 +00002236 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2237 // external symbols most go through the PLT in PIC mode. If the symbol
2238 // has hidden or protected visibility, or if it is static or local, then
2239 // we don't need to use the PLT - we can directly call it.
2240 if (Subtarget->isTargetELF() &&
2241 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002242 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002243 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002244 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002245 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002246 (!Subtarget->getTargetTriple().isMacOSX() ||
2247 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002248 // PC-relative references to external symbols should go through $stub,
2249 // unless we're building with the leopard linker or later, which
2250 // automatically synthesizes these stubs.
2251 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002252 } else if (Subtarget->isPICStyleRIPRel() &&
2253 isa<Function>(GV) &&
2254 cast<Function>(GV)->hasFnAttr(Attribute::NonLazyBind)) {
2255 // If the function is marked as non-lazy, generate an indirect call
2256 // which loads from the GOT directly. This avoids runtime overhead
2257 // at the cost of eager binding (and one extra byte of encoding).
2258 OpFlags = X86II::MO_GOTPCREL;
2259 WrapperKind = X86ISD::WrapperRIP;
2260 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002261 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002262
Devang Patel0d881da2010-07-06 22:08:15 +00002263 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002264 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002265
2266 // Add a wrapper if needed.
2267 if (WrapperKind != ISD::DELETED_NODE)
2268 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2269 // Add extra indirection if needed.
2270 if (ExtraLoad)
2271 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2272 MachinePointerInfo::getGOT(),
2273 false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002274 }
Bill Wendling056292f2008-09-16 21:48:12 +00002275 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002276 unsigned char OpFlags = 0;
2277
Evan Cheng1bf891a2010-12-01 22:59:46 +00002278 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2279 // external symbols should go through the PLT.
2280 if (Subtarget->isTargetELF() &&
2281 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2282 OpFlags = X86II::MO_PLT;
2283 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002284 (!Subtarget->getTargetTriple().isMacOSX() ||
2285 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002286 // PC-relative references to external symbols should go through $stub,
2287 // unless we're building with the leopard linker or later, which
2288 // automatically synthesizes these stubs.
2289 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002290 }
Eric Christopherfd179292009-08-27 18:07:15 +00002291
Chris Lattner48a7d022009-07-09 05:02:21 +00002292 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2293 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002294 }
2295
Chris Lattnerd96d0722007-02-25 06:40:16 +00002296 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002297 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002298 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002299
Evan Chengf22f9b32010-02-06 03:28:46 +00002300 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002301 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2302 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002303 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002304 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002305
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002306 Ops.push_back(Chain);
2307 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002308
Dan Gohman98ca4f22009-08-05 01:29:28 +00002309 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002310 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002311
Gordon Henriksen86737662008-01-05 16:56:59 +00002312 // Add argument registers to the end of the list so that they are known live
2313 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002314 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2315 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2316 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002317
Evan Cheng586ccac2008-03-18 23:36:35 +00002318 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002319 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002320 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2321
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002322 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002323 if (Is64Bit && isVarArg && !IsWin64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002324 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002325
Gabor Greifba36cb52008-08-28 21:40:38 +00002326 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002327 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002328
Dan Gohman98ca4f22009-08-05 01:29:28 +00002329 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002330 // We used to do:
2331 //// If this is the first return lowered for this function, add the regs
2332 //// to the liveout set for the function.
2333 // This isn't right, although it's probably harmless on x86; liveouts
2334 // should be computed from returns not tail calls. Consider a void
2335 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002336 return DAG.getNode(X86ISD::TC_RETURN, dl,
2337 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002338 }
2339
Dale Johannesenace16102009-02-03 19:33:06 +00002340 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002341 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002342
Chris Lattner2d297092006-05-23 18:50:38 +00002343 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002344 unsigned NumBytesForCalleeToPush;
Evan Chengef41ff62011-06-23 17:54:54 +00002345 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002346 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002347 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002348 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002349 // pops the hidden struct pointer, so we have to push it back.
2350 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002351 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002352 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002353 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002354
Gordon Henriksenae636f82008-01-03 16:47:34 +00002355 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002356 if (!IsSibcall) {
2357 Chain = DAG.getCALLSEQ_END(Chain,
2358 DAG.getIntPtrConstant(NumBytes, true),
2359 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2360 true),
2361 InFlag);
2362 InFlag = Chain.getValue(1);
2363 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002364
Chris Lattner3085e152007-02-25 08:59:22 +00002365 // Handle result values, copying them out of physregs into vregs that we
2366 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002367 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2368 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002369}
2370
Evan Cheng25ab6902006-09-08 06:48:29 +00002371
2372//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002373// Fast Calling Convention (tail call) implementation
2374//===----------------------------------------------------------------------===//
2375
2376// Like std call, callee cleans arguments, convention except that ECX is
2377// reserved for storing the tail called function address. Only 2 registers are
2378// free for argument passing (inreg). Tail call optimization is performed
2379// provided:
2380// * tailcallopt is enabled
2381// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002382// On X86_64 architecture with GOT-style position independent code only local
2383// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002384// To keep the stack aligned according to platform abi the function
2385// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2386// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002387// If a tail called function callee has more arguments than the caller the
2388// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002389// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002390// original REtADDR, but before the saved framepointer or the spilled registers
2391// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2392// stack layout:
2393// arg1
2394// arg2
2395// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002396// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002397// move area ]
2398// (possible EBP)
2399// ESI
2400// EDI
2401// local1 ..
2402
2403/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2404/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002405unsigned
2406X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2407 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002408 MachineFunction &MF = DAG.getMachineFunction();
2409 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002410 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002411 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002412 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002413 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002414 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002415 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2416 // Number smaller than 12 so just add the difference.
2417 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2418 } else {
2419 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002420 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002421 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002422 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002423 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002424}
2425
Evan Cheng5f941932010-02-05 02:21:12 +00002426/// MatchingStackOffset - Return true if the given stack call argument is
2427/// already available in the same position (relatively) of the caller's
2428/// incoming argument stack.
2429static
2430bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2431 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2432 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002433 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2434 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002435 if (Arg.getOpcode() == ISD::CopyFromReg) {
2436 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002437 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002438 return false;
2439 MachineInstr *Def = MRI->getVRegDef(VR);
2440 if (!Def)
2441 return false;
2442 if (!Flags.isByVal()) {
2443 if (!TII->isLoadFromStackSlot(Def, FI))
2444 return false;
2445 } else {
2446 unsigned Opcode = Def->getOpcode();
2447 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2448 Def->getOperand(1).isFI()) {
2449 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002450 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002451 } else
2452 return false;
2453 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002454 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2455 if (Flags.isByVal())
2456 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002457 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002458 // define @foo(%struct.X* %A) {
2459 // tail call @bar(%struct.X* byval %A)
2460 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002461 return false;
2462 SDValue Ptr = Ld->getBasePtr();
2463 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2464 if (!FINode)
2465 return false;
2466 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002467 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00002468 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002469 FI = FINode->getIndex();
2470 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00002471 } else
2472 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002473
Evan Cheng4cae1332010-03-05 08:38:04 +00002474 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002475 if (!MFI->isFixedObjectIndex(FI))
2476 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002477 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002478}
2479
Dan Gohman98ca4f22009-08-05 01:29:28 +00002480/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2481/// for tail call optimization. Targets which want to do tail call
2482/// optimization should implement this function.
2483bool
2484X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002485 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002486 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002487 bool isCalleeStructRet,
2488 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002489 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002490 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002491 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002492 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002493 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002494 CalleeCC != CallingConv::C)
2495 return false;
2496
Evan Cheng7096ae42010-01-29 06:45:59 +00002497 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002498 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002499 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002500 CallingConv::ID CallerCC = CallerF->getCallingConv();
2501 bool CCMatch = CallerCC == CalleeCC;
2502
Dan Gohman1797ed52010-02-08 20:27:50 +00002503 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002504 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002505 return true;
2506 return false;
2507 }
2508
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002509 // Look for obvious safe cases to perform tail call optimization that do not
2510 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002511
Evan Cheng2c12cb42010-03-26 16:26:03 +00002512 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2513 // emit a special epilogue.
2514 if (RegInfo->needsStackRealignment(MF))
2515 return false;
2516
Evan Chenga375d472010-03-15 18:54:48 +00002517 // Also avoid sibcall optimization if either caller or callee uses struct
2518 // return semantics.
2519 if (isCalleeStructRet || isCallerStructRet)
2520 return false;
2521
Chad Rosier2416da32011-06-24 21:15:36 +00002522 // An stdcall caller is expected to clean up its arguments; the callee
2523 // isn't going to do that.
2524 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2525 return false;
2526
Chad Rosier871f6642011-05-18 19:59:50 +00002527 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00002528 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00002529 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00002530
2531 // Optimizing for varargs on Win64 is unlikely to be safe without
2532 // additional testing.
2533 if (Subtarget->isTargetWin64())
2534 return false;
2535
Chad Rosier871f6642011-05-18 19:59:50 +00002536 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002537 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2538 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00002539
Chad Rosier871f6642011-05-18 19:59:50 +00002540 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2541 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2542 if (!ArgLocs[i].isRegLoc())
2543 return false;
2544 }
2545
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002546 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2547 // Therefore if it's not used by the call it is not safe to optimize this into
2548 // a sibcall.
2549 bool Unused = false;
2550 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2551 if (!Ins[i].Used) {
2552 Unused = true;
2553 break;
2554 }
2555 }
2556 if (Unused) {
2557 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002558 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
2559 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002560 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002561 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002562 CCValAssign &VA = RVLocs[i];
2563 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2564 return false;
2565 }
2566 }
2567
Evan Cheng13617962010-04-30 01:12:32 +00002568 // If the calling conventions do not match, then we'd better make sure the
2569 // results are returned in the same way as what the caller expects.
2570 if (!CCMatch) {
2571 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00002572 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2573 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002574 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2575
2576 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00002577 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2578 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002579 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2580
2581 if (RVLocs1.size() != RVLocs2.size())
2582 return false;
2583 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2584 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2585 return false;
2586 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2587 return false;
2588 if (RVLocs1[i].isRegLoc()) {
2589 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2590 return false;
2591 } else {
2592 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2593 return false;
2594 }
2595 }
2596 }
2597
Evan Chenga6bff982010-01-30 01:22:00 +00002598 // If the callee takes no arguments then go on to check the results of the
2599 // call.
2600 if (!Outs.empty()) {
2601 // Check if stack adjustment is needed. For now, do not do this if any
2602 // argument is passed on the stack.
2603 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002604 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2605 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002606
2607 // Allocate shadow area for Win64
2608 if (Subtarget->isTargetWin64()) {
2609 CCInfo.AllocateStack(32, 8);
2610 }
2611
Duncan Sands45907662010-10-31 13:21:44 +00002612 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00002613 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00002614 MachineFunction &MF = DAG.getMachineFunction();
2615 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2616 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00002617
2618 // Check if the arguments are already laid out in the right way as
2619 // the caller's fixed stack objects.
2620 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002621 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2622 const X86InstrInfo *TII =
2623 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002624 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2625 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002626 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002627 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002628 if (VA.getLocInfo() == CCValAssign::Indirect)
2629 return false;
2630 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002631 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2632 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002633 return false;
2634 }
2635 }
2636 }
Evan Cheng9c044672010-05-29 01:35:22 +00002637
2638 // If the tailcall address may be in a register, then make sure it's
2639 // possible to register allocate for it. In 32-bit, the call address can
2640 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002641 // callee-saved registers are restored. These happen to be the same
2642 // registers used to pass 'inreg' arguments so watch out for those.
2643 if (!Subtarget->is64Bit() &&
2644 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002645 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002646 unsigned NumInRegs = 0;
2647 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2648 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002649 if (!VA.isRegLoc())
2650 continue;
2651 unsigned Reg = VA.getLocReg();
2652 switch (Reg) {
2653 default: break;
2654 case X86::EAX: case X86::EDX: case X86::ECX:
2655 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002656 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002657 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002658 }
2659 }
2660 }
Evan Chenga6bff982010-01-30 01:22:00 +00002661 }
Evan Chengb1712452010-01-27 06:25:16 +00002662
Evan Cheng86809cc2010-02-03 03:28:02 +00002663 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002664}
2665
Dan Gohman3df24e62008-09-03 23:12:08 +00002666FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002667X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2668 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002669}
2670
2671
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002672//===----------------------------------------------------------------------===//
2673// Other Lowering Hooks
2674//===----------------------------------------------------------------------===//
2675
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002676static bool MayFoldLoad(SDValue Op) {
2677 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2678}
2679
2680static bool MayFoldIntoStore(SDValue Op) {
2681 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2682}
2683
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002684static bool isTargetShuffle(unsigned Opcode) {
2685 switch(Opcode) {
2686 default: return false;
2687 case X86ISD::PSHUFD:
2688 case X86ISD::PSHUFHW:
2689 case X86ISD::PSHUFLW:
2690 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002691 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002692 case X86ISD::SHUFPS:
2693 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002694 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002695 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002696 case X86ISD::MOVLPS:
2697 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002698 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002699 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002700 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002701 case X86ISD::MOVSS:
2702 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002703 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002704 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002705 case X86ISD::VUNPCKLPSY:
2706 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002707 case X86ISD::PUNPCKLWD:
2708 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002709 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002710 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002711 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002712 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002713 case X86ISD::PUNPCKHWD:
2714 case X86ISD::PUNPCKHBW:
2715 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002716 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00002717 case X86ISD::VPERMIL:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002718 return true;
2719 }
2720 return false;
2721}
2722
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002723static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002724 SDValue V1, SelectionDAG &DAG) {
2725 switch(Opc) {
2726 default: llvm_unreachable("Unknown x86 shuffle node");
2727 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002728 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002729 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002730 return DAG.getNode(Opc, dl, VT, V1);
2731 }
2732
2733 return SDValue();
2734}
2735
2736static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002737 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002738 switch(Opc) {
2739 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002740 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002741 case X86ISD::PSHUFHW:
2742 case X86ISD::PSHUFLW:
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00002743 case X86ISD::VPERMIL:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002744 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2745 }
2746
2747 return SDValue();
2748}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002749
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002750static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2751 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2752 switch(Opc) {
2753 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002754 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002755 case X86ISD::SHUFPD:
2756 case X86ISD::SHUFPS:
2757 return DAG.getNode(Opc, dl, VT, V1, V2,
2758 DAG.getConstant(TargetMask, MVT::i8));
2759 }
2760 return SDValue();
2761}
2762
2763static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2764 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2765 switch(Opc) {
2766 default: llvm_unreachable("Unknown x86 shuffle node");
2767 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002768 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002769 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002770 case X86ISD::MOVLPS:
2771 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002772 case X86ISD::MOVSS:
2773 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002774 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002775 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002776 case X86ISD::VUNPCKLPSY:
2777 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002778 case X86ISD::PUNPCKLWD:
2779 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002780 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002781 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002782 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002783 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002784 case X86ISD::PUNPCKHWD:
2785 case X86ISD::PUNPCKHBW:
2786 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002787 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002788 return DAG.getNode(Opc, dl, VT, V1, V2);
2789 }
2790 return SDValue();
2791}
2792
Dan Gohmand858e902010-04-17 15:26:15 +00002793SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002794 MachineFunction &MF = DAG.getMachineFunction();
2795 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2796 int ReturnAddrIndex = FuncInfo->getRAIndex();
2797
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002798 if (ReturnAddrIndex == 0) {
2799 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002800 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002801 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002802 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002803 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002804 }
2805
Evan Cheng25ab6902006-09-08 06:48:29 +00002806 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002807}
2808
2809
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002810bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2811 bool hasSymbolicDisplacement) {
2812 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002813 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002814 return false;
2815
2816 // If we don't have a symbolic displacement - we don't have any extra
2817 // restrictions.
2818 if (!hasSymbolicDisplacement)
2819 return true;
2820
2821 // FIXME: Some tweaks might be needed for medium code model.
2822 if (M != CodeModel::Small && M != CodeModel::Kernel)
2823 return false;
2824
2825 // For small code model we assume that latest object is 16MB before end of 31
2826 // bits boundary. We may also accept pretty large negative constants knowing
2827 // that all objects are in the positive half of address space.
2828 if (M == CodeModel::Small && Offset < 16*1024*1024)
2829 return true;
2830
2831 // For kernel code model we know that all object resist in the negative half
2832 // of 32bits address space. We may not accept negative offsets, since they may
2833 // be just off and we may accept pretty large positive ones.
2834 if (M == CodeModel::Kernel && Offset > 0)
2835 return true;
2836
2837 return false;
2838}
2839
Evan Chengef41ff62011-06-23 17:54:54 +00002840/// isCalleePop - Determines whether the callee is required to pop its
2841/// own arguments. Callee pop is necessary to support tail calls.
2842bool X86::isCalleePop(CallingConv::ID CallingConv,
2843 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
2844 if (IsVarArg)
2845 return false;
2846
2847 switch (CallingConv) {
2848 default:
2849 return false;
2850 case CallingConv::X86_StdCall:
2851 return !is64Bit;
2852 case CallingConv::X86_FastCall:
2853 return !is64Bit;
2854 case CallingConv::X86_ThisCall:
2855 return !is64Bit;
2856 case CallingConv::Fast:
2857 return TailCallOpt;
2858 case CallingConv::GHC:
2859 return TailCallOpt;
2860 }
2861}
2862
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002863/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2864/// specific condition code, returning the condition code and the LHS/RHS of the
2865/// comparison to make.
2866static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2867 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002868 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002869 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2870 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2871 // X > -1 -> X == 0, jump !sign.
2872 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002873 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002874 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2875 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002876 return X86::COND_S;
Andrew Trickf6c39412011-03-23 23:11:02 +00002877 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002878 // X < 1 -> X <= 0
2879 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002880 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002881 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002882 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002883
Evan Chengd9558e02006-01-06 00:43:03 +00002884 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002885 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002886 case ISD::SETEQ: return X86::COND_E;
2887 case ISD::SETGT: return X86::COND_G;
2888 case ISD::SETGE: return X86::COND_GE;
2889 case ISD::SETLT: return X86::COND_L;
2890 case ISD::SETLE: return X86::COND_LE;
2891 case ISD::SETNE: return X86::COND_NE;
2892 case ISD::SETULT: return X86::COND_B;
2893 case ISD::SETUGT: return X86::COND_A;
2894 case ISD::SETULE: return X86::COND_BE;
2895 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002896 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002897 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002898
Chris Lattner4c78e022008-12-23 23:42:27 +00002899 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002900
Chris Lattner4c78e022008-12-23 23:42:27 +00002901 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00002902 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
2903 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00002904 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2905 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002906 }
2907
Chris Lattner4c78e022008-12-23 23:42:27 +00002908 switch (SetCCOpcode) {
2909 default: break;
2910 case ISD::SETOLT:
2911 case ISD::SETOLE:
2912 case ISD::SETUGT:
2913 case ISD::SETUGE:
2914 std::swap(LHS, RHS);
2915 break;
2916 }
2917
2918 // On a floating point condition, the flags are set as follows:
2919 // ZF PF CF op
2920 // 0 | 0 | 0 | X > Y
2921 // 0 | 0 | 1 | X < Y
2922 // 1 | 0 | 0 | X == Y
2923 // 1 | 1 | 1 | unordered
2924 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002925 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002926 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002927 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002928 case ISD::SETOLT: // flipped
2929 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002930 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002931 case ISD::SETOLE: // flipped
2932 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002933 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002934 case ISD::SETUGT: // flipped
2935 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002936 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002937 case ISD::SETUGE: // flipped
2938 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002939 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002940 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002941 case ISD::SETNE: return X86::COND_NE;
2942 case ISD::SETUO: return X86::COND_P;
2943 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002944 case ISD::SETOEQ:
2945 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002946 }
Evan Chengd9558e02006-01-06 00:43:03 +00002947}
2948
Evan Cheng4a460802006-01-11 00:33:36 +00002949/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2950/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002951/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002952static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002953 switch (X86CC) {
2954 default:
2955 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002956 case X86::COND_B:
2957 case X86::COND_BE:
2958 case X86::COND_E:
2959 case X86::COND_P:
2960 case X86::COND_A:
2961 case X86::COND_AE:
2962 case X86::COND_NE:
2963 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002964 return true;
2965 }
2966}
2967
Evan Chengeb2f9692009-10-27 19:56:55 +00002968/// isFPImmLegal - Returns true if the target can instruction select the
2969/// specified FP immediate natively. If false, the legalizer will
2970/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00002971bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00002972 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
2973 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
2974 return true;
2975 }
2976 return false;
2977}
2978
Nate Begeman9008ca62009-04-27 18:41:29 +00002979/// isUndefOrInRange - Return true if Val is undef or if its value falls within
2980/// the specified range (L, H].
2981static bool isUndefOrInRange(int Val, int Low, int Hi) {
2982 return (Val < 0) || (Val >= Low && Val < Hi);
2983}
2984
2985/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
2986/// specified value.
2987static bool isUndefOrEqual(int Val, int CmpVal) {
2988 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002989 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00002990 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00002991}
2992
Nate Begeman9008ca62009-04-27 18:41:29 +00002993/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
2994/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
2995/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00002996static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00002997 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00002998 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002999 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003000 return (Mask[0] < 2 && Mask[1] < 2);
3001 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003002}
3003
Nate Begeman9008ca62009-04-27 18:41:29 +00003004bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003005 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003006 N->getMask(M);
3007 return ::isPSHUFDMask(M, N->getValueType(0));
3008}
Evan Cheng0188ecb2006-03-22 18:59:22 +00003009
Nate Begeman9008ca62009-04-27 18:41:29 +00003010/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3011/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00003012static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003013 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00003014 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003015
Nate Begeman9008ca62009-04-27 18:41:29 +00003016 // Lower quadword copied in order or undef.
3017 for (int i = 0; i != 4; ++i)
3018 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00003019 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003020
Evan Cheng506d3df2006-03-29 23:07:14 +00003021 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003022 for (int i = 4; i != 8; ++i)
3023 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00003024 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003025
Evan Cheng506d3df2006-03-29 23:07:14 +00003026 return true;
3027}
3028
Nate Begeman9008ca62009-04-27 18:41:29 +00003029bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003030 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003031 N->getMask(M);
3032 return ::isPSHUFHWMask(M, N->getValueType(0));
3033}
Evan Cheng506d3df2006-03-29 23:07:14 +00003034
Nate Begeman9008ca62009-04-27 18:41:29 +00003035/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3036/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00003037static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003038 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00003039 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003040
Rafael Espindola15684b22009-04-24 12:40:33 +00003041 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00003042 for (int i = 4; i != 8; ++i)
3043 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00003044 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003045
Rafael Espindola15684b22009-04-24 12:40:33 +00003046 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003047 for (int i = 0; i != 4; ++i)
3048 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00003049 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003050
Rafael Espindola15684b22009-04-24 12:40:33 +00003051 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003052}
3053
Nate Begeman9008ca62009-04-27 18:41:29 +00003054bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003055 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003056 N->getMask(M);
3057 return ::isPSHUFLWMask(M, N->getValueType(0));
3058}
3059
Nate Begemana09008b2009-10-19 02:17:23 +00003060/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3061/// is suitable for input to PALIGNR.
3062static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
3063 bool hasSSSE3) {
3064 int i, e = VT.getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003065
Nate Begemana09008b2009-10-19 02:17:23 +00003066 // Do not handle v2i64 / v2f64 shuffles with palignr.
3067 if (e < 4 || !hasSSSE3)
3068 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003069
Nate Begemana09008b2009-10-19 02:17:23 +00003070 for (i = 0; i != e; ++i)
3071 if (Mask[i] >= 0)
3072 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003073
Nate Begemana09008b2009-10-19 02:17:23 +00003074 // All undef, not a palignr.
3075 if (i == e)
3076 return false;
3077
3078 // Determine if it's ok to perform a palignr with only the LHS, since we
3079 // don't have access to the actual shuffle elements to see if RHS is undef.
3080 bool Unary = Mask[i] < (int)e;
3081 bool NeedsUnary = false;
3082
3083 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003084
Nate Begemana09008b2009-10-19 02:17:23 +00003085 // Check the rest of the elements to see if they are consecutive.
3086 for (++i; i != e; ++i) {
3087 int m = Mask[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00003088 if (m < 0)
Nate Begemana09008b2009-10-19 02:17:23 +00003089 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003090
Nate Begemana09008b2009-10-19 02:17:23 +00003091 Unary = Unary && (m < (int)e);
3092 NeedsUnary = NeedsUnary || (m < s);
3093
3094 if (NeedsUnary && !Unary)
3095 return false;
3096 if (Unary && m != ((s+i) & (e-1)))
3097 return false;
3098 if (!Unary && m != (s+i))
3099 return false;
3100 }
3101 return true;
3102}
3103
3104bool X86::isPALIGNRMask(ShuffleVectorSDNode *N) {
3105 SmallVector<int, 8> M;
3106 N->getMask(M);
3107 return ::isPALIGNRMask(M, N->getValueType(0), true);
3108}
3109
Evan Cheng14aed5e2006-03-24 01:18:28 +00003110/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3111/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00003112static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003113 int NumElems = VT.getVectorNumElements();
3114 if (NumElems != 2 && NumElems != 4)
3115 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003116
Nate Begeman9008ca62009-04-27 18:41:29 +00003117 int Half = NumElems / 2;
3118 for (int i = 0; i < Half; ++i)
3119 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003120 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003121 for (int i = Half; i < NumElems; ++i)
3122 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003123 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003124
Evan Cheng14aed5e2006-03-24 01:18:28 +00003125 return true;
3126}
3127
Nate Begeman9008ca62009-04-27 18:41:29 +00003128bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3129 SmallVector<int, 8> M;
3130 N->getMask(M);
3131 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003132}
3133
Evan Cheng213d2cf2007-05-17 18:45:50 +00003134/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00003135/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
3136/// half elements to come from vector 1 (which would equal the dest.) and
3137/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00003138static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003139 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003140
3141 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00003142 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003143
Nate Begeman9008ca62009-04-27 18:41:29 +00003144 int Half = NumElems / 2;
3145 for (int i = 0; i < Half; ++i)
3146 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003147 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003148 for (int i = Half; i < NumElems; ++i)
3149 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003150 return false;
3151 return true;
3152}
3153
Nate Begeman9008ca62009-04-27 18:41:29 +00003154static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3155 SmallVector<int, 8> M;
3156 N->getMask(M);
3157 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003158}
3159
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003160/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3161/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003162bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
3163 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003164 return false;
3165
Evan Cheng2064a2b2006-03-28 06:50:32 +00003166 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003167 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3168 isUndefOrEqual(N->getMaskElt(1), 7) &&
3169 isUndefOrEqual(N->getMaskElt(2), 2) &&
3170 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003171}
3172
Nate Begeman0b10b912009-11-07 23:17:15 +00003173/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3174/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3175/// <2, 3, 2, 3>
3176bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
3177 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003178
Nate Begeman0b10b912009-11-07 23:17:15 +00003179 if (NumElems != 4)
3180 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003181
Nate Begeman0b10b912009-11-07 23:17:15 +00003182 return isUndefOrEqual(N->getMaskElt(0), 2) &&
3183 isUndefOrEqual(N->getMaskElt(1), 3) &&
3184 isUndefOrEqual(N->getMaskElt(2), 2) &&
3185 isUndefOrEqual(N->getMaskElt(3), 3);
3186}
3187
Evan Cheng5ced1d82006-04-06 23:23:56 +00003188/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3189/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003190bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3191 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003192
Evan Cheng5ced1d82006-04-06 23:23:56 +00003193 if (NumElems != 2 && NumElems != 4)
3194 return false;
3195
Evan Chengc5cdff22006-04-07 21:53:05 +00003196 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003197 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003198 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003199
Evan Chengc5cdff22006-04-07 21:53:05 +00003200 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003201 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003202 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003203
3204 return true;
3205}
3206
Nate Begeman0b10b912009-11-07 23:17:15 +00003207/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3208/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3209bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003210 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003211
David Greenea20244d2011-03-02 17:23:43 +00003212 if ((NumElems != 2 && NumElems != 4)
3213 || N->getValueType(0).getSizeInBits() > 128)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003214 return false;
3215
Evan Chengc5cdff22006-04-07 21:53:05 +00003216 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003217 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003218 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003219
Nate Begeman9008ca62009-04-27 18:41:29 +00003220 for (unsigned i = 0; i < NumElems/2; ++i)
3221 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003222 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003223
3224 return true;
3225}
3226
Evan Cheng0038e592006-03-28 00:39:58 +00003227/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3228/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003229static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003230 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003231 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003232 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00003233 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003234
David Greenea20244d2011-03-02 17:23:43 +00003235 // Handle vector lengths > 128 bits. Define a "section" as a set of
3236 // 128 bits. AVX defines UNPCK* to operate independently on 128-bit
3237 // sections.
3238 unsigned NumSections = VT.getSizeInBits() / 128;
3239 if (NumSections == 0 ) NumSections = 1; // Handle MMX
3240 unsigned NumSectionElts = NumElts / NumSections;
3241
3242 unsigned Start = 0;
3243 unsigned End = NumSectionElts;
3244 for (unsigned s = 0; s < NumSections; ++s) {
3245 for (unsigned i = Start, j = s * NumSectionElts;
3246 i != End;
3247 i += 2, ++j) {
3248 int BitI = Mask[i];
3249 int BitI1 = Mask[i+1];
3250 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003251 return false;
David Greenea20244d2011-03-02 17:23:43 +00003252 if (V2IsSplat) {
3253 if (!isUndefOrEqual(BitI1, NumElts))
3254 return false;
3255 } else {
3256 if (!isUndefOrEqual(BitI1, j + NumElts))
3257 return false;
3258 }
Evan Cheng39623da2006-04-20 08:58:49 +00003259 }
David Greenea20244d2011-03-02 17:23:43 +00003260 // Process the next 128 bits.
3261 Start += NumSectionElts;
3262 End += NumSectionElts;
Evan Cheng0038e592006-03-28 00:39:58 +00003263 }
David Greenea20244d2011-03-02 17:23:43 +00003264
Evan Cheng0038e592006-03-28 00:39:58 +00003265 return true;
3266}
3267
Nate Begeman9008ca62009-04-27 18:41:29 +00003268bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3269 SmallVector<int, 8> M;
3270 N->getMask(M);
3271 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003272}
3273
Evan Cheng4fcb9222006-03-28 02:43:26 +00003274/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3275/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003276static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003277 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003278 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003279 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003280 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003281
Nate Begeman9008ca62009-04-27 18:41:29 +00003282 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3283 int BitI = Mask[i];
3284 int BitI1 = Mask[i+1];
Chris Lattner5a88b832007-02-25 07:10:00 +00003285 if (!isUndefOrEqual(BitI, j + NumElts/2))
Evan Chengc5cdff22006-04-07 21:53:05 +00003286 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003287 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00003288 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003289 return false;
3290 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003291 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003292 return false;
3293 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003294 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003295 return true;
3296}
3297
Nate Begeman9008ca62009-04-27 18:41:29 +00003298bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3299 SmallVector<int, 8> M;
3300 N->getMask(M);
3301 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003302}
3303
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003304/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3305/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3306/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003307static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003308 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003309 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003310 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003311
David Greenea20244d2011-03-02 17:23:43 +00003312 // Handle vector lengths > 128 bits. Define a "section" as a set of
3313 // 128 bits. AVX defines UNPCK* to operate independently on 128-bit
3314 // sections.
3315 unsigned NumSections = VT.getSizeInBits() / 128;
3316 if (NumSections == 0 ) NumSections = 1; // Handle MMX
3317 unsigned NumSectionElts = NumElems / NumSections;
3318
3319 for (unsigned s = 0; s < NumSections; ++s) {
3320 for (unsigned i = s * NumSectionElts, j = s * NumSectionElts;
3321 i != NumSectionElts * (s + 1);
3322 i += 2, ++j) {
3323 int BitI = Mask[i];
3324 int BitI1 = Mask[i+1];
3325
3326 if (!isUndefOrEqual(BitI, j))
3327 return false;
3328 if (!isUndefOrEqual(BitI1, j))
3329 return false;
3330 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003331 }
David Greenea20244d2011-03-02 17:23:43 +00003332
Rafael Espindola15684b22009-04-24 12:40:33 +00003333 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003334}
3335
Nate Begeman9008ca62009-04-27 18:41:29 +00003336bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3337 SmallVector<int, 8> M;
3338 N->getMask(M);
3339 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3340}
3341
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003342/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3343/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3344/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003345static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003346 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003347 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3348 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003349
Nate Begeman9008ca62009-04-27 18:41:29 +00003350 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3351 int BitI = Mask[i];
3352 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003353 if (!isUndefOrEqual(BitI, j))
3354 return false;
3355 if (!isUndefOrEqual(BitI1, j))
3356 return false;
3357 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003358 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003359}
3360
Nate Begeman9008ca62009-04-27 18:41:29 +00003361bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3362 SmallVector<int, 8> M;
3363 N->getMask(M);
3364 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3365}
3366
Evan Cheng017dcc62006-04-21 01:05:10 +00003367/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3368/// specifies a shuffle of elements that is suitable for input to MOVSS,
3369/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003370static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003371 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003372 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003373
3374 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003375
Nate Begeman9008ca62009-04-27 18:41:29 +00003376 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003377 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003378
Nate Begeman9008ca62009-04-27 18:41:29 +00003379 for (int i = 1; i < NumElts; ++i)
3380 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003381 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003382
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003383 return true;
3384}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003385
Nate Begeman9008ca62009-04-27 18:41:29 +00003386bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3387 SmallVector<int, 8> M;
3388 N->getMask(M);
3389 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003390}
3391
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003392/// isVPERMILMask - Return true if the specified VECTOR_SHUFFLE operand
3393/// specifies a shuffle of elements that is suitable for input to VPERMIL*.
3394static bool isVPERMILMask(const SmallVectorImpl<int> &Mask, EVT VT) {
3395 unsigned NumElts = VT.getVectorNumElements();
3396 unsigned NumLanes = VT.getSizeInBits()/128;
3397
3398 // Match any permutation of 128-bit vector with 32/64-bit types
3399 if (NumLanes == 1) {
3400 if (NumElts == 4 || NumElts == 2)
3401 return true;
3402 return false;
3403 }
3404
3405 // Only match 256-bit with 32/64-bit types
3406 if (NumElts != 8 && NumElts != 4)
3407 return false;
3408
3409 // The mask on the high lane should be the same as the low. Actually,
3410 // they can differ if any of the corresponding index in a lane is undef.
3411 int LaneSize = NumElts/NumLanes;
3412 for (int i = 0; i < LaneSize; ++i) {
3413 int HighElt = i+LaneSize;
3414 if (Mask[i] < 0 || Mask[HighElt] < 0)
3415 continue;
3416
3417 if (Mask[HighElt]-Mask[i] != LaneSize)
3418 return false;
3419 }
3420
3421 return true;
3422}
3423
3424/// getShuffleVPERMILImmediateediate - Return the appropriate immediate to shuffle
3425/// the specified VECTOR_MASK mask with VPERMIL* instructions.
3426static unsigned getShuffleVPERMILImmediate(SDNode *N) {
3427 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3428 EVT VT = SVOp->getValueType(0);
3429
3430 int NumElts = VT.getVectorNumElements();
3431 int NumLanes = VT.getSizeInBits()/128;
3432
3433 unsigned Mask = 0;
3434 for (int i = 0; i < NumElts/NumLanes /* lane size */; ++i)
3435 Mask |= SVOp->getMaskElt(i) << (i*2);
3436
3437 return Mask;
3438}
3439
Evan Cheng017dcc62006-04-21 01:05:10 +00003440/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3441/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003442/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003443static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003444 bool V2IsSplat = false, bool V2IsUndef = false) {
3445 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003446 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003447 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003448
Nate Begeman9008ca62009-04-27 18:41:29 +00003449 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003450 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003451
Nate Begeman9008ca62009-04-27 18:41:29 +00003452 for (int i = 1; i < NumOps; ++i)
3453 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3454 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3455 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003456 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003457
Evan Cheng39623da2006-04-20 08:58:49 +00003458 return true;
3459}
3460
Nate Begeman9008ca62009-04-27 18:41:29 +00003461static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003462 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003463 SmallVector<int, 8> M;
3464 N->getMask(M);
3465 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003466}
3467
Evan Chengd9539472006-04-14 21:59:03 +00003468/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3469/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003470bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) {
3471 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003472 return false;
3473
3474 // Expect 1, 1, 3, 3
Rafael Espindola15684b22009-04-24 12:40:33 +00003475 for (unsigned i = 0; i < 2; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003476 int Elt = N->getMaskElt(i);
3477 if (Elt >= 0 && Elt != 1)
3478 return false;
Rafael Espindola15684b22009-04-24 12:40:33 +00003479 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003480
3481 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003482 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003483 int Elt = N->getMaskElt(i);
3484 if (Elt >= 0 && Elt != 3)
3485 return false;
3486 if (Elt == 3)
3487 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003488 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003489 // Don't use movshdup if it can be done with a shufps.
Nate Begeman9008ca62009-04-27 18:41:29 +00003490 // FIXME: verify that matching u, u, 3, 3 is what we want.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003491 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003492}
3493
3494/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3495/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003496bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) {
3497 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003498 return false;
3499
3500 // Expect 0, 0, 2, 2
Nate Begeman9008ca62009-04-27 18:41:29 +00003501 for (unsigned i = 0; i < 2; ++i)
3502 if (N->getMaskElt(i) > 0)
3503 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003504
3505 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003506 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003507 int Elt = N->getMaskElt(i);
3508 if (Elt >= 0 && Elt != 2)
3509 return false;
3510 if (Elt == 2)
3511 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003512 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003513 // Don't use movsldup if it can be done with a shufps.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003514 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003515}
3516
Evan Cheng0b457f02008-09-25 20:50:48 +00003517/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3518/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003519bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3520 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003521
Nate Begeman9008ca62009-04-27 18:41:29 +00003522 for (int i = 0; i < e; ++i)
3523 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003524 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003525 for (int i = 0; i < e; ++i)
3526 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003527 return false;
3528 return true;
3529}
3530
David Greenec38a03e2011-02-03 15:50:00 +00003531/// isVEXTRACTF128Index - Return true if the specified
3532/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3533/// suitable for input to VEXTRACTF128.
3534bool X86::isVEXTRACTF128Index(SDNode *N) {
3535 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3536 return false;
3537
3538 // The index should be aligned on a 128-bit boundary.
3539 uint64_t Index =
3540 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3541
3542 unsigned VL = N->getValueType(0).getVectorNumElements();
3543 unsigned VBits = N->getValueType(0).getSizeInBits();
3544 unsigned ElSize = VBits / VL;
3545 bool Result = (Index * ElSize) % 128 == 0;
3546
3547 return Result;
3548}
3549
David Greeneccacdc12011-02-04 16:08:29 +00003550/// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
3551/// operand specifies a subvector insert that is suitable for input to
3552/// VINSERTF128.
3553bool X86::isVINSERTF128Index(SDNode *N) {
3554 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3555 return false;
3556
3557 // The index should be aligned on a 128-bit boundary.
3558 uint64_t Index =
3559 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3560
3561 unsigned VL = N->getValueType(0).getVectorNumElements();
3562 unsigned VBits = N->getValueType(0).getSizeInBits();
3563 unsigned ElSize = VBits / VL;
3564 bool Result = (Index * ElSize) % 128 == 0;
3565
3566 return Result;
3567}
3568
Evan Cheng63d33002006-03-22 08:01:21 +00003569/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003570/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003571unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003572 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3573 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3574
Evan Chengb9df0ca2006-03-22 02:53:00 +00003575 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3576 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003577 for (int i = 0; i < NumOperands; ++i) {
3578 int Val = SVOp->getMaskElt(NumOperands-i-1);
3579 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003580 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003581 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003582 if (i != NumOperands - 1)
3583 Mask <<= Shift;
3584 }
Evan Cheng63d33002006-03-22 08:01:21 +00003585 return Mask;
3586}
3587
Evan Cheng506d3df2006-03-29 23:07:14 +00003588/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003589/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003590unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003591 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003592 unsigned Mask = 0;
3593 // 8 nodes, but we only care about the last 4.
3594 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003595 int Val = SVOp->getMaskElt(i);
3596 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003597 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003598 if (i != 4)
3599 Mask <<= 2;
3600 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003601 return Mask;
3602}
3603
3604/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003605/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003606unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003607 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003608 unsigned Mask = 0;
3609 // 8 nodes, but we only care about the first 4.
3610 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003611 int Val = SVOp->getMaskElt(i);
3612 if (Val >= 0)
3613 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003614 if (i != 0)
3615 Mask <<= 2;
3616 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003617 return Mask;
3618}
3619
Nate Begemana09008b2009-10-19 02:17:23 +00003620/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3621/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3622unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3623 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3624 EVT VVT = N->getValueType(0);
3625 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3626 int Val = 0;
3627
3628 unsigned i, e;
3629 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3630 Val = SVOp->getMaskElt(i);
3631 if (Val >= 0)
3632 break;
3633 }
3634 return (Val - i) * EltSize;
3635}
3636
David Greenec38a03e2011-02-03 15:50:00 +00003637/// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
3638/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
3639/// instructions.
3640unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
3641 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3642 llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
3643
3644 uint64_t Index =
3645 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3646
3647 EVT VecVT = N->getOperand(0).getValueType();
3648 EVT ElVT = VecVT.getVectorElementType();
3649
3650 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00003651 return Index / NumElemsPerChunk;
3652}
3653
David Greeneccacdc12011-02-04 16:08:29 +00003654/// getInsertVINSERTF128Immediate - Return the appropriate immediate
3655/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
3656/// instructions.
3657unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
3658 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3659 llvm_unreachable("Illegal insert subvector for VINSERTF128");
3660
3661 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00003662 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00003663
3664 EVT VecVT = N->getValueType(0);
3665 EVT ElVT = VecVT.getVectorElementType();
3666
3667 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00003668 return Index / NumElemsPerChunk;
3669}
3670
Evan Cheng37b73872009-07-30 08:33:02 +00003671/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3672/// constant +0.0.
3673bool X86::isZeroNode(SDValue Elt) {
3674 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003675 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003676 (isa<ConstantFPSDNode>(Elt) &&
3677 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3678}
3679
Nate Begeman9008ca62009-04-27 18:41:29 +00003680/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3681/// their permute mask.
3682static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3683 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003684 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003685 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003686 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003687
Nate Begeman5a5ca152009-04-29 05:20:52 +00003688 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003689 int idx = SVOp->getMaskElt(i);
3690 if (idx < 0)
3691 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003692 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003693 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003694 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003695 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003696 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003697 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3698 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003699}
3700
Evan Cheng779ccea2007-12-07 21:30:01 +00003701/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3702/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003703static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003704 unsigned NumElems = VT.getVectorNumElements();
3705 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003706 int idx = Mask[i];
3707 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003708 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003709 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003710 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003711 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003712 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003713 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003714}
3715
Evan Cheng533a0aa2006-04-19 20:35:22 +00003716/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3717/// match movhlps. The lower half elements should come from upper half of
3718/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003719/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003720static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3721 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003722 return false;
3723 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003724 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003725 return false;
3726 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003727 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003728 return false;
3729 return true;
3730}
3731
Evan Cheng5ced1d82006-04-06 23:23:56 +00003732/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003733/// is promoted to a vector. It also returns the LoadSDNode by reference if
3734/// required.
3735static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003736 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3737 return false;
3738 N = N->getOperand(0).getNode();
3739 if (!ISD::isNON_EXTLoad(N))
3740 return false;
3741 if (LD)
3742 *LD = cast<LoadSDNode>(N);
3743 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003744}
3745
Evan Cheng533a0aa2006-04-19 20:35:22 +00003746/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3747/// match movlp{s|d}. The lower half elements should come from lower half of
3748/// V1 (and in order), and the upper half elements should come from the upper
3749/// half of V2 (and in order). And since V1 will become the source of the
3750/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003751static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3752 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003753 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003754 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003755 // Is V2 is a vector load, don't do this transformation. We will try to use
3756 // load folding shufps op.
3757 if (ISD::isNON_EXTLoad(V2))
3758 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003759
Nate Begeman5a5ca152009-04-29 05:20:52 +00003760 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003761
Evan Cheng533a0aa2006-04-19 20:35:22 +00003762 if (NumElems != 2 && NumElems != 4)
3763 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003764 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003765 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003766 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003767 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003768 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003769 return false;
3770 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003771}
3772
Evan Cheng39623da2006-04-20 08:58:49 +00003773/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3774/// all the same.
3775static bool isSplatVector(SDNode *N) {
3776 if (N->getOpcode() != ISD::BUILD_VECTOR)
3777 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003778
Dan Gohman475871a2008-07-27 21:46:04 +00003779 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003780 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3781 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003782 return false;
3783 return true;
3784}
3785
Evan Cheng213d2cf2007-05-17 18:45:50 +00003786/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003787/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003788/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003789static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003790 SDValue V1 = N->getOperand(0);
3791 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003792 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3793 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003794 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003795 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003796 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003797 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3798 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003799 if (Opc != ISD::BUILD_VECTOR ||
3800 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003801 return false;
3802 } else if (Idx >= 0) {
3803 unsigned Opc = V1.getOpcode();
3804 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3805 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003806 if (Opc != ISD::BUILD_VECTOR ||
3807 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003808 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003809 }
3810 }
3811 return true;
3812}
3813
3814/// getZeroVector - Returns a vector of specified type with all zero elements.
3815///
Owen Andersone50ed302009-08-10 22:56:29 +00003816static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003817 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003818 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003819
Dale Johannesen0488fb62010-09-30 23:57:10 +00003820 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003821 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003822 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003823 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003824 if (HasSSE2) { // SSE2
3825 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3826 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3827 } else { // SSE1
3828 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3829 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3830 }
3831 } else if (VT.getSizeInBits() == 256) { // AVX
3832 // 256-bit logic and arithmetic instructions in AVX are
3833 // all floating-point, no support for integer ops. Default
3834 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003835 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003836 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3837 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003838 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003839 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003840}
3841
Chris Lattner8a594482007-11-25 00:24:49 +00003842/// getOnesVector - Returns a vector of specified type with all bits set.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003843/// Always build ones vectors as <4 x i32> or <8 x i32> bitcasted to
3844/// their original type, ensuring they get CSE'd.
Owen Andersone50ed302009-08-10 22:56:29 +00003845static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003846 assert(VT.isVector() && "Expected a vector type");
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003847 assert((VT.is128BitVector() || VT.is256BitVector())
3848 && "Expected a 128-bit or 256-bit vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003849
Owen Anderson825b72b2009-08-11 20:47:22 +00003850 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003851
Dan Gohman475871a2008-07-27 21:46:04 +00003852 SDValue Vec;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00003853 if (VT.is256BitVector()) {
3854 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3855 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops, 8);
3856 } else
3857 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003858 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00003859}
3860
Evan Cheng39623da2006-04-20 08:58:49 +00003861/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
3862/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00003863static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003864 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003865 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003866
Evan Cheng39623da2006-04-20 08:58:49 +00003867 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003868 SmallVector<int, 8> MaskVec;
3869 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00003870
Nate Begeman5a5ca152009-04-29 05:20:52 +00003871 for (unsigned i = 0; i != NumElems; ++i) {
3872 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003873 MaskVec[i] = NumElems;
3874 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00003875 }
Evan Cheng39623da2006-04-20 08:58:49 +00003876 }
Evan Cheng39623da2006-04-20 08:58:49 +00003877 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00003878 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
3879 SVOp->getOperand(1), &MaskVec[0]);
3880 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00003881}
3882
Evan Cheng017dcc62006-04-21 01:05:10 +00003883/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
3884/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00003885static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003886 SDValue V2) {
3887 unsigned NumElems = VT.getVectorNumElements();
3888 SmallVector<int, 8> Mask;
3889 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00003890 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003891 Mask.push_back(i);
3892 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00003893}
3894
Nate Begeman9008ca62009-04-27 18:41:29 +00003895/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003896static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003897 SDValue V2) {
3898 unsigned NumElems = VT.getVectorNumElements();
3899 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00003900 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003901 Mask.push_back(i);
3902 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00003903 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003904 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00003905}
3906
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00003907/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003908static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003909 SDValue V2) {
3910 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00003911 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003912 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00003913 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003914 Mask.push_back(i + Half);
3915 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00003916 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003917 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00003918}
3919
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00003920// PromoteSplatv8v16 - All i16 and i8 vector types can't be used directly by
3921// a generic shuffle instruction because the target has no such instructions.
3922// Generate shuffles which repeat i16 and i8 several times until they can be
3923// represented by v4f32 and then be manipulated by target suported shuffles.
3924static SDValue PromoteSplatv8v16(SDValue V, SelectionDAG &DAG, int &EltNo) {
3925 EVT VT = V.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00003926 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00003927 DebugLoc dl = V.getDebugLoc();
Rafael Espindola15684b22009-04-24 12:40:33 +00003928
Nate Begeman9008ca62009-04-27 18:41:29 +00003929 while (NumElems > 4) {
3930 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00003931 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00003932 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00003933 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00003934 EltNo -= NumElems/2;
3935 }
3936 NumElems >>= 1;
3937 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00003938 return V;
3939}
Eric Christopherfd179292009-08-27 18:07:15 +00003940
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00003941/// getLegalSplat - Generate a legal splat with supported x86 shuffles
3942static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
3943 EVT VT = V.getValueType();
3944 DebugLoc dl = V.getDebugLoc();
3945 assert((VT.getSizeInBits() == 128 || VT.getSizeInBits() == 256)
3946 && "Vector size not supported");
3947
3948 bool Is128 = VT.getSizeInBits() == 128;
3949 EVT NVT = Is128 ? MVT::v4f32 : MVT::v8f32;
3950 V = DAG.getNode(ISD::BITCAST, dl, NVT, V);
3951
3952 if (Is128) {
3953 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
3954 V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
3955 } else {
3956 // The second half of indicies refer to the higher part, which is a
3957 // duplication of the lower one. This makes this shuffle a perfect match
3958 // for the VPERM instruction.
3959 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
3960 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
3961 V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
3962 }
3963
3964 return DAG.getNode(ISD::BITCAST, dl, VT, V);
3965}
3966
3967/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32 and
3968/// v8i32, v16i16 or v32i8 to v8f32.
3969static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
3970 EVT SrcVT = SV->getValueType(0);
3971 SDValue V1 = SV->getOperand(0);
3972 DebugLoc dl = SV->getDebugLoc();
3973
3974 int EltNo = SV->getSplatIndex();
3975 int NumElems = SrcVT.getVectorNumElements();
3976 unsigned Size = SrcVT.getSizeInBits();
3977
3978 // Extract the 128-bit part containing the splat element and update
3979 // the splat element index when it refers to the higher register.
3980 if (Size == 256) {
3981 unsigned Idx = (EltNo > NumElems/2) ? NumElems/2 : 0;
3982 V1 = Extract128BitVector(V1, DAG.getConstant(Idx, MVT::i32), DAG, dl);
3983 if (Idx > 0)
3984 EltNo -= NumElems/2;
3985 }
3986
3987 // Make this 128-bit vector duplicate i8 and i16 elements
3988 if (NumElems > 4)
3989 V1 = PromoteSplatv8v16(V1, DAG, EltNo);
3990
3991 // Recreate the 256-bit vector and place the same 128-bit vector
3992 // into the low and high part. This is necessary because we want
3993 // to use VPERM to shuffle the v8f32 vector, and VPERM only shuffles
3994 // inside each separate v4f32 lane.
3995 if (Size == 256) {
3996 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), V1,
3997 DAG.getConstant(0, MVT::i32), DAG, dl);
3998 V1 = Insert128BitVector(InsV, V1,
3999 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4000 }
4001
4002 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004003}
4004
Evan Chengba05f722006-04-21 23:03:30 +00004005/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004006/// vector of zero or undef vector. This produces a shuffle where the low
4007/// element of V2 is swizzled into the zero/undef vector, landing at element
4008/// 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 +00004009static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00004010 bool isZero, bool HasSSE2,
4011 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004012 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00004013 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00004014 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
4015 unsigned NumElems = VT.getVectorNumElements();
4016 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004017 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004018 // If this is the insertion idx, put the low elt of V2 here.
4019 MaskVec.push_back(i == Idx ? NumElems : i);
4020 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004021}
4022
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004023/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4024/// element of the result of the vector shuffle.
Benjamin Kramer050db522011-03-26 12:38:19 +00004025static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
4026 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004027 if (Depth == 6)
4028 return SDValue(); // Limit search depth.
4029
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004030 SDValue V = SDValue(N, 0);
4031 EVT VT = V.getValueType();
4032 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004033
4034 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4035 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4036 Index = SV->getMaskElt(Index);
4037
4038 if (Index < 0)
4039 return DAG.getUNDEF(VT.getVectorElementType());
4040
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004041 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004042 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004043 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00004044 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004045
4046 // Recurse into target specific vector shuffles to find scalars.
4047 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004048 int NumElems = VT.getVectorNumElements();
4049 SmallVector<unsigned, 16> ShuffleMask;
4050 SDValue ImmN;
4051
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004052 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004053 case X86ISD::SHUFPS:
4054 case X86ISD::SHUFPD:
4055 ImmN = N->getOperand(N->getNumOperands()-1);
4056 DecodeSHUFPSMask(NumElems,
4057 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4058 ShuffleMask);
4059 break;
4060 case X86ISD::PUNPCKHBW:
4061 case X86ISD::PUNPCKHWD:
4062 case X86ISD::PUNPCKHDQ:
4063 case X86ISD::PUNPCKHQDQ:
4064 DecodePUNPCKHMask(NumElems, ShuffleMask);
4065 break;
4066 case X86ISD::UNPCKHPS:
4067 case X86ISD::UNPCKHPD:
4068 DecodeUNPCKHPMask(NumElems, ShuffleMask);
4069 break;
4070 case X86ISD::PUNPCKLBW:
4071 case X86ISD::PUNPCKLWD:
4072 case X86ISD::PUNPCKLDQ:
4073 case X86ISD::PUNPCKLQDQ:
David Greenec4db4e52011-02-28 19:06:56 +00004074 DecodePUNPCKLMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004075 break;
4076 case X86ISD::UNPCKLPS:
4077 case X86ISD::UNPCKLPD:
David Greenec4db4e52011-02-28 19:06:56 +00004078 case X86ISD::VUNPCKLPSY:
4079 case X86ISD::VUNPCKLPDY:
4080 DecodeUNPCKLPMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004081 break;
4082 case X86ISD::MOVHLPS:
4083 DecodeMOVHLPSMask(NumElems, ShuffleMask);
4084 break;
4085 case X86ISD::MOVLHPS:
4086 DecodeMOVLHPSMask(NumElems, ShuffleMask);
4087 break;
4088 case X86ISD::PSHUFD:
4089 ImmN = N->getOperand(N->getNumOperands()-1);
4090 DecodePSHUFMask(NumElems,
4091 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4092 ShuffleMask);
4093 break;
4094 case X86ISD::PSHUFHW:
4095 ImmN = N->getOperand(N->getNumOperands()-1);
4096 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4097 ShuffleMask);
4098 break;
4099 case X86ISD::PSHUFLW:
4100 ImmN = N->getOperand(N->getNumOperands()-1);
4101 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4102 ShuffleMask);
4103 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004104 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004105 case X86ISD::MOVSD: {
4106 // The index 0 always comes from the first element of the second source,
4107 // this is why MOVSS and MOVSD are used in the first place. The other
4108 // elements come from the other positions of the first source vector.
4109 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004110 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
4111 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004112 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004113 case X86ISD::VPERMIL:
4114 ImmN = N->getOperand(N->getNumOperands()-1);
4115 DecodeVPERMILMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4116 ShuffleMask);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004117 default:
4118 assert("not implemented for target shuffle node");
4119 return SDValue();
4120 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004121
4122 Index = ShuffleMask[Index];
4123 if (Index < 0)
4124 return DAG.getUNDEF(VT.getVectorElementType());
4125
4126 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
4127 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
4128 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004129 }
4130
4131 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004132 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004133 V = V.getOperand(0);
4134 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004135 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004136
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004137 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004138 return SDValue();
4139 }
4140
4141 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4142 return (Index == 0) ? V.getOperand(0)
4143 : DAG.getUNDEF(VT.getVectorElementType());
4144
4145 if (V.getOpcode() == ISD::BUILD_VECTOR)
4146 return V.getOperand(Index);
4147
4148 return SDValue();
4149}
4150
4151/// getNumOfConsecutiveZeros - Return the number of elements of a vector
4152/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00004153/// search can start in two different directions, from left or right.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004154static
4155unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
4156 bool ZerosFromLeft, SelectionDAG &DAG) {
4157 int i = 0;
4158
4159 while (i < NumElems) {
4160 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004161 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004162 if (!(Elt.getNode() &&
4163 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4164 break;
4165 ++i;
4166 }
4167
4168 return i;
4169}
4170
4171/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
4172/// MaskE correspond consecutively to elements from one of the vector operands,
4173/// starting from its index OpIdx. Also tell OpNum which source vector operand.
4174static
4175bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
4176 int OpIdx, int NumElems, unsigned &OpNum) {
4177 bool SeenV1 = false;
4178 bool SeenV2 = false;
4179
4180 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
4181 int Idx = SVOp->getMaskElt(i);
4182 // Ignore undef indicies
4183 if (Idx < 0)
4184 continue;
4185
4186 if (Idx < NumElems)
4187 SeenV1 = true;
4188 else
4189 SeenV2 = true;
4190
4191 // Only accept consecutive elements from the same vector
4192 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4193 return false;
4194 }
4195
4196 OpNum = SeenV1 ? 0 : 1;
4197 return true;
4198}
4199
4200/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4201/// logical left shift of a vector.
4202static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4203 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4204 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4205 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4206 false /* check zeros from right */, DAG);
4207 unsigned OpSrc;
4208
4209 if (!NumZeros)
4210 return false;
4211
4212 // Considering the elements in the mask that are not consecutive zeros,
4213 // check if they consecutively come from only one of the source vectors.
4214 //
4215 // V1 = {X, A, B, C} 0
4216 // \ \ \ /
4217 // vector_shuffle V1, V2 <1, 2, 3, X>
4218 //
4219 if (!isShuffleMaskConsecutive(SVOp,
4220 0, // Mask Start Index
4221 NumElems-NumZeros-1, // Mask End Index
4222 NumZeros, // Where to start looking in the src vector
4223 NumElems, // Number of elements in vector
4224 OpSrc)) // Which source operand ?
4225 return false;
4226
4227 isLeft = false;
4228 ShAmt = NumZeros;
4229 ShVal = SVOp->getOperand(OpSrc);
4230 return true;
4231}
4232
4233/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4234/// logical left shift of a vector.
4235static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4236 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4237 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4238 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4239 true /* check zeros from left */, DAG);
4240 unsigned OpSrc;
4241
4242 if (!NumZeros)
4243 return false;
4244
4245 // Considering the elements in the mask that are not consecutive zeros,
4246 // check if they consecutively come from only one of the source vectors.
4247 //
4248 // 0 { A, B, X, X } = V2
4249 // / \ / /
4250 // vector_shuffle V1, V2 <X, X, 4, 5>
4251 //
4252 if (!isShuffleMaskConsecutive(SVOp,
4253 NumZeros, // Mask Start Index
4254 NumElems-1, // Mask End Index
4255 0, // Where to start looking in the src vector
4256 NumElems, // Number of elements in vector
4257 OpSrc)) // Which source operand ?
4258 return false;
4259
4260 isLeft = true;
4261 ShAmt = NumZeros;
4262 ShVal = SVOp->getOperand(OpSrc);
4263 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004264}
4265
4266/// isVectorShift - Returns true if the shuffle can be implemented as a
4267/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004268static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004269 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004270 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4271 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4272 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004273
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004274 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00004275}
4276
Evan Chengc78d3b42006-04-24 18:01:45 +00004277/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4278///
Dan Gohman475871a2008-07-27 21:46:04 +00004279static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00004280 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00004281 SelectionDAG &DAG,
4282 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004283 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00004284 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004285
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004286 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004287 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004288 bool First = true;
4289 for (unsigned i = 0; i < 16; ++i) {
4290 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4291 if (ThisIsNonZero && First) {
4292 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004293 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004294 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004295 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004296 First = false;
4297 }
4298
4299 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00004300 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004301 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4302 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004303 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004304 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00004305 }
4306 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004307 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4308 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4309 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00004310 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004311 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00004312 } else
4313 ThisElt = LastElt;
4314
Gabor Greifba36cb52008-08-28 21:40:38 +00004315 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00004316 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00004317 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00004318 }
4319 }
4320
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004321 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00004322}
4323
Bill Wendlinga348c562007-03-22 18:42:45 +00004324/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00004325///
Dan Gohman475871a2008-07-27 21:46:04 +00004326static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00004327 unsigned NumNonZero, unsigned NumZero,
4328 SelectionDAG &DAG,
4329 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004330 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00004331 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004332
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004333 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004334 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004335 bool First = true;
4336 for (unsigned i = 0; i < 8; ++i) {
4337 bool isNonZero = (NonZeros & (1 << i)) != 0;
4338 if (isNonZero) {
4339 if (First) {
4340 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004341 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004342 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004343 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004344 First = false;
4345 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004346 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004347 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00004348 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00004349 }
4350 }
4351
4352 return V;
4353}
4354
Evan Chengf26ffe92008-05-29 08:22:04 +00004355/// getVShift - Return a vector logical shift node.
4356///
Owen Andersone50ed302009-08-10 22:56:29 +00004357static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00004358 unsigned NumBits, SelectionDAG &DAG,
4359 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004360 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00004361 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004362 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4363 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004364 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00004365 DAG.getConstant(NumBits,
4366 TLI.getShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00004367}
4368
Dan Gohman475871a2008-07-27 21:46:04 +00004369SDValue
Evan Chengc3630942009-12-09 21:00:30 +00004370X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00004371 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00004372
Evan Chengc3630942009-12-09 21:00:30 +00004373 // Check if the scalar load can be widened into a vector load. And if
4374 // the address is "base + cst" see if the cst can be "absorbed" into
4375 // the shuffle mask.
4376 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4377 SDValue Ptr = LD->getBasePtr();
4378 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4379 return SDValue();
4380 EVT PVT = LD->getValueType(0);
4381 if (PVT != MVT::i32 && PVT != MVT::f32)
4382 return SDValue();
4383
4384 int FI = -1;
4385 int64_t Offset = 0;
4386 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4387 FI = FINode->getIndex();
4388 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00004389 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00004390 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4391 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4392 Offset = Ptr.getConstantOperandVal(1);
4393 Ptr = Ptr.getOperand(0);
4394 } else {
4395 return SDValue();
4396 }
4397
4398 SDValue Chain = LD->getChain();
4399 // Make sure the stack object alignment is at least 16.
4400 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4401 if (DAG.InferPtrAlignment(Ptr) < 16) {
4402 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004403 // Can't change the alignment. FIXME: It's possible to compute
4404 // the exact stack offset and reference FI + adjust offset instead.
4405 // If someone *really* cares about this. That's the way to implement it.
4406 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004407 } else {
4408 MFI->setObjectAlignment(FI, 16);
4409 }
4410 }
4411
4412 // (Offset % 16) must be multiple of 4. Then address is then
4413 // Ptr + (Offset & ~15).
4414 if (Offset < 0)
4415 return SDValue();
4416 if ((Offset % 16) & 3)
4417 return SDValue();
4418 int64_t StartOffset = Offset & ~15;
4419 if (StartOffset)
4420 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4421 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4422
4423 int EltNo = (Offset - StartOffset) >> 2;
4424 int Mask[4] = { EltNo, EltNo, EltNo, EltNo };
4425 EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32;
Chris Lattner51abfe42010-09-21 06:02:19 +00004426 SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr,
4427 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004428 false, false, 0);
Evan Chengc3630942009-12-09 21:00:30 +00004429 // Canonicalize it to a v4i32 shuffle.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004430 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V1);
4431 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Chengc3630942009-12-09 21:00:30 +00004432 DAG.getVectorShuffle(MVT::v4i32, dl, V1,
Chris Lattner51abfe42010-09-21 06:02:19 +00004433 DAG.getUNDEF(MVT::v4i32),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004434 }
4435
4436 return SDValue();
4437}
4438
Michael J. Spencerec38de22010-10-10 22:04:20 +00004439/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4440/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004441/// load which has the same value as a build_vector whose operands are 'elts'.
4442///
4443/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004444///
Nate Begeman1449f292010-03-24 22:19:06 +00004445/// FIXME: we'd also like to handle the case where the last elements are zero
4446/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4447/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004448static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004449 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004450 EVT EltVT = VT.getVectorElementType();
4451 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004452
Nate Begemanfdea31a2010-03-24 20:49:50 +00004453 LoadSDNode *LDBase = NULL;
4454 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004455
Nate Begeman1449f292010-03-24 22:19:06 +00004456 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004457 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004458 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004459 for (unsigned i = 0; i < NumElems; ++i) {
4460 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004461
Nate Begemanfdea31a2010-03-24 20:49:50 +00004462 if (!Elt.getNode() ||
4463 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4464 return SDValue();
4465 if (!LDBase) {
4466 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4467 return SDValue();
4468 LDBase = cast<LoadSDNode>(Elt.getNode());
4469 LastLoadedElt = i;
4470 continue;
4471 }
4472 if (Elt.getOpcode() == ISD::UNDEF)
4473 continue;
4474
4475 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4476 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4477 return SDValue();
4478 LastLoadedElt = i;
4479 }
Nate Begeman1449f292010-03-24 22:19:06 +00004480
4481 // If we have found an entire vector of loads and undefs, then return a large
4482 // load of the entire vector width starting at the base pointer. If we found
4483 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004484 if (LastLoadedElt == NumElems - 1) {
4485 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004486 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004487 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004488 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004489 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004490 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004491 LDBase->isVolatile(), LDBase->isNonTemporal(),
4492 LDBase->getAlignment());
4493 } else if (NumElems == 4 && LastLoadedElt == 1) {
4494 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4495 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004496 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4497 Ops, 2, MVT::i32,
4498 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004499 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004500 }
4501 return SDValue();
4502}
4503
Evan Chengc3630942009-12-09 21:00:30 +00004504SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004505X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004506 DebugLoc dl = Op.getDebugLoc();
David Greenea5f26012011-02-07 19:36:54 +00004507
David Greenef125a292011-02-08 19:04:41 +00004508 EVT VT = Op.getValueType();
4509 EVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00004510 unsigned NumElems = Op.getNumOperands();
4511
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004512 // All zero's:
4513 // - pxor (SSE2), xorps (SSE1), vpxor (128 AVX), xorp[s|d] (256 AVX)
4514 // All one's:
4515 // - pcmpeqd (SSE2 and 128 AVX), fallback to constant pools (256 AVX)
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004516 if (ISD::isBuildVectorAllZeros(Op.getNode()) ||
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004517 ISD::isBuildVectorAllOnes(Op.getNode())) {
4518 // Canonicalize this to <4 x i32> or <8 x 32> (SSE) to
Chris Lattner8a594482007-11-25 00:24:49 +00004519 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
4520 // eliminated on x86-32 hosts.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004521 if (Op.getValueType() == MVT::v4i32 ||
4522 Op.getValueType() == MVT::v8i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004523 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004524
Gabor Greifba36cb52008-08-28 21:40:38 +00004525 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004526 return getOnesVector(Op.getValueType(), DAG, dl);
4527 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004528 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004529
Owen Andersone50ed302009-08-10 22:56:29 +00004530 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004531
Evan Cheng0db9fe62006-04-25 20:13:52 +00004532 unsigned NumZero = 0;
4533 unsigned NumNonZero = 0;
4534 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004535 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004536 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004537 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004538 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004539 if (Elt.getOpcode() == ISD::UNDEF)
4540 continue;
4541 Values.insert(Elt);
4542 if (Elt.getOpcode() != ISD::Constant &&
4543 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004544 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004545 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004546 NumZero++;
4547 else {
4548 NonZeros |= (1 << i);
4549 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004550 }
4551 }
4552
Chris Lattner97a2a562010-08-26 05:24:29 +00004553 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4554 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004555 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004556
Chris Lattner67f453a2008-03-09 05:42:06 +00004557 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004558 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004559 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004560 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004561
Chris Lattner62098042008-03-09 01:05:04 +00004562 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4563 // the value are obviously zero, truncate the value to i32 and do the
4564 // insertion that way. Only do this if the value is non-constant or if the
4565 // value is a constant being inserted into element 0. It is cheaper to do
4566 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004567 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004568 (!IsAllConstants || Idx == 0)) {
4569 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004570 // Handle SSE only.
4571 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4572 EVT VecVT = MVT::v4i32;
4573 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004574
Chris Lattner62098042008-03-09 01:05:04 +00004575 // Truncate the value (which may itself be a constant) to i32, and
4576 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004577 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004578 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004579 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4580 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004581
Chris Lattner62098042008-03-09 01:05:04 +00004582 // Now we have our 32-bit value zero extended in the low element of
4583 // a vector. If Idx != 0, swizzle it into place.
4584 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004585 SmallVector<int, 4> Mask;
4586 Mask.push_back(Idx);
4587 for (unsigned i = 1; i != VecElts; ++i)
4588 Mask.push_back(i);
4589 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004590 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004591 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004592 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004593 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004594 }
4595 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004596
Chris Lattner19f79692008-03-08 22:59:52 +00004597 // If we have a constant or non-constant insertion into the low element of
4598 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4599 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004600 // depending on what the source datatype is.
4601 if (Idx == 0) {
4602 if (NumZero == 0) {
4603 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004604 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4605 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004606 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4607 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4608 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4609 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004610 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4611 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004612 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4613 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004614 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4615 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4616 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004617 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00004618 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004619 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004620
4621 // Is it a vector logical left shift?
4622 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004623 X86::isZeroNode(Op.getOperand(0)) &&
4624 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004625 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004626 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004627 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004628 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004629 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004630 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004631
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004632 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004633 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004634
Chris Lattner19f79692008-03-08 22:59:52 +00004635 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4636 // is a non-constant being inserted into an element other than the low one,
4637 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4638 // movd/movss) to move this into the low element, then shuffle it into
4639 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004640 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004641 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004642
Evan Cheng0db9fe62006-04-25 20:13:52 +00004643 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004644 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4645 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004646 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004647 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004648 MaskVec.push_back(i == Idx ? 0 : 1);
4649 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004650 }
4651 }
4652
Chris Lattner67f453a2008-03-09 05:42:06 +00004653 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004654 if (Values.size() == 1) {
4655 if (EVTBits == 32) {
4656 // Instead of a shuffle like this:
4657 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4658 // Check if it's possible to issue this instead.
4659 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4660 unsigned Idx = CountTrailingZeros_32(NonZeros);
4661 SDValue Item = Op.getOperand(Idx);
4662 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4663 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4664 }
Dan Gohman475871a2008-07-27 21:46:04 +00004665 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004666 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004667
Dan Gohmana3941172007-07-24 22:55:08 +00004668 // A vector full of immediates; various special cases are already
4669 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004670 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004671 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004672
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00004673 // For AVX-length vectors, build the individual 128-bit pieces and use
4674 // shuffles to put them in place.
4675 if (VT.getSizeInBits() == 256 && !ISD::isBuildVectorAllZeros(Op.getNode())) {
4676 SmallVector<SDValue, 32> V;
4677 for (unsigned i = 0; i < NumElems; ++i)
4678 V.push_back(Op.getOperand(i));
4679
4680 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
4681
4682 // Build both the lower and upper subvector.
4683 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
4684 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
4685 NumElems/2);
4686
4687 // Recreate the wider vector with the lower and upper part.
4688 SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Upper,
4689 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4690 return Insert128BitVector(Vec, Lower, DAG.getConstant(0, MVT::i32),
4691 DAG, dl);
4692 }
4693
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004694 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004695 if (EVTBits == 64) {
4696 if (NumNonZero == 1) {
4697 // One half is zero or undef.
4698 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004699 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004700 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004701 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4702 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004703 }
Dan Gohman475871a2008-07-27 21:46:04 +00004704 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004705 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004706
4707 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004708 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004709 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004710 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004711 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004712 }
4713
Bill Wendling826f36f2007-03-28 00:57:11 +00004714 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004715 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004716 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004717 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004718 }
4719
4720 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004721 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004722 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004723 if (NumElems == 4 && NumZero > 0) {
4724 for (unsigned i = 0; i < 4; ++i) {
4725 bool isZero = !(NonZeros & (1 << i));
4726 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004727 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004728 else
Dale Johannesenace16102009-02-03 19:33:06 +00004729 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004730 }
4731
4732 for (unsigned i = 0; i < 2; ++i) {
4733 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4734 default: break;
4735 case 0:
4736 V[i] = V[i*2]; // Must be a zero vector.
4737 break;
4738 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004739 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004740 break;
4741 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004742 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004743 break;
4744 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004745 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004746 break;
4747 }
4748 }
4749
Nate Begeman9008ca62009-04-27 18:41:29 +00004750 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004751 bool Reverse = (NonZeros & 0x3) == 2;
4752 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004753 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004754 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4755 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004756 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4757 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004758 }
4759
Nate Begemanfdea31a2010-03-24 20:49:50 +00004760 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4761 // Check for a build vector of consecutive loads.
4762 for (unsigned i = 0; i < NumElems; ++i)
4763 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004764
Nate Begemanfdea31a2010-03-24 20:49:50 +00004765 // Check for elements which are consecutive loads.
4766 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4767 if (LD.getNode())
4768 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004769
4770 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004771 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004772 SDValue Result;
4773 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4774 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4775 else
4776 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004777
Chris Lattner24faf612010-08-28 17:59:08 +00004778 for (unsigned i = 1; i < NumElems; ++i) {
4779 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4780 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004781 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004782 }
4783 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004784 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004785
Chris Lattner6e80e442010-08-28 17:15:43 +00004786 // Otherwise, expand into a number of unpckl*, start by extending each of
4787 // our (non-undef) elements to the full vector width with the element in the
4788 // bottom slot of the vector (which generates no code for SSE).
4789 for (unsigned i = 0; i < NumElems; ++i) {
4790 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4791 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4792 else
4793 V[i] = DAG.getUNDEF(VT);
4794 }
4795
4796 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004797 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4798 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4799 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00004800 unsigned EltStride = NumElems >> 1;
4801 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00004802 for (unsigned i = 0; i < EltStride; ++i) {
4803 // If V[i+EltStride] is undef and this is the first round of mixing,
4804 // then it is safe to just drop this shuffle: V[i] is already in the
4805 // right place, the one element (since it's the first round) being
4806 // inserted as undef can be dropped. This isn't safe for successive
4807 // rounds because they will permute elements within both vectors.
4808 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
4809 EltStride == NumElems/2)
4810 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004811
Chris Lattner6e80e442010-08-28 17:15:43 +00004812 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00004813 }
Chris Lattner6e80e442010-08-28 17:15:43 +00004814 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004815 }
4816 return V[0];
4817 }
Dan Gohman475871a2008-07-27 21:46:04 +00004818 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004819}
4820
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004821SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004822X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004823 // We support concatenate two MMX registers and place them in a MMX
4824 // register. This is better than doing a stack convert.
4825 DebugLoc dl = Op.getDebugLoc();
4826 EVT ResVT = Op.getValueType();
4827 assert(Op.getNumOperands() == 2);
4828 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
4829 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
4830 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004831 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004832 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4833 InVec = Op.getOperand(1);
4834 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4835 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004836 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004837 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
4838 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
4839 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004840 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004841 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4842 Mask[0] = 0; Mask[1] = 2;
4843 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
4844 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004845 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004846}
4847
Nate Begemanb9a47b82009-02-23 08:49:38 +00004848// v8i16 shuffles - Prefer shuffles in the following order:
4849// 1. [all] pshuflw, pshufhw, optional move
4850// 2. [ssse3] 1 x pshufb
4851// 3. [ssse3] 2 x pshufb + 1 x por
4852// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004853SDValue
4854X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
4855 SelectionDAG &DAG) const {
4856 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00004857 SDValue V1 = SVOp->getOperand(0);
4858 SDValue V2 = SVOp->getOperand(1);
4859 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004860 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00004861
Nate Begemanb9a47b82009-02-23 08:49:38 +00004862 // Determine if more than 1 of the words in each of the low and high quadwords
4863 // of the result come from the same quadword of one of the two inputs. Undef
4864 // mask values count as coming from any quadword, for better codegen.
4865 SmallVector<unsigned, 4> LoQuad(4);
4866 SmallVector<unsigned, 4> HiQuad(4);
4867 BitVector InputQuads(4);
4868 for (unsigned i = 0; i < 8; ++i) {
4869 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00004870 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004871 MaskVals.push_back(EltIdx);
4872 if (EltIdx < 0) {
4873 ++Quad[0];
4874 ++Quad[1];
4875 ++Quad[2];
4876 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00004877 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004878 }
4879 ++Quad[EltIdx / 4];
4880 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00004881 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004882
Nate Begemanb9a47b82009-02-23 08:49:38 +00004883 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004884 unsigned MaxQuad = 1;
4885 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004886 if (LoQuad[i] > MaxQuad) {
4887 BestLoQuad = i;
4888 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004889 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004890 }
4891
Nate Begemanb9a47b82009-02-23 08:49:38 +00004892 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004893 MaxQuad = 1;
4894 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004895 if (HiQuad[i] > MaxQuad) {
4896 BestHiQuad = i;
4897 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004898 }
4899 }
4900
Nate Begemanb9a47b82009-02-23 08:49:38 +00004901 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00004902 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00004903 // single pshufb instruction is necessary. If There are more than 2 input
4904 // quads, disable the next transformation since it does not help SSSE3.
4905 bool V1Used = InputQuads[0] || InputQuads[1];
4906 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004907 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004908 if (InputQuads.count() == 2 && V1Used && V2Used) {
4909 BestLoQuad = InputQuads.find_first();
4910 BestHiQuad = InputQuads.find_next(BestLoQuad);
4911 }
4912 if (InputQuads.count() > 2) {
4913 BestLoQuad = -1;
4914 BestHiQuad = -1;
4915 }
4916 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004917
Nate Begemanb9a47b82009-02-23 08:49:38 +00004918 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
4919 // the shuffle mask. If a quad is scored as -1, that means that it contains
4920 // words from all 4 input quadwords.
4921 SDValue NewV;
4922 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004923 SmallVector<int, 8> MaskV;
4924 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
4925 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00004926 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004927 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
4928 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
4929 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004930
Nate Begemanb9a47b82009-02-23 08:49:38 +00004931 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
4932 // source words for the shuffle, to aid later transformations.
4933 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00004934 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00004935 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004936 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00004937 if (idx != (int)i)
4938 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004939 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00004940 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004941 AllWordsInNewV = false;
4942 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00004943 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004944
Nate Begemanb9a47b82009-02-23 08:49:38 +00004945 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
4946 if (AllWordsInNewV) {
4947 for (int i = 0; i != 8; ++i) {
4948 int idx = MaskVals[i];
4949 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004950 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004951 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004952 if ((idx != i) && idx < 4)
4953 pshufhw = false;
4954 if ((idx != i) && idx > 3)
4955 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00004956 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00004957 V1 = NewV;
4958 V2Used = false;
4959 BestLoQuad = 0;
4960 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004961 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004962
Nate Begemanb9a47b82009-02-23 08:49:38 +00004963 // If we've eliminated the use of V2, and the new mask is a pshuflw or
4964 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00004965 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004966 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
4967 unsigned TargetMask = 0;
4968 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00004969 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004970 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
4971 X86::getShufflePSHUFLWImmediate(NewV.getNode());
4972 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004973 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00004974 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004975 }
Eric Christopherfd179292009-08-27 18:07:15 +00004976
Nate Begemanb9a47b82009-02-23 08:49:38 +00004977 // If we have SSSE3, and all words of the result are from 1 input vector,
4978 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
4979 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004980 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004981 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004982
Nate Begemanb9a47b82009-02-23 08:49:38 +00004983 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00004984 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00004985 // mask, and elements that come from V1 in the V2 mask, so that the two
4986 // results can be OR'd together.
4987 bool TwoInputs = V1Used && V2Used;
4988 for (unsigned i = 0; i != 8; ++i) {
4989 int EltIdx = MaskVals[i] * 2;
4990 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004991 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4992 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004993 continue;
4994 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004995 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
4996 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004997 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004998 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004999 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005000 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005001 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005002 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005003 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005004
Nate Begemanb9a47b82009-02-23 08:49:38 +00005005 // Calculate the shuffle mask for the second input, shuffle it, and
5006 // OR it with the first shuffled input.
5007 pshufbMask.clear();
5008 for (unsigned i = 0; i != 8; ++i) {
5009 int EltIdx = MaskVals[i] * 2;
5010 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005011 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5012 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005013 continue;
5014 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005015 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
5016 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005017 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005018 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00005019 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005020 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005021 MVT::v16i8, &pshufbMask[0], 16));
5022 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005023 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005024 }
5025
5026 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5027 // and update MaskVals with new element order.
5028 BitVector InOrder(8);
5029 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005030 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005031 for (int i = 0; i != 4; ++i) {
5032 int idx = MaskVals[i];
5033 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005034 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005035 InOrder.set(i);
5036 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005037 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005038 InOrder.set(i);
5039 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005040 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005041 }
5042 }
5043 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005044 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00005045 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005046 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005047
5048 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5049 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
5050 NewV.getOperand(0),
5051 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
5052 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005053 }
Eric Christopherfd179292009-08-27 18:07:15 +00005054
Nate Begemanb9a47b82009-02-23 08:49:38 +00005055 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5056 // and update MaskVals with the new element order.
5057 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005058 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005059 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005060 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005061 for (unsigned i = 4; i != 8; ++i) {
5062 int idx = MaskVals[i];
5063 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005064 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005065 InOrder.set(i);
5066 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005067 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005068 InOrder.set(i);
5069 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005070 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005071 }
5072 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005073 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005074 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005075
5076 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5077 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5078 NewV.getOperand(0),
5079 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
5080 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005081 }
Eric Christopherfd179292009-08-27 18:07:15 +00005082
Nate Begemanb9a47b82009-02-23 08:49:38 +00005083 // In case BestHi & BestLo were both -1, which means each quadword has a word
5084 // from each of the four input quadwords, calculate the InOrder bitvector now
5085 // before falling through to the insert/extract cleanup.
5086 if (BestLoQuad == -1 && BestHiQuad == -1) {
5087 NewV = V1;
5088 for (int i = 0; i != 8; ++i)
5089 if (MaskVals[i] < 0 || MaskVals[i] == i)
5090 InOrder.set(i);
5091 }
Eric Christopherfd179292009-08-27 18:07:15 +00005092
Nate Begemanb9a47b82009-02-23 08:49:38 +00005093 // The other elements are put in the right place using pextrw and pinsrw.
5094 for (unsigned i = 0; i != 8; ++i) {
5095 if (InOrder[i])
5096 continue;
5097 int EltIdx = MaskVals[i];
5098 if (EltIdx < 0)
5099 continue;
5100 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005101 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005102 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00005103 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005104 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00005105 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005106 DAG.getIntPtrConstant(i));
5107 }
5108 return NewV;
5109}
5110
5111// v16i8 shuffles - Prefer shuffles in the following order:
5112// 1. [ssse3] 1 x pshufb
5113// 2. [ssse3] 2 x pshufb + 1 x por
5114// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
5115static
Nate Begeman9008ca62009-04-27 18:41:29 +00005116SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00005117 SelectionDAG &DAG,
5118 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005119 SDValue V1 = SVOp->getOperand(0);
5120 SDValue V2 = SVOp->getOperand(1);
5121 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005122 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00005123 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00005124
Nate Begemanb9a47b82009-02-23 08:49:38 +00005125 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00005126 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00005127 // present, fall back to case 3.
5128 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
5129 bool V1Only = true;
5130 bool V2Only = true;
5131 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005132 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00005133 if (EltIdx < 0)
5134 continue;
5135 if (EltIdx < 16)
5136 V2Only = false;
5137 else
5138 V1Only = false;
5139 }
Eric Christopherfd179292009-08-27 18:07:15 +00005140
Nate Begemanb9a47b82009-02-23 08:49:38 +00005141 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
5142 if (TLI.getSubtarget()->hasSSSE3()) {
5143 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005144
Nate Begemanb9a47b82009-02-23 08:49:38 +00005145 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00005146 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005147 //
5148 // Otherwise, we have elements from both input vectors, and must zero out
5149 // elements that come from V2 in the first mask, and V1 in the second mask
5150 // so that we can OR them together.
5151 bool TwoInputs = !(V1Only || V2Only);
5152 for (unsigned i = 0; i != 16; ++i) {
5153 int EltIdx = MaskVals[i];
5154 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005155 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005156 continue;
5157 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005158 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005159 }
5160 // If all the elements are from V2, assign it to V1 and return after
5161 // building the first pshufb.
5162 if (V2Only)
5163 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00005164 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005165 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005166 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005167 if (!TwoInputs)
5168 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00005169
Nate Begemanb9a47b82009-02-23 08:49:38 +00005170 // Calculate the shuffle mask for the second input, shuffle it, and
5171 // OR it with the first shuffled input.
5172 pshufbMask.clear();
5173 for (unsigned i = 0; i != 16; ++i) {
5174 int EltIdx = MaskVals[i];
5175 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005176 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005177 continue;
5178 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005179 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005180 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005181 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005182 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005183 MVT::v16i8, &pshufbMask[0], 16));
5184 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005185 }
Eric Christopherfd179292009-08-27 18:07:15 +00005186
Nate Begemanb9a47b82009-02-23 08:49:38 +00005187 // No SSSE3 - Calculate in place words and then fix all out of place words
5188 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
5189 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005190 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5191 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005192 SDValue NewV = V2Only ? V2 : V1;
5193 for (int i = 0; i != 8; ++i) {
5194 int Elt0 = MaskVals[i*2];
5195 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00005196
Nate Begemanb9a47b82009-02-23 08:49:38 +00005197 // This word of the result is all undef, skip it.
5198 if (Elt0 < 0 && Elt1 < 0)
5199 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005200
Nate Begemanb9a47b82009-02-23 08:49:38 +00005201 // This word of the result is already in the correct place, skip it.
5202 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5203 continue;
5204 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
5205 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005206
Nate Begemanb9a47b82009-02-23 08:49:38 +00005207 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5208 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5209 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00005210
5211 // If Elt0 and Elt1 are defined, are consecutive, and can be load
5212 // using a single extract together, load it and store it.
5213 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005214 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005215 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00005216 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005217 DAG.getIntPtrConstant(i));
5218 continue;
5219 }
5220
Nate Begemanb9a47b82009-02-23 08:49:38 +00005221 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00005222 // source byte is not also odd, shift the extracted word left 8 bits
5223 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005224 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005225 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005226 DAG.getIntPtrConstant(Elt1 / 2));
5227 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005228 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00005229 DAG.getConstant(8,
5230 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005231 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005232 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5233 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005234 }
5235 // If Elt0 is defined, extract it from the appropriate source. If the
5236 // source byte is not also even, shift the extracted word right 8 bits. If
5237 // Elt1 was also defined, OR the extracted values together before
5238 // inserting them in the result.
5239 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005240 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005241 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5242 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005243 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00005244 DAG.getConstant(8,
5245 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005246 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005247 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5248 DAG.getConstant(0x00FF, MVT::i16));
5249 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00005250 : InsElt0;
5251 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005252 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005253 DAG.getIntPtrConstant(i));
5254 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005255 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005256}
5257
Evan Cheng7a831ce2007-12-15 03:00:47 +00005258/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005259/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00005260/// done when every pair / quad of shuffle mask elements point to elements in
5261/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005262/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00005263static
Nate Begeman9008ca62009-04-27 18:41:29 +00005264SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005265 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00005266 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00005267 SDValue V1 = SVOp->getOperand(0);
5268 SDValue V2 = SVOp->getOperand(1);
5269 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00005270 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005271 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00005272 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005273 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00005274 case MVT::v4f32: NewVT = MVT::v2f64; break;
5275 case MVT::v4i32: NewVT = MVT::v2i64; break;
5276 case MVT::v8i16: NewVT = MVT::v4i32; break;
5277 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00005278 }
5279
Nate Begeman9008ca62009-04-27 18:41:29 +00005280 int Scale = NumElems / NewWidth;
5281 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00005282 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005283 int StartIdx = -1;
5284 for (int j = 0; j < Scale; ++j) {
5285 int EltIdx = SVOp->getMaskElt(i+j);
5286 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005287 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00005288 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00005289 StartIdx = EltIdx - (EltIdx % Scale);
5290 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00005291 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005292 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005293 if (StartIdx == -1)
5294 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00005295 else
Nate Begeman9008ca62009-04-27 18:41:29 +00005296 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005297 }
5298
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005299 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
5300 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005301 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005302}
5303
Evan Chengd880b972008-05-09 21:53:03 +00005304/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005305///
Owen Andersone50ed302009-08-10 22:56:29 +00005306static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00005307 SDValue SrcOp, SelectionDAG &DAG,
5308 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005309 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005310 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00005311 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00005312 LD = dyn_cast<LoadSDNode>(SrcOp);
5313 if (!LD) {
5314 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
5315 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00005316 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00005317 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00005318 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005319 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00005320 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005321 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00005322 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005323 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005324 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5325 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5326 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00005327 SrcOp.getOperand(0)
5328 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005329 }
5330 }
5331 }
5332
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005333 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005334 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005335 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00005336 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005337}
5338
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005339/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
5340/// which could not be matched by any known target speficic shuffle
5341static SDValue
5342LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
5343 return SDValue();
5344}
5345
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005346/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
5347/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00005348static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005349LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005350 SDValue V1 = SVOp->getOperand(0);
5351 SDValue V2 = SVOp->getOperand(1);
5352 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00005353 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00005354
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005355 assert(VT.getSizeInBits() == 128 && "Unsupported vector size");
5356
Evan Chengace3c172008-07-22 21:13:36 +00005357 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00005358 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005359 SmallVector<int, 8> Mask1(4U, -1);
5360 SmallVector<int, 8> PermMask;
5361 SVOp->getMask(PermMask);
5362
Evan Chengace3c172008-07-22 21:13:36 +00005363 unsigned NumHi = 0;
5364 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00005365 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005366 int Idx = PermMask[i];
5367 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005368 Locs[i] = std::make_pair(-1, -1);
5369 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005370 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
5371 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005372 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00005373 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005374 NumLo++;
5375 } else {
5376 Locs[i] = std::make_pair(1, NumHi);
5377 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005378 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005379 NumHi++;
5380 }
5381 }
5382 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005383
Evan Chengace3c172008-07-22 21:13:36 +00005384 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005385 // If no more than two elements come from either vector. This can be
5386 // implemented with two shuffles. First shuffle gather the elements.
5387 // The second shuffle, which takes the first shuffle as both of its
5388 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00005389 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005390
Nate Begeman9008ca62009-04-27 18:41:29 +00005391 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00005392
Evan Chengace3c172008-07-22 21:13:36 +00005393 for (unsigned i = 0; i != 4; ++i) {
5394 if (Locs[i].first == -1)
5395 continue;
5396 else {
5397 unsigned Idx = (i < 2) ? 0 : 4;
5398 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005399 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005400 }
5401 }
5402
Nate Begeman9008ca62009-04-27 18:41:29 +00005403 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005404 } else if (NumLo == 3 || NumHi == 3) {
5405 // Otherwise, we must have three elements from one vector, call it X, and
5406 // one element from the other, call it Y. First, use a shufps to build an
5407 // intermediate vector with the one element from Y and the element from X
5408 // that will be in the same half in the final destination (the indexes don't
5409 // matter). Then, use a shufps to build the final vector, taking the half
5410 // containing the element from Y from the intermediate, and the other half
5411 // from X.
5412 if (NumHi == 3) {
5413 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00005414 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005415 std::swap(V1, V2);
5416 }
5417
5418 // Find the element from V2.
5419 unsigned HiIndex;
5420 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005421 int Val = PermMask[HiIndex];
5422 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005423 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005424 if (Val >= 4)
5425 break;
5426 }
5427
Nate Begeman9008ca62009-04-27 18:41:29 +00005428 Mask1[0] = PermMask[HiIndex];
5429 Mask1[1] = -1;
5430 Mask1[2] = PermMask[HiIndex^1];
5431 Mask1[3] = -1;
5432 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005433
5434 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005435 Mask1[0] = PermMask[0];
5436 Mask1[1] = PermMask[1];
5437 Mask1[2] = HiIndex & 1 ? 6 : 4;
5438 Mask1[3] = HiIndex & 1 ? 4 : 6;
5439 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005440 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005441 Mask1[0] = HiIndex & 1 ? 2 : 0;
5442 Mask1[1] = HiIndex & 1 ? 0 : 2;
5443 Mask1[2] = PermMask[2];
5444 Mask1[3] = PermMask[3];
5445 if (Mask1[2] >= 0)
5446 Mask1[2] += 4;
5447 if (Mask1[3] >= 0)
5448 Mask1[3] += 4;
5449 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005450 }
Evan Chengace3c172008-07-22 21:13:36 +00005451 }
5452
5453 // Break it into (shuffle shuffle_hi, shuffle_lo).
5454 Locs.clear();
David Greenec4db4e52011-02-28 19:06:56 +00005455 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00005456 SmallVector<int,8> LoMask(4U, -1);
5457 SmallVector<int,8> HiMask(4U, -1);
5458
5459 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005460 unsigned MaskIdx = 0;
5461 unsigned LoIdx = 0;
5462 unsigned HiIdx = 2;
5463 for (unsigned i = 0; i != 4; ++i) {
5464 if (i == 2) {
5465 MaskPtr = &HiMask;
5466 MaskIdx = 1;
5467 LoIdx = 0;
5468 HiIdx = 2;
5469 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005470 int Idx = PermMask[i];
5471 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005472 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005473 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005474 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005475 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005476 LoIdx++;
5477 } else {
5478 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005479 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005480 HiIdx++;
5481 }
5482 }
5483
Nate Begeman9008ca62009-04-27 18:41:29 +00005484 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5485 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5486 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005487 for (unsigned i = 0; i != 4; ++i) {
5488 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005489 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005490 } else {
5491 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005492 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005493 }
5494 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005495 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005496}
5497
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005498static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005499 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005500 V = V.getOperand(0);
5501 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5502 V = V.getOperand(0);
5503 if (MayFoldLoad(V))
5504 return true;
5505 return false;
5506}
5507
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005508// FIXME: the version above should always be used. Since there's
5509// a bug where several vector shuffles can't be folded because the
5510// DAG is not updated during lowering and a node claims to have two
5511// uses while it only has one, use this version, and let isel match
5512// another instruction if the load really happens to have more than
5513// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005514// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005515static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005516 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005517 V = V.getOperand(0);
5518 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5519 V = V.getOperand(0);
5520 if (ISD::isNormalLoad(V.getNode()))
5521 return true;
5522 return false;
5523}
5524
5525/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5526/// a vector extract, and if both can be later optimized into a single load.
5527/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5528/// here because otherwise a target specific shuffle node is going to be
5529/// emitted for this shuffle, and the optimization not done.
5530/// FIXME: This is probably not the best approach, but fix the problem
5531/// until the right path is decided.
5532static
5533bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5534 const TargetLowering &TLI) {
5535 EVT VT = V.getValueType();
5536 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5537
5538 // Be sure that the vector shuffle is present in a pattern like this:
5539 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5540 if (!V.hasOneUse())
5541 return false;
5542
5543 SDNode *N = *V.getNode()->use_begin();
5544 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5545 return false;
5546
5547 SDValue EltNo = N->getOperand(1);
5548 if (!isa<ConstantSDNode>(EltNo))
5549 return false;
5550
5551 // If the bit convert changed the number of elements, it is unsafe
5552 // to examine the mask.
5553 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005554 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005555 EVT SrcVT = V.getOperand(0).getValueType();
5556 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5557 return false;
5558 V = V.getOperand(0);
5559 HasShuffleIntoBitcast = true;
5560 }
5561
5562 // Select the input vector, guarding against out of range extract vector.
5563 unsigned NumElems = VT.getVectorNumElements();
5564 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5565 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5566 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5567
5568 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005569 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005570 V = V.getOperand(0);
5571
5572 if (ISD::isNormalLoad(V.getNode())) {
5573 // Is the original load suitable?
5574 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5575
5576 // FIXME: avoid the multi-use bug that is preventing lots of
5577 // of foldings to be detected, this is still wrong of course, but
5578 // give the temporary desired behavior, and if it happens that
5579 // the load has real more uses, during isel it will not fold, and
5580 // will generate poor code.
5581 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5582 return false;
5583
5584 if (!HasShuffleIntoBitcast)
5585 return true;
5586
5587 // If there's a bitcast before the shuffle, check if the load type and
5588 // alignment is valid.
5589 unsigned Align = LN0->getAlignment();
5590 unsigned NewAlign =
5591 TLI.getTargetData()->getABITypeAlignment(
5592 VT.getTypeForEVT(*DAG.getContext()));
5593
5594 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5595 return false;
5596 }
5597
5598 return true;
5599}
5600
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005601static
Evan Cheng835580f2010-10-07 20:50:20 +00005602SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5603 EVT VT = Op.getValueType();
5604
5605 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005606 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
5607 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00005608 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5609 V1, DAG));
5610}
5611
5612static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005613SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5614 bool HasSSE2) {
5615 SDValue V1 = Op.getOperand(0);
5616 SDValue V2 = Op.getOperand(1);
5617 EVT VT = Op.getValueType();
5618
5619 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5620
5621 if (HasSSE2 && VT == MVT::v2f64)
5622 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5623
5624 // v4f32 or v4i32
5625 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5626}
5627
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005628static
5629SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5630 SDValue V1 = Op.getOperand(0);
5631 SDValue V2 = Op.getOperand(1);
5632 EVT VT = Op.getValueType();
5633
5634 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5635 "unsupported shuffle type");
5636
5637 if (V2.getOpcode() == ISD::UNDEF)
5638 V2 = V1;
5639
5640 // v4i32 or v4f32
5641 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5642}
5643
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005644static
5645SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5646 SDValue V1 = Op.getOperand(0);
5647 SDValue V2 = Op.getOperand(1);
5648 EVT VT = Op.getValueType();
5649 unsigned NumElems = VT.getVectorNumElements();
5650
5651 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5652 // operand of these instructions is only memory, so check if there's a
5653 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5654 // same masks.
5655 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005656
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005657 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005658 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005659 CanFoldLoad = true;
5660
5661 // When V1 is a load, it can be folded later into a store in isel, example:
5662 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5663 // turns into:
5664 // (MOVLPSmr addr:$src1, VR128:$src2)
5665 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005666 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005667 CanFoldLoad = true;
5668
Eric Christopher893a8822011-02-20 05:04:42 +00005669 // Both of them can't be memory operations though.
5670 if (MayFoldVectorLoad(V1) && MayFoldVectorLoad(V2))
5671 CanFoldLoad = false;
Owen Anderson95771af2011-02-25 21:41:48 +00005672
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005673 if (CanFoldLoad) {
5674 if (HasSSE2 && NumElems == 2)
5675 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5676
5677 if (NumElems == 4)
5678 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5679 }
5680
5681 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5682 // movl and movlp will both match v2i64, but v2i64 is never matched by
5683 // movl earlier because we make it strict to avoid messing with the movlp load
5684 // folding logic (see the code above getMOVLP call). Match it here then,
5685 // this is horrible, but will stay like this until we move all shuffle
5686 // matching to x86 specific nodes. Note that for the 1st condition all
5687 // types are matched with movsd.
5688 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5689 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5690 else if (HasSSE2)
5691 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5692
5693
5694 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5695
5696 // Invert the operand order and use SHUFPS to match it.
5697 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5698 X86::getShuffleSHUFImmediate(SVOp), DAG);
5699}
5700
David Greenec4db4e52011-02-28 19:06:56 +00005701static inline unsigned getUNPCKLOpcode(EVT VT, const X86Subtarget *Subtarget) {
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005702 switch(VT.getSimpleVT().SimpleTy) {
5703 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5704 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005705 case MVT::v4f32: return X86ISD::UNPCKLPS;
5706 case MVT::v2f64: return X86ISD::UNPCKLPD;
David Greenec4db4e52011-02-28 19:06:56 +00005707 case MVT::v8f32: return X86ISD::VUNPCKLPSY;
5708 case MVT::v4f64: return X86ISD::VUNPCKLPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005709 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5710 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5711 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00005712 llvm_unreachable("Unknown type for unpckl");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005713 }
5714 return 0;
5715}
5716
5717static inline unsigned getUNPCKHOpcode(EVT VT) {
5718 switch(VT.getSimpleVT().SimpleTy) {
5719 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5720 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5721 case MVT::v4f32: return X86ISD::UNPCKHPS;
5722 case MVT::v2f64: return X86ISD::UNPCKHPD;
5723 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5724 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5725 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00005726 llvm_unreachable("Unknown type for unpckh");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005727 }
5728 return 0;
5729}
5730
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005731static
5732SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005733 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005734 const X86Subtarget *Subtarget) {
5735 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5736 EVT VT = Op.getValueType();
5737 DebugLoc dl = Op.getDebugLoc();
5738 SDValue V1 = Op.getOperand(0);
5739 SDValue V2 = Op.getOperand(1);
5740
5741 if (isZeroShuffle(SVOp))
5742 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
5743
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005744 // Handle splat operations
5745 if (SVOp->isSplat()) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00005746 unsigned NumElem = VT.getVectorNumElements();
5747 // Special case, this is the only place now where it's allowed to return
5748 // a vector_shuffle operation without using a target specific node, because
5749 // *hopefully* it will be optimized away by the dag combiner. FIXME: should
5750 // this be moved to DAGCombine instead?
5751 if (NumElem <= 4 && CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005752 return Op;
5753
5754 // Handle splats by matching through known masks
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00005755 if ((VT.is128BitVector() && NumElem <= 4) ||
5756 (VT.is256BitVector() && NumElem <= 8))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005757 return SDValue();
5758
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00005759 // All i16 and i8 vector types can't be used directly by a generic shuffle
5760 // instruction because the target has no such instruction. Generate shuffles
5761 // which repeat i16 and i8 several times until they fit in i32, and then can
5762 // be manipulated by target suported shuffles. After the insertion of the
5763 // necessary shuffles, the result is bitcasted back to v4f32 or v8f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005764 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005765 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005766
5767 // If the shuffle can be profitably rewritten as a narrower shuffle, then
5768 // do it!
5769 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
5770 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5771 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005772 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005773 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
5774 // FIXME: Figure out a cleaner way to do this.
5775 // Try to make use of movq to zero out the top part.
5776 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
5777 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5778 if (NewOp.getNode()) {
5779 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
5780 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
5781 DAG, Subtarget, dl);
5782 }
5783 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
5784 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5785 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
5786 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
5787 DAG, Subtarget, dl);
5788 }
5789 }
5790 return SDValue();
5791}
5792
Dan Gohman475871a2008-07-27 21:46:04 +00005793SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005794X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00005795 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005796 SDValue V1 = Op.getOperand(0);
5797 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005798 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005799 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00005800 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005801 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005802 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
5803 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00005804 bool V1IsSplat = false;
5805 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005806 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005807 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005808 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005809 MachineFunction &MF = DAG.getMachineFunction();
5810 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005811
Dale Johannesen0488fb62010-09-30 23:57:10 +00005812 // Shuffle operations on MMX not supported.
5813 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00005814 return Op;
5815
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005816 // Vector shuffle lowering takes 3 steps:
5817 //
5818 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
5819 // narrowing and commutation of operands should be handled.
5820 // 2) Matching of shuffles with known shuffle masks to x86 target specific
5821 // shuffle nodes.
5822 // 3) Rewriting of unmatched masks into new generic shuffle operations,
5823 // so the shuffle can be broken into other shuffles and the legalizer can
5824 // try the lowering again.
5825 //
5826 // The general ideia is that no vector_shuffle operation should be left to
5827 // be matched during isel, all of them must be converted to a target specific
5828 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00005829
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005830 // Normalize the input vectors. Here splats, zeroed vectors, profitable
5831 // narrowing and commutation of operands should be handled. The actual code
5832 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005833 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005834 if (NewOp.getNode())
5835 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00005836
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005837 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
5838 // unpckh_undef). Only use pshufd if speed is more important than size.
5839 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00005840 return getTargetShuffleNode(getUNPCKLOpcode(VT, getSubtarget()), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005841 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00005842 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00005843
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005844 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00005845 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00005846 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005847
Dale Johannesen0488fb62010-09-30 23:57:10 +00005848 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005849 return getMOVHighToLow(Op, dl, DAG);
5850
5851 // Use to match splats
5852 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
5853 (VT == MVT::v2f64 || VT == MVT::v2i64))
5854 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5855
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005856 if (X86::isPSHUFDMask(SVOp)) {
5857 // The actual implementation will match the mask in the if above and then
5858 // during isel it can match several different instructions, not only pshufd
5859 // as its name says, sad but true, emulate the behavior for now...
5860 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
5861 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
5862
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005863 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5864
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005865 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005866 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
5867
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005868 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005869 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
5870 TargetMask, DAG);
5871
5872 if (VT == MVT::v4f32)
5873 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
5874 TargetMask, DAG);
5875 }
Eric Christopherfd179292009-08-27 18:07:15 +00005876
Evan Chengf26ffe92008-05-29 08:22:04 +00005877 // Check if this can be converted into a logical shift.
5878 bool isLeft = false;
5879 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00005880 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00005881 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00005882 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00005883 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005884 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00005885 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005886 EVT EltVT = VT.getVectorElementType();
5887 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005888 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005889 }
Eric Christopherfd179292009-08-27 18:07:15 +00005890
Nate Begeman9008ca62009-04-27 18:41:29 +00005891 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005892 if (V1IsUndef)
5893 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00005894 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00005895 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00005896 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005897 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005898 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5899
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005900 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005901 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5902 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00005903 }
Eric Christopherfd179292009-08-27 18:07:15 +00005904
Nate Begeman9008ca62009-04-27 18:41:29 +00005905 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00005906 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
5907 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005908
Dale Johannesen0488fb62010-09-30 23:57:10 +00005909 if (X86::isMOVHLPSMask(SVOp))
5910 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005911
Dale Johannesen0488fb62010-09-30 23:57:10 +00005912 if (X86::isMOVSHDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5913 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005914
Dale Johannesen0488fb62010-09-30 23:57:10 +00005915 if (X86::isMOVSLDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5916 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00005917
Dale Johannesen0488fb62010-09-30 23:57:10 +00005918 if (X86::isMOVLPMask(SVOp))
5919 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005920
Nate Begeman9008ca62009-04-27 18:41:29 +00005921 if (ShouldXformToMOVHLPS(SVOp) ||
5922 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
5923 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005924
Evan Chengf26ffe92008-05-29 08:22:04 +00005925 if (isShift) {
5926 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005927 EVT EltVT = VT.getVectorElementType();
5928 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005929 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005930 }
Eric Christopherfd179292009-08-27 18:07:15 +00005931
Evan Cheng9eca5e82006-10-25 21:49:50 +00005932 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00005933 // FIXME: This should also accept a bitcast of a splat? Be careful, not
5934 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00005935 V1IsSplat = isSplatVector(V1.getNode());
5936 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005937
Chris Lattner8a594482007-11-25 00:24:49 +00005938 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00005939 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005940 Op = CommuteVectorShuffle(SVOp, DAG);
5941 SVOp = cast<ShuffleVectorSDNode>(Op);
5942 V1 = SVOp->getOperand(0);
5943 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00005944 std::swap(V1IsSplat, V2IsSplat);
5945 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005946 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00005947 }
5948
Nate Begeman9008ca62009-04-27 18:41:29 +00005949 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
5950 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00005951 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00005952 return V1;
5953 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
5954 // the instruction selector will not match, so get a canonical MOVL with
5955 // swapped operands to undo the commute.
5956 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00005957 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005958
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005959 if (X86::isUNPCKLMask(SVOp))
David Greenec4db4e52011-02-28 19:06:56 +00005960 return getTargetShuffleNode(getUNPCKLOpcode(VT, getSubtarget()),
5961 dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005962
5963 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005964 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00005965
Evan Cheng9bbbb982006-10-25 20:48:19 +00005966 if (V2IsSplat) {
5967 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00005968 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00005969 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00005970 SDValue NewMask = NormalizeMask(SVOp, DAG);
5971 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
5972 if (NSVOp != SVOp) {
5973 if (X86::isUNPCKLMask(NSVOp, true)) {
5974 return NewMask;
5975 } else if (X86::isUNPCKHMask(NSVOp, true)) {
5976 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005977 }
5978 }
5979 }
5980
Evan Cheng9eca5e82006-10-25 21:49:50 +00005981 if (Commuted) {
5982 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00005983 // FIXME: this seems wrong.
5984 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
5985 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005986
5987 if (X86::isUNPCKLMask(NewSVOp))
David Greenec4db4e52011-02-28 19:06:56 +00005988 return getTargetShuffleNode(getUNPCKLOpcode(VT, getSubtarget()),
5989 dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005990
5991 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005992 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005993 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005994
Nate Begeman9008ca62009-04-27 18:41:29 +00005995 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00005996 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00005997 return CommuteVectorShuffle(SVOp, DAG);
5998
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00005999 // The checks below are all present in isShuffleMaskLegal, but they are
6000 // inlined here right now to enable us to directly emit target specific
6001 // nodes, and remove one by one until they don't return Op anymore.
6002 SmallVector<int, 16> M;
6003 SVOp->getMask(M);
6004
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006005 if (isPALIGNRMask(M, VT, HasSSSE3))
6006 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
6007 X86::getShufflePALIGNRImmediate(SVOp),
6008 DAG);
6009
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006010 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6011 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006012 if (VT == MVT::v2f64)
6013 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006014 if (VT == MVT::v2i64)
6015 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
6016 }
6017
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00006018 if (isPSHUFHWMask(M, VT))
6019 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
6020 X86::getShufflePSHUFHWImmediate(SVOp),
6021 DAG);
6022
6023 if (isPSHUFLWMask(M, VT))
6024 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
6025 X86::getShufflePSHUFLWImmediate(SVOp),
6026 DAG);
6027
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00006028 if (isSHUFPMask(M, VT)) {
6029 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6030 if (VT == MVT::v4f32 || VT == MVT::v4i32)
6031 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
6032 TargetMask, DAG);
6033 if (VT == MVT::v2f64 || VT == MVT::v2i64)
6034 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
6035 TargetMask, DAG);
6036 }
6037
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006038 if (X86::isUNPCKL_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006039 return getTargetShuffleNode(getUNPCKLOpcode(VT, getSubtarget()),
6040 dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006041 if (X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006042 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006043
Evan Cheng14b32e12007-12-11 01:46:18 +00006044 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
Owen Anderson825b72b2009-08-11 20:47:22 +00006045 if (VT == MVT::v8i16) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00006046 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006047 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00006048 return NewOp;
6049 }
6050
Owen Anderson825b72b2009-08-11 20:47:22 +00006051 if (VT == MVT::v16i8) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006052 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
Nate Begemanb9a47b82009-02-23 08:49:38 +00006053 if (NewOp.getNode())
6054 return NewOp;
6055 }
Eric Christopherfd179292009-08-27 18:07:15 +00006056
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006057 // Handle all 128-bit wide vectors with 4 elements, and match them with
6058 // several different shuffle types.
6059 if (NumElems == 4 && VT.getSizeInBits() == 128)
6060 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006061
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006062 //===--------------------------------------------------------------------===//
6063 // Custom lower or generate target specific nodes for 256-bit shuffles.
6064
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00006065 // Handle VPERMIL permutations
6066 if (isVPERMILMask(M, VT)) {
6067 unsigned TargetMask = getShuffleVPERMILImmediate(SVOp);
6068 if (VT == MVT::v8f32)
6069 return getTargetShuffleNode(X86ISD::VPERMIL, dl, VT, V1, TargetMask, DAG);
6070 }
6071
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006072 // Handle general 256-bit shuffles
6073 if (VT.is256BitVector())
6074 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
6075
Dan Gohman475871a2008-07-27 21:46:04 +00006076 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006077}
6078
Dan Gohman475871a2008-07-27 21:46:04 +00006079SDValue
6080X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00006081 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006082 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006083 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006084 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006085 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006086 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006087 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006088 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006089 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006090 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00006091 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6092 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
6093 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006094 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6095 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006096 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006097 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00006098 Op.getOperand(0)),
6099 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006100 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006101 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006102 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006103 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006104 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00006105 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00006106 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
6107 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006108 // result has a single use which is a store or a bitcast to i32. And in
6109 // the case of a store, it's not worth it if the index is a constant 0,
6110 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00006111 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00006112 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006113 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006114 if ((User->getOpcode() != ISD::STORE ||
6115 (isa<ConstantSDNode>(Op.getOperand(1)) &&
6116 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006117 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006118 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00006119 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00006120 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006121 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00006122 Op.getOperand(0)),
6123 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006124 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00006125 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00006126 // ExtractPS works with constant index.
6127 if (isa<ConstantSDNode>(Op.getOperand(1)))
6128 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006129 }
Dan Gohman475871a2008-07-27 21:46:04 +00006130 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006131}
6132
6133
Dan Gohman475871a2008-07-27 21:46:04 +00006134SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006135X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6136 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006137 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00006138 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006139
David Greene74a579d2011-02-10 16:57:36 +00006140 SDValue Vec = Op.getOperand(0);
6141 EVT VecVT = Vec.getValueType();
6142
6143 // If this is a 256-bit vector result, first extract the 128-bit
6144 // vector and then extract from the 128-bit vector.
6145 if (VecVT.getSizeInBits() > 128) {
6146 DebugLoc dl = Op.getNode()->getDebugLoc();
6147 unsigned NumElems = VecVT.getVectorNumElements();
6148 SDValue Idx = Op.getOperand(1);
6149
6150 if (!isa<ConstantSDNode>(Idx))
6151 return SDValue();
6152
6153 unsigned ExtractNumElems = NumElems / (VecVT.getSizeInBits() / 128);
6154 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
6155
6156 // Get the 128-bit vector.
6157 bool Upper = IdxVal >= ExtractNumElems;
6158 Vec = Extract128BitVector(Vec, Idx, DAG, dl);
6159
6160 // Extract from it.
6161 SDValue ScaledIdx = Idx;
6162 if (Upper)
6163 ScaledIdx = DAG.getNode(ISD::SUB, dl, Idx.getValueType(), Idx,
6164 DAG.getConstant(ExtractNumElems,
6165 Idx.getValueType()));
6166 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
6167 ScaledIdx);
6168 }
6169
6170 assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
6171
Evan Cheng62a3f152008-03-24 21:52:23 +00006172 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006173 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006174 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00006175 return Res;
6176 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00006177
Owen Andersone50ed302009-08-10 22:56:29 +00006178 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006179 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006180 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006181 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006182 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006183 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006184 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006185 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6186 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006187 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006188 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00006189 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006190 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00006191 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00006192 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006193 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00006194 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006195 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006196 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006197 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006198 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006199 if (Idx == 0)
6200 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00006201
Evan Cheng0db9fe62006-04-25 20:13:52 +00006202 // SHUFPS the element to the lowest double word, then movss.
Nate Begeman9008ca62009-04-27 18:41:29 +00006203 int Mask[4] = { Idx, -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006204 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006205 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006206 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006207 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006208 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00006209 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006210 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
6211 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
6212 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006213 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006214 if (Idx == 0)
6215 return Op;
6216
6217 // UNPCKHPD the element to the lowest double word, then movsd.
6218 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6219 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00006220 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006221 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006222 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006223 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006224 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006225 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006226 }
6227
Dan Gohman475871a2008-07-27 21:46:04 +00006228 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006229}
6230
Dan Gohman475871a2008-07-27 21:46:04 +00006231SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006232X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6233 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006234 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006235 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006236 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006237
Dan Gohman475871a2008-07-27 21:46:04 +00006238 SDValue N0 = Op.getOperand(0);
6239 SDValue N1 = Op.getOperand(1);
6240 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00006241
Dan Gohman8a55ce42009-09-23 21:02:20 +00006242 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00006243 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006244 unsigned Opc;
6245 if (VT == MVT::v8i16)
6246 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006247 else if (VT == MVT::v16i8)
6248 Opc = X86ISD::PINSRB;
6249 else
6250 Opc = X86ISD::PINSRB;
6251
Nate Begeman14d12ca2008-02-11 04:19:36 +00006252 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
6253 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006254 if (N1.getValueType() != MVT::i32)
6255 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6256 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006257 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00006258 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006259 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006260 // Bits [7:6] of the constant are the source select. This will always be
6261 // zero here. The DAG Combiner may combine an extract_elt index into these
6262 // bits. For example (insert (extract, 3), 2) could be matched by putting
6263 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00006264 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00006265 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00006266 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00006267 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006268 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00006269 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00006270 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00006271 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00006272 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00006273 // PINSR* works with constant index.
6274 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006275 }
Dan Gohman475871a2008-07-27 21:46:04 +00006276 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006277}
6278
Dan Gohman475871a2008-07-27 21:46:04 +00006279SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006280X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006281 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006282 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006283
David Greene6b381262011-02-09 15:32:06 +00006284 DebugLoc dl = Op.getDebugLoc();
6285 SDValue N0 = Op.getOperand(0);
6286 SDValue N1 = Op.getOperand(1);
6287 SDValue N2 = Op.getOperand(2);
6288
6289 // If this is a 256-bit vector result, first insert into a 128-bit
6290 // vector and then insert into the 256-bit vector.
6291 if (VT.getSizeInBits() > 128) {
6292 if (!isa<ConstantSDNode>(N2))
6293 return SDValue();
6294
6295 // Get the 128-bit vector.
6296 unsigned NumElems = VT.getVectorNumElements();
6297 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
6298 bool Upper = IdxVal >= NumElems / 2;
6299
6300 SDValue SubN0 = Extract128BitVector(N0, N2, DAG, dl);
6301
6302 // Insert into it.
6303 SDValue ScaledN2 = N2;
6304 if (Upper)
6305 ScaledN2 = DAG.getNode(ISD::SUB, dl, N2.getValueType(), N2,
Owen Anderson95771af2011-02-25 21:41:48 +00006306 DAG.getConstant(NumElems /
David Greene6b381262011-02-09 15:32:06 +00006307 (VT.getSizeInBits() / 128),
6308 N2.getValueType()));
6309 Op = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, SubN0.getValueType(), SubN0,
6310 N1, ScaledN2);
6311
6312 // Insert the 128-bit vector
6313 // FIXME: Why UNDEF?
6314 return Insert128BitVector(N0, Op, N2, DAG, dl);
6315 }
6316
Nate Begeman14d12ca2008-02-11 04:19:36 +00006317 if (Subtarget->hasSSE41())
6318 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
6319
Dan Gohman8a55ce42009-09-23 21:02:20 +00006320 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00006321 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00006322
Dan Gohman8a55ce42009-09-23 21:02:20 +00006323 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00006324 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
6325 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00006326 if (N1.getValueType() != MVT::i32)
6327 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6328 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006329 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00006330 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006331 }
Dan Gohman475871a2008-07-27 21:46:04 +00006332 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006333}
6334
Dan Gohman475871a2008-07-27 21:46:04 +00006335SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006336X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006337 DebugLoc dl = Op.getDebugLoc();
David Greene2fcdfb42011-02-10 23:11:29 +00006338 EVT OpVT = Op.getValueType();
6339
Chris Lattnerf172ecd2010-07-04 23:07:25 +00006340 if (Op.getValueType() == MVT::v1i64 &&
6341 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00006342 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00006343
Owen Anderson825b72b2009-08-11 20:47:22 +00006344 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00006345 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
6346 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006347 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00006348 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006349}
6350
David Greene91585092011-01-26 15:38:49 +00006351// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
6352// a simple subregister reference or explicit instructions to grab
6353// upper bits of a vector.
6354SDValue
6355X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6356 if (Subtarget->hasAVX()) {
David Greenea5f26012011-02-07 19:36:54 +00006357 DebugLoc dl = Op.getNode()->getDebugLoc();
6358 SDValue Vec = Op.getNode()->getOperand(0);
6359 SDValue Idx = Op.getNode()->getOperand(1);
6360
6361 if (Op.getNode()->getValueType(0).getSizeInBits() == 128
6362 && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
6363 return Extract128BitVector(Vec, Idx, DAG, dl);
6364 }
David Greene91585092011-01-26 15:38:49 +00006365 }
6366 return SDValue();
6367}
6368
David Greenecfe33c42011-01-26 19:13:22 +00006369// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
6370// simple superregister reference or explicit instructions to insert
6371// the upper bits of a vector.
6372SDValue
6373X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6374 if (Subtarget->hasAVX()) {
6375 DebugLoc dl = Op.getNode()->getDebugLoc();
6376 SDValue Vec = Op.getNode()->getOperand(0);
6377 SDValue SubVec = Op.getNode()->getOperand(1);
6378 SDValue Idx = Op.getNode()->getOperand(2);
6379
6380 if (Op.getNode()->getValueType(0).getSizeInBits() == 256
6381 && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
David Greenea5f26012011-02-07 19:36:54 +00006382 return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00006383 }
6384 }
6385 return SDValue();
6386}
6387
Bill Wendling056292f2008-09-16 21:48:12 +00006388// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
6389// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
6390// one of the above mentioned nodes. It has to be wrapped because otherwise
6391// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
6392// be used to form addressing mode. These wrapped nodes will be selected
6393// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00006394SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006395X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006396 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006397
Chris Lattner41621a22009-06-26 19:22:52 +00006398 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6399 // global base reg.
6400 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006401 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006402 CodeModel::Model M = getTargetMachine().getCodeModel();
6403
Chris Lattner4f066492009-07-11 20:29:19 +00006404 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006405 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006406 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006407 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006408 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006409 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006410 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006411
Evan Cheng1606e8e2009-03-13 07:51:59 +00006412 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00006413 CP->getAlignment(),
6414 CP->getOffset(), OpFlag);
6415 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00006416 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006417 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00006418 if (OpFlag) {
6419 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00006420 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006421 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006422 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006423 }
6424
6425 return Result;
6426}
6427
Dan Gohmand858e902010-04-17 15:26:15 +00006428SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006429 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00006430
Chris Lattner18c59872009-06-27 04:16:01 +00006431 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6432 // global base reg.
6433 unsigned char OpFlag = 0;
6434 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006435 CodeModel::Model M = getTargetMachine().getCodeModel();
6436
Chris Lattner4f066492009-07-11 20:29:19 +00006437 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006438 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006439 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006440 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006441 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006442 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006443 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006444
Chris Lattner18c59872009-06-27 04:16:01 +00006445 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
6446 OpFlag);
6447 DebugLoc DL = JT->getDebugLoc();
6448 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006449
Chris Lattner18c59872009-06-27 04:16:01 +00006450 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00006451 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00006452 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6453 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006454 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006455 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006456
Chris Lattner18c59872009-06-27 04:16:01 +00006457 return Result;
6458}
6459
6460SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006461X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00006462 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00006463
Chris Lattner18c59872009-06-27 04:16:01 +00006464 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6465 // global base reg.
6466 unsigned char OpFlag = 0;
6467 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006468 CodeModel::Model M = getTargetMachine().getCodeModel();
6469
Chris Lattner4f066492009-07-11 20:29:19 +00006470 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006471 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00006472 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00006473 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006474 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00006475 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00006476 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00006477
Chris Lattner18c59872009-06-27 04:16:01 +00006478 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00006479
Chris Lattner18c59872009-06-27 04:16:01 +00006480 DebugLoc DL = Op.getDebugLoc();
6481 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00006482
6483
Chris Lattner18c59872009-06-27 04:16:01 +00006484 // With PIC, the address is actually $g + Offset.
6485 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00006486 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00006487 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6488 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006489 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00006490 Result);
6491 }
Eric Christopherfd179292009-08-27 18:07:15 +00006492
Chris Lattner18c59872009-06-27 04:16:01 +00006493 return Result;
6494}
6495
Dan Gohman475871a2008-07-27 21:46:04 +00006496SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006497X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00006498 // Create the TargetBlockAddressAddress node.
6499 unsigned char OpFlags =
6500 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00006501 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00006502 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00006503 DebugLoc dl = Op.getDebugLoc();
6504 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
6505 /*isTarget=*/true, OpFlags);
6506
Dan Gohmanf705adb2009-10-30 01:28:02 +00006507 if (Subtarget->isPICStyleRIPRel() &&
6508 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00006509 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6510 else
6511 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00006512
Dan Gohman29cbade2009-11-20 23:18:13 +00006513 // With PIC, the address is actually $g + Offset.
6514 if (isGlobalRelativeToPICBase(OpFlags)) {
6515 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6516 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
6517 Result);
6518 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00006519
6520 return Result;
6521}
6522
6523SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00006524X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00006525 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00006526 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00006527 // Create the TargetGlobalAddress node, folding in the constant
6528 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00006529 unsigned char OpFlags =
6530 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006531 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00006532 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006533 if (OpFlags == X86II::MO_NO_FLAG &&
6534 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00006535 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00006536 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00006537 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006538 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00006539 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006540 }
Eric Christopherfd179292009-08-27 18:07:15 +00006541
Chris Lattner4f066492009-07-11 20:29:19 +00006542 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006543 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00006544 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6545 else
6546 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00006547
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006548 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00006549 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006550 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6551 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006552 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006553 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006554
Chris Lattner36c25012009-07-10 07:34:39 +00006555 // For globals that require a load from a stub to get the address, emit the
6556 // load.
6557 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00006558 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006559 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006560
Dan Gohman6520e202008-10-18 02:06:02 +00006561 // If there was a non-zero offset that we didn't fold, create an explicit
6562 // addition for it.
6563 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006564 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006565 DAG.getConstant(Offset, getPointerTy()));
6566
Evan Cheng0db9fe62006-04-25 20:13:52 +00006567 return Result;
6568}
6569
Evan Chengda43bcf2008-09-24 00:05:32 +00006570SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006571X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006572 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006573 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006574 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006575}
6576
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006577static SDValue
6578GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006579 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006580 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006581 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006582 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006583 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006584 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006585 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006586 GA->getOffset(),
6587 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006588 if (InFlag) {
6589 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006590 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006591 } else {
6592 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006593 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006594 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006595
6596 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006597 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006598
Rafael Espindola15f1b662009-04-24 12:59:40 +00006599 SDValue Flag = Chain.getValue(1);
6600 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006601}
6602
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006603// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006604static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006605LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006606 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006607 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006608 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6609 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006610 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006611 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006612 InFlag = Chain.getValue(1);
6613
Chris Lattnerb903bed2009-06-26 21:20:29 +00006614 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006615}
6616
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006617// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006618static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006619LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006620 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006621 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6622 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006623}
6624
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006625// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6626// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006627static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006628 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006629 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006630 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006631
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006632 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6633 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6634 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006635
Michael J. Spencerec38de22010-10-10 22:04:20 +00006636 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006637 DAG.getIntPtrConstant(0),
6638 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006639
Chris Lattnerb903bed2009-06-26 21:20:29 +00006640 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006641 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6642 // initialexec.
6643 unsigned WrapperKind = X86ISD::Wrapper;
6644 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006645 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006646 } else if (is64Bit) {
6647 assert(model == TLSModel::InitialExec);
6648 OperandFlags = X86II::MO_GOTTPOFF;
6649 WrapperKind = X86ISD::WrapperRIP;
6650 } else {
6651 assert(model == TLSModel::InitialExec);
6652 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006653 }
Eric Christopherfd179292009-08-27 18:07:15 +00006654
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006655 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6656 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006657 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006658 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006659 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006660 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006661
Rafael Espindola9a580232009-02-27 13:37:18 +00006662 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006663 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006664 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006665
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006666 // The address of the thread local variable is the add of the thread
6667 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006668 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006669}
6670
Dan Gohman475871a2008-07-27 21:46:04 +00006671SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006672X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006673
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006674 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006675 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006676
Eric Christopher30ef0e52010-06-03 04:07:48 +00006677 if (Subtarget->isTargetELF()) {
6678 // TODO: implement the "local dynamic" model
6679 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006680
Eric Christopher30ef0e52010-06-03 04:07:48 +00006681 // If GV is an alias then use the aliasee for determining
6682 // thread-localness.
6683 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6684 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006685
6686 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006687 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006688
Eric Christopher30ef0e52010-06-03 04:07:48 +00006689 switch (model) {
6690 case TLSModel::GeneralDynamic:
6691 case TLSModel::LocalDynamic: // not implemented
6692 if (Subtarget->is64Bit())
6693 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6694 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006695
Eric Christopher30ef0e52010-06-03 04:07:48 +00006696 case TLSModel::InitialExec:
6697 case TLSModel::LocalExec:
6698 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6699 Subtarget->is64Bit());
6700 }
6701 } else if (Subtarget->isTargetDarwin()) {
6702 // Darwin only has one model of TLS. Lower to that.
6703 unsigned char OpFlag = 0;
6704 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6705 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006706
Eric Christopher30ef0e52010-06-03 04:07:48 +00006707 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6708 // global base reg.
6709 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6710 !Subtarget->is64Bit();
6711 if (PIC32)
6712 OpFlag = X86II::MO_TLVP_PIC_BASE;
6713 else
6714 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006715 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006716 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00006717 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00006718 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00006719 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006720
Eric Christopher30ef0e52010-06-03 04:07:48 +00006721 // With PIC32, the address is actually $g + Offset.
6722 if (PIC32)
6723 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6724 DAG.getNode(X86ISD::GlobalBaseReg,
6725 DebugLoc(), getPointerTy()),
6726 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006727
Eric Christopher30ef0e52010-06-03 04:07:48 +00006728 // Lowering the machine isd will make sure everything is in the right
6729 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00006730 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006731 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00006732 SDValue Args[] = { Chain, Offset };
6733 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006734
Eric Christopher30ef0e52010-06-03 04:07:48 +00006735 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
6736 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6737 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00006738
Eric Christopher30ef0e52010-06-03 04:07:48 +00006739 // And our return value (tls address) is in the standard call return value
6740 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00006741 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
6742 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006743 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006744
Eric Christopher30ef0e52010-06-03 04:07:48 +00006745 assert(false &&
6746 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00006747
Torok Edwinc23197a2009-07-14 16:55:14 +00006748 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00006749 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006750}
6751
Evan Cheng0db9fe62006-04-25 20:13:52 +00006752
Nadav Rotem43012222011-05-11 08:12:09 +00006753/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00006754/// take a 2 x i32 value to shift plus a shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00006755SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00006756 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00006757 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006758 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006759 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006760 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00006761 SDValue ShOpLo = Op.getOperand(0);
6762 SDValue ShOpHi = Op.getOperand(1);
6763 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00006764 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00006765 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00006766 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00006767
Dan Gohman475871a2008-07-27 21:46:04 +00006768 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006769 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006770 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
6771 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006772 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006773 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
6774 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006775 }
Evan Chenge3413162006-01-09 18:33:28 +00006776
Owen Anderson825b72b2009-08-11 20:47:22 +00006777 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
6778 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00006779 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00006780 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00006781
Dan Gohman475871a2008-07-27 21:46:04 +00006782 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00006783 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00006784 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
6785 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00006786
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006787 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006788 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6789 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006790 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006791 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6792 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006793 }
6794
Dan Gohman475871a2008-07-27 21:46:04 +00006795 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00006796 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006797}
Evan Chenga3195e82006-01-12 22:54:21 +00006798
Dan Gohmand858e902010-04-17 15:26:15 +00006799SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
6800 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006801 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00006802
Dale Johannesen0488fb62010-09-30 23:57:10 +00006803 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006804 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006805
Owen Anderson825b72b2009-08-11 20:47:22 +00006806 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00006807 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00006808
Eli Friedman36df4992009-05-27 00:47:34 +00006809 // These are really Legal; return the operand so the caller accepts it as
6810 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006811 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00006812 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00006813 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00006814 Subtarget->is64Bit()) {
6815 return Op;
6816 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006817
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006818 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006819 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006820 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00006821 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006822 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00006823 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00006824 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006825 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006826 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006827 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
6828}
Evan Cheng0db9fe62006-04-25 20:13:52 +00006829
Owen Andersone50ed302009-08-10 22:56:29 +00006830SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00006831 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00006832 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006833 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00006834 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00006835 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00006836 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006837 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00006838 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00006839 else
Owen Anderson825b72b2009-08-11 20:47:22 +00006840 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006841
Chris Lattner492a43e2010-09-22 01:28:21 +00006842 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006843
Stuart Hastings84be9582011-06-02 15:57:11 +00006844 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
6845 MachineMemOperand *MMO;
6846 if (FI) {
6847 int SSFI = FI->getIndex();
6848 MMO =
6849 DAG.getMachineFunction()
6850 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6851 MachineMemOperand::MOLoad, ByteSize, ByteSize);
6852 } else {
6853 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
6854 StackSlot = StackSlot.getOperand(1);
6855 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006856 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006857 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
6858 X86ISD::FILD, DL,
6859 Tys, Ops, array_lengthof(Ops),
6860 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006861
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006862 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006863 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00006864 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006865
6866 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
6867 // shouldn't be necessary except that RFP cannot be live across
6868 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006869 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006870 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
6871 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006872 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00006873 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006874 SDValue Ops[] = {
6875 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
6876 };
Chris Lattner492a43e2010-09-22 01:28:21 +00006877 MachineMemOperand *MMO =
6878 DAG.getMachineFunction()
6879 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006880 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006881
Chris Lattner492a43e2010-09-22 01:28:21 +00006882 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
6883 Ops, array_lengthof(Ops),
6884 Op.getValueType(), MMO);
6885 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006886 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006887 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006888 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006889
Evan Cheng0db9fe62006-04-25 20:13:52 +00006890 return Result;
6891}
6892
Bill Wendling8b8a6362009-01-17 03:56:04 +00006893// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006894SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
6895 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00006896 // This algorithm is not obvious. Here it is in C code, more or less:
6897 /*
6898 double uint64_to_double( uint32_t hi, uint32_t lo ) {
6899 static const __m128i exp = { 0x4330000045300000ULL, 0 };
6900 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00006901
Bill Wendling8b8a6362009-01-17 03:56:04 +00006902 // Copy ints to xmm registers.
6903 __m128i xh = _mm_cvtsi32_si128( hi );
6904 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00006905
Bill Wendling8b8a6362009-01-17 03:56:04 +00006906 // Combine into low half of a single xmm register.
6907 __m128i x = _mm_unpacklo_epi32( xh, xl );
6908 __m128d d;
6909 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00006910
Bill Wendling8b8a6362009-01-17 03:56:04 +00006911 // Merge in appropriate exponents to give the integer bits the right
6912 // magnitude.
6913 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00006914
Bill Wendling8b8a6362009-01-17 03:56:04 +00006915 // Subtract away the biases to deal with the IEEE-754 double precision
6916 // implicit 1.
6917 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00006918
Bill Wendling8b8a6362009-01-17 03:56:04 +00006919 // All conversions up to here are exact. The correctly rounded result is
6920 // calculated using the current rounding mode using the following
6921 // horizontal add.
6922 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
6923 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
6924 // store doesn't really need to be here (except
6925 // maybe to zero the other double)
6926 return sd;
6927 }
6928 */
Dale Johannesen040225f2008-10-21 23:07:49 +00006929
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006930 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00006931 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00006932
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006933 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00006934 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00006935 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
6936 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
6937 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
6938 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006939 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006940 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006941
Bill Wendling8b8a6362009-01-17 03:56:04 +00006942 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00006943 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006944 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00006945 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006946 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006947 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006948 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006949
Owen Anderson825b72b2009-08-11 20:47:22 +00006950 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6951 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006952 Op.getOperand(0),
6953 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006954 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6955 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006956 Op.getOperand(0),
6957 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006958 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
6959 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00006960 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006961 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006962 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006963 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00006964 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00006965 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006966 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006967 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006968
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006969 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00006970 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00006971 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
6972 DAG.getUNDEF(MVT::v2f64), ShufMask);
6973 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
6974 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006975 DAG.getIntPtrConstant(0));
6976}
6977
Bill Wendling8b8a6362009-01-17 03:56:04 +00006978// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006979SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
6980 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006981 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006982 // FP constant to bias correct the final result.
6983 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00006984 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006985
6986 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00006987 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6988 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00006989 Op.getOperand(0),
6990 DAG.getIntPtrConstant(0)));
6991
Owen Anderson825b72b2009-08-11 20:47:22 +00006992 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006993 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006994 DAG.getIntPtrConstant(0));
6995
6996 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006997 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006998 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006999 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007000 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007001 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007002 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007003 MVT::v2f64, Bias)));
7004 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007005 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007006 DAG.getIntPtrConstant(0));
7007
7008 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007009 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007010
7011 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00007012 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00007013
Owen Anderson825b72b2009-08-11 20:47:22 +00007014 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007015 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00007016 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00007017 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007018 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00007019 }
7020
7021 // Handle final rounding.
7022 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00007023}
7024
Dan Gohmand858e902010-04-17 15:26:15 +00007025SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
7026 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00007027 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007028 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007029
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007030 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00007031 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
7032 // the optimization here.
7033 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00007034 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00007035
Owen Andersone50ed302009-08-10 22:56:29 +00007036 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007037 EVT DstVT = Op.getValueType();
7038 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007039 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007040 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007041 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00007042
7043 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00007044 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007045 if (SrcVT == MVT::i32) {
7046 SDValue WordOff = DAG.getConstant(4, getPointerTy());
7047 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
7048 getPointerTy(), StackSlot, WordOff);
7049 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007050 StackSlot, MachinePointerInfo(),
7051 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007052 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007053 OffsetSlot, MachinePointerInfo(),
7054 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007055 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
7056 return Fild;
7057 }
7058
7059 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
7060 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007061 StackSlot, MachinePointerInfo(),
7062 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007063 // For i64 source, we need to add the appropriate power of 2 if the input
7064 // was negative. This is the same as the optimization in
7065 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
7066 // we must be careful to do the computation in x87 extended precision, not
7067 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00007068 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
7069 MachineMemOperand *MMO =
7070 DAG.getMachineFunction()
7071 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7072 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007073
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007074 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
7075 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007076 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
7077 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007078
7079 APInt FF(32, 0x5F800000ULL);
7080
7081 // Check whether the sign bit is set.
7082 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
7083 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
7084 ISD::SETLT);
7085
7086 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
7087 SDValue FudgePtr = DAG.getConstantPool(
7088 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
7089 getPointerTy());
7090
7091 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
7092 SDValue Zero = DAG.getIntPtrConstant(0);
7093 SDValue Four = DAG.getIntPtrConstant(4);
7094 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
7095 Zero, Four);
7096 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
7097
7098 // Load the value out, extending it from f32 to f80.
7099 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00007100 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00007101 FudgePtr, MachinePointerInfo::getConstantPool(),
7102 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007103 // Extend everything to 80 bits to force it to be done on x87.
7104 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
7105 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007106}
7107
Dan Gohman475871a2008-07-27 21:46:04 +00007108std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00007109FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00007110 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00007111
Owen Andersone50ed302009-08-10 22:56:29 +00007112 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00007113
7114 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007115 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
7116 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00007117 }
7118
Owen Anderson825b72b2009-08-11 20:47:22 +00007119 assert(DstTy.getSimpleVT() <= MVT::i64 &&
7120 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00007121 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00007122
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007123 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007124 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00007125 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007126 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00007127 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007128 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00007129 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007130 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007131
Evan Cheng87c89352007-10-15 20:11:21 +00007132 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
7133 // stack slot.
7134 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00007135 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00007136 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007137 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00007138
Michael J. Spencerec38de22010-10-10 22:04:20 +00007139
7140
Evan Cheng0db9fe62006-04-25 20:13:52 +00007141 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00007142 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007143 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007144 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
7145 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
7146 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007147 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007148
Dan Gohman475871a2008-07-27 21:46:04 +00007149 SDValue Chain = DAG.getEntryNode();
7150 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00007151 EVT TheVT = Op.getOperand(0).getValueType();
7152 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007153 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00007154 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007155 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007156 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007157 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00007158 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00007159 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00007160 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00007161
Chris Lattner492a43e2010-09-22 01:28:21 +00007162 MachineMemOperand *MMO =
7163 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7164 MachineMemOperand::MOLoad, MemSize, MemSize);
7165 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
7166 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007167 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00007168 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007169 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7170 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007171
Chris Lattner07290932010-09-22 01:05:16 +00007172 MachineMemOperand *MMO =
7173 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7174 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007175
Evan Cheng0db9fe62006-04-25 20:13:52 +00007176 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00007177 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00007178 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
7179 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00007180
Chris Lattner27a6c732007-11-24 07:07:01 +00007181 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007182}
7183
Dan Gohmand858e902010-04-17 15:26:15 +00007184SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
7185 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00007186 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007187 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007188
Eli Friedman948e95a2009-05-23 09:59:16 +00007189 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00007190 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00007191 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
7192 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00007193
Chris Lattner27a6c732007-11-24 07:07:01 +00007194 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007195 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007196 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00007197}
7198
Dan Gohmand858e902010-04-17 15:26:15 +00007199SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
7200 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00007201 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
7202 SDValue FIST = Vals.first, StackSlot = Vals.second;
7203 assert(FIST.getNode() && "Unexpected failure");
7204
7205 // Load the result.
7206 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007207 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007208}
7209
Dan Gohmand858e902010-04-17 15:26:15 +00007210SDValue X86TargetLowering::LowerFABS(SDValue Op,
7211 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007212 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007213 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007214 EVT VT = Op.getValueType();
7215 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007216 if (VT.isVector())
7217 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007218 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007219 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007220 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00007221 CV.push_back(C);
7222 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007223 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007224 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00007225 CV.push_back(C);
7226 CV.push_back(C);
7227 CV.push_back(C);
7228 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007229 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007230 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007231 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007232 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007233 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007234 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007235 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007236}
7237
Dan Gohmand858e902010-04-17 15:26:15 +00007238SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007239 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007240 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007241 EVT VT = Op.getValueType();
7242 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00007243 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00007244 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007245 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007246 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007247 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00007248 CV.push_back(C);
7249 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007250 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007251 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00007252 CV.push_back(C);
7253 CV.push_back(C);
7254 CV.push_back(C);
7255 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007256 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007257 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007258 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007259 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007260 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007261 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007262 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007263 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007264 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007265 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007266 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007267 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00007268 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007269 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00007270 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00007271}
7272
Dan Gohmand858e902010-04-17 15:26:15 +00007273SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007274 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00007275 SDValue Op0 = Op.getOperand(0);
7276 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007277 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007278 EVT VT = Op.getValueType();
7279 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00007280
7281 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007282 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007283 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007284 SrcVT = VT;
7285 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007286 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007287 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007288 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007289 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00007290 }
7291
7292 // At this point the operands and the result should have the same
7293 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00007294
Evan Cheng68c47cb2007-01-05 07:55:56 +00007295 // First get the sign bit of second operand.
7296 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007297 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007298 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
7299 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007300 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007301 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
7302 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7303 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7304 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007305 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007306 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007307 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007308 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007309 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007310 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007311 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007312
7313 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00007314 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007315 // Op0 is MVT::f32, Op1 is MVT::f64.
7316 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
7317 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
7318 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007319 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00007320 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00007321 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00007322 }
7323
Evan Cheng73d6cf12007-01-05 21:37:56 +00007324 // Clear first operand sign bit.
7325 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00007326 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007327 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
7328 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007329 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007330 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
7331 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7332 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7333 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00007334 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00007335 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007336 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007337 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00007338 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007339 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00007340 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00007341
7342 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00007343 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00007344}
7345
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00007346SDValue X86TargetLowering::LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) const {
7347 SDValue N0 = Op.getOperand(0);
7348 DebugLoc dl = Op.getDebugLoc();
7349 EVT VT = Op.getValueType();
7350
7351 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
7352 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
7353 DAG.getConstant(1, VT));
7354 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
7355}
7356
Dan Gohman076aee32009-03-04 19:44:21 +00007357/// Emit nodes that will be selected as "test Op0,Op0", or something
7358/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007359SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007360 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007361 DebugLoc dl = Op.getDebugLoc();
7362
Dan Gohman31125812009-03-07 01:58:32 +00007363 // CF and OF aren't always set the way we want. Determine which
7364 // of these we need.
7365 bool NeedCF = false;
7366 bool NeedOF = false;
7367 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007368 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00007369 case X86::COND_A: case X86::COND_AE:
7370 case X86::COND_B: case X86::COND_BE:
7371 NeedCF = true;
7372 break;
7373 case X86::COND_G: case X86::COND_GE:
7374 case X86::COND_L: case X86::COND_LE:
7375 case X86::COND_O: case X86::COND_NO:
7376 NeedOF = true;
7377 break;
Dan Gohman31125812009-03-07 01:58:32 +00007378 }
7379
Dan Gohman076aee32009-03-04 19:44:21 +00007380 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00007381 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
7382 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007383 if (Op.getResNo() != 0 || NeedOF || NeedCF)
7384 // Emit a CMP with 0, which is the TEST pattern.
7385 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7386 DAG.getConstant(0, Op.getValueType()));
7387
7388 unsigned Opcode = 0;
7389 unsigned NumOperands = 0;
7390 switch (Op.getNode()->getOpcode()) {
7391 case ISD::ADD:
7392 // Due to an isel shortcoming, be conservative if this add is likely to be
7393 // selected as part of a load-modify-store instruction. When the root node
7394 // in a match is a store, isel doesn't know how to remap non-chain non-flag
7395 // uses of other nodes in the match, such as the ADD in this case. This
7396 // leads to the ADD being left around and reselected, with the result being
7397 // two adds in the output. Alas, even if none our users are stores, that
7398 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
7399 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
7400 // climbing the DAG back to the root, and it doesn't seem to be worth the
7401 // effort.
7402 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00007403 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007404 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
7405 goto default_case;
7406
7407 if (ConstantSDNode *C =
7408 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
7409 // An add of one will be selected as an INC.
7410 if (C->getAPIntValue() == 1) {
7411 Opcode = X86ISD::INC;
7412 NumOperands = 1;
7413 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00007414 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007415
7416 // An add of negative one (subtract of one) will be selected as a DEC.
7417 if (C->getAPIntValue().isAllOnesValue()) {
7418 Opcode = X86ISD::DEC;
7419 NumOperands = 1;
7420 break;
7421 }
Dan Gohman076aee32009-03-04 19:44:21 +00007422 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007423
7424 // Otherwise use a regular EFLAGS-setting add.
7425 Opcode = X86ISD::ADD;
7426 NumOperands = 2;
7427 break;
7428 case ISD::AND: {
7429 // If the primary and result isn't used, don't bother using X86ISD::AND,
7430 // because a TEST instruction will be better.
7431 bool NonFlagUse = false;
7432 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7433 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
7434 SDNode *User = *UI;
7435 unsigned UOpNo = UI.getOperandNo();
7436 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
7437 // Look pass truncate.
7438 UOpNo = User->use_begin().getOperandNo();
7439 User = *User->use_begin();
7440 }
7441
7442 if (User->getOpcode() != ISD::BRCOND &&
7443 User->getOpcode() != ISD::SETCC &&
7444 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
7445 NonFlagUse = true;
7446 break;
7447 }
Dan Gohman076aee32009-03-04 19:44:21 +00007448 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007449
7450 if (!NonFlagUse)
7451 break;
7452 }
7453 // FALL THROUGH
7454 case ISD::SUB:
7455 case ISD::OR:
7456 case ISD::XOR:
7457 // Due to the ISEL shortcoming noted above, be conservative if this op is
7458 // likely to be selected as part of a load-modify-store instruction.
7459 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7460 UE = Op.getNode()->use_end(); UI != UE; ++UI)
7461 if (UI->getOpcode() == ISD::STORE)
7462 goto default_case;
7463
7464 // Otherwise use a regular EFLAGS-setting instruction.
7465 switch (Op.getNode()->getOpcode()) {
7466 default: llvm_unreachable("unexpected operator!");
7467 case ISD::SUB: Opcode = X86ISD::SUB; break;
7468 case ISD::OR: Opcode = X86ISD::OR; break;
7469 case ISD::XOR: Opcode = X86ISD::XOR; break;
7470 case ISD::AND: Opcode = X86ISD::AND; break;
7471 }
7472
7473 NumOperands = 2;
7474 break;
7475 case X86ISD::ADD:
7476 case X86ISD::SUB:
7477 case X86ISD::INC:
7478 case X86ISD::DEC:
7479 case X86ISD::OR:
7480 case X86ISD::XOR:
7481 case X86ISD::AND:
7482 return SDValue(Op.getNode(), 1);
7483 default:
7484 default_case:
7485 break;
Dan Gohman076aee32009-03-04 19:44:21 +00007486 }
7487
Bill Wendlingc25ccf82010-06-28 21:08:32 +00007488 if (Opcode == 0)
7489 // Emit a CMP with 0, which is the TEST pattern.
7490 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7491 DAG.getConstant(0, Op.getValueType()));
7492
7493 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
7494 SmallVector<SDValue, 4> Ops;
7495 for (unsigned i = 0; i != NumOperands; ++i)
7496 Ops.push_back(Op.getOperand(i));
7497
7498 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
7499 DAG.ReplaceAllUsesWith(Op, New);
7500 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00007501}
7502
7503/// Emit nodes that will be selected as "cmp Op0,Op1", or something
7504/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00007505SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00007506 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00007507 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
7508 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00007509 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00007510
7511 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00007512 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00007513}
7514
Evan Chengd40d03e2010-01-06 19:38:29 +00007515/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
7516/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00007517SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
7518 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007519 SDValue Op0 = And.getOperand(0);
7520 SDValue Op1 = And.getOperand(1);
7521 if (Op0.getOpcode() == ISD::TRUNCATE)
7522 Op0 = Op0.getOperand(0);
7523 if (Op1.getOpcode() == ISD::TRUNCATE)
7524 Op1 = Op1.getOperand(0);
7525
Evan Chengd40d03e2010-01-06 19:38:29 +00007526 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007527 if (Op1.getOpcode() == ISD::SHL)
7528 std::swap(Op0, Op1);
7529 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00007530 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
7531 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00007532 // If we looked past a truncate, check that it's only truncating away
7533 // known zeros.
7534 unsigned BitWidth = Op0.getValueSizeInBits();
7535 unsigned AndBitWidth = And.getValueSizeInBits();
7536 if (BitWidth > AndBitWidth) {
7537 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
7538 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
7539 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
7540 return SDValue();
7541 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007542 LHS = Op1;
7543 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00007544 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007545 } else if (Op1.getOpcode() == ISD::Constant) {
7546 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
7547 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00007548 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
7549 LHS = AndLHS.getOperand(0);
7550 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007551 }
Evan Chengd40d03e2010-01-06 19:38:29 +00007552 }
Evan Cheng0488db92007-09-25 01:57:46 +00007553
Evan Chengd40d03e2010-01-06 19:38:29 +00007554 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00007555 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00007556 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00007557 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00007558 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00007559 // Also promote i16 to i32 for performance / code size reason.
7560 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00007561 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00007562 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00007563
Evan Chengd40d03e2010-01-06 19:38:29 +00007564 // If the operand types disagree, extend the shift amount to match. Since
7565 // BT ignores high bits (like shifts) we can use anyextend.
7566 if (LHS.getValueType() != RHS.getValueType())
7567 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007568
Evan Chengd40d03e2010-01-06 19:38:29 +00007569 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
7570 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
7571 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7572 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00007573 }
7574
Evan Cheng54de3ea2010-01-05 06:52:31 +00007575 return SDValue();
7576}
7577
Dan Gohmand858e902010-04-17 15:26:15 +00007578SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00007579 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7580 SDValue Op0 = Op.getOperand(0);
7581 SDValue Op1 = Op.getOperand(1);
7582 DebugLoc dl = Op.getDebugLoc();
7583 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7584
7585 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007586 // Lower (X & (1 << N)) == 0 to BT(X, N).
7587 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7588 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Andrew Trickf6c39412011-03-23 23:11:02 +00007589 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007590 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007591 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007592 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7593 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7594 if (NewSetCC.getNode())
7595 return NewSetCC;
7596 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007597
Chris Lattner481eebc2010-12-19 21:23:48 +00007598 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
7599 // these.
7600 if (Op1.getOpcode() == ISD::Constant &&
Andrew Trickf6c39412011-03-23 23:11:02 +00007601 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
Evan Cheng2c755ba2010-02-27 07:36:59 +00007602 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7603 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007604
Chris Lattner481eebc2010-12-19 21:23:48 +00007605 // If the input is a setcc, then reuse the input setcc or use a new one with
7606 // the inverted condition.
7607 if (Op0.getOpcode() == X86ISD::SETCC) {
7608 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7609 bool Invert = (CC == ISD::SETNE) ^
7610 cast<ConstantSDNode>(Op1)->isNullValue();
7611 if (!Invert) return Op0;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007612
Evan Cheng2c755ba2010-02-27 07:36:59 +00007613 CCode = X86::GetOppositeBranchCondition(CCode);
Chris Lattner481eebc2010-12-19 21:23:48 +00007614 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7615 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7616 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007617 }
7618
Evan Chenge5b51ac2010-04-17 06:13:15 +00007619 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007620 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007621 if (X86CC == X86::COND_INVALID)
7622 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007623
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007624 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00007625 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007626 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
Evan Cheng0488db92007-09-25 01:57:46 +00007627}
7628
Dan Gohmand858e902010-04-17 15:26:15 +00007629SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007630 SDValue Cond;
7631 SDValue Op0 = Op.getOperand(0);
7632 SDValue Op1 = Op.getOperand(1);
7633 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007634 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007635 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7636 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007637 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007638
7639 if (isFP) {
7640 unsigned SSECC = 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007641 EVT VT0 = Op0.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00007642 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
7643 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007644 bool Swap = false;
7645
7646 switch (SetCCOpcode) {
7647 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007648 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007649 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007650 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007651 case ISD::SETGT: Swap = true; // Fallthrough
7652 case ISD::SETLT:
7653 case ISD::SETOLT: SSECC = 1; break;
7654 case ISD::SETOGE:
7655 case ISD::SETGE: Swap = true; // Fallthrough
7656 case ISD::SETLE:
7657 case ISD::SETOLE: SSECC = 2; break;
7658 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007659 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007660 case ISD::SETNE: SSECC = 4; break;
7661 case ISD::SETULE: Swap = true;
7662 case ISD::SETUGE: SSECC = 5; break;
7663 case ISD::SETULT: Swap = true;
7664 case ISD::SETUGT: SSECC = 6; break;
7665 case ISD::SETO: SSECC = 7; break;
7666 }
7667 if (Swap)
7668 std::swap(Op0, Op1);
7669
Nate Begemanfb8ead02008-07-25 19:05:58 +00007670 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007671 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007672 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007673 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007674 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7675 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007676 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007677 }
7678 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007679 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007680 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7681 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007682 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007683 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007684 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007685 }
7686 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007687 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007688 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007689
Nate Begeman30a0de92008-07-17 16:51:19 +00007690 // We are handling one of the integer comparisons here. Since SSE only has
7691 // GT and EQ comparisons for integer, swapping operands and multiple
7692 // operations may be required for some comparisons.
7693 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7694 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007695
Owen Anderson825b72b2009-08-11 20:47:22 +00007696 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007697 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007698 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007699 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007700 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7701 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00007702 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007703
Nate Begeman30a0de92008-07-17 16:51:19 +00007704 switch (SetCCOpcode) {
7705 default: break;
7706 case ISD::SETNE: Invert = true;
7707 case ISD::SETEQ: Opc = EQOpc; break;
7708 case ISD::SETLT: Swap = true;
7709 case ISD::SETGT: Opc = GTOpc; break;
7710 case ISD::SETGE: Swap = true;
7711 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
7712 case ISD::SETULT: Swap = true;
7713 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
7714 case ISD::SETUGE: Swap = true;
7715 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
7716 }
7717 if (Swap)
7718 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007719
Nate Begeman30a0de92008-07-17 16:51:19 +00007720 // Since SSE has no unsigned integer comparisons, we need to flip the sign
7721 // bits of the inputs before performing those operations.
7722 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00007723 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00007724 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
7725 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00007726 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00007727 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
7728 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00007729 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
7730 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00007731 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007732
Dale Johannesenace16102009-02-03 19:33:06 +00007733 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00007734
7735 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00007736 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00007737 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00007738
Nate Begeman30a0de92008-07-17 16:51:19 +00007739 return Result;
7740}
Evan Cheng0488db92007-09-25 01:57:46 +00007741
Evan Cheng370e5342008-12-03 08:38:43 +00007742// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00007743static bool isX86LogicalCmp(SDValue Op) {
7744 unsigned Opc = Op.getNode()->getOpcode();
7745 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
7746 return true;
7747 if (Op.getResNo() == 1 &&
7748 (Opc == X86ISD::ADD ||
7749 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00007750 Opc == X86ISD::ADC ||
7751 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00007752 Opc == X86ISD::SMUL ||
7753 Opc == X86ISD::UMUL ||
7754 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00007755 Opc == X86ISD::DEC ||
7756 Opc == X86ISD::OR ||
7757 Opc == X86ISD::XOR ||
7758 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00007759 return true;
7760
Chris Lattner9637d5b2010-12-05 07:49:54 +00007761 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
7762 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007763
Dan Gohman076aee32009-03-04 19:44:21 +00007764 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00007765}
7766
Chris Lattnera2b56002010-12-05 01:23:24 +00007767static bool isZero(SDValue V) {
7768 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
7769 return C && C->isNullValue();
7770}
7771
Chris Lattner96908b12010-12-05 02:00:51 +00007772static bool isAllOnes(SDValue V) {
7773 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
7774 return C && C->isAllOnesValue();
7775}
7776
Dan Gohmand858e902010-04-17 15:26:15 +00007777SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007778 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007779 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00007780 SDValue Op1 = Op.getOperand(1);
7781 SDValue Op2 = Op.getOperand(2);
7782 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007783 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00007784
Dan Gohman1a492952009-10-20 16:22:37 +00007785 if (Cond.getOpcode() == ISD::SETCC) {
7786 SDValue NewCond = LowerSETCC(Cond, DAG);
7787 if (NewCond.getNode())
7788 Cond = NewCond;
7789 }
Evan Cheng734503b2006-09-11 02:19:56 +00007790
Chris Lattnera2b56002010-12-05 01:23:24 +00007791 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00007792 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00007793 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00007794 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007795 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00007796 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
7797 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007798 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007799
Chris Lattnera2b56002010-12-05 01:23:24 +00007800 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007801
7802 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00007803 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
7804 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00007805
7806 SDValue CmpOp0 = Cmp.getOperand(0);
7807 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
7808 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007809
Chris Lattner96908b12010-12-05 02:00:51 +00007810 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00007811 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
7812 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007813
Chris Lattner96908b12010-12-05 02:00:51 +00007814 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
7815 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007816
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007817 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00007818 if (N2C == 0 || !N2C->isNullValue())
7819 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
7820 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007821 }
7822 }
7823
Chris Lattnera2b56002010-12-05 01:23:24 +00007824 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00007825 if (Cond.getOpcode() == ISD::AND &&
7826 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7827 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007828 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007829 Cond = Cond.getOperand(0);
7830 }
7831
Evan Cheng3f41d662007-10-08 22:16:29 +00007832 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7833 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007834 if (Cond.getOpcode() == X86ISD::SETCC ||
7835 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007836 CC = Cond.getOperand(0);
7837
Dan Gohman475871a2008-07-27 21:46:04 +00007838 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007839 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00007840 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00007841
Evan Cheng3f41d662007-10-08 22:16:29 +00007842 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007843 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00007844 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00007845 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00007846
Chris Lattnerd1980a52009-03-12 06:52:53 +00007847 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
7848 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00007849 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007850 addTest = false;
7851 }
7852 }
7853
7854 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007855 // Look pass the truncate.
7856 if (Cond.getOpcode() == ISD::TRUNCATE)
7857 Cond = Cond.getOperand(0);
7858
7859 // We know the result of AND is compared against zero. Try to match
7860 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007861 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00007862 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00007863 if (NewSetCC.getNode()) {
7864 CC = NewSetCC.getOperand(0);
7865 Cond = NewSetCC.getOperand(1);
7866 addTest = false;
7867 }
7868 }
7869 }
7870
7871 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007872 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007873 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007874 }
7875
Benjamin Kramere915ff32010-12-22 23:09:28 +00007876 // a < b ? -1 : 0 -> RES = ~setcc_carry
7877 // a < b ? 0 : -1 -> RES = setcc_carry
7878 // a >= b ? -1 : 0 -> RES = setcc_carry
7879 // a >= b ? 0 : -1 -> RES = ~setcc_carry
7880 if (Cond.getOpcode() == X86ISD::CMP) {
7881 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
7882
7883 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
7884 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
7885 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
7886 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
7887 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
7888 return DAG.getNOT(DL, Res, Res.getValueType());
7889 return Res;
7890 }
7891 }
7892
Evan Cheng0488db92007-09-25 01:57:46 +00007893 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
7894 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007895 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007896 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00007897 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00007898}
7899
Evan Cheng370e5342008-12-03 08:38:43 +00007900// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
7901// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
7902// from the AND / OR.
7903static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
7904 Opc = Op.getOpcode();
7905 if (Opc != ISD::OR && Opc != ISD::AND)
7906 return false;
7907 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7908 Op.getOperand(0).hasOneUse() &&
7909 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
7910 Op.getOperand(1).hasOneUse());
7911}
7912
Evan Cheng961d6d42009-02-02 08:19:07 +00007913// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
7914// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00007915static bool isXor1OfSetCC(SDValue Op) {
7916 if (Op.getOpcode() != ISD::XOR)
7917 return false;
7918 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7919 if (N1C && N1C->getAPIntValue() == 1) {
7920 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7921 Op.getOperand(0).hasOneUse();
7922 }
7923 return false;
7924}
7925
Dan Gohmand858e902010-04-17 15:26:15 +00007926SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007927 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007928 SDValue Chain = Op.getOperand(0);
7929 SDValue Cond = Op.getOperand(1);
7930 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007931 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007932 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00007933
Dan Gohman1a492952009-10-20 16:22:37 +00007934 if (Cond.getOpcode() == ISD::SETCC) {
7935 SDValue NewCond = LowerSETCC(Cond, DAG);
7936 if (NewCond.getNode())
7937 Cond = NewCond;
7938 }
Chris Lattnere55484e2008-12-25 05:34:37 +00007939#if 0
7940 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00007941 else if (Cond.getOpcode() == X86ISD::ADD ||
7942 Cond.getOpcode() == X86ISD::SUB ||
7943 Cond.getOpcode() == X86ISD::SMUL ||
7944 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00007945 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00007946#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00007947
Evan Chengad9c0a32009-12-15 00:53:42 +00007948 // Look pass (and (setcc_carry (cmp ...)), 1).
7949 if (Cond.getOpcode() == ISD::AND &&
7950 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7951 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007952 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007953 Cond = Cond.getOperand(0);
7954 }
7955
Evan Cheng3f41d662007-10-08 22:16:29 +00007956 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7957 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007958 if (Cond.getOpcode() == X86ISD::SETCC ||
7959 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007960 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007961
Dan Gohman475871a2008-07-27 21:46:04 +00007962 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007963 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00007964 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00007965 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00007966 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007967 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00007968 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00007969 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007970 default: break;
7971 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00007972 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00007973 // These can only come from an arithmetic instruction with overflow,
7974 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007975 Cond = Cond.getNode()->getOperand(1);
7976 addTest = false;
7977 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00007978 }
Evan Cheng0488db92007-09-25 01:57:46 +00007979 }
Evan Cheng370e5342008-12-03 08:38:43 +00007980 } else {
7981 unsigned CondOpc;
7982 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
7983 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00007984 if (CondOpc == ISD::OR) {
7985 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
7986 // two branches instead of an explicit OR instruction with a
7987 // separate test.
7988 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007989 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00007990 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007991 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007992 Chain, Dest, CC, Cmp);
7993 CC = Cond.getOperand(1).getOperand(0);
7994 Cond = Cmp;
7995 addTest = false;
7996 }
7997 } else { // ISD::AND
7998 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
7999 // two branches instead of an explicit AND instruction with a
8000 // separate test. However, we only do this if this block doesn't
8001 // have a fall-through edge, because this requires an explicit
8002 // jmp when the condition is false.
8003 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008004 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00008005 Op.getNode()->hasOneUse()) {
8006 X86::CondCode CCode =
8007 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8008 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008009 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00008010 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00008011 // Look for an unconditional branch following this conditional branch.
8012 // We need this because we need to reverse the successors in order
8013 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00008014 if (User->getOpcode() == ISD::BR) {
8015 SDValue FalseBB = User->getOperand(1);
8016 SDNode *NewBR =
8017 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00008018 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00008019 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00008020 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00008021
Dale Johannesene4d209d2009-02-03 20:21:25 +00008022 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008023 Chain, Dest, CC, Cmp);
8024 X86::CondCode CCode =
8025 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
8026 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008027 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00008028 Cond = Cmp;
8029 addTest = false;
8030 }
8031 }
Dan Gohman279c22e2008-10-21 03:29:32 +00008032 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00008033 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
8034 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
8035 // It should be transformed during dag combiner except when the condition
8036 // is set by a arithmetics with overflow node.
8037 X86::CondCode CCode =
8038 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8039 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008040 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00008041 Cond = Cond.getOperand(0).getOperand(1);
8042 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00008043 }
Evan Cheng0488db92007-09-25 01:57:46 +00008044 }
8045
8046 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008047 // Look pass the truncate.
8048 if (Cond.getOpcode() == ISD::TRUNCATE)
8049 Cond = Cond.getOperand(0);
8050
8051 // We know the result of AND is compared against zero. Try to match
8052 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008053 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008054 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
8055 if (NewSetCC.getNode()) {
8056 CC = NewSetCC.getOperand(0);
8057 Cond = NewSetCC.getOperand(1);
8058 addTest = false;
8059 }
8060 }
8061 }
8062
8063 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008064 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008065 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008066 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00008067 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00008068 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00008069}
8070
Anton Korobeynikove060b532007-04-17 19:34:00 +00008071
8072// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
8073// Calls to _alloca is needed to probe the stack when allocating more than 4k
8074// bytes in one go. Touching the stack at 4K increments is necessary to ensure
8075// that the guard pages used by the OS virtual memory manager are allocated in
8076// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00008077SDValue
8078X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008079 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00008080 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008081 "This should be used only on Windows targets");
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008082 assert(!Subtarget->isTargetEnvMacho());
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008083 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008084
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008085 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008086 SDValue Chain = Op.getOperand(0);
8087 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008088 // FIXME: Ensure alignment here
8089
Dan Gohman475871a2008-07-27 21:46:04 +00008090 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008091
Owen Anderson825b72b2009-08-11 20:47:22 +00008092 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008093 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008094
NAKAMURA Takumia2e07622011-03-24 07:07:00 +00008095 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008096 Flag = Chain.getValue(1);
8097
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008098 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008099
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008100 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00008101 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008102
Dale Johannesendd64c412009-02-04 00:33:20 +00008103 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008104
Dan Gohman475871a2008-07-27 21:46:04 +00008105 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008106 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008107}
8108
Dan Gohmand858e902010-04-17 15:26:15 +00008109SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00008110 MachineFunction &MF = DAG.getMachineFunction();
8111 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
8112
Dan Gohman69de1932008-02-06 22:27:42 +00008113 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00008114 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00008115
Anton Korobeynikove7beda12010-10-03 22:52:07 +00008116 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00008117 // vastart just stores the address of the VarArgsFrameIndex slot into the
8118 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00008119 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8120 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008121 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
8122 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008123 }
8124
8125 // __va_list_tag:
8126 // gp_offset (0 - 6 * 8)
8127 // fp_offset (48 - 48 + 8 * 16)
8128 // overflow_arg_area (point to parameters coming in memory).
8129 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00008130 SmallVector<SDValue, 8> MemOps;
8131 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00008132 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008133 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008134 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
8135 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008136 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008137 MemOps.push_back(Store);
8138
8139 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008140 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008141 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008142 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008143 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
8144 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008145 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008146 MemOps.push_back(Store);
8147
8148 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00008149 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008150 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00008151 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8152 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008153 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
8154 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00008155 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008156 MemOps.push_back(Store);
8157
8158 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00008159 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008160 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00008161 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
8162 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008163 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
8164 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008165 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008166 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00008167 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00008168}
8169
Dan Gohmand858e902010-04-17 15:26:15 +00008170SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00008171 assert(Subtarget->is64Bit() &&
8172 "LowerVAARG only handles 64-bit va_arg!");
8173 assert((Subtarget->isTargetLinux() ||
8174 Subtarget->isTargetDarwin()) &&
8175 "Unhandled target in LowerVAARG");
8176 assert(Op.getNode()->getNumOperands() == 4);
8177 SDValue Chain = Op.getOperand(0);
8178 SDValue SrcPtr = Op.getOperand(1);
8179 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
8180 unsigned Align = Op.getConstantOperandVal(3);
8181 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00008182
Dan Gohman320afb82010-10-12 18:00:49 +00008183 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008184 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Dan Gohman320afb82010-10-12 18:00:49 +00008185 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
8186 uint8_t ArgMode;
8187
8188 // Decide which area this value should be read from.
8189 // TODO: Implement the AMD64 ABI in its entirety. This simple
8190 // selection mechanism works only for the basic types.
8191 if (ArgVT == MVT::f80) {
8192 llvm_unreachable("va_arg for f80 not yet implemented");
8193 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
8194 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
8195 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
8196 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
8197 } else {
8198 llvm_unreachable("Unhandled argument type in LowerVAARG");
8199 }
8200
8201 if (ArgMode == 2) {
8202 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00008203 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00008204 !(DAG.getMachineFunction()
8205 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00008206 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00008207 }
8208
8209 // Insert VAARG_64 node into the DAG
8210 // VAARG_64 returns two values: Variable Argument Address, Chain
8211 SmallVector<SDValue, 11> InstOps;
8212 InstOps.push_back(Chain);
8213 InstOps.push_back(SrcPtr);
8214 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
8215 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
8216 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
8217 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
8218 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
8219 VTs, &InstOps[0], InstOps.size(),
8220 MVT::i64,
8221 MachinePointerInfo(SV),
8222 /*Align=*/0,
8223 /*Volatile=*/false,
8224 /*ReadMem=*/true,
8225 /*WriteMem=*/true);
8226 Chain = VAARG.getValue(1);
8227
8228 // Load the next argument and return it
8229 return DAG.getLoad(ArgVT, dl,
8230 Chain,
8231 VAARG,
8232 MachinePointerInfo(),
8233 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00008234}
8235
Dan Gohmand858e902010-04-17 15:26:15 +00008236SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00008237 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00008238 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00008239 SDValue Chain = Op.getOperand(0);
8240 SDValue DstPtr = Op.getOperand(1);
8241 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00008242 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
8243 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00008244 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00008245
Chris Lattnere72f2022010-09-21 05:40:29 +00008246 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00008247 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00008248 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00008249 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00008250}
8251
Dan Gohman475871a2008-07-27 21:46:04 +00008252SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00008253X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008254 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00008255 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00008256 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00008257 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00008258 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00008259 case Intrinsic::x86_sse_comieq_ss:
8260 case Intrinsic::x86_sse_comilt_ss:
8261 case Intrinsic::x86_sse_comile_ss:
8262 case Intrinsic::x86_sse_comigt_ss:
8263 case Intrinsic::x86_sse_comige_ss:
8264 case Intrinsic::x86_sse_comineq_ss:
8265 case Intrinsic::x86_sse_ucomieq_ss:
8266 case Intrinsic::x86_sse_ucomilt_ss:
8267 case Intrinsic::x86_sse_ucomile_ss:
8268 case Intrinsic::x86_sse_ucomigt_ss:
8269 case Intrinsic::x86_sse_ucomige_ss:
8270 case Intrinsic::x86_sse_ucomineq_ss:
8271 case Intrinsic::x86_sse2_comieq_sd:
8272 case Intrinsic::x86_sse2_comilt_sd:
8273 case Intrinsic::x86_sse2_comile_sd:
8274 case Intrinsic::x86_sse2_comigt_sd:
8275 case Intrinsic::x86_sse2_comige_sd:
8276 case Intrinsic::x86_sse2_comineq_sd:
8277 case Intrinsic::x86_sse2_ucomieq_sd:
8278 case Intrinsic::x86_sse2_ucomilt_sd:
8279 case Intrinsic::x86_sse2_ucomile_sd:
8280 case Intrinsic::x86_sse2_ucomigt_sd:
8281 case Intrinsic::x86_sse2_ucomige_sd:
8282 case Intrinsic::x86_sse2_ucomineq_sd: {
8283 unsigned Opc = 0;
8284 ISD::CondCode CC = ISD::SETCC_INVALID;
8285 switch (IntNo) {
8286 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00008287 case Intrinsic::x86_sse_comieq_ss:
8288 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008289 Opc = X86ISD::COMI;
8290 CC = ISD::SETEQ;
8291 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008292 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008293 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008294 Opc = X86ISD::COMI;
8295 CC = ISD::SETLT;
8296 break;
8297 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008298 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008299 Opc = X86ISD::COMI;
8300 CC = ISD::SETLE;
8301 break;
8302 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008303 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008304 Opc = X86ISD::COMI;
8305 CC = ISD::SETGT;
8306 break;
8307 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008308 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008309 Opc = X86ISD::COMI;
8310 CC = ISD::SETGE;
8311 break;
8312 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008313 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008314 Opc = X86ISD::COMI;
8315 CC = ISD::SETNE;
8316 break;
8317 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008318 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008319 Opc = X86ISD::UCOMI;
8320 CC = ISD::SETEQ;
8321 break;
8322 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008323 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008324 Opc = X86ISD::UCOMI;
8325 CC = ISD::SETLT;
8326 break;
8327 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008328 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008329 Opc = X86ISD::UCOMI;
8330 CC = ISD::SETLE;
8331 break;
8332 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008333 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008334 Opc = X86ISD::UCOMI;
8335 CC = ISD::SETGT;
8336 break;
8337 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00008338 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00008339 Opc = X86ISD::UCOMI;
8340 CC = ISD::SETGE;
8341 break;
8342 case Intrinsic::x86_sse_ucomineq_ss:
8343 case Intrinsic::x86_sse2_ucomineq_sd:
8344 Opc = X86ISD::UCOMI;
8345 CC = ISD::SETNE;
8346 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00008347 }
Evan Cheng734503b2006-09-11 02:19:56 +00008348
Dan Gohman475871a2008-07-27 21:46:04 +00008349 SDValue LHS = Op.getOperand(1);
8350 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00008351 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008352 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008353 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
8354 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8355 DAG.getConstant(X86CC, MVT::i8), Cond);
8356 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00008357 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008358 // ptest and testp intrinsics. The intrinsic these come from are designed to
8359 // return an integer value, not just an instruction so lower it to the ptest
8360 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00008361 case Intrinsic::x86_sse41_ptestz:
8362 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008363 case Intrinsic::x86_sse41_ptestnzc:
8364 case Intrinsic::x86_avx_ptestz_256:
8365 case Intrinsic::x86_avx_ptestc_256:
8366 case Intrinsic::x86_avx_ptestnzc_256:
8367 case Intrinsic::x86_avx_vtestz_ps:
8368 case Intrinsic::x86_avx_vtestc_ps:
8369 case Intrinsic::x86_avx_vtestnzc_ps:
8370 case Intrinsic::x86_avx_vtestz_pd:
8371 case Intrinsic::x86_avx_vtestc_pd:
8372 case Intrinsic::x86_avx_vtestnzc_pd:
8373 case Intrinsic::x86_avx_vtestz_ps_256:
8374 case Intrinsic::x86_avx_vtestc_ps_256:
8375 case Intrinsic::x86_avx_vtestnzc_ps_256:
8376 case Intrinsic::x86_avx_vtestz_pd_256:
8377 case Intrinsic::x86_avx_vtestc_pd_256:
8378 case Intrinsic::x86_avx_vtestnzc_pd_256: {
8379 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00008380 unsigned X86CC = 0;
8381 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00008382 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008383 case Intrinsic::x86_avx_vtestz_ps:
8384 case Intrinsic::x86_avx_vtestz_pd:
8385 case Intrinsic::x86_avx_vtestz_ps_256:
8386 case Intrinsic::x86_avx_vtestz_pd_256:
8387 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008388 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008389 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008390 // ZF = 1
8391 X86CC = X86::COND_E;
8392 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008393 case Intrinsic::x86_avx_vtestc_ps:
8394 case Intrinsic::x86_avx_vtestc_pd:
8395 case Intrinsic::x86_avx_vtestc_ps_256:
8396 case Intrinsic::x86_avx_vtestc_pd_256:
8397 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00008398 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008399 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008400 // CF = 1
8401 X86CC = X86::COND_B;
8402 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008403 case Intrinsic::x86_avx_vtestnzc_ps:
8404 case Intrinsic::x86_avx_vtestnzc_pd:
8405 case Intrinsic::x86_avx_vtestnzc_ps_256:
8406 case Intrinsic::x86_avx_vtestnzc_pd_256:
8407 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00008408 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008409 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00008410 // ZF and CF = 0
8411 X86CC = X86::COND_A;
8412 break;
8413 }
Eric Christopherfd179292009-08-27 18:07:15 +00008414
Eric Christopher71c67532009-07-29 00:28:05 +00008415 SDValue LHS = Op.getOperand(1);
8416 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008417 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
8418 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00008419 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
8420 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
8421 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00008422 }
Evan Cheng5759f972008-05-04 09:15:50 +00008423
8424 // Fix vector shift instructions where the last operand is a non-immediate
8425 // i32 value.
8426 case Intrinsic::x86_sse2_pslli_w:
8427 case Intrinsic::x86_sse2_pslli_d:
8428 case Intrinsic::x86_sse2_pslli_q:
8429 case Intrinsic::x86_sse2_psrli_w:
8430 case Intrinsic::x86_sse2_psrli_d:
8431 case Intrinsic::x86_sse2_psrli_q:
8432 case Intrinsic::x86_sse2_psrai_w:
8433 case Intrinsic::x86_sse2_psrai_d:
8434 case Intrinsic::x86_mmx_pslli_w:
8435 case Intrinsic::x86_mmx_pslli_d:
8436 case Intrinsic::x86_mmx_pslli_q:
8437 case Intrinsic::x86_mmx_psrli_w:
8438 case Intrinsic::x86_mmx_psrli_d:
8439 case Intrinsic::x86_mmx_psrli_q:
8440 case Intrinsic::x86_mmx_psrai_w:
8441 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00008442 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00008443 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00008444 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00008445
8446 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008447 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008448 switch (IntNo) {
8449 case Intrinsic::x86_sse2_pslli_w:
8450 NewIntNo = Intrinsic::x86_sse2_psll_w;
8451 break;
8452 case Intrinsic::x86_sse2_pslli_d:
8453 NewIntNo = Intrinsic::x86_sse2_psll_d;
8454 break;
8455 case Intrinsic::x86_sse2_pslli_q:
8456 NewIntNo = Intrinsic::x86_sse2_psll_q;
8457 break;
8458 case Intrinsic::x86_sse2_psrli_w:
8459 NewIntNo = Intrinsic::x86_sse2_psrl_w;
8460 break;
8461 case Intrinsic::x86_sse2_psrli_d:
8462 NewIntNo = Intrinsic::x86_sse2_psrl_d;
8463 break;
8464 case Intrinsic::x86_sse2_psrli_q:
8465 NewIntNo = Intrinsic::x86_sse2_psrl_q;
8466 break;
8467 case Intrinsic::x86_sse2_psrai_w:
8468 NewIntNo = Intrinsic::x86_sse2_psra_w;
8469 break;
8470 case Intrinsic::x86_sse2_psrai_d:
8471 NewIntNo = Intrinsic::x86_sse2_psra_d;
8472 break;
8473 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008474 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00008475 switch (IntNo) {
8476 case Intrinsic::x86_mmx_pslli_w:
8477 NewIntNo = Intrinsic::x86_mmx_psll_w;
8478 break;
8479 case Intrinsic::x86_mmx_pslli_d:
8480 NewIntNo = Intrinsic::x86_mmx_psll_d;
8481 break;
8482 case Intrinsic::x86_mmx_pslli_q:
8483 NewIntNo = Intrinsic::x86_mmx_psll_q;
8484 break;
8485 case Intrinsic::x86_mmx_psrli_w:
8486 NewIntNo = Intrinsic::x86_mmx_psrl_w;
8487 break;
8488 case Intrinsic::x86_mmx_psrli_d:
8489 NewIntNo = Intrinsic::x86_mmx_psrl_d;
8490 break;
8491 case Intrinsic::x86_mmx_psrli_q:
8492 NewIntNo = Intrinsic::x86_mmx_psrl_q;
8493 break;
8494 case Intrinsic::x86_mmx_psrai_w:
8495 NewIntNo = Intrinsic::x86_mmx_psra_w;
8496 break;
8497 case Intrinsic::x86_mmx_psrai_d:
8498 NewIntNo = Intrinsic::x86_mmx_psra_d;
8499 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00008500 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00008501 }
8502 break;
8503 }
8504 }
Mon P Wangefa42202009-09-03 19:56:25 +00008505
8506 // The vector shift intrinsics with scalars uses 32b shift amounts but
8507 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
8508 // to be zero.
8509 SDValue ShOps[4];
8510 ShOps[0] = ShAmt;
8511 ShOps[1] = DAG.getConstant(0, MVT::i32);
8512 if (ShAmtVT == MVT::v4i32) {
8513 ShOps[2] = DAG.getUNDEF(MVT::i32);
8514 ShOps[3] = DAG.getUNDEF(MVT::i32);
8515 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
8516 } else {
8517 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00008518// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00008519 }
8520
Owen Andersone50ed302009-08-10 22:56:29 +00008521 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008522 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008523 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008524 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00008525 Op.getOperand(1), ShAmt);
8526 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00008527 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00008528}
Evan Cheng72261582005-12-20 06:22:03 +00008529
Dan Gohmand858e902010-04-17 15:26:15 +00008530SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
8531 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00008532 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8533 MFI->setReturnAddressIsTaken(true);
8534
Bill Wendling64e87322009-01-16 19:25:27 +00008535 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008536 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00008537
8538 if (Depth > 0) {
8539 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
8540 SDValue Offset =
8541 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00008542 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008543 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00008544 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008545 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00008546 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00008547 }
8548
8549 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00008550 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00008551 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008552 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008553}
8554
Dan Gohmand858e902010-04-17 15:26:15 +00008555SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00008556 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8557 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00008558
Owen Andersone50ed302009-08-10 22:56:29 +00008559 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008560 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00008561 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
8562 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00008563 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00008564 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00008565 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
8566 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00008567 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00008568 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00008569}
8570
Dan Gohman475871a2008-07-27 21:46:04 +00008571SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008572 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008573 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008574}
8575
Dan Gohmand858e902010-04-17 15:26:15 +00008576SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008577 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00008578 SDValue Chain = Op.getOperand(0);
8579 SDValue Offset = Op.getOperand(1);
8580 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008581 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008582
Dan Gohmand8816272010-08-11 18:14:00 +00008583 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
8584 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
8585 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008586 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008587
Dan Gohmand8816272010-08-11 18:14:00 +00008588 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
8589 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008590 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008591 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
8592 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00008593 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008594 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008595
Dale Johannesene4d209d2009-02-03 20:21:25 +00008596 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008597 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008598 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008599}
8600
Dan Gohman475871a2008-07-27 21:46:04 +00008601SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008602 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008603 SDValue Root = Op.getOperand(0);
8604 SDValue Trmp = Op.getOperand(1); // trampoline
8605 SDValue FPtr = Op.getOperand(2); // nested function
8606 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008607 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008608
Dan Gohman69de1932008-02-06 22:27:42 +00008609 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008610
8611 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008612 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00008613
8614 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00008615 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
8616 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00008617
Evan Cheng0e6a0522011-07-18 20:57:22 +00008618 const unsigned char N86R10 = X86_MC::getX86RegNum(X86::R10);
8619 const unsigned char N86R11 = X86_MC::getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00008620
8621 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
8622
8623 // Load the pointer to the nested function into R11.
8624 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00008625 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008626 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008627 Addr, MachinePointerInfo(TrmpAddr),
8628 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008629
Owen Anderson825b72b2009-08-11 20:47:22 +00008630 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8631 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008632 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8633 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00008634 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008635
8636 // Load the 'nest' parameter value into R10.
8637 // R10 is specified in X86CallingConv.td
8638 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00008639 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8640 DAG.getConstant(10, MVT::i64));
8641 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008642 Addr, MachinePointerInfo(TrmpAddr, 10),
8643 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008644
Owen Anderson825b72b2009-08-11 20:47:22 +00008645 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8646 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008647 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8648 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00008649 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008650
8651 // Jump to the nested function.
8652 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00008653 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8654 DAG.getConstant(20, MVT::i64));
8655 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008656 Addr, MachinePointerInfo(TrmpAddr, 20),
8657 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008658
8659 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008660 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8661 DAG.getConstant(22, MVT::i64));
8662 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008663 MachinePointerInfo(TrmpAddr, 22),
8664 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008665
Dan Gohman475871a2008-07-27 21:46:04 +00008666 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008667 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008668 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008669 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008670 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008671 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008672 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008673 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008674
8675 switch (CC) {
8676 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008677 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008678 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008679 case CallingConv::X86_StdCall: {
8680 // Pass 'nest' parameter in ECX.
8681 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008682 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008683
8684 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00008685 FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008686 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008687
Chris Lattner58d74912008-03-12 17:45:29 +00008688 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008689 unsigned InRegCount = 0;
8690 unsigned Idx = 1;
8691
8692 for (FunctionType::param_iterator I = FTy->param_begin(),
8693 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008694 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008695 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008696 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008697
8698 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00008699 report_fatal_error("Nest register in use - reduce number of inreg"
8700 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008701 }
8702 }
8703 break;
8704 }
8705 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00008706 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00008707 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008708 // Pass 'nest' parameter in EAX.
8709 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008710 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008711 break;
8712 }
8713
Dan Gohman475871a2008-07-27 21:46:04 +00008714 SDValue OutChains[4];
8715 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008716
Owen Anderson825b72b2009-08-11 20:47:22 +00008717 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8718 DAG.getConstant(10, MVT::i32));
8719 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008720
Chris Lattnera62fe662010-02-05 19:20:30 +00008721 // This is storing the opcode for MOV32ri.
8722 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Evan Cheng0e6a0522011-07-18 20:57:22 +00008723 const unsigned char N86Reg = X86_MC::getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00008724 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008725 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008726 Trmp, MachinePointerInfo(TrmpAddr),
8727 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008728
Owen Anderson825b72b2009-08-11 20:47:22 +00008729 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8730 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008731 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
8732 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00008733 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008734
Chris Lattnera62fe662010-02-05 19:20:30 +00008735 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00008736 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8737 DAG.getConstant(5, MVT::i32));
8738 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008739 MachinePointerInfo(TrmpAddr, 5),
8740 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008741
Owen Anderson825b72b2009-08-11 20:47:22 +00008742 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8743 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008744 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
8745 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00008746 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008747
Dan Gohman475871a2008-07-27 21:46:04 +00008748 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008749 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008750 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008751 }
8752}
8753
Dan Gohmand858e902010-04-17 15:26:15 +00008754SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
8755 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008756 /*
8757 The rounding mode is in bits 11:10 of FPSR, and has the following
8758 settings:
8759 00 Round to nearest
8760 01 Round to -inf
8761 10 Round to +inf
8762 11 Round to 0
8763
8764 FLT_ROUNDS, on the other hand, expects the following:
8765 -1 Undefined
8766 0 Round to 0
8767 1 Round to nearest
8768 2 Round to +inf
8769 3 Round to -inf
8770
8771 To perform the conversion, we do:
8772 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
8773 */
8774
8775 MachineFunction &MF = DAG.getMachineFunction();
8776 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00008777 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008778 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008779 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00008780 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008781
8782 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00008783 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008784 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008785
Michael J. Spencerec38de22010-10-10 22:04:20 +00008786
Chris Lattner2156b792010-09-22 01:11:26 +00008787 MachineMemOperand *MMO =
8788 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8789 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008790
Chris Lattner2156b792010-09-22 01:11:26 +00008791 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
8792 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
8793 DAG.getVTList(MVT::Other),
8794 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008795
8796 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00008797 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00008798 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008799
8800 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00008801 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00008802 DAG.getNode(ISD::SRL, DL, MVT::i16,
8803 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008804 CWD, DAG.getConstant(0x800, MVT::i16)),
8805 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00008806 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00008807 DAG.getNode(ISD::SRL, DL, MVT::i16,
8808 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008809 CWD, DAG.getConstant(0x400, MVT::i16)),
8810 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008811
Dan Gohman475871a2008-07-27 21:46:04 +00008812 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00008813 DAG.getNode(ISD::AND, DL, MVT::i16,
8814 DAG.getNode(ISD::ADD, DL, MVT::i16,
8815 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00008816 DAG.getConstant(1, MVT::i16)),
8817 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008818
8819
Duncan Sands83ec4b62008-06-06 12:08:01 +00008820 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00008821 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008822}
8823
Dan Gohmand858e902010-04-17 15:26:15 +00008824SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008825 EVT VT = Op.getValueType();
8826 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008827 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008828 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008829
8830 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008831 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00008832 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00008833 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008834 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008835 }
Evan Cheng18efe262007-12-14 02:13:44 +00008836
Evan Cheng152804e2007-12-14 08:30:15 +00008837 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008838 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008839 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008840
8841 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008842 SDValue Ops[] = {
8843 Op,
8844 DAG.getConstant(NumBits+NumBits-1, OpVT),
8845 DAG.getConstant(X86::COND_E, MVT::i8),
8846 Op.getValue(1)
8847 };
8848 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008849
8850 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00008851 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00008852
Owen Anderson825b72b2009-08-11 20:47:22 +00008853 if (VT == MVT::i8)
8854 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008855 return Op;
8856}
8857
Dan Gohmand858e902010-04-17 15:26:15 +00008858SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008859 EVT VT = Op.getValueType();
8860 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008861 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008862 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008863
8864 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008865 if (VT == MVT::i8) {
8866 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008867 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008868 }
Evan Cheng152804e2007-12-14 08:30:15 +00008869
8870 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008871 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008872 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008873
8874 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008875 SDValue Ops[] = {
8876 Op,
8877 DAG.getConstant(NumBits, OpVT),
8878 DAG.getConstant(X86::COND_E, MVT::i8),
8879 Op.getValue(1)
8880 };
8881 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008882
Owen Anderson825b72b2009-08-11 20:47:22 +00008883 if (VT == MVT::i8)
8884 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008885 return Op;
8886}
8887
Dan Gohmand858e902010-04-17 15:26:15 +00008888SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008889 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00008890 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008891 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008892
Mon P Wangaf9b9522008-12-18 21:42:19 +00008893 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
8894 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
8895 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
8896 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
8897 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
8898 //
8899 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
8900 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
8901 // return AloBlo + AloBhi + AhiBlo;
8902
8903 SDValue A = Op.getOperand(0);
8904 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008905
Dale Johannesene4d209d2009-02-03 20:21:25 +00008906 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008907 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8908 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008909 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008910 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8911 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008912 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008913 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008914 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008915 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008916 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008917 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008918 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008919 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008920 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008921 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008922 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8923 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008924 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008925 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8926 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008927 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
8928 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008929 return Res;
8930}
8931
Nadav Rotem43012222011-05-11 08:12:09 +00008932SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
8933
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008934 EVT VT = Op.getValueType();
8935 DebugLoc dl = Op.getDebugLoc();
8936 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +00008937 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008938
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008939 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008940
Nadav Rotem43012222011-05-11 08:12:09 +00008941 // Must have SSE2.
8942 if (!Subtarget->hasSSE2()) return SDValue();
Nate Begeman51409212010-07-28 00:21:48 +00008943
Nadav Rotem43012222011-05-11 08:12:09 +00008944 // Optimize shl/srl/sra with constant shift amount.
8945 if (isSplatVector(Amt.getNode())) {
8946 SDValue SclrAmt = Amt->getOperand(0);
8947 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
8948 uint64_t ShiftAmt = C->getZExtValue();
8949
8950 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SHL)
8951 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8952 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8953 R, DAG.getConstant(ShiftAmt, MVT::i32));
8954
8955 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SHL)
8956 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8957 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8958 R, DAG.getConstant(ShiftAmt, MVT::i32));
8959
8960 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SHL)
8961 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8962 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8963 R, DAG.getConstant(ShiftAmt, MVT::i32));
8964
8965 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SRL)
8966 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8967 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8968 R, DAG.getConstant(ShiftAmt, MVT::i32));
8969
8970 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRL)
8971 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8972 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
8973 R, DAG.getConstant(ShiftAmt, MVT::i32));
8974
8975 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRL)
8976 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8977 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
8978 R, DAG.getConstant(ShiftAmt, MVT::i32));
8979
8980 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRA)
8981 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8982 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
8983 R, DAG.getConstant(ShiftAmt, MVT::i32));
8984
8985 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRA)
8986 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8987 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
8988 R, DAG.getConstant(ShiftAmt, MVT::i32));
8989 }
8990 }
8991
8992 // Lower SHL with variable shift amount.
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00008993 // Cannot lower SHL without SSE2 or later.
8994 if (!Subtarget->hasSSE2()) return SDValue();
Nadav Rotem43012222011-05-11 08:12:09 +00008995
8996 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00008997 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8998 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8999 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
9000
9001 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009002
Nate Begeman51409212010-07-28 00:21:48 +00009003 std::vector<Constant*> CV(4, CI);
9004 Constant *C = ConstantVector::get(CV);
9005 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9006 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009007 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009008 false, false, 16);
9009
9010 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009011 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009012 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
9013 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
9014 }
Nadav Rotem43012222011-05-11 08:12:09 +00009015 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009016 // a = a << 5;
9017 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9018 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9019 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
9020
9021 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
9022 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
9023
9024 std::vector<Constant*> CVM1(16, CM1);
9025 std::vector<Constant*> CVM2(16, CM2);
9026 Constant *C = ConstantVector::get(CVM1);
9027 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9028 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009029 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009030 false, false, 16);
9031
9032 // r = pblendv(r, psllw(r & (char16)15, 4), a);
9033 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9034 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9035 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9036 DAG.getConstant(4, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009037 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009038 // a += a
9039 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009040
Nate Begeman51409212010-07-28 00:21:48 +00009041 C = ConstantVector::get(CVM2);
9042 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9043 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009044 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009045 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009046
Nate Begeman51409212010-07-28 00:21:48 +00009047 // r = pblendv(r, psllw(r & (char16)63, 2), a);
9048 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9049 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9050 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9051 DAG.getConstant(2, MVT::i32));
Nate Begeman672fb622010-12-20 22:04:24 +00009052 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009053 // a += a
9054 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009055
Nate Begeman51409212010-07-28 00:21:48 +00009056 // return pblendv(r, r+r, a);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009057 R = DAG.getNode(X86ISD::PBLENDVB, dl, VT,
Nate Begeman51409212010-07-28 00:21:48 +00009058 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
9059 return R;
9060 }
9061 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009062}
Mon P Wangaf9b9522008-12-18 21:42:19 +00009063
Dan Gohmand858e902010-04-17 15:26:15 +00009064SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00009065 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
9066 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00009067 // looks for this combo and may remove the "setcc" instruction if the "setcc"
9068 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00009069 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00009070 SDValue LHS = N->getOperand(0);
9071 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00009072 unsigned BaseOp = 0;
9073 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009074 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00009075 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009076 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00009077 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00009078 // A subtract of one will be selected as a INC. Note that INC doesn't
9079 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009080 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9081 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009082 BaseOp = X86ISD::INC;
9083 Cond = X86::COND_O;
9084 break;
9085 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009086 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00009087 Cond = X86::COND_O;
9088 break;
9089 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009090 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00009091 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009092 break;
9093 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00009094 // A subtract of one will be selected as a DEC. Note that DEC doesn't
9095 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +00009096 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9097 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +00009098 BaseOp = X86ISD::DEC;
9099 Cond = X86::COND_O;
9100 break;
9101 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009102 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00009103 Cond = X86::COND_O;
9104 break;
9105 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009106 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00009107 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00009108 break;
9109 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00009110 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00009111 Cond = X86::COND_O;
9112 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009113 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
9114 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
9115 MVT::i32);
9116 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009117
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009118 SDValue SetCC =
9119 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
9120 DAG.getConstant(X86::COND_O, MVT::i32),
9121 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009122
Dan Gohman6e5fda22011-07-22 18:45:15 +00009123 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009124 }
Bill Wendling74c37652008-12-09 22:08:41 +00009125 }
Bill Wendling3fafd932008-11-26 22:37:40 +00009126
Bill Wendling61edeb52008-12-02 01:06:39 +00009127 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009128 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009129 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00009130
Bill Wendling61edeb52008-12-02 01:06:39 +00009131 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +00009132 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
9133 DAG.getConstant(Cond, MVT::i32),
9134 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00009135
Dan Gohman6e5fda22011-07-22 18:45:15 +00009136 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +00009137}
9138
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009139SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const{
9140 DebugLoc dl = Op.getDebugLoc();
9141 SDNode* Node = Op.getNode();
9142 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
9143 EVT VT = Node->getValueType(0);
9144
9145 if (Subtarget->hasSSE2() && VT.isVector()) {
9146 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
9147 ExtraVT.getScalarType().getSizeInBits();
9148 SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
9149
9150 unsigned SHLIntrinsicsID = 0;
9151 unsigned SRAIntrinsicsID = 0;
9152 switch (VT.getSimpleVT().SimpleTy) {
9153 default:
9154 return SDValue();
9155 case MVT::v2i64: {
9156 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_q;
9157 SRAIntrinsicsID = 0;
9158 break;
9159 }
9160 case MVT::v4i32: {
9161 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_d;
9162 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_d;
9163 break;
9164 }
9165 case MVT::v8i16: {
9166 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_w;
9167 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_w;
9168 break;
9169 }
9170 }
9171
9172 SDValue Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9173 DAG.getConstant(SHLIntrinsicsID, MVT::i32),
9174 Node->getOperand(0), ShAmt);
9175
9176 // In case of 1 bit sext, no need to shr
9177 if (ExtraVT.getScalarType().getSizeInBits() == 1) return Tmp1;
9178
9179 if (SRAIntrinsicsID) {
9180 Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9181 DAG.getConstant(SRAIntrinsicsID, MVT::i32),
9182 Tmp1, ShAmt);
9183 }
9184 return Tmp1;
9185 }
9186
9187 return SDValue();
9188}
9189
9190
Eric Christopher9a9d2752010-07-22 02:48:34 +00009191SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
9192 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009193
Eric Christopher77ed1352011-07-08 00:04:56 +00009194 // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
9195 // There isn't any reason to disable it if the target processor supports it.
9196 if (!Subtarget->hasSSE2() && !Subtarget->is64Bit()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00009197 SDValue Chain = Op.getOperand(0);
Eric Christopher77ed1352011-07-08 00:04:56 +00009198 SDValue Zero = DAG.getConstant(0, MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00009199 SDValue Ops[] = {
9200 DAG.getRegister(X86::ESP, MVT::i32), // Base
9201 DAG.getTargetConstant(1, MVT::i8), // Scale
9202 DAG.getRegister(0, MVT::i32), // Index
9203 DAG.getTargetConstant(0, MVT::i32), // Disp
9204 DAG.getRegister(0, MVT::i32), // Segment.
9205 Zero,
9206 Chain
9207 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00009208 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00009209 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9210 array_lengthof(Ops));
9211 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00009212 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009213
Eric Christopher9a9d2752010-07-22 02:48:34 +00009214 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00009215 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00009216 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009217
Chris Lattner132929a2010-08-14 17:26:09 +00009218 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
9219 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
9220 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
9221 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00009222
Chris Lattner132929a2010-08-14 17:26:09 +00009223 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
9224 if (!Op1 && !Op2 && !Op3 && Op4)
9225 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009226
Chris Lattner132929a2010-08-14 17:26:09 +00009227 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
9228 if (Op1 && !Op2 && !Op3 && !Op4)
9229 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009230
9231 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00009232 // (MFENCE)>;
9233 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00009234}
9235
Dan Gohmand858e902010-04-17 15:26:15 +00009236SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009237 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009238 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00009239 unsigned Reg = 0;
9240 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00009241 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009242 default:
9243 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00009244 case MVT::i8: Reg = X86::AL; size = 1; break;
9245 case MVT::i16: Reg = X86::AX; size = 2; break;
9246 case MVT::i32: Reg = X86::EAX; size = 4; break;
9247 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00009248 assert(Subtarget->is64Bit() && "Node not type legal!");
9249 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00009250 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00009251 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009252 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00009253 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00009254 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009255 Op.getOperand(1),
9256 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00009257 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00009258 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009259 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009260 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
9261 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
9262 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00009263 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00009264 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00009265 return cpOut;
9266}
9267
Duncan Sands1607f052008-12-01 11:39:25 +00009268SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009269 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00009270 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009271 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009272 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009273 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009274 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009275 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
9276 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00009277 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00009278 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
9279 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00009280 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00009281 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00009282 rdx.getValue(1)
9283 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00009284 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009285}
9286
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009287SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +00009288 SelectionDAG &DAG) const {
9289 EVT SrcVT = Op.getOperand(0).getValueType();
9290 EVT DstVT = Op.getValueType();
Chris Lattner2a786eb2010-12-19 20:19:20 +00009291 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
9292 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009293 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00009294 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009295 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +00009296 // i64 <=> MMX conversions are Legal.
9297 if (SrcVT==MVT::i64 && DstVT.isVector())
9298 return Op;
9299 if (DstVT==MVT::i64 && SrcVT.isVector())
9300 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00009301 // MMX <=> MMX conversions are Legal.
9302 if (SrcVT.isVector() && DstVT.isVector())
9303 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00009304 // All other conversions need to be expanded.
9305 return SDValue();
9306}
Chris Lattner5b856542010-12-20 00:59:46 +00009307
Dan Gohmand858e902010-04-17 15:26:15 +00009308SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009309 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00009310 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00009311 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009312 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00009313 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009314 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009315 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00009316 Node->getOperand(0),
9317 Node->getOperand(1), negOp,
9318 cast<AtomicSDNode>(Node)->getSrcValue(),
9319 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00009320}
9321
Chris Lattner5b856542010-12-20 00:59:46 +00009322static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
9323 EVT VT = Op.getNode()->getValueType(0);
9324
9325 // Let legalize expand this if it isn't a legal type yet.
9326 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
9327 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009328
Chris Lattner5b856542010-12-20 00:59:46 +00009329 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009330
Chris Lattner5b856542010-12-20 00:59:46 +00009331 unsigned Opc;
9332 bool ExtraOp = false;
9333 switch (Op.getOpcode()) {
9334 default: assert(0 && "Invalid code");
9335 case ISD::ADDC: Opc = X86ISD::ADD; break;
9336 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
9337 case ISD::SUBC: Opc = X86ISD::SUB; break;
9338 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
9339 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00009340
Chris Lattner5b856542010-12-20 00:59:46 +00009341 if (!ExtraOp)
9342 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9343 Op.getOperand(1));
9344 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9345 Op.getOperand(1), Op.getOperand(2));
9346}
9347
Evan Cheng0db9fe62006-04-25 20:13:52 +00009348/// LowerOperation - Provide custom lowering hooks for some operations.
9349///
Dan Gohmand858e902010-04-17 15:26:15 +00009350SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00009351 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009352 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009353 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Eric Christopher9a9d2752010-07-22 02:48:34 +00009354 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009355 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
9356 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009357 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00009358 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009359 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
9360 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
9361 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
David Greene91585092011-01-26 15:38:49 +00009362 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
David Greenecfe33c42011-01-26 19:13:22 +00009363 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009364 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
9365 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
9366 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009367 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00009368 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00009369 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009370 case ISD::SHL_PARTS:
9371 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +00009372 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009373 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00009374 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009375 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00009376 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009377 case ISD::FABS: return LowerFABS(Op, DAG);
9378 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00009379 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00009380 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009381 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00009382 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00009383 case ISD::SELECT: return LowerSELECT(Op, DAG);
9384 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009385 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009386 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00009387 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00009388 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009389 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00009390 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
9391 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009392 case ISD::FRAME_TO_ARGS_OFFSET:
9393 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00009394 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009395 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009396 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00009397 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00009398 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
9399 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009400 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +00009401 case ISD::SRA:
9402 case ISD::SRL:
9403 case ISD::SHL: return LowerShift(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00009404 case ISD::SADDO:
9405 case ISD::UADDO:
9406 case ISD::SSUBO:
9407 case ISD::USUBO:
9408 case ISD::SMULO:
9409 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00009410 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009411 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +00009412 case ISD::ADDC:
9413 case ISD::ADDE:
9414 case ISD::SUBC:
9415 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00009416 }
Chris Lattner27a6c732007-11-24 07:07:01 +00009417}
9418
Duncan Sands1607f052008-12-01 11:39:25 +00009419void X86TargetLowering::
9420ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009421 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009422 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009423 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00009424 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00009425
9426 SDValue Chain = Node->getOperand(0);
9427 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009428 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009429 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00009430 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009431 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00009432 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00009433 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00009434 SDValue Result =
9435 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
9436 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00009437 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009438 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009439 Results.push_back(Result.getValue(2));
9440}
9441
Duncan Sands126d9072008-07-04 11:47:58 +00009442/// ReplaceNodeResults - Replace a node with an illegal result type
9443/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00009444void X86TargetLowering::ReplaceNodeResults(SDNode *N,
9445 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00009446 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009447 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00009448 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00009449 default:
Duncan Sands1607f052008-12-01 11:39:25 +00009450 assert(false && "Do not know how to custom type legalize this operation!");
9451 return;
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00009452 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +00009453 case ISD::ADDC:
9454 case ISD::ADDE:
9455 case ISD::SUBC:
9456 case ISD::SUBE:
9457 // We don't want to expand or promote these.
9458 return;
Duncan Sands1607f052008-12-01 11:39:25 +00009459 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00009460 std::pair<SDValue,SDValue> Vals =
9461 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00009462 SDValue FIST = Vals.first, StackSlot = Vals.second;
9463 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00009464 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00009465 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00009466 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
9467 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00009468 }
9469 return;
9470 }
9471 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009472 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +00009473 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009474 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00009475 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00009476 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00009477 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00009478 eax.getValue(2));
9479 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
9480 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00009481 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009482 Results.push_back(edx.getValue(1));
9483 return;
9484 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009485 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00009486 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009487 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00009488 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009489 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9490 DAG.getConstant(0, MVT::i32));
9491 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9492 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009493 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
9494 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009495 cpInL.getValue(1));
9496 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00009497 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9498 DAG.getConstant(0, MVT::i32));
9499 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9500 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00009501 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00009502 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009503 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00009504 swapInL.getValue(1));
9505 SDValue Ops[] = { swapInH.getValue(0),
9506 N->getOperand(1),
9507 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00009508 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +00009509 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
9510 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
9511 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +00009512 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009513 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00009514 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00009515 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00009516 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00009517 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00009518 Results.push_back(cpOutH.getValue(1));
9519 return;
9520 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009521 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00009522 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
9523 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009524 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00009525 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
9526 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009527 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00009528 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
9529 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009530 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00009531 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
9532 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009533 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00009534 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
9535 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009536 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00009537 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
9538 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00009539 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00009540 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
9541 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00009542 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00009543}
9544
Evan Cheng72261582005-12-20 06:22:03 +00009545const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
9546 switch (Opcode) {
9547 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00009548 case X86ISD::BSF: return "X86ISD::BSF";
9549 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00009550 case X86ISD::SHLD: return "X86ISD::SHLD";
9551 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00009552 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009553 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00009554 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00009555 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00009556 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00009557 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00009558 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
9559 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
9560 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00009561 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00009562 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00009563 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00009564 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00009565 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00009566 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00009567 case X86ISD::COMI: return "X86ISD::COMI";
9568 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00009569 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00009570 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +00009571 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
9572 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +00009573 case X86ISD::CMOV: return "X86ISD::CMOV";
9574 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00009575 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00009576 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
9577 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00009578 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00009579 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00009580 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009581 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00009582 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00009583 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
9584 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00009585 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00009586 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +00009587 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Nate Begemanb65c1752010-12-17 22:55:37 +00009588 case X86ISD::PSIGNB: return "X86ISD::PSIGNB";
9589 case X86ISD::PSIGNW: return "X86ISD::PSIGNW";
9590 case X86ISD::PSIGND: return "X86ISD::PSIGND";
Nate Begeman672fb622010-12-20 22:04:24 +00009591 case X86ISD::PBLENDVB: return "X86ISD::PBLENDVB";
Evan Cheng8ca29322006-11-10 21:43:37 +00009592 case X86ISD::FMAX: return "X86ISD::FMAX";
9593 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00009594 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
9595 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00009596 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00009597 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009598 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00009599 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009600 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00009601 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
9602 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009603 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
9604 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
9605 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
9606 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
9607 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
9608 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00009609 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
9610 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00009611 case X86ISD::VSHL: return "X86ISD::VSHL";
9612 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00009613 case X86ISD::CMPPD: return "X86ISD::CMPPD";
9614 case X86ISD::CMPPS: return "X86ISD::CMPPS";
9615 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
9616 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
9617 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
9618 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
9619 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
9620 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
9621 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
9622 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00009623 case X86ISD::ADD: return "X86ISD::ADD";
9624 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +00009625 case X86ISD::ADC: return "X86ISD::ADC";
9626 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +00009627 case X86ISD::SMUL: return "X86ISD::SMUL";
9628 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00009629 case X86ISD::INC: return "X86ISD::INC";
9630 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +00009631 case X86ISD::OR: return "X86ISD::OR";
9632 case X86ISD::XOR: return "X86ISD::XOR";
9633 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +00009634 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +00009635 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009636 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009637 case X86ISD::PALIGN: return "X86ISD::PALIGN";
9638 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
9639 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
9640 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
9641 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
9642 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
9643 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
9644 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
9645 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009646 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00009647 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009648 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00009649 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
9650 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009651 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
9652 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
9653 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
9654 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
9655 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
9656 case X86ISD::MOVSD: return "X86ISD::MOVSD";
9657 case X86ISD::MOVSS: return "X86ISD::MOVSS";
9658 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
9659 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
David Greenefbf05d32011-02-22 23:31:46 +00009660 case X86ISD::VUNPCKLPDY: return "X86ISD::VUNPCKLPDY";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00009661 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
9662 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
9663 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
9664 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
9665 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
9666 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
9667 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
9668 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
9669 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
9670 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00009671 case X86ISD::VPERMIL: return "X86ISD::VPERMIL";
Dan Gohmand6708ea2009-08-15 01:38:56 +00009672 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +00009673 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009674 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Evan Cheng72261582005-12-20 06:22:03 +00009675 }
9676}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00009677
Chris Lattnerc9addb72007-03-30 23:15:24 +00009678// isLegalAddressingMode - Return true if the addressing mode represented
9679// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00009680bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009681 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +00009682 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009683 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +00009684 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +00009685
Chris Lattnerc9addb72007-03-30 23:15:24 +00009686 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009687 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +00009688 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00009689
Chris Lattnerc9addb72007-03-30 23:15:24 +00009690 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +00009691 unsigned GVFlags =
9692 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009693
Chris Lattnerdfed4132009-07-10 07:38:24 +00009694 // If a reference to this global requires an extra load, we can't fold it.
9695 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +00009696 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009697
Chris Lattnerdfed4132009-07-10 07:38:24 +00009698 // If BaseGV requires a register for the PIC base, we cannot also have a
9699 // BaseReg specified.
9700 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +00009701 return false;
Evan Cheng52787842007-08-01 23:46:47 +00009702
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009703 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +00009704 if ((M != CodeModel::Small || R != Reloc::Static) &&
9705 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009706 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00009707 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009708
Chris Lattnerc9addb72007-03-30 23:15:24 +00009709 switch (AM.Scale) {
9710 case 0:
9711 case 1:
9712 case 2:
9713 case 4:
9714 case 8:
9715 // These scales always work.
9716 break;
9717 case 3:
9718 case 5:
9719 case 9:
9720 // These scales are formed with basereg+scalereg. Only accept if there is
9721 // no basereg yet.
9722 if (AM.HasBaseReg)
9723 return false;
9724 break;
9725 default: // Other stuff never works.
9726 return false;
9727 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009728
Chris Lattnerc9addb72007-03-30 23:15:24 +00009729 return true;
9730}
9731
9732
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009733bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00009734 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +00009735 return false;
Evan Chenge127a732007-10-29 07:57:50 +00009736 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
9737 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00009738 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00009739 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00009740 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +00009741}
9742
Owen Andersone50ed302009-08-10 22:56:29 +00009743bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009744 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009745 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009746 unsigned NumBits1 = VT1.getSizeInBits();
9747 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00009748 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009749 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00009750 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009751}
Evan Cheng2bd122c2007-10-26 01:56:11 +00009752
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009753bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00009754 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00009755 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00009756}
9757
Owen Andersone50ed302009-08-10 22:56:29 +00009758bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00009759 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00009760 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00009761}
9762
Owen Andersone50ed302009-08-10 22:56:29 +00009763bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +00009764 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +00009765 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +00009766}
9767
Evan Cheng60c07e12006-07-05 22:17:51 +00009768/// isShuffleMaskLegal - Targets can use this to indicate that they only
9769/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
9770/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
9771/// are assumed to be legal.
9772bool
Eric Christopherfd179292009-08-27 18:07:15 +00009773X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +00009774 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +00009775 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +00009776 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +00009777 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +00009778
Nate Begemana09008b2009-10-19 02:17:23 +00009779 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +00009780 return (VT.getVectorNumElements() == 2 ||
9781 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
9782 isMOVLMask(M, VT) ||
9783 isSHUFPMask(M, VT) ||
9784 isPSHUFDMask(M, VT) ||
9785 isPSHUFHWMask(M, VT) ||
9786 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +00009787 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +00009788 isUNPCKLMask(M, VT) ||
9789 isUNPCKHMask(M, VT) ||
9790 isUNPCKL_v_undef_Mask(M, VT) ||
9791 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009792}
9793
Dan Gohman7d8143f2008-04-09 20:09:42 +00009794bool
Nate Begeman5a5ca152009-04-29 05:20:52 +00009795X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +00009796 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00009797 unsigned NumElts = VT.getVectorNumElements();
9798 // FIXME: This collection of masks seems suspect.
9799 if (NumElts == 2)
9800 return true;
9801 if (NumElts == 4 && VT.getSizeInBits() == 128) {
9802 return (isMOVLMask(Mask, VT) ||
9803 isCommutedMOVLMask(Mask, VT, true) ||
9804 isSHUFPMask(Mask, VT) ||
9805 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009806 }
9807 return false;
9808}
9809
9810//===----------------------------------------------------------------------===//
9811// X86 Scheduler Hooks
9812//===----------------------------------------------------------------------===//
9813
Mon P Wang63307c32008-05-05 19:05:59 +00009814// private utility function
9815MachineBasicBlock *
9816X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
9817 MachineBasicBlock *MBB,
9818 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009819 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009820 unsigned LoadOpc,
9821 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009822 unsigned notOpc,
9823 unsigned EAXreg,
9824 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009825 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009826 // For the atomic bitwise operator, we generate
9827 // thisMBB:
9828 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009829 // ld t1 = [bitinstr.addr]
9830 // op t2 = t1, [bitinstr.val]
9831 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009832 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9833 // bz newMBB
9834 // fallthrough -->nextMBB
9835 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9836 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009837 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009838 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009839
Mon P Wang63307c32008-05-05 19:05:59 +00009840 /// First build the CFG
9841 MachineFunction *F = MBB->getParent();
9842 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009843 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9844 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9845 F->insert(MBBIter, newMBB);
9846 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009847
Dan Gohman14152b42010-07-06 20:24:04 +00009848 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9849 nextMBB->splice(nextMBB->begin(), thisMBB,
9850 llvm::next(MachineBasicBlock::iterator(bInstr)),
9851 thisMBB->end());
9852 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009853
Mon P Wang63307c32008-05-05 19:05:59 +00009854 // Update thisMBB to fall through to newMBB
9855 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009856
Mon P Wang63307c32008-05-05 19:05:59 +00009857 // newMBB jumps to itself and fall through to nextMBB
9858 newMBB->addSuccessor(nextMBB);
9859 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009860
Mon P Wang63307c32008-05-05 19:05:59 +00009861 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009862 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009863 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +00009864 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009865 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009866 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009867 int numArgs = bInstr->getNumOperands() - 1;
9868 for (int i=0; i < numArgs; ++i)
9869 argOpers[i] = &bInstr->getOperand(i+1);
9870
9871 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009872 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009873 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009874
Dale Johannesen140be2d2008-08-19 18:47:28 +00009875 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009876 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009877 for (int i=0; i <= lastAddrIndx; ++i)
9878 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009879
Dale Johannesen140be2d2008-08-19 18:47:28 +00009880 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009881 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009882 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009883 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009884 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009885 tt = t1;
9886
Dale Johannesen140be2d2008-08-19 18:47:28 +00009887 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00009888 assert((argOpers[valArgIndx]->isReg() ||
9889 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009890 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00009891 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009892 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009893 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009894 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009895 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00009896 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009897
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009898 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00009899 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009900
Dale Johannesene4d209d2009-02-03 20:21:25 +00009901 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00009902 for (int i=0; i <= lastAddrIndx; ++i)
9903 (*MIB).addOperand(*argOpers[i]);
9904 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00009905 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009906 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9907 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +00009908
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009909 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +00009910 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009911
Mon P Wang63307c32008-05-05 19:05:59 +00009912 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009913 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009914
Dan Gohman14152b42010-07-06 20:24:04 +00009915 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009916 return nextMBB;
9917}
9918
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00009919// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +00009920MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009921X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
9922 MachineBasicBlock *MBB,
9923 unsigned regOpcL,
9924 unsigned regOpcH,
9925 unsigned immOpcL,
9926 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009927 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009928 // For the atomic bitwise operator, we generate
9929 // thisMBB (instructions are in pairs, except cmpxchg8b)
9930 // ld t1,t2 = [bitinstr.addr]
9931 // newMBB:
9932 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
9933 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +00009934 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009935 // mov ECX, EBX <- t5, t6
9936 // mov EAX, EDX <- t1, t2
9937 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
9938 // mov t3, t4 <- EAX, EDX
9939 // bz newMBB
9940 // result in out1, out2
9941 // fallthrough -->nextMBB
9942
9943 const TargetRegisterClass *RC = X86::GR32RegisterClass;
9944 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009945 const unsigned NotOpc = X86::NOT32r;
9946 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9947 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9948 MachineFunction::iterator MBBIter = MBB;
9949 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009950
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009951 /// First build the CFG
9952 MachineFunction *F = MBB->getParent();
9953 MachineBasicBlock *thisMBB = MBB;
9954 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9955 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9956 F->insert(MBBIter, newMBB);
9957 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009958
Dan Gohman14152b42010-07-06 20:24:04 +00009959 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9960 nextMBB->splice(nextMBB->begin(), thisMBB,
9961 llvm::next(MachineBasicBlock::iterator(bInstr)),
9962 thisMBB->end());
9963 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009964
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009965 // Update thisMBB to fall through to newMBB
9966 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009967
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009968 // newMBB jumps to itself and fall through to nextMBB
9969 newMBB->addSuccessor(nextMBB);
9970 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009971
Dale Johannesene4d209d2009-02-03 20:21:25 +00009972 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009973 // Insert instructions into newMBB based on incoming instruction
9974 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009975 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009976 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009977 MachineOperand& dest1Oper = bInstr->getOperand(0);
9978 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009979 MachineOperand* argOpers[2 + X86::AddrNumOperands];
9980 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009981 argOpers[i] = &bInstr->getOperand(i+2);
9982
Dan Gohman71ea4e52010-05-14 21:01:44 +00009983 // We use some of the operands multiple times, so conservatively just
9984 // clear any kill flags that might be present.
9985 if (argOpers[i]->isReg() && argOpers[i]->isUse())
9986 argOpers[i]->setIsKill(false);
9987 }
9988
Evan Chengad5b52f2010-01-08 19:14:57 +00009989 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009990 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +00009991
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009992 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009993 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009994 for (int i=0; i <= lastAddrIndx; ++i)
9995 (*MIB).addOperand(*argOpers[i]);
9996 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009997 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +00009998 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +00009999 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010000 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +000010001 MachineOperand newOp3 = *(argOpers[3]);
10002 if (newOp3.isImm())
10003 newOp3.setImm(newOp3.getImm()+4);
10004 else
10005 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010006 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +000010007 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010008
10009 // t3/4 are defined later, at the bottom of the loop
10010 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
10011 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010012 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010013 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010014 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010015 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
10016
Evan Cheng306b4ca2010-01-08 23:41:50 +000010017 // The subsequent operations should be using the destination registers of
10018 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +000010019 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010020 t1 = F->getRegInfo().createVirtualRegister(RC);
10021 t2 = F->getRegInfo().createVirtualRegister(RC);
10022 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
10023 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010024 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +000010025 t1 = dest1Oper.getReg();
10026 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010027 }
10028
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010029 int valArgIndx = lastAddrIndx + 1;
10030 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +000010031 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010032 "invalid operand");
10033 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
10034 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010035 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010036 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010037 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010038 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +000010039 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010040 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010041 (*MIB).addOperand(*argOpers[valArgIndx]);
10042 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010043 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010044 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000010045 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010046 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010047 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010048 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010049 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +000010050 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000010051 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010052 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010053
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010054 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010055 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010056 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010057 MIB.addReg(t2);
10058
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010059 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010060 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010061 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010062 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +000010063
Dale Johannesene4d209d2009-02-03 20:21:25 +000010064 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010065 for (int i=0; i <= lastAddrIndx; ++i)
10066 (*MIB).addOperand(*argOpers[i]);
10067
10068 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010069 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10070 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010071
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010072 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010073 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010074 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010075 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010076
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010077 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010078 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010079
Dan Gohman14152b42010-07-06 20:24:04 +000010080 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010081 return nextMBB;
10082}
10083
10084// private utility function
10085MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +000010086X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
10087 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010088 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010089 // For the atomic min/max operator, we generate
10090 // thisMBB:
10091 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010092 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +000010093 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +000010094 // cmp t1, t2
10095 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +000010096 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010097 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10098 // bz newMBB
10099 // fallthrough -->nextMBB
10100 //
10101 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10102 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010103 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010104 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010105
Mon P Wang63307c32008-05-05 19:05:59 +000010106 /// First build the CFG
10107 MachineFunction *F = MBB->getParent();
10108 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010109 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10110 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10111 F->insert(MBBIter, newMBB);
10112 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010113
Dan Gohman14152b42010-07-06 20:24:04 +000010114 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10115 nextMBB->splice(nextMBB->begin(), thisMBB,
10116 llvm::next(MachineBasicBlock::iterator(mInstr)),
10117 thisMBB->end());
10118 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010119
Mon P Wang63307c32008-05-05 19:05:59 +000010120 // Update thisMBB to fall through to newMBB
10121 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010122
Mon P Wang63307c32008-05-05 19:05:59 +000010123 // newMBB jumps to newMBB and fall through to nextMBB
10124 newMBB->addSuccessor(nextMBB);
10125 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010126
Dale Johannesene4d209d2009-02-03 20:21:25 +000010127 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010128 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010129 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010130 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +000010131 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010132 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010133 int numArgs = mInstr->getNumOperands() - 1;
10134 for (int i=0; i < numArgs; ++i)
10135 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010136
Mon P Wang63307c32008-05-05 19:05:59 +000010137 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010138 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010139 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010140
Mon P Wangab3e7472008-05-05 22:56:23 +000010141 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010142 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010143 for (int i=0; i <= lastAddrIndx; ++i)
10144 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +000010145
Mon P Wang63307c32008-05-05 19:05:59 +000010146 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +000010147 assert((argOpers[valArgIndx]->isReg() ||
10148 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010149 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +000010150
10151 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +000010152 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010153 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +000010154 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010155 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010156 (*MIB).addOperand(*argOpers[valArgIndx]);
10157
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010158 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +000010159 MIB.addReg(t1);
10160
Dale Johannesene4d209d2009-02-03 20:21:25 +000010161 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +000010162 MIB.addReg(t1);
10163 MIB.addReg(t2);
10164
10165 // Generate movc
10166 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010167 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +000010168 MIB.addReg(t2);
10169 MIB.addReg(t1);
10170
10171 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +000010172 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +000010173 for (int i=0; i <= lastAddrIndx; ++i)
10174 (*MIB).addOperand(*argOpers[i]);
10175 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +000010176 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010177 (*MIB).setMemRefs(mInstr->memoperands_begin(),
10178 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000010179
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010180 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +000010181 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +000010182
Mon P Wang63307c32008-05-05 19:05:59 +000010183 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010184 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010185
Dan Gohman14152b42010-07-06 20:24:04 +000010186 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010187 return nextMBB;
10188}
10189
Eric Christopherf83a5de2009-08-27 18:08:16 +000010190// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010191// or XMM0_V32I8 in AVX all of this code can be replaced with that
10192// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010193MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +000010194X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +000010195 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010196 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
10197 "Target must have SSE4.2 or AVX features enabled");
10198
Eric Christopherb120ab42009-08-18 22:50:32 +000010199 DebugLoc dl = MI->getDebugLoc();
10200 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +000010201 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010202 if (!Subtarget->hasAVX()) {
10203 if (memArg)
10204 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
10205 else
10206 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
10207 } else {
10208 if (memArg)
10209 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
10210 else
10211 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
10212 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010213
Eric Christopher41c902f2010-11-30 08:20:21 +000010214 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +000010215 for (unsigned i = 0; i < numArgs; ++i) {
10216 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +000010217 if (!(Op.isReg() && Op.isImplicit()))
10218 MIB.addOperand(Op);
10219 }
Eric Christopher41c902f2010-11-30 08:20:21 +000010220 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000010221 .addReg(X86::XMM0);
10222
Dan Gohman14152b42010-07-06 20:24:04 +000010223 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000010224 return BB;
10225}
10226
10227MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +000010228X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010229 DebugLoc dl = MI->getDebugLoc();
10230 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010231
Eric Christopher228232b2010-11-30 07:20:12 +000010232 // Address into RAX/EAX, other two args into ECX, EDX.
10233 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
10234 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
10235 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
10236 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000010237 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010238
Eric Christopher228232b2010-11-30 07:20:12 +000010239 unsigned ValOps = X86::AddrNumOperands;
10240 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10241 .addReg(MI->getOperand(ValOps).getReg());
10242 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
10243 .addReg(MI->getOperand(ValOps+1).getReg());
10244
10245 // The instruction doesn't actually take any operands though.
10246 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010247
Eric Christopher228232b2010-11-30 07:20:12 +000010248 MI->eraseFromParent(); // The pseudo is gone now.
10249 return BB;
10250}
10251
10252MachineBasicBlock *
10253X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000010254 DebugLoc dl = MI->getDebugLoc();
10255 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010256
Eric Christopher228232b2010-11-30 07:20:12 +000010257 // First arg in ECX, the second in EAX.
10258 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10259 .addReg(MI->getOperand(0).getReg());
10260 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
10261 .addReg(MI->getOperand(1).getReg());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010262
Eric Christopher228232b2010-11-30 07:20:12 +000010263 // The instruction doesn't actually take any operands though.
10264 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010265
Eric Christopher228232b2010-11-30 07:20:12 +000010266 MI->eraseFromParent(); // The pseudo is gone now.
10267 return BB;
10268}
10269
10270MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000010271X86TargetLowering::EmitVAARG64WithCustomInserter(
10272 MachineInstr *MI,
10273 MachineBasicBlock *MBB) const {
10274 // Emit va_arg instruction on X86-64.
10275
10276 // Operands to this pseudo-instruction:
10277 // 0 ) Output : destination address (reg)
10278 // 1-5) Input : va_list address (addr, i64mem)
10279 // 6 ) ArgSize : Size (in bytes) of vararg type
10280 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
10281 // 8 ) Align : Alignment of type
10282 // 9 ) EFLAGS (implicit-def)
10283
10284 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
10285 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
10286
10287 unsigned DestReg = MI->getOperand(0).getReg();
10288 MachineOperand &Base = MI->getOperand(1);
10289 MachineOperand &Scale = MI->getOperand(2);
10290 MachineOperand &Index = MI->getOperand(3);
10291 MachineOperand &Disp = MI->getOperand(4);
10292 MachineOperand &Segment = MI->getOperand(5);
10293 unsigned ArgSize = MI->getOperand(6).getImm();
10294 unsigned ArgMode = MI->getOperand(7).getImm();
10295 unsigned Align = MI->getOperand(8).getImm();
10296
10297 // Memory Reference
10298 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
10299 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
10300 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
10301
10302 // Machine Information
10303 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10304 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
10305 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
10306 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
10307 DebugLoc DL = MI->getDebugLoc();
10308
10309 // struct va_list {
10310 // i32 gp_offset
10311 // i32 fp_offset
10312 // i64 overflow_area (address)
10313 // i64 reg_save_area (address)
10314 // }
10315 // sizeof(va_list) = 24
10316 // alignment(va_list) = 8
10317
10318 unsigned TotalNumIntRegs = 6;
10319 unsigned TotalNumXMMRegs = 8;
10320 bool UseGPOffset = (ArgMode == 1);
10321 bool UseFPOffset = (ArgMode == 2);
10322 unsigned MaxOffset = TotalNumIntRegs * 8 +
10323 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
10324
10325 /* Align ArgSize to a multiple of 8 */
10326 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
10327 bool NeedsAlign = (Align > 8);
10328
10329 MachineBasicBlock *thisMBB = MBB;
10330 MachineBasicBlock *overflowMBB;
10331 MachineBasicBlock *offsetMBB;
10332 MachineBasicBlock *endMBB;
10333
10334 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
10335 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
10336 unsigned OffsetReg = 0;
10337
10338 if (!UseGPOffset && !UseFPOffset) {
10339 // If we only pull from the overflow region, we don't create a branch.
10340 // We don't need to alter control flow.
10341 OffsetDestReg = 0; // unused
10342 OverflowDestReg = DestReg;
10343
10344 offsetMBB = NULL;
10345 overflowMBB = thisMBB;
10346 endMBB = thisMBB;
10347 } else {
10348 // First emit code to check if gp_offset (or fp_offset) is below the bound.
10349 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
10350 // If not, pull from overflow_area. (branch to overflowMBB)
10351 //
10352 // thisMBB
10353 // | .
10354 // | .
10355 // offsetMBB overflowMBB
10356 // | .
10357 // | .
10358 // endMBB
10359
10360 // Registers for the PHI in endMBB
10361 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
10362 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
10363
10364 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10365 MachineFunction *MF = MBB->getParent();
10366 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10367 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10368 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10369
10370 MachineFunction::iterator MBBIter = MBB;
10371 ++MBBIter;
10372
10373 // Insert the new basic blocks
10374 MF->insert(MBBIter, offsetMBB);
10375 MF->insert(MBBIter, overflowMBB);
10376 MF->insert(MBBIter, endMBB);
10377
10378 // Transfer the remainder of MBB and its successor edges to endMBB.
10379 endMBB->splice(endMBB->begin(), thisMBB,
10380 llvm::next(MachineBasicBlock::iterator(MI)),
10381 thisMBB->end());
10382 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
10383
10384 // Make offsetMBB and overflowMBB successors of thisMBB
10385 thisMBB->addSuccessor(offsetMBB);
10386 thisMBB->addSuccessor(overflowMBB);
10387
10388 // endMBB is a successor of both offsetMBB and overflowMBB
10389 offsetMBB->addSuccessor(endMBB);
10390 overflowMBB->addSuccessor(endMBB);
10391
10392 // Load the offset value into a register
10393 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10394 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
10395 .addOperand(Base)
10396 .addOperand(Scale)
10397 .addOperand(Index)
10398 .addDisp(Disp, UseFPOffset ? 4 : 0)
10399 .addOperand(Segment)
10400 .setMemRefs(MMOBegin, MMOEnd);
10401
10402 // Check if there is enough room left to pull this argument.
10403 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
10404 .addReg(OffsetReg)
10405 .addImm(MaxOffset + 8 - ArgSizeA8);
10406
10407 // Branch to "overflowMBB" if offset >= max
10408 // Fall through to "offsetMBB" otherwise
10409 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
10410 .addMBB(overflowMBB);
10411 }
10412
10413 // In offsetMBB, emit code to use the reg_save_area.
10414 if (offsetMBB) {
10415 assert(OffsetReg != 0);
10416
10417 // Read the reg_save_area address.
10418 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
10419 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
10420 .addOperand(Base)
10421 .addOperand(Scale)
10422 .addOperand(Index)
10423 .addDisp(Disp, 16)
10424 .addOperand(Segment)
10425 .setMemRefs(MMOBegin, MMOEnd);
10426
10427 // Zero-extend the offset
10428 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
10429 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
10430 .addImm(0)
10431 .addReg(OffsetReg)
10432 .addImm(X86::sub_32bit);
10433
10434 // Add the offset to the reg_save_area to get the final address.
10435 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
10436 .addReg(OffsetReg64)
10437 .addReg(RegSaveReg);
10438
10439 // Compute the offset for the next argument
10440 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10441 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
10442 .addReg(OffsetReg)
10443 .addImm(UseFPOffset ? 16 : 8);
10444
10445 // Store it back into the va_list.
10446 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
10447 .addOperand(Base)
10448 .addOperand(Scale)
10449 .addOperand(Index)
10450 .addDisp(Disp, UseFPOffset ? 4 : 0)
10451 .addOperand(Segment)
10452 .addReg(NextOffsetReg)
10453 .setMemRefs(MMOBegin, MMOEnd);
10454
10455 // Jump to endMBB
10456 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
10457 .addMBB(endMBB);
10458 }
10459
10460 //
10461 // Emit code to use overflow area
10462 //
10463
10464 // Load the overflow_area address into a register.
10465 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
10466 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
10467 .addOperand(Base)
10468 .addOperand(Scale)
10469 .addOperand(Index)
10470 .addDisp(Disp, 8)
10471 .addOperand(Segment)
10472 .setMemRefs(MMOBegin, MMOEnd);
10473
10474 // If we need to align it, do so. Otherwise, just copy the address
10475 // to OverflowDestReg.
10476 if (NeedsAlign) {
10477 // Align the overflow address
10478 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
10479 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
10480
10481 // aligned_addr = (addr + (align-1)) & ~(align-1)
10482 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
10483 .addReg(OverflowAddrReg)
10484 .addImm(Align-1);
10485
10486 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
10487 .addReg(TmpReg)
10488 .addImm(~(uint64_t)(Align-1));
10489 } else {
10490 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
10491 .addReg(OverflowAddrReg);
10492 }
10493
10494 // Compute the next overflow address after this argument.
10495 // (the overflow address should be kept 8-byte aligned)
10496 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
10497 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
10498 .addReg(OverflowDestReg)
10499 .addImm(ArgSizeA8);
10500
10501 // Store the new overflow address.
10502 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
10503 .addOperand(Base)
10504 .addOperand(Scale)
10505 .addOperand(Index)
10506 .addDisp(Disp, 8)
10507 .addOperand(Segment)
10508 .addReg(NextAddrReg)
10509 .setMemRefs(MMOBegin, MMOEnd);
10510
10511 // If we branched, emit the PHI to the front of endMBB.
10512 if (offsetMBB) {
10513 BuildMI(*endMBB, endMBB->begin(), DL,
10514 TII->get(X86::PHI), DestReg)
10515 .addReg(OffsetDestReg).addMBB(offsetMBB)
10516 .addReg(OverflowDestReg).addMBB(overflowMBB);
10517 }
10518
10519 // Erase the pseudo instruction
10520 MI->eraseFromParent();
10521
10522 return endMBB;
10523}
10524
10525MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000010526X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
10527 MachineInstr *MI,
10528 MachineBasicBlock *MBB) const {
10529 // Emit code to save XMM registers to the stack. The ABI says that the
10530 // number of registers to save is given in %al, so it's theoretically
10531 // possible to do an indirect jump trick to avoid saving all of them,
10532 // however this code takes a simpler approach and just executes all
10533 // of the stores if %al is non-zero. It's less code, and it's probably
10534 // easier on the hardware branch predictor, and stores aren't all that
10535 // expensive anyway.
10536
10537 // Create the new basic blocks. One block contains all the XMM stores,
10538 // and one block is the final destination regardless of whether any
10539 // stores were performed.
10540 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10541 MachineFunction *F = MBB->getParent();
10542 MachineFunction::iterator MBBIter = MBB;
10543 ++MBBIter;
10544 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
10545 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
10546 F->insert(MBBIter, XMMSaveMBB);
10547 F->insert(MBBIter, EndMBB);
10548
Dan Gohman14152b42010-07-06 20:24:04 +000010549 // Transfer the remainder of MBB and its successor edges to EndMBB.
10550 EndMBB->splice(EndMBB->begin(), MBB,
10551 llvm::next(MachineBasicBlock::iterator(MI)),
10552 MBB->end());
10553 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
10554
Dan Gohmand6708ea2009-08-15 01:38:56 +000010555 // The original block will now fall through to the XMM save block.
10556 MBB->addSuccessor(XMMSaveMBB);
10557 // The XMMSaveMBB will fall through to the end block.
10558 XMMSaveMBB->addSuccessor(EndMBB);
10559
10560 // Now add the instructions.
10561 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10562 DebugLoc DL = MI->getDebugLoc();
10563
10564 unsigned CountReg = MI->getOperand(0).getReg();
10565 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
10566 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
10567
10568 if (!Subtarget->isTargetWin64()) {
10569 // If %al is 0, branch around the XMM save block.
10570 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010571 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010572 MBB->addSuccessor(EndMBB);
10573 }
10574
10575 // In the XMM save block, save all the XMM argument registers.
10576 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
10577 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000010578 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000010579 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000010580 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000010581 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000010582 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010583 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
10584 .addFrameIndex(RegSaveFrameIndex)
10585 .addImm(/*Scale=*/1)
10586 .addReg(/*IndexReg=*/0)
10587 .addImm(/*Disp=*/Offset)
10588 .addReg(/*Segment=*/0)
10589 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000010590 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010591 }
10592
Dan Gohman14152b42010-07-06 20:24:04 +000010593 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000010594
10595 return EndMBB;
10596}
Mon P Wang63307c32008-05-05 19:05:59 +000010597
Evan Cheng60c07e12006-07-05 22:17:51 +000010598MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000010599X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010600 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000010601 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10602 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000010603
Chris Lattner52600972009-09-02 05:57:00 +000010604 // To "insert" a SELECT_CC instruction, we actually have to insert the
10605 // diamond control-flow pattern. The incoming instruction knows the
10606 // destination vreg to set, the condition code register to branch on, the
10607 // true/false values to select between, and a branch opcode to use.
10608 const BasicBlock *LLVM_BB = BB->getBasicBlock();
10609 MachineFunction::iterator It = BB;
10610 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000010611
Chris Lattner52600972009-09-02 05:57:00 +000010612 // thisMBB:
10613 // ...
10614 // TrueVal = ...
10615 // cmpTY ccX, r1, r2
10616 // bCC copy1MBB
10617 // fallthrough --> copy0MBB
10618 MachineBasicBlock *thisMBB = BB;
10619 MachineFunction *F = BB->getParent();
10620 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
10621 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000010622 F->insert(It, copy0MBB);
10623 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000010624
Bill Wendling730c07e2010-06-25 20:48:10 +000010625 // If the EFLAGS register isn't dead in the terminator, then claim that it's
10626 // live into the sink and copy blocks.
10627 const MachineFunction *MF = BB->getParent();
10628 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
10629 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +000010630
Dan Gohman14152b42010-07-06 20:24:04 +000010631 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
10632 const MachineOperand &MO = MI->getOperand(I);
10633 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +000010634 unsigned Reg = MO.getReg();
10635 if (Reg != X86::EFLAGS) continue;
10636 copy0MBB->addLiveIn(Reg);
10637 sinkMBB->addLiveIn(Reg);
10638 }
10639
Dan Gohman14152b42010-07-06 20:24:04 +000010640 // Transfer the remainder of BB and its successor edges to sinkMBB.
10641 sinkMBB->splice(sinkMBB->begin(), BB,
10642 llvm::next(MachineBasicBlock::iterator(MI)),
10643 BB->end());
10644 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
10645
10646 // Add the true and fallthrough blocks as its successors.
10647 BB->addSuccessor(copy0MBB);
10648 BB->addSuccessor(sinkMBB);
10649
10650 // Create the conditional branch instruction.
10651 unsigned Opc =
10652 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
10653 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
10654
Chris Lattner52600972009-09-02 05:57:00 +000010655 // copy0MBB:
10656 // %FalseValue = ...
10657 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000010658 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000010659
Chris Lattner52600972009-09-02 05:57:00 +000010660 // sinkMBB:
10661 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
10662 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000010663 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
10664 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000010665 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
10666 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
10667
Dan Gohman14152b42010-07-06 20:24:04 +000010668 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000010669 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000010670}
10671
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010672MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010673X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010674 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010675 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10676 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010677
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000010678 assert(!Subtarget->isTargetEnvMacho());
10679
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010680 // The lowering is pretty easy: we're just emitting the call to _alloca. The
10681 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010682
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000010683 if (Subtarget->isTargetWin64()) {
10684 if (Subtarget->isTargetCygMing()) {
10685 // ___chkstk(Mingw64):
10686 // Clobbers R10, R11, RAX and EFLAGS.
10687 // Updates RSP.
10688 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
10689 .addExternalSymbol("___chkstk")
10690 .addReg(X86::RAX, RegState::Implicit)
10691 .addReg(X86::RSP, RegState::Implicit)
10692 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
10693 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
10694 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
10695 } else {
10696 // __chkstk(MSVCRT): does not update stack pointer.
10697 // Clobbers R10, R11 and EFLAGS.
10698 // FIXME: RAX(allocated size) might be reused and not killed.
10699 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
10700 .addExternalSymbol("__chkstk")
10701 .addReg(X86::RAX, RegState::Implicit)
10702 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
10703 // RAX has the offset to subtracted from RSP.
10704 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
10705 .addReg(X86::RSP)
10706 .addReg(X86::RAX);
10707 }
10708 } else {
10709 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010710 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
10711
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000010712 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
10713 .addExternalSymbol(StackProbeSymbol)
10714 .addReg(X86::EAX, RegState::Implicit)
10715 .addReg(X86::ESP, RegState::Implicit)
10716 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
10717 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
10718 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
10719 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010720
Dan Gohman14152b42010-07-06 20:24:04 +000010721 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010722 return BB;
10723}
Chris Lattner52600972009-09-02 05:57:00 +000010724
10725MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000010726X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
10727 MachineBasicBlock *BB) const {
10728 // This is pretty easy. We're taking the value that we received from
10729 // our load from the relocation, sticking it in either RDI (x86-64)
10730 // or EAX and doing an indirect call. The return value will then
10731 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010732 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000010733 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000010734 DebugLoc DL = MI->getDebugLoc();
10735 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000010736
10737 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000010738 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000010739
Eric Christopher30ef0e52010-06-03 04:07:48 +000010740 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000010741 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10742 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000010743 .addReg(X86::RIP)
10744 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010745 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000010746 MI->getOperand(3).getTargetFlags())
10747 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000010748 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000010749 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000010750 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000010751 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10752 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000010753 .addReg(0)
10754 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010755 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000010756 MI->getOperand(3).getTargetFlags())
10757 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000010758 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000010759 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010760 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000010761 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10762 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000010763 .addReg(TII->getGlobalBaseReg(F))
10764 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010765 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000010766 MI->getOperand(3).getTargetFlags())
10767 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000010768 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000010769 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010770 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000010771
Dan Gohman14152b42010-07-06 20:24:04 +000010772 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000010773 return BB;
10774}
10775
10776MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000010777X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010778 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000010779 switch (MI->getOpcode()) {
10780 default: assert(false && "Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000010781 case X86::TAILJMPd64:
10782 case X86::TAILJMPr64:
10783 case X86::TAILJMPm64:
10784 assert(!"TAILJMP64 would not be touched here.");
10785 case X86::TCRETURNdi64:
10786 case X86::TCRETURNri64:
10787 case X86::TCRETURNmi64:
10788 // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
10789 // On AMD64, additional defs should be added before register allocation.
10790 if (!Subtarget->isTargetWin64()) {
10791 MI->addRegisterDefined(X86::RSI);
10792 MI->addRegisterDefined(X86::RDI);
10793 MI->addRegisterDefined(X86::XMM6);
10794 MI->addRegisterDefined(X86::XMM7);
10795 MI->addRegisterDefined(X86::XMM8);
10796 MI->addRegisterDefined(X86::XMM9);
10797 MI->addRegisterDefined(X86::XMM10);
10798 MI->addRegisterDefined(X86::XMM11);
10799 MI->addRegisterDefined(X86::XMM12);
10800 MI->addRegisterDefined(X86::XMM13);
10801 MI->addRegisterDefined(X86::XMM14);
10802 MI->addRegisterDefined(X86::XMM15);
10803 }
10804 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010805 case X86::WIN_ALLOCA:
10806 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010807 case X86::TLSCall_32:
10808 case X86::TLSCall_64:
10809 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000010810 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000010811 case X86::CMOV_FR32:
10812 case X86::CMOV_FR64:
10813 case X86::CMOV_V4F32:
10814 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000010815 case X86::CMOV_V2I64:
Chris Lattner314a1132010-03-14 18:31:44 +000010816 case X86::CMOV_GR16:
10817 case X86::CMOV_GR32:
10818 case X86::CMOV_RFP32:
10819 case X86::CMOV_RFP64:
10820 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010821 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010822
Dale Johannesen849f2142007-07-03 00:53:03 +000010823 case X86::FP32_TO_INT16_IN_MEM:
10824 case X86::FP32_TO_INT32_IN_MEM:
10825 case X86::FP32_TO_INT64_IN_MEM:
10826 case X86::FP64_TO_INT16_IN_MEM:
10827 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000010828 case X86::FP64_TO_INT64_IN_MEM:
10829 case X86::FP80_TO_INT16_IN_MEM:
10830 case X86::FP80_TO_INT32_IN_MEM:
10831 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000010832 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10833 DebugLoc DL = MI->getDebugLoc();
10834
Evan Cheng60c07e12006-07-05 22:17:51 +000010835 // Change the floating point control register to use "round towards zero"
10836 // mode when truncating to an integer value.
10837 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000010838 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000010839 addFrameReference(BuildMI(*BB, MI, DL,
10840 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010841
10842 // Load the old value of the high byte of the control word...
10843 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000010844 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000010845 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010846 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010847
10848 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000010849 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010850 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000010851
10852 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000010853 addFrameReference(BuildMI(*BB, MI, DL,
10854 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010855
10856 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000010857 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010858 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000010859
10860 // Get the X86 opcode to use.
10861 unsigned Opc;
10862 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010863 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000010864 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
10865 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
10866 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
10867 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
10868 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
10869 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000010870 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
10871 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
10872 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000010873 }
10874
10875 X86AddressMode AM;
10876 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000010877 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010878 AM.BaseType = X86AddressMode::RegBase;
10879 AM.Base.Reg = Op.getReg();
10880 } else {
10881 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000010882 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000010883 }
10884 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000010885 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010886 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010887 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000010888 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010889 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010890 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000010891 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010892 AM.GV = Op.getGlobal();
10893 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000010894 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010895 }
Dan Gohman14152b42010-07-06 20:24:04 +000010896 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010897 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000010898
10899 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000010900 addFrameReference(BuildMI(*BB, MI, DL,
10901 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010902
Dan Gohman14152b42010-07-06 20:24:04 +000010903 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000010904 return BB;
10905 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010906 // String/text processing lowering.
10907 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010908 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010909 return EmitPCMP(MI, BB, 3, false /* in-mem */);
10910 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010911 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010912 return EmitPCMP(MI, BB, 3, true /* in-mem */);
10913 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010914 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010915 return EmitPCMP(MI, BB, 5, false /* in mem */);
10916 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010917 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010918 return EmitPCMP(MI, BB, 5, true /* in mem */);
10919
Eric Christopher228232b2010-11-30 07:20:12 +000010920 // Thread synchronization.
10921 case X86::MONITOR:
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010922 return EmitMonitor(MI, BB);
Eric Christopher228232b2010-11-30 07:20:12 +000010923 case X86::MWAIT:
10924 return EmitMwait(MI, BB);
10925
Eric Christopherb120ab42009-08-18 22:50:32 +000010926 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000010927 case X86::ATOMAND32:
10928 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010929 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010930 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010931 X86::NOT32r, X86::EAX,
10932 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010933 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000010934 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
10935 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010936 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010937 X86::NOT32r, X86::EAX,
10938 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010939 case X86::ATOMXOR32:
10940 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010941 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010942 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010943 X86::NOT32r, X86::EAX,
10944 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010945 case X86::ATOMNAND32:
10946 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010947 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010948 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010949 X86::NOT32r, X86::EAX,
10950 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000010951 case X86::ATOMMIN32:
10952 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
10953 case X86::ATOMMAX32:
10954 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
10955 case X86::ATOMUMIN32:
10956 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
10957 case X86::ATOMUMAX32:
10958 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000010959
10960 case X86::ATOMAND16:
10961 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10962 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010963 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010964 X86::NOT16r, X86::AX,
10965 X86::GR16RegisterClass);
10966 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000010967 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010968 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010969 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010970 X86::NOT16r, X86::AX,
10971 X86::GR16RegisterClass);
10972 case X86::ATOMXOR16:
10973 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
10974 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010975 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010976 X86::NOT16r, X86::AX,
10977 X86::GR16RegisterClass);
10978 case X86::ATOMNAND16:
10979 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10980 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010981 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010982 X86::NOT16r, X86::AX,
10983 X86::GR16RegisterClass, true);
10984 case X86::ATOMMIN16:
10985 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
10986 case X86::ATOMMAX16:
10987 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
10988 case X86::ATOMUMIN16:
10989 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
10990 case X86::ATOMUMAX16:
10991 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
10992
10993 case X86::ATOMAND8:
10994 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10995 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010996 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010997 X86::NOT8r, X86::AL,
10998 X86::GR8RegisterClass);
10999 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000011000 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011001 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011002 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011003 X86::NOT8r, X86::AL,
11004 X86::GR8RegisterClass);
11005 case X86::ATOMXOR8:
11006 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
11007 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011008 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011009 X86::NOT8r, X86::AL,
11010 X86::GR8RegisterClass);
11011 case X86::ATOMNAND8:
11012 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11013 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011014 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000011015 X86::NOT8r, X86::AL,
11016 X86::GR8RegisterClass, true);
11017 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011018 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000011019 case X86::ATOMAND64:
11020 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011021 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011022 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011023 X86::NOT64r, X86::RAX,
11024 X86::GR64RegisterClass);
11025 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000011026 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
11027 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011028 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011029 X86::NOT64r, X86::RAX,
11030 X86::GR64RegisterClass);
11031 case X86::ATOMXOR64:
11032 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000011033 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011034 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011035 X86::NOT64r, X86::RAX,
11036 X86::GR64RegisterClass);
11037 case X86::ATOMNAND64:
11038 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
11039 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011040 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000011041 X86::NOT64r, X86::RAX,
11042 X86::GR64RegisterClass, true);
11043 case X86::ATOMMIN64:
11044 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
11045 case X86::ATOMMAX64:
11046 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
11047 case X86::ATOMUMIN64:
11048 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
11049 case X86::ATOMUMAX64:
11050 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011051
11052 // This group does 64-bit operations on a 32-bit host.
11053 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011054 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011055 X86::AND32rr, X86::AND32rr,
11056 X86::AND32ri, X86::AND32ri,
11057 false);
11058 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011059 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011060 X86::OR32rr, X86::OR32rr,
11061 X86::OR32ri, X86::OR32ri,
11062 false);
11063 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011064 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011065 X86::XOR32rr, X86::XOR32rr,
11066 X86::XOR32ri, X86::XOR32ri,
11067 false);
11068 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011069 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011070 X86::AND32rr, X86::AND32rr,
11071 X86::AND32ri, X86::AND32ri,
11072 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011073 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011074 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011075 X86::ADD32rr, X86::ADC32rr,
11076 X86::ADD32ri, X86::ADC32ri,
11077 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011078 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011079 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011080 X86::SUB32rr, X86::SBB32rr,
11081 X86::SUB32ri, X86::SBB32ri,
11082 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000011083 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000011084 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000011085 X86::MOV32rr, X86::MOV32rr,
11086 X86::MOV32ri, X86::MOV32ri,
11087 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011088 case X86::VASTART_SAVE_XMM_REGS:
11089 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000011090
11091 case X86::VAARG_64:
11092 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011093 }
11094}
11095
11096//===----------------------------------------------------------------------===//
11097// X86 Optimization Hooks
11098//===----------------------------------------------------------------------===//
11099
Dan Gohman475871a2008-07-27 21:46:04 +000011100void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000011101 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011102 APInt &KnownZero,
11103 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000011104 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000011105 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011106 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000011107 assert((Opc >= ISD::BUILTIN_OP_END ||
11108 Opc == ISD::INTRINSIC_WO_CHAIN ||
11109 Opc == ISD::INTRINSIC_W_CHAIN ||
11110 Opc == ISD::INTRINSIC_VOID) &&
11111 "Should use MaskedValueIsZero if you don't know whether Op"
11112 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011113
Dan Gohmanf4f92f52008-02-13 23:07:24 +000011114 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011115 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000011116 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011117 case X86ISD::ADD:
11118 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000011119 case X86ISD::ADC:
11120 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011121 case X86ISD::SMUL:
11122 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000011123 case X86ISD::INC:
11124 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000011125 case X86ISD::OR:
11126 case X86ISD::XOR:
11127 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000011128 // These nodes' second result is a boolean.
11129 if (Op.getResNo() == 0)
11130 break;
11131 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011132 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000011133 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
11134 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000011135 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011136 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000011137}
Chris Lattner259e97c2006-01-31 19:43:35 +000011138
Owen Andersonbc146b02010-09-21 20:42:50 +000011139unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
11140 unsigned Depth) const {
11141 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
11142 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
11143 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000011144
Owen Andersonbc146b02010-09-21 20:42:50 +000011145 // Fallback case.
11146 return 1;
11147}
11148
Evan Cheng206ee9d2006-07-07 08:33:52 +000011149/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000011150/// node is a GlobalAddress + offset.
11151bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000011152 const GlobalValue* &GA,
11153 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000011154 if (N->getOpcode() == X86ISD::Wrapper) {
11155 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011156 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000011157 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011158 return true;
11159 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000011160 }
Evan Chengad4196b2008-05-12 19:56:52 +000011161 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011162}
11163
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011164/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
11165static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
11166 TargetLowering::DAGCombinerInfo &DCI) {
11167 DebugLoc dl = N->getDebugLoc();
11168 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
11169 SDValue V1 = SVOp->getOperand(0);
11170 SDValue V2 = SVOp->getOperand(1);
11171 EVT VT = SVOp->getValueType(0);
11172
11173 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
11174 V2.getOpcode() == ISD::CONCAT_VECTORS) {
11175 //
11176 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000011177 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011178 // V UNDEF BUILD_VECTOR UNDEF
11179 // \ / \ /
11180 // CONCAT_VECTOR CONCAT_VECTOR
11181 // \ /
11182 // \ /
11183 // RESULT: V + zero extended
11184 //
11185 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
11186 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
11187 V1.getOperand(1).getOpcode() != ISD::UNDEF)
11188 return SDValue();
11189
11190 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
11191 return SDValue();
11192
11193 // To match the shuffle mask, the first half of the mask should
11194 // be exactly the first vector, and all the rest a splat with the
11195 // first element of the second one.
11196 int NumElems = VT.getVectorNumElements();
11197 for (int i = 0; i < NumElems/2; ++i)
11198 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
11199 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
11200 return SDValue();
11201
11202 // Emit a zeroed vector and insert the desired subvector on its
11203 // first half.
11204 SDValue Zeros = getZeroVector(VT, true /* HasSSE2 */, DAG, dl);
11205 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0),
11206 DAG.getConstant(0, MVT::i32), DAG, dl);
11207 return DCI.CombineTo(N, InsV);
11208 }
11209
11210 return SDValue();
11211}
11212
11213/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000011214static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011215 TargetLowering::DAGCombinerInfo &DCI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000011216 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000011217 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000011218
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011219 // Don't create instructions with illegal types after legalize types has run.
11220 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11221 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
11222 return SDValue();
11223
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000011224 // Only handle pure VECTOR_SHUFFLE nodes.
11225 if (VT.getSizeInBits() == 256 && N->getOpcode() == ISD::VECTOR_SHUFFLE)
11226 return PerformShuffleCombine256(N, DAG, DCI);
11227
11228 // Only handle 128 wide vector from here on.
11229 if (VT.getSizeInBits() != 128)
11230 return SDValue();
11231
11232 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
11233 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
11234 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000011235 SmallVector<SDValue, 16> Elts;
11236 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011237 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000011238
Nate Begemanfdea31a2010-03-24 20:49:50 +000011239 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000011240}
Evan Chengd880b972008-05-09 21:53:03 +000011241
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000011242/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
11243/// generation and convert it from being a bunch of shuffles and extracts
11244/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011245static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
11246 const TargetLowering &TLI) {
11247 SDValue InputVector = N->getOperand(0);
11248
11249 // Only operate on vectors of 4 elements, where the alternative shuffling
11250 // gets to be more expensive.
11251 if (InputVector.getValueType() != MVT::v4i32)
11252 return SDValue();
11253
11254 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
11255 // single use which is a sign-extend or zero-extend, and all elements are
11256 // used.
11257 SmallVector<SDNode *, 4> Uses;
11258 unsigned ExtractedElements = 0;
11259 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
11260 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
11261 if (UI.getUse().getResNo() != InputVector.getResNo())
11262 return SDValue();
11263
11264 SDNode *Extract = *UI;
11265 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
11266 return SDValue();
11267
11268 if (Extract->getValueType(0) != MVT::i32)
11269 return SDValue();
11270 if (!Extract->hasOneUse())
11271 return SDValue();
11272 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
11273 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
11274 return SDValue();
11275 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
11276 return SDValue();
11277
11278 // Record which element was extracted.
11279 ExtractedElements |=
11280 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
11281
11282 Uses.push_back(Extract);
11283 }
11284
11285 // If not all the elements were used, this may not be worthwhile.
11286 if (ExtractedElements != 15)
11287 return SDValue();
11288
11289 // Ok, we've now decided to do the transformation.
11290 DebugLoc dl = InputVector.getDebugLoc();
11291
11292 // Store the value to a temporary stack slot.
11293 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000011294 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
11295 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011296
11297 // Replace each use (extract) with a load of the appropriate element.
11298 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
11299 UE = Uses.end(); UI != UE; ++UI) {
11300 SDNode *Extract = *UI;
11301
Nadav Rotem86694292011-05-17 08:31:57 +000011302 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011303 SDValue Idx = Extract->getOperand(1);
11304 unsigned EltSize =
11305 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
11306 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
11307 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
11308
Nadav Rotem86694292011-05-17 08:31:57 +000011309 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011310 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011311
11312 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000011313 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000011314 ScalarAddr, MachinePointerInfo(),
11315 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011316
11317 // Replace the exact with the load.
11318 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
11319 }
11320
11321 // The replacement was made in place; don't return anything.
11322 return SDValue();
11323}
11324
Chris Lattner83e6c992006-10-04 06:57:07 +000011325/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011326static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000011327 const X86Subtarget *Subtarget) {
11328 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000011329 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000011330 // Get the LHS/RHS of the select.
11331 SDValue LHS = N->getOperand(1);
11332 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000011333
Dan Gohman670e5392009-09-21 18:03:22 +000011334 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000011335 // instructions match the semantics of the common C idiom x<y?x:y but not
11336 // x<=y?x:y, because of how they handle negative zero (which can be
11337 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000011338 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000011339 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000011340 Cond.getOpcode() == ISD::SETCC) {
11341 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011342
Chris Lattner47b4ce82009-03-11 05:48:52 +000011343 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000011344 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000011345 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
11346 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000011347 switch (CC) {
11348 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000011349 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011350 // Converting this to a min would handle NaNs incorrectly, and swapping
11351 // the operands would cause it to handle comparisons between positive
11352 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011353 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000011354 if (!UnsafeFPMath &&
11355 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11356 break;
11357 std::swap(LHS, RHS);
11358 }
Dan Gohman670e5392009-09-21 18:03:22 +000011359 Opcode = X86ISD::FMIN;
11360 break;
11361 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000011362 // Converting this to a min would handle comparisons between positive
11363 // and negative zero incorrectly.
11364 if (!UnsafeFPMath &&
11365 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
11366 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011367 Opcode = X86ISD::FMIN;
11368 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000011369 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000011370 // Converting this to a min would handle both negative zeros and NaNs
11371 // incorrectly, but we can swap the operands to fix both.
11372 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011373 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011374 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000011375 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011376 Opcode = X86ISD::FMIN;
11377 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011378
Dan Gohman670e5392009-09-21 18:03:22 +000011379 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011380 // Converting this to a max would handle comparisons between positive
11381 // and negative zero incorrectly.
11382 if (!UnsafeFPMath &&
11383 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS))
11384 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011385 Opcode = X86ISD::FMAX;
11386 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000011387 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000011388 // Converting this to a max would handle NaNs incorrectly, and swapping
11389 // the operands would cause it to handle comparisons between positive
11390 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011391 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000011392 if (!UnsafeFPMath &&
11393 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11394 break;
11395 std::swap(LHS, RHS);
11396 }
Dan Gohman670e5392009-09-21 18:03:22 +000011397 Opcode = X86ISD::FMAX;
11398 break;
11399 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011400 // Converting this to a max would handle both negative zeros and NaNs
11401 // incorrectly, but we can swap the operands to fix both.
11402 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011403 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011404 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011405 case ISD::SETGE:
11406 Opcode = X86ISD::FMAX;
11407 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000011408 }
Dan Gohman670e5392009-09-21 18:03:22 +000011409 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000011410 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
11411 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000011412 switch (CC) {
11413 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000011414 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011415 // Converting this to a min would handle comparisons between positive
11416 // and negative zero incorrectly, and swapping the operands would
11417 // cause it to handle NaNs incorrectly.
11418 if (!UnsafeFPMath &&
11419 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000011420 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011421 break;
11422 std::swap(LHS, RHS);
11423 }
Dan Gohman670e5392009-09-21 18:03:22 +000011424 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000011425 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011426 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000011427 // Converting this to a min would handle NaNs incorrectly.
11428 if (!UnsafeFPMath &&
11429 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
11430 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011431 Opcode = X86ISD::FMIN;
11432 break;
11433 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000011434 // Converting this to a min would handle both negative zeros and NaNs
11435 // incorrectly, but we can swap the operands to fix both.
11436 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011437 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011438 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011439 case ISD::SETGE:
11440 Opcode = X86ISD::FMIN;
11441 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011442
Dan Gohman670e5392009-09-21 18:03:22 +000011443 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000011444 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000011445 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011446 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011447 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000011448 break;
Dan Gohman670e5392009-09-21 18:03:22 +000011449 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000011450 // Converting this to a max would handle comparisons between positive
11451 // and negative zero incorrectly, and swapping the operands would
11452 // cause it to handle NaNs incorrectly.
11453 if (!UnsafeFPMath &&
11454 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000011455 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000011456 break;
11457 std::swap(LHS, RHS);
11458 }
Dan Gohman670e5392009-09-21 18:03:22 +000011459 Opcode = X86ISD::FMAX;
11460 break;
11461 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000011462 // Converting this to a max would handle both negative zeros and NaNs
11463 // incorrectly, but we can swap the operands to fix both.
11464 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000011465 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011466 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000011467 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000011468 Opcode = X86ISD::FMAX;
11469 break;
11470 }
Chris Lattner83e6c992006-10-04 06:57:07 +000011471 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011472
Chris Lattner47b4ce82009-03-11 05:48:52 +000011473 if (Opcode)
11474 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000011475 }
Eric Christopherfd179292009-08-27 18:07:15 +000011476
Chris Lattnerd1980a52009-03-12 06:52:53 +000011477 // If this is a select between two integer constants, try to do some
11478 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000011479 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
11480 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000011481 // Don't do this for crazy integer types.
11482 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
11483 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000011484 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011485 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000011486
Chris Lattnercee56e72009-03-13 05:53:31 +000011487 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000011488 // Efficiently invertible.
11489 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
11490 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
11491 isa<ConstantSDNode>(Cond.getOperand(1))))) {
11492 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000011493 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011494 }
Eric Christopherfd179292009-08-27 18:07:15 +000011495
Chris Lattnerd1980a52009-03-12 06:52:53 +000011496 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011497 if (FalseC->getAPIntValue() == 0 &&
11498 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000011499 if (NeedsCondInvert) // Invert the condition if needed.
11500 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11501 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011502
Chris Lattnerd1980a52009-03-12 06:52:53 +000011503 // Zero extend the condition if needed.
11504 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011505
Chris Lattnercee56e72009-03-13 05:53:31 +000011506 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000011507 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011508 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011509 }
Eric Christopherfd179292009-08-27 18:07:15 +000011510
Chris Lattner97a29a52009-03-13 05:22:11 +000011511 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000011512 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000011513 if (NeedsCondInvert) // Invert the condition if needed.
11514 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11515 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011516
Chris Lattner97a29a52009-03-13 05:22:11 +000011517 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000011518 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11519 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000011520 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000011521 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000011522 }
Eric Christopherfd179292009-08-27 18:07:15 +000011523
Chris Lattnercee56e72009-03-13 05:53:31 +000011524 // Optimize cases that will turn into an LEA instruction. This requires
11525 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000011526 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000011527 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011528 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000011529
Chris Lattnercee56e72009-03-13 05:53:31 +000011530 bool isFastMultiplier = false;
11531 if (Diff < 10) {
11532 switch ((unsigned char)Diff) {
11533 default: break;
11534 case 1: // result = add base, cond
11535 case 2: // result = lea base( , cond*2)
11536 case 3: // result = lea base(cond, cond*2)
11537 case 4: // result = lea base( , cond*4)
11538 case 5: // result = lea base(cond, cond*4)
11539 case 8: // result = lea base( , cond*8)
11540 case 9: // result = lea base(cond, cond*8)
11541 isFastMultiplier = true;
11542 break;
11543 }
11544 }
Eric Christopherfd179292009-08-27 18:07:15 +000011545
Chris Lattnercee56e72009-03-13 05:53:31 +000011546 if (isFastMultiplier) {
11547 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
11548 if (NeedsCondInvert) // Invert the condition if needed.
11549 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11550 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011551
Chris Lattnercee56e72009-03-13 05:53:31 +000011552 // Zero extend the condition if needed.
11553 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
11554 Cond);
11555 // Scale the condition by the difference.
11556 if (Diff != 1)
11557 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
11558 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000011559
Chris Lattnercee56e72009-03-13 05:53:31 +000011560 // Add the base if non-zero.
11561 if (FalseC->getAPIntValue() != 0)
11562 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11563 SDValue(FalseC, 0));
11564 return Cond;
11565 }
Eric Christopherfd179292009-08-27 18:07:15 +000011566 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000011567 }
11568 }
Eric Christopherfd179292009-08-27 18:07:15 +000011569
Dan Gohman475871a2008-07-27 21:46:04 +000011570 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000011571}
11572
Chris Lattnerd1980a52009-03-12 06:52:53 +000011573/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
11574static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
11575 TargetLowering::DAGCombinerInfo &DCI) {
11576 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000011577
Chris Lattnerd1980a52009-03-12 06:52:53 +000011578 // If the flag operand isn't dead, don't touch this CMOV.
11579 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
11580 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000011581
Evan Chengb5a55d92011-05-24 01:48:22 +000011582 SDValue FalseOp = N->getOperand(0);
11583 SDValue TrueOp = N->getOperand(1);
11584 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
11585 SDValue Cond = N->getOperand(3);
11586 if (CC == X86::COND_E || CC == X86::COND_NE) {
11587 switch (Cond.getOpcode()) {
11588 default: break;
11589 case X86ISD::BSR:
11590 case X86ISD::BSF:
11591 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
11592 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
11593 return (CC == X86::COND_E) ? FalseOp : TrueOp;
11594 }
11595 }
11596
Chris Lattnerd1980a52009-03-12 06:52:53 +000011597 // If this is a select between two integer constants, try to do some
11598 // optimizations. Note that the operands are ordered the opposite of SELECT
11599 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000011600 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
11601 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000011602 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
11603 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000011604 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
11605 CC = X86::GetOppositeBranchCondition(CC);
11606 std::swap(TrueC, FalseC);
11607 }
Eric Christopherfd179292009-08-27 18:07:15 +000011608
Chris Lattnerd1980a52009-03-12 06:52:53 +000011609 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000011610 // This is efficient for any integer data type (including i8/i16) and
11611 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000011612 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011613 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11614 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011615
Chris Lattnerd1980a52009-03-12 06:52:53 +000011616 // Zero extend the condition if needed.
11617 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011618
Chris Lattnerd1980a52009-03-12 06:52:53 +000011619 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
11620 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000011621 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000011622 if (N->getNumValues() == 2) // Dead flag value?
11623 return DCI.CombineTo(N, Cond, SDValue());
11624 return Cond;
11625 }
Eric Christopherfd179292009-08-27 18:07:15 +000011626
Chris Lattnercee56e72009-03-13 05:53:31 +000011627 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
11628 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000011629 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011630 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11631 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000011632
Chris Lattner97a29a52009-03-13 05:22:11 +000011633 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000011634 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11635 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000011636 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11637 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000011638
Chris Lattner97a29a52009-03-13 05:22:11 +000011639 if (N->getNumValues() == 2) // Dead flag value?
11640 return DCI.CombineTo(N, Cond, SDValue());
11641 return Cond;
11642 }
Eric Christopherfd179292009-08-27 18:07:15 +000011643
Chris Lattnercee56e72009-03-13 05:53:31 +000011644 // Optimize cases that will turn into an LEA instruction. This requires
11645 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000011646 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000011647 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011648 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000011649
Chris Lattnercee56e72009-03-13 05:53:31 +000011650 bool isFastMultiplier = false;
11651 if (Diff < 10) {
11652 switch ((unsigned char)Diff) {
11653 default: break;
11654 case 1: // result = add base, cond
11655 case 2: // result = lea base( , cond*2)
11656 case 3: // result = lea base(cond, cond*2)
11657 case 4: // result = lea base( , cond*4)
11658 case 5: // result = lea base(cond, cond*4)
11659 case 8: // result = lea base( , cond*8)
11660 case 9: // result = lea base(cond, cond*8)
11661 isFastMultiplier = true;
11662 break;
11663 }
11664 }
Eric Christopherfd179292009-08-27 18:07:15 +000011665
Chris Lattnercee56e72009-03-13 05:53:31 +000011666 if (isFastMultiplier) {
11667 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000011668 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11669 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000011670 // Zero extend the condition if needed.
11671 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
11672 Cond);
11673 // Scale the condition by the difference.
11674 if (Diff != 1)
11675 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
11676 DAG.getConstant(Diff, Cond.getValueType()));
11677
11678 // Add the base if non-zero.
11679 if (FalseC->getAPIntValue() != 0)
11680 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11681 SDValue(FalseC, 0));
11682 if (N->getNumValues() == 2) // Dead flag value?
11683 return DCI.CombineTo(N, Cond, SDValue());
11684 return Cond;
11685 }
Eric Christopherfd179292009-08-27 18:07:15 +000011686 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000011687 }
11688 }
11689 return SDValue();
11690}
11691
11692
Evan Cheng0b0cd912009-03-28 05:57:29 +000011693/// PerformMulCombine - Optimize a single multiply with constant into two
11694/// in order to implement it with two cheaper instructions, e.g.
11695/// LEA + SHL, LEA + LEA.
11696static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
11697 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000011698 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
11699 return SDValue();
11700
Owen Andersone50ed302009-08-10 22:56:29 +000011701 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011702 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000011703 return SDValue();
11704
11705 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
11706 if (!C)
11707 return SDValue();
11708 uint64_t MulAmt = C->getZExtValue();
11709 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
11710 return SDValue();
11711
11712 uint64_t MulAmt1 = 0;
11713 uint64_t MulAmt2 = 0;
11714 if ((MulAmt % 9) == 0) {
11715 MulAmt1 = 9;
11716 MulAmt2 = MulAmt / 9;
11717 } else if ((MulAmt % 5) == 0) {
11718 MulAmt1 = 5;
11719 MulAmt2 = MulAmt / 5;
11720 } else if ((MulAmt % 3) == 0) {
11721 MulAmt1 = 3;
11722 MulAmt2 = MulAmt / 3;
11723 }
11724 if (MulAmt2 &&
11725 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
11726 DebugLoc DL = N->getDebugLoc();
11727
11728 if (isPowerOf2_64(MulAmt2) &&
11729 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
11730 // If second multiplifer is pow2, issue it first. We want the multiply by
11731 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
11732 // is an add.
11733 std::swap(MulAmt1, MulAmt2);
11734
11735 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000011736 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000011737 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000011738 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000011739 else
Evan Cheng73f24c92009-03-30 21:36:47 +000011740 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000011741 DAG.getConstant(MulAmt1, VT));
11742
Eric Christopherfd179292009-08-27 18:07:15 +000011743 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000011744 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000011745 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000011746 else
Evan Cheng73f24c92009-03-30 21:36:47 +000011747 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000011748 DAG.getConstant(MulAmt2, VT));
11749
11750 // Do not add new nodes to DAG combiner worklist.
11751 DCI.CombineTo(N, NewMul, false);
11752 }
11753 return SDValue();
11754}
11755
Evan Chengad9c0a32009-12-15 00:53:42 +000011756static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
11757 SDValue N0 = N->getOperand(0);
11758 SDValue N1 = N->getOperand(1);
11759 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
11760 EVT VT = N0.getValueType();
11761
11762 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
11763 // since the result of setcc_c is all zero's or all ones.
11764 if (N1C && N0.getOpcode() == ISD::AND &&
11765 N0.getOperand(1).getOpcode() == ISD::Constant) {
11766 SDValue N00 = N0.getOperand(0);
11767 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
11768 ((N00.getOpcode() == ISD::ANY_EXTEND ||
11769 N00.getOpcode() == ISD::ZERO_EXTEND) &&
11770 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
11771 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
11772 APInt ShAmt = N1C->getAPIntValue();
11773 Mask = Mask.shl(ShAmt);
11774 if (Mask != 0)
11775 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
11776 N00, DAG.getConstant(Mask, VT));
11777 }
11778 }
11779
11780 return SDValue();
11781}
Evan Cheng0b0cd912009-03-28 05:57:29 +000011782
Nate Begeman740ab032009-01-26 00:52:55 +000011783/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
11784/// when possible.
11785static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
11786 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000011787 EVT VT = N->getValueType(0);
11788 if (!VT.isVector() && VT.isInteger() &&
11789 N->getOpcode() == ISD::SHL)
11790 return PerformSHLCombine(N, DAG);
11791
Nate Begeman740ab032009-01-26 00:52:55 +000011792 // On X86 with SSE2 support, we can transform this to a vector shift if
11793 // all elements are shifted by the same amount. We can't do this in legalize
11794 // because the a constant vector is typically transformed to a constant pool
11795 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011796 if (!Subtarget->hasSSE2())
11797 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000011798
Owen Anderson825b72b2009-08-11 20:47:22 +000011799 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011800 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000011801
Mon P Wang3becd092009-01-28 08:12:05 +000011802 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000011803 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000011804 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000011805 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000011806 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
11807 unsigned NumElts = VT.getVectorNumElements();
11808 unsigned i = 0;
11809 for (; i != NumElts; ++i) {
11810 SDValue Arg = ShAmtOp.getOperand(i);
11811 if (Arg.getOpcode() == ISD::UNDEF) continue;
11812 BaseShAmt = Arg;
11813 break;
11814 }
11815 for (; i != NumElts; ++i) {
11816 SDValue Arg = ShAmtOp.getOperand(i);
11817 if (Arg.getOpcode() == ISD::UNDEF) continue;
11818 if (Arg != BaseShAmt) {
11819 return SDValue();
11820 }
11821 }
11822 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000011823 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000011824 SDValue InVec = ShAmtOp.getOperand(0);
11825 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
11826 unsigned NumElts = InVec.getValueType().getVectorNumElements();
11827 unsigned i = 0;
11828 for (; i != NumElts; ++i) {
11829 SDValue Arg = InVec.getOperand(i);
11830 if (Arg.getOpcode() == ISD::UNDEF) continue;
11831 BaseShAmt = Arg;
11832 break;
11833 }
11834 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
11835 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000011836 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000011837 if (C->getZExtValue() == SplatIdx)
11838 BaseShAmt = InVec.getOperand(1);
11839 }
11840 }
11841 if (BaseShAmt.getNode() == 0)
11842 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
11843 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000011844 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011845 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000011846
Mon P Wangefa42202009-09-03 19:56:25 +000011847 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000011848 if (EltVT.bitsGT(MVT::i32))
11849 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
11850 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000011851 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000011852
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011853 // The shift amount is identical so we can do a vector shift.
11854 SDValue ValOp = N->getOperand(0);
11855 switch (N->getOpcode()) {
11856 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000011857 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011858 break;
11859 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000011860 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011861 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011862 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011863 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011864 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011865 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011866 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011867 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011868 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011869 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011870 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011871 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011872 break;
11873 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000011874 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011875 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011876 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011877 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011878 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011879 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011880 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011881 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011882 break;
11883 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000011884 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011885 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011886 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011887 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011888 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011889 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011890 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011891 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011892 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011893 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011894 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011895 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011896 break;
Nate Begeman740ab032009-01-26 00:52:55 +000011897 }
11898 return SDValue();
11899}
11900
Nate Begemanb65c1752010-12-17 22:55:37 +000011901
Stuart Hastings865f0932011-06-03 23:53:54 +000011902// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
11903// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
11904// and friends. Likewise for OR -> CMPNEQSS.
11905static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
11906 TargetLowering::DAGCombinerInfo &DCI,
11907 const X86Subtarget *Subtarget) {
11908 unsigned opcode;
11909
11910 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
11911 // we're requiring SSE2 for both.
11912 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
11913 SDValue N0 = N->getOperand(0);
11914 SDValue N1 = N->getOperand(1);
11915 SDValue CMP0 = N0->getOperand(1);
11916 SDValue CMP1 = N1->getOperand(1);
11917 DebugLoc DL = N->getDebugLoc();
11918
11919 // The SETCCs should both refer to the same CMP.
11920 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
11921 return SDValue();
11922
11923 SDValue CMP00 = CMP0->getOperand(0);
11924 SDValue CMP01 = CMP0->getOperand(1);
11925 EVT VT = CMP00.getValueType();
11926
11927 if (VT == MVT::f32 || VT == MVT::f64) {
11928 bool ExpectingFlags = false;
11929 // Check for any users that want flags:
11930 for (SDNode::use_iterator UI = N->use_begin(),
11931 UE = N->use_end();
11932 !ExpectingFlags && UI != UE; ++UI)
11933 switch (UI->getOpcode()) {
11934 default:
11935 case ISD::BR_CC:
11936 case ISD::BRCOND:
11937 case ISD::SELECT:
11938 ExpectingFlags = true;
11939 break;
11940 case ISD::CopyToReg:
11941 case ISD::SIGN_EXTEND:
11942 case ISD::ZERO_EXTEND:
11943 case ISD::ANY_EXTEND:
11944 break;
11945 }
11946
11947 if (!ExpectingFlags) {
11948 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
11949 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
11950
11951 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
11952 X86::CondCode tmp = cc0;
11953 cc0 = cc1;
11954 cc1 = tmp;
11955 }
11956
11957 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
11958 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
11959 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
11960 X86ISD::NodeType NTOperator = is64BitFP ?
11961 X86ISD::FSETCCsd : X86ISD::FSETCCss;
11962 // FIXME: need symbolic constants for these magic numbers.
11963 // See X86ATTInstPrinter.cpp:printSSECC().
11964 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
11965 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
11966 DAG.getConstant(x86cc, MVT::i8));
11967 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
11968 OnesOrZeroesF);
11969 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
11970 DAG.getConstant(1, MVT::i32));
11971 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
11972 return OneBitOfTruth;
11973 }
11974 }
11975 }
11976 }
11977 return SDValue();
11978}
11979
Nate Begemanb65c1752010-12-17 22:55:37 +000011980static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
11981 TargetLowering::DAGCombinerInfo &DCI,
11982 const X86Subtarget *Subtarget) {
11983 if (DCI.isBeforeLegalizeOps())
11984 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011985
Stuart Hastings865f0932011-06-03 23:53:54 +000011986 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
11987 if (R.getNode())
11988 return R;
11989
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000011990 // Want to form ANDNP nodes:
11991 // 1) In the hopes of then easily combining them with OR and AND nodes
11992 // to form PBLEND/PSIGN.
11993 // 2) To match ANDN packed intrinsics
Nate Begemanb65c1752010-12-17 22:55:37 +000011994 EVT VT = N->getValueType(0);
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000011995 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000011996 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011997
Nate Begemanb65c1752010-12-17 22:55:37 +000011998 SDValue N0 = N->getOperand(0);
11999 SDValue N1 = N->getOperand(1);
12000 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012001
Nate Begemanb65c1752010-12-17 22:55:37 +000012002 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012003 if (N0.getOpcode() == ISD::XOR &&
Nate Begemanb65c1752010-12-17 22:55:37 +000012004 ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012005 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000012006
12007 // Check RHS for vnot
12008 if (N1.getOpcode() == ISD::XOR &&
12009 ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012010 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012011
Nate Begemanb65c1752010-12-17 22:55:37 +000012012 return SDValue();
12013}
12014
Evan Cheng760d1942010-01-04 21:22:48 +000012015static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000012016 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000012017 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000012018 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000012019 return SDValue();
12020
Stuart Hastings865f0932011-06-03 23:53:54 +000012021 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12022 if (R.getNode())
12023 return R;
12024
Evan Cheng760d1942010-01-04 21:22:48 +000012025 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000012026 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64 && VT != MVT::v2i64)
Evan Cheng760d1942010-01-04 21:22:48 +000012027 return SDValue();
12028
Evan Cheng760d1942010-01-04 21:22:48 +000012029 SDValue N0 = N->getOperand(0);
12030 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012031
Nate Begemanb65c1752010-12-17 22:55:37 +000012032 // look for psign/blend
12033 if (Subtarget->hasSSSE3()) {
12034 if (VT == MVT::v2i64) {
12035 // Canonicalize pandn to RHS
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012036 if (N0.getOpcode() == X86ISD::ANDNP)
Nate Begemanb65c1752010-12-17 22:55:37 +000012037 std::swap(N0, N1);
12038 // or (and (m, x), (pandn m, y))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012039 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
Nate Begemanb65c1752010-12-17 22:55:37 +000012040 SDValue Mask = N1.getOperand(0);
12041 SDValue X = N1.getOperand(1);
12042 SDValue Y;
12043 if (N0.getOperand(0) == Mask)
12044 Y = N0.getOperand(1);
12045 if (N0.getOperand(1) == Mask)
12046 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012047
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000012048 // Check to see if the mask appeared in both the AND and ANDNP and
Nate Begemanb65c1752010-12-17 22:55:37 +000012049 if (!Y.getNode())
12050 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012051
Nate Begemanb65c1752010-12-17 22:55:37 +000012052 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
12053 if (Mask.getOpcode() != ISD::BITCAST ||
12054 X.getOpcode() != ISD::BITCAST ||
12055 Y.getOpcode() != ISD::BITCAST)
12056 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012057
Nate Begemanb65c1752010-12-17 22:55:37 +000012058 // Look through mask bitcast.
12059 Mask = Mask.getOperand(0);
12060 EVT MaskVT = Mask.getValueType();
12061
12062 // Validate that the Mask operand is a vector sra node. The sra node
12063 // will be an intrinsic.
12064 if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
12065 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012066
Nate Begemanb65c1752010-12-17 22:55:37 +000012067 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
12068 // there is no psrai.b
12069 switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
12070 case Intrinsic::x86_sse2_psrai_w:
12071 case Intrinsic::x86_sse2_psrai_d:
12072 break;
12073 default: return SDValue();
12074 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012075
Nate Begemanb65c1752010-12-17 22:55:37 +000012076 // Check that the SRA is all signbits.
12077 SDValue SraC = Mask.getOperand(2);
12078 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
12079 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
12080 if ((SraAmt + 1) != EltBits)
12081 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012082
Nate Begemanb65c1752010-12-17 22:55:37 +000012083 DebugLoc DL = N->getDebugLoc();
12084
12085 // Now we know we at least have a plendvb with the mask val. See if
12086 // we can form a psignb/w/d.
12087 // psign = x.type == y.type == mask.type && y = sub(0, x);
12088 X = X.getOperand(0);
12089 Y = Y.getOperand(0);
12090 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
12091 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
12092 X.getValueType() == MaskVT && X.getValueType() == Y.getValueType()){
12093 unsigned Opc = 0;
12094 switch (EltBits) {
12095 case 8: Opc = X86ISD::PSIGNB; break;
12096 case 16: Opc = X86ISD::PSIGNW; break;
12097 case 32: Opc = X86ISD::PSIGND; break;
12098 default: break;
12099 }
12100 if (Opc) {
12101 SDValue Sign = DAG.getNode(Opc, DL, MaskVT, X, Mask.getOperand(1));
12102 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Sign);
12103 }
12104 }
12105 // PBLENDVB only available on SSE 4.1
12106 if (!Subtarget->hasSSE41())
12107 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012108
Nate Begemanb65c1752010-12-17 22:55:37 +000012109 X = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, X);
12110 Y = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Y);
12111 Mask = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Mask);
Nate Begeman672fb622010-12-20 22:04:24 +000012112 Mask = DAG.getNode(X86ISD::PBLENDVB, DL, MVT::v16i8, X, Y, Mask);
Nate Begemanb65c1752010-12-17 22:55:37 +000012113 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Mask);
12114 }
12115 }
12116 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012117
Nate Begemanb65c1752010-12-17 22:55:37 +000012118 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000012119 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
12120 std::swap(N0, N1);
12121 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
12122 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000012123 if (!N0.hasOneUse() || !N1.hasOneUse())
12124 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000012125
12126 SDValue ShAmt0 = N0.getOperand(1);
12127 if (ShAmt0.getValueType() != MVT::i8)
12128 return SDValue();
12129 SDValue ShAmt1 = N1.getOperand(1);
12130 if (ShAmt1.getValueType() != MVT::i8)
12131 return SDValue();
12132 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
12133 ShAmt0 = ShAmt0.getOperand(0);
12134 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
12135 ShAmt1 = ShAmt1.getOperand(0);
12136
12137 DebugLoc DL = N->getDebugLoc();
12138 unsigned Opc = X86ISD::SHLD;
12139 SDValue Op0 = N0.getOperand(0);
12140 SDValue Op1 = N1.getOperand(0);
12141 if (ShAmt0.getOpcode() == ISD::SUB) {
12142 Opc = X86ISD::SHRD;
12143 std::swap(Op0, Op1);
12144 std::swap(ShAmt0, ShAmt1);
12145 }
12146
Evan Cheng8b1190a2010-04-28 01:18:01 +000012147 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000012148 if (ShAmt1.getOpcode() == ISD::SUB) {
12149 SDValue Sum = ShAmt1.getOperand(0);
12150 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000012151 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
12152 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
12153 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
12154 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000012155 return DAG.getNode(Opc, DL, VT,
12156 Op0, Op1,
12157 DAG.getNode(ISD::TRUNCATE, DL,
12158 MVT::i8, ShAmt0));
12159 }
12160 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
12161 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
12162 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000012163 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000012164 return DAG.getNode(Opc, DL, VT,
12165 N0.getOperand(0), N1.getOperand(0),
12166 DAG.getNode(ISD::TRUNCATE, DL,
12167 MVT::i8, ShAmt0));
12168 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012169
Evan Cheng760d1942010-01-04 21:22:48 +000012170 return SDValue();
12171}
12172
Chris Lattner149a4e52008-02-22 02:09:43 +000012173/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012174static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000012175 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +000012176 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
12177 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000012178 // A preferable solution to the general problem is to figure out the right
12179 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000012180
12181 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +000012182 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +000012183 EVT VT = St->getValue().getValueType();
Evan Cheng536e6672009-03-12 05:59:15 +000012184 if (VT.getSizeInBits() != 64)
12185 return SDValue();
12186
Devang Patel578efa92009-06-05 21:57:13 +000012187 const Function *F = DAG.getMachineFunction().getFunction();
12188 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000012189 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000012190 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000012191 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000012192 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000012193 isa<LoadSDNode>(St->getValue()) &&
12194 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
12195 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000012196 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012197 LoadSDNode *Ld = 0;
12198 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000012199 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000012200 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012201 // Must be a store of a load. We currently handle two cases: the load
12202 // is a direct child, and it's under an intervening TokenFactor. It is
12203 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000012204 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000012205 Ld = cast<LoadSDNode>(St->getChain());
12206 else if (St->getValue().hasOneUse() &&
12207 ChainVal->getOpcode() == ISD::TokenFactor) {
12208 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000012209 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000012210 TokenFactorIndex = i;
12211 Ld = cast<LoadSDNode>(St->getValue());
12212 } else
12213 Ops.push_back(ChainVal->getOperand(i));
12214 }
12215 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000012216
Evan Cheng536e6672009-03-12 05:59:15 +000012217 if (!Ld || !ISD::isNormalLoad(Ld))
12218 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012219
Evan Cheng536e6672009-03-12 05:59:15 +000012220 // If this is not the MMX case, i.e. we are just turning i64 load/store
12221 // into f64 load/store, avoid the transformation if there are multiple
12222 // uses of the loaded value.
12223 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
12224 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000012225
Evan Cheng536e6672009-03-12 05:59:15 +000012226 DebugLoc LdDL = Ld->getDebugLoc();
12227 DebugLoc StDL = N->getDebugLoc();
12228 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
12229 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
12230 // pair instead.
12231 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012232 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000012233 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
12234 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000012235 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000012236 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000012237 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000012238 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000012239 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000012240 Ops.size());
12241 }
Evan Cheng536e6672009-03-12 05:59:15 +000012242 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000012243 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012244 St->isVolatile(), St->isNonTemporal(),
12245 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000012246 }
Evan Cheng536e6672009-03-12 05:59:15 +000012247
12248 // Otherwise, lower to two pairs of 32-bit loads / stores.
12249 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000012250 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
12251 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000012252
Owen Anderson825b72b2009-08-11 20:47:22 +000012253 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000012254 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012255 Ld->isVolatile(), Ld->isNonTemporal(),
12256 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000012257 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000012258 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000012259 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000012260 MinAlign(Ld->getAlignment(), 4));
12261
12262 SDValue NewChain = LoLd.getValue(1);
12263 if (TokenFactorIndex != -1) {
12264 Ops.push_back(LoLd);
12265 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000012266 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000012267 Ops.size());
12268 }
12269
12270 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000012271 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
12272 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000012273
12274 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012275 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000012276 St->isVolatile(), St->isNonTemporal(),
12277 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000012278 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000012279 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000012280 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000012281 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000012282 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000012283 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000012284 }
Dan Gohman475871a2008-07-27 21:46:04 +000012285 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000012286}
12287
Chris Lattner6cf73262008-01-25 06:14:17 +000012288/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
12289/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012290static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000012291 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
12292 // F[X]OR(0.0, x) -> x
12293 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000012294 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
12295 if (C->getValueAPF().isPosZero())
12296 return N->getOperand(1);
12297 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
12298 if (C->getValueAPF().isPosZero())
12299 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000012300 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000012301}
12302
12303/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012304static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000012305 // FAND(0.0, x) -> 0.0
12306 // FAND(x, 0.0) -> 0.0
12307 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
12308 if (C->getValueAPF().isPosZero())
12309 return N->getOperand(0);
12310 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
12311 if (C->getValueAPF().isPosZero())
12312 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000012313 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000012314}
12315
Dan Gohmane5af2d32009-01-29 01:59:02 +000012316static SDValue PerformBTCombine(SDNode *N,
12317 SelectionDAG &DAG,
12318 TargetLowering::DAGCombinerInfo &DCI) {
12319 // BT ignores high bits in the bit index operand.
12320 SDValue Op1 = N->getOperand(1);
12321 if (Op1.hasOneUse()) {
12322 unsigned BitWidth = Op1.getValueSizeInBits();
12323 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
12324 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012325 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
12326 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000012327 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000012328 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
12329 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
12330 DCI.CommitTargetLoweringOpt(TLO);
12331 }
12332 return SDValue();
12333}
Chris Lattner83e6c992006-10-04 06:57:07 +000012334
Eli Friedman7a5e5552009-06-07 06:52:44 +000012335static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
12336 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012337 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000012338 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000012339 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000012340 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000012341 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000012342 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000012343 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000012344 }
12345 return SDValue();
12346}
12347
Evan Cheng2e489c42009-12-16 00:53:11 +000012348static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
12349 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
12350 // (and (i32 x86isd::setcc_carry), 1)
12351 // This eliminates the zext. This transformation is necessary because
12352 // ISD::SETCC is always legalized to i8.
12353 DebugLoc dl = N->getDebugLoc();
12354 SDValue N0 = N->getOperand(0);
12355 EVT VT = N->getValueType(0);
12356 if (N0.getOpcode() == ISD::AND &&
12357 N0.hasOneUse() &&
12358 N0.getOperand(0).hasOneUse()) {
12359 SDValue N00 = N0.getOperand(0);
12360 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
12361 return SDValue();
12362 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
12363 if (!C || C->getZExtValue() != 1)
12364 return SDValue();
12365 return DAG.getNode(ISD::AND, dl, VT,
12366 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
12367 N00.getOperand(0), N00.getOperand(1)),
12368 DAG.getConstant(1, VT));
12369 }
12370
12371 return SDValue();
12372}
12373
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012374// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
12375static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
12376 unsigned X86CC = N->getConstantOperandVal(0);
12377 SDValue EFLAG = N->getOperand(1);
12378 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012379
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012380 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
12381 // a zext and produces an all-ones bit which is more useful than 0/1 in some
12382 // cases.
12383 if (X86CC == X86::COND_B)
12384 return DAG.getNode(ISD::AND, DL, MVT::i8,
12385 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
12386 DAG.getConstant(X86CC, MVT::i8), EFLAG),
12387 DAG.getConstant(1, MVT::i8));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012388
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012389 return SDValue();
12390}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012391
Benjamin Kramer1396c402011-06-18 11:09:41 +000012392static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
12393 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000012394 SDValue Op0 = N->getOperand(0);
12395 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
12396 // a 32-bit target where SSE doesn't support i64->FP operations.
12397 if (Op0.getOpcode() == ISD::LOAD) {
12398 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
12399 EVT VT = Ld->getValueType(0);
12400 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
12401 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
12402 !XTLI->getSubtarget()->is64Bit() &&
12403 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000012404 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
12405 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000012406 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
12407 return FILDChain;
12408 }
12409 }
12410 return SDValue();
12411}
12412
Chris Lattner23a01992010-12-20 01:37:09 +000012413// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
12414static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
12415 X86TargetLowering::DAGCombinerInfo &DCI) {
12416 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
12417 // the result is either zero or one (depending on the input carry bit).
12418 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
12419 if (X86::isZeroNode(N->getOperand(0)) &&
12420 X86::isZeroNode(N->getOperand(1)) &&
12421 // We don't have a good way to replace an EFLAGS use, so only do this when
12422 // dead right now.
12423 SDValue(N, 1).use_empty()) {
12424 DebugLoc DL = N->getDebugLoc();
12425 EVT VT = N->getValueType(0);
12426 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
12427 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
12428 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
12429 DAG.getConstant(X86::COND_B,MVT::i8),
12430 N->getOperand(2)),
12431 DAG.getConstant(1, VT));
12432 return DCI.CombineTo(N, Res1, CarryOut);
12433 }
12434
12435 return SDValue();
12436}
12437
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012438// fold (add Y, (sete X, 0)) -> adc 0, Y
12439// (add Y, (setne X, 0)) -> sbb -1, Y
12440// (sub (sete X, 0), Y) -> sbb 0, Y
12441// (sub (setne X, 0), Y) -> adc -1, Y
12442static SDValue OptimizeConditonalInDecrement(SDNode *N, SelectionDAG &DAG) {
12443 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012444
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012445 // Look through ZExts.
12446 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
12447 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
12448 return SDValue();
12449
12450 SDValue SetCC = Ext.getOperand(0);
12451 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
12452 return SDValue();
12453
12454 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
12455 if (CC != X86::COND_E && CC != X86::COND_NE)
12456 return SDValue();
12457
12458 SDValue Cmp = SetCC.getOperand(1);
12459 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000012460 !X86::isZeroNode(Cmp.getOperand(1)) ||
12461 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012462 return SDValue();
12463
12464 SDValue CmpOp0 = Cmp.getOperand(0);
12465 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
12466 DAG.getConstant(1, CmpOp0.getValueType()));
12467
12468 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
12469 if (CC == X86::COND_NE)
12470 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
12471 DL, OtherVal.getValueType(), OtherVal,
12472 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
12473 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
12474 DL, OtherVal.getValueType(), OtherVal,
12475 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
12476}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012477
Dan Gohman475871a2008-07-27 21:46:04 +000012478SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000012479 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000012480 SelectionDAG &DAG = DCI.DAG;
12481 switch (N->getOpcode()) {
12482 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012483 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012484 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000012485 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000012486 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000012487 case ISD::ADD:
12488 case ISD::SUB: return OptimizeConditonalInDecrement(N, DAG);
Chris Lattner23a01992010-12-20 01:37:09 +000012489 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000012490 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000012491 case ISD::SHL:
12492 case ISD::SRA:
12493 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000012494 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000012495 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000012496 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000012497 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Chris Lattner6cf73262008-01-25 06:14:17 +000012498 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000012499 case X86ISD::FOR: return PerformFORCombine(N, DAG);
12500 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000012501 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000012502 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000012503 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Chris Lattnerc19d1c32010-12-19 22:08:31 +000012504 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012505 case X86ISD::SHUFPS: // Handle all target specific shuffles
12506 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000012507 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012508 case X86ISD::PUNPCKHBW:
12509 case X86ISD::PUNPCKHWD:
12510 case X86ISD::PUNPCKHDQ:
12511 case X86ISD::PUNPCKHQDQ:
12512 case X86ISD::UNPCKHPS:
12513 case X86ISD::UNPCKHPD:
12514 case X86ISD::PUNPCKLBW:
12515 case X86ISD::PUNPCKLWD:
12516 case X86ISD::PUNPCKLDQ:
12517 case X86ISD::PUNPCKLQDQ:
12518 case X86ISD::UNPCKLPS:
12519 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +000012520 case X86ISD::VUNPCKLPSY:
12521 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012522 case X86ISD::MOVHLPS:
12523 case X86ISD::MOVLHPS:
12524 case X86ISD::PSHUFD:
12525 case X86ISD::PSHUFHW:
12526 case X86ISD::PSHUFLW:
12527 case X86ISD::MOVSS:
12528 case X86ISD::MOVSD:
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +000012529 case X86ISD::VPERMIL:
Mon P Wanga0fd0d52010-12-19 23:55:53 +000012530 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI);
Evan Cheng206ee9d2006-07-07 08:33:52 +000012531 }
12532
Dan Gohman475871a2008-07-27 21:46:04 +000012533 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000012534}
12535
Evan Chenge5b51ac2010-04-17 06:13:15 +000012536/// isTypeDesirableForOp - Return true if the target has native support for
12537/// the specified value type and it is 'desirable' to use the type for the
12538/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
12539/// instruction encodings are longer and some i16 instructions are slow.
12540bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
12541 if (!isTypeLegal(VT))
12542 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012543 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000012544 return true;
12545
12546 switch (Opc) {
12547 default:
12548 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000012549 case ISD::LOAD:
12550 case ISD::SIGN_EXTEND:
12551 case ISD::ZERO_EXTEND:
12552 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000012553 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000012554 case ISD::SRL:
12555 case ISD::SUB:
12556 case ISD::ADD:
12557 case ISD::MUL:
12558 case ISD::AND:
12559 case ISD::OR:
12560 case ISD::XOR:
12561 return false;
12562 }
12563}
12564
12565/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000012566/// beneficial for dag combiner to promote the specified node. If true, it
12567/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000012568bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000012569 EVT VT = Op.getValueType();
12570 if (VT != MVT::i16)
12571 return false;
12572
Evan Cheng4c26e932010-04-19 19:29:22 +000012573 bool Promote = false;
12574 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012575 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000012576 default: break;
12577 case ISD::LOAD: {
12578 LoadSDNode *LD = cast<LoadSDNode>(Op);
12579 // If the non-extending load has a single use and it's not live out, then it
12580 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012581 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
12582 Op.hasOneUse()*/) {
12583 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
12584 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
12585 // The only case where we'd want to promote LOAD (rather then it being
12586 // promoted as an operand is when it's only use is liveout.
12587 if (UI->getOpcode() != ISD::CopyToReg)
12588 return false;
12589 }
12590 }
Evan Cheng4c26e932010-04-19 19:29:22 +000012591 Promote = true;
12592 break;
12593 }
12594 case ISD::SIGN_EXTEND:
12595 case ISD::ZERO_EXTEND:
12596 case ISD::ANY_EXTEND:
12597 Promote = true;
12598 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012599 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000012600 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000012601 SDValue N0 = Op.getOperand(0);
12602 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000012603 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000012604 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000012605 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000012606 break;
12607 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000012608 case ISD::ADD:
12609 case ISD::MUL:
12610 case ISD::AND:
12611 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000012612 case ISD::XOR:
12613 Commute = true;
12614 // fallthrough
12615 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000012616 SDValue N0 = Op.getOperand(0);
12617 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000012618 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012619 return false;
12620 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000012621 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012622 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000012623 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000012624 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000012625 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012626 }
12627 }
12628
12629 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000012630 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000012631}
12632
Evan Cheng60c07e12006-07-05 22:17:51 +000012633//===----------------------------------------------------------------------===//
12634// X86 Inline Assembly Support
12635//===----------------------------------------------------------------------===//
12636
Chris Lattnerb8105652009-07-20 17:51:36 +000012637bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
12638 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000012639
12640 std::string AsmStr = IA->getAsmString();
12641
12642 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000012643 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000012644 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000012645
12646 switch (AsmPieces.size()) {
12647 default: return false;
12648 case 1:
12649 AsmStr = AsmPieces[0];
12650 AsmPieces.clear();
12651 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
12652
Chris Lattner7a2bdde2011-04-15 05:18:47 +000012653 // FIXME: this should verify that we are targeting a 486 or better. If not,
Evan Cheng55d42002011-01-08 01:24:27 +000012654 // we will turn this bswap into something that will be lowered to logical ops
12655 // instead of emitting the bswap asm. For now, we don't support 486 or lower
12656 // so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000012657 // bswap $0
12658 if (AsmPieces.size() == 2 &&
12659 (AsmPieces[0] == "bswap" ||
12660 AsmPieces[0] == "bswapq" ||
12661 AsmPieces[0] == "bswapl") &&
12662 (AsmPieces[1] == "$0" ||
12663 AsmPieces[1] == "${0:q}")) {
12664 // No need to check constraints, nothing other than the equivalent of
12665 // "=r,0" would be valid here.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012666 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000012667 if (!Ty || Ty->getBitWidth() % 16 != 0)
12668 return false;
12669 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000012670 }
12671 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000012672 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000012673 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000012674 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000012675 AsmPieces[1] == "$$8," &&
12676 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000012677 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
12678 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000012679 const std::string &ConstraintsStr = IA->getConstraintString();
12680 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000012681 std::sort(AsmPieces.begin(), AsmPieces.end());
12682 if (AsmPieces.size() == 4 &&
12683 AsmPieces[0] == "~{cc}" &&
12684 AsmPieces[1] == "~{dirflag}" &&
12685 AsmPieces[2] == "~{flags}" &&
12686 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012687 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000012688 if (!Ty || Ty->getBitWidth() % 16 != 0)
12689 return false;
12690 return IntrinsicLowering::LowerToByteSwap(CI);
Dan Gohman0ef701e2010-03-04 19:58:08 +000012691 }
Chris Lattnerb8105652009-07-20 17:51:36 +000012692 }
12693 break;
12694 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000012695 if (CI->getType()->isIntegerTy(32) &&
12696 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
12697 SmallVector<StringRef, 4> Words;
12698 SplitString(AsmPieces[0], Words, " \t,");
12699 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
12700 Words[2] == "${0:w}") {
12701 Words.clear();
12702 SplitString(AsmPieces[1], Words, " \t,");
12703 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
12704 Words[2] == "$0") {
12705 Words.clear();
12706 SplitString(AsmPieces[2], Words, " \t,");
12707 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
12708 Words[2] == "${0:w}") {
12709 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000012710 const std::string &ConstraintsStr = IA->getConstraintString();
12711 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Peter Collingbourne948cf022010-11-13 19:54:30 +000012712 std::sort(AsmPieces.begin(), AsmPieces.end());
12713 if (AsmPieces.size() == 4 &&
12714 AsmPieces[0] == "~{cc}" &&
12715 AsmPieces[1] == "~{dirflag}" &&
12716 AsmPieces[2] == "~{flags}" &&
12717 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012718 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000012719 if (!Ty || Ty->getBitWidth() % 16 != 0)
12720 return false;
12721 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000012722 }
12723 }
12724 }
12725 }
12726 }
Evan Cheng55d42002011-01-08 01:24:27 +000012727
12728 if (CI->getType()->isIntegerTy(64)) {
12729 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
12730 if (Constraints.size() >= 2 &&
12731 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
12732 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
12733 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
12734 SmallVector<StringRef, 4> Words;
12735 SplitString(AsmPieces[0], Words, " \t");
12736 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
Chris Lattnerb8105652009-07-20 17:51:36 +000012737 Words.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000012738 SplitString(AsmPieces[1], Words, " \t");
12739 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
12740 Words.clear();
12741 SplitString(AsmPieces[2], Words, " \t,");
12742 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
12743 Words[2] == "%edx") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012744 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000012745 if (!Ty || Ty->getBitWidth() % 16 != 0)
12746 return false;
12747 return IntrinsicLowering::LowerToByteSwap(CI);
12748 }
Chris Lattnerb8105652009-07-20 17:51:36 +000012749 }
12750 }
12751 }
12752 }
12753 break;
12754 }
12755 return false;
12756}
12757
12758
12759
Chris Lattnerf4dff842006-07-11 02:54:03 +000012760/// getConstraintType - Given a constraint letter, return the type of
12761/// constraint it is for this target.
12762X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000012763X86TargetLowering::getConstraintType(const std::string &Constraint) const {
12764 if (Constraint.size() == 1) {
12765 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000012766 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000012767 case 'q':
12768 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000012769 case 'f':
12770 case 't':
12771 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000012772 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000012773 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000012774 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000012775 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000012776 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000012777 case 'a':
12778 case 'b':
12779 case 'c':
12780 case 'd':
12781 case 'S':
12782 case 'D':
12783 case 'A':
12784 return C_Register;
12785 case 'I':
12786 case 'J':
12787 case 'K':
12788 case 'L':
12789 case 'M':
12790 case 'N':
12791 case 'G':
12792 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000012793 case 'e':
12794 case 'Z':
12795 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000012796 default:
12797 break;
12798 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000012799 }
Chris Lattner4234f572007-03-25 02:14:49 +000012800 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000012801}
12802
John Thompson44ab89e2010-10-29 17:29:13 +000012803/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000012804/// This object must already have been set up with the operand type
12805/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000012806TargetLowering::ConstraintWeight
12807 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000012808 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000012809 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012810 Value *CallOperandVal = info.CallOperandVal;
12811 // If we don't have a value, we can't do a match,
12812 // but allow it at the lowest weight.
12813 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000012814 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000012815 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000012816 // Look at the constraint type.
12817 switch (*constraint) {
12818 default:
John Thompson44ab89e2010-10-29 17:29:13 +000012819 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
12820 case 'R':
12821 case 'q':
12822 case 'Q':
12823 case 'a':
12824 case 'b':
12825 case 'c':
12826 case 'd':
12827 case 'S':
12828 case 'D':
12829 case 'A':
12830 if (CallOperandVal->getType()->isIntegerTy())
12831 weight = CW_SpecificReg;
12832 break;
12833 case 'f':
12834 case 't':
12835 case 'u':
12836 if (type->isFloatingPointTy())
12837 weight = CW_SpecificReg;
12838 break;
12839 case 'y':
Chris Lattner2a786eb2010-12-19 20:19:20 +000012840 if (type->isX86_MMXTy() && Subtarget->hasMMX())
John Thompson44ab89e2010-10-29 17:29:13 +000012841 weight = CW_SpecificReg;
12842 break;
12843 case 'x':
12844 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012845 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000012846 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012847 break;
12848 case 'I':
12849 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
12850 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000012851 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012852 }
12853 break;
John Thompson44ab89e2010-10-29 17:29:13 +000012854 case 'J':
12855 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12856 if (C->getZExtValue() <= 63)
12857 weight = CW_Constant;
12858 }
12859 break;
12860 case 'K':
12861 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12862 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
12863 weight = CW_Constant;
12864 }
12865 break;
12866 case 'L':
12867 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12868 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
12869 weight = CW_Constant;
12870 }
12871 break;
12872 case 'M':
12873 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12874 if (C->getZExtValue() <= 3)
12875 weight = CW_Constant;
12876 }
12877 break;
12878 case 'N':
12879 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12880 if (C->getZExtValue() <= 0xff)
12881 weight = CW_Constant;
12882 }
12883 break;
12884 case 'G':
12885 case 'C':
12886 if (dyn_cast<ConstantFP>(CallOperandVal)) {
12887 weight = CW_Constant;
12888 }
12889 break;
12890 case 'e':
12891 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12892 if ((C->getSExtValue() >= -0x80000000LL) &&
12893 (C->getSExtValue() <= 0x7fffffffLL))
12894 weight = CW_Constant;
12895 }
12896 break;
12897 case 'Z':
12898 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
12899 if (C->getZExtValue() <= 0xffffffff)
12900 weight = CW_Constant;
12901 }
12902 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000012903 }
12904 return weight;
12905}
12906
Dale Johannesenba2a0b92008-01-29 02:21:21 +000012907/// LowerXConstraint - try to replace an X constraint, which matches anything,
12908/// with another that has more specific requirements based on the type of the
12909/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000012910const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000012911LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000012912 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
12913 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000012914 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012915 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000012916 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012917 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000012918 return "x";
12919 }
Scott Michelfdc40a02009-02-17 22:15:04 +000012920
Chris Lattner5e764232008-04-26 23:02:14 +000012921 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000012922}
12923
Chris Lattner48884cd2007-08-25 00:47:38 +000012924/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
12925/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000012926void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000012927 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000012928 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000012929 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000012930 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000012931
Eric Christopher100c8332011-06-02 23:16:42 +000012932 // Only support length 1 constraints for now.
12933 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000012934
Eric Christopher100c8332011-06-02 23:16:42 +000012935 char ConstraintLetter = Constraint[0];
12936 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000012937 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000012938 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000012939 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000012940 if (C->getZExtValue() <= 31) {
12941 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000012942 break;
12943 }
Devang Patel84f7fd22007-03-17 00:13:28 +000012944 }
Chris Lattner48884cd2007-08-25 00:47:38 +000012945 return;
Evan Cheng364091e2008-09-22 23:57:37 +000012946 case 'J':
12947 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000012948 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000012949 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
12950 break;
12951 }
12952 }
12953 return;
12954 case 'K':
12955 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000012956 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000012957 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
12958 break;
12959 }
12960 }
12961 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000012962 case 'N':
12963 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000012964 if (C->getZExtValue() <= 255) {
12965 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000012966 break;
12967 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000012968 }
Chris Lattner48884cd2007-08-25 00:47:38 +000012969 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000012970 case 'e': {
12971 // 32-bit signed value
12972 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000012973 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
12974 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000012975 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000012976 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000012977 break;
12978 }
12979 // FIXME gcc accepts some relocatable values here too, but only in certain
12980 // memory models; it's complicated.
12981 }
12982 return;
12983 }
12984 case 'Z': {
12985 // 32-bit unsigned value
12986 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000012987 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
12988 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000012989 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
12990 break;
12991 }
12992 }
12993 // FIXME gcc accepts some relocatable values here too, but only in certain
12994 // memory models; it's complicated.
12995 return;
12996 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000012997 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000012998 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000012999 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000013000 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000013001 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000013002 break;
13003 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013004
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013005 // In any sort of PIC mode addresses need to be computed at runtime by
13006 // adding in a register or some sort of table lookup. These can't
13007 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000013008 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000013009 return;
13010
Chris Lattnerdc43a882007-05-03 16:52:29 +000013011 // If we are in non-pic codegen mode, we allow the address of a global (with
13012 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000013013 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013014 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000013015
Chris Lattner49921962009-05-08 18:23:14 +000013016 // Match either (GA), (GA+C), (GA+C1+C2), etc.
13017 while (1) {
13018 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
13019 Offset += GA->getOffset();
13020 break;
13021 } else if (Op.getOpcode() == ISD::ADD) {
13022 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13023 Offset += C->getZExtValue();
13024 Op = Op.getOperand(0);
13025 continue;
13026 }
13027 } else if (Op.getOpcode() == ISD::SUB) {
13028 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13029 Offset += -C->getZExtValue();
13030 Op = Op.getOperand(0);
13031 continue;
13032 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013033 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013034
Chris Lattner49921962009-05-08 18:23:14 +000013035 // Otherwise, this isn't something we can handle, reject it.
13036 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000013037 }
Eric Christopherfd179292009-08-27 18:07:15 +000013038
Dan Gohman46510a72010-04-15 01:51:59 +000013039 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013040 // If we require an extra load to get this address, as in PIC mode, we
13041 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000013042 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
13043 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000013044 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000013045
Devang Patel0d881da2010-07-06 22:08:15 +000013046 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
13047 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000013048 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013049 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000013050 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013051
Gabor Greifba36cb52008-08-28 21:40:38 +000013052 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000013053 Ops.push_back(Result);
13054 return;
13055 }
Dale Johannesen1784d162010-06-25 21:55:36 +000013056 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000013057}
13058
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013059std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000013060X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000013061 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000013062 // First, see if this is a constraint that directly corresponds to an LLVM
13063 // register class.
13064 if (Constraint.size() == 1) {
13065 // GCC Constraint Letters
13066 switch (Constraint[0]) {
13067 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000013068 // TODO: Slight differences here in allocation order and leaving
13069 // RIP in the class. Do they matter any more here than they do
13070 // in the normal allocation?
13071 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
13072 if (Subtarget->is64Bit()) {
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013073 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000013074 return std::make_pair(0U, X86::GR32RegisterClass);
13075 else if (VT == MVT::i16)
13076 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000013077 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000013078 return std::make_pair(0U, X86::GR8RegisterClass);
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013079 else if (VT == MVT::i64 || VT == MVT::f64)
Eric Christopherd176af82011-06-29 17:23:50 +000013080 return std::make_pair(0U, X86::GR64RegisterClass);
13081 break;
13082 }
13083 // 32-bit fallthrough
13084 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000013085 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000013086 return std::make_pair(0U, X86::GR32_ABCDRegisterClass);
13087 else if (VT == MVT::i16)
13088 return std::make_pair(0U, X86::GR16_ABCDRegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000013089 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000013090 return std::make_pair(0U, X86::GR8_ABCD_LRegisterClass);
13091 else if (VT == MVT::i64)
13092 return std::make_pair(0U, X86::GR64_ABCDRegisterClass);
13093 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000013094 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000013095 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000013096 if (VT == MVT::i8 || VT == MVT::i1)
Chris Lattner0f65cad2007-04-09 05:49:22 +000013097 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013098 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000013099 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000013100 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000013101 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000013102 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000013103 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000013104 if (VT == MVT::i8 || VT == MVT::i1)
Dale Johannesen5f3663e2009-10-07 22:47:20 +000013105 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
13106 if (VT == MVT::i16)
13107 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
13108 if (VT == MVT::i32 || !Subtarget->is64Bit())
13109 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
13110 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013111 case 'f': // FP Stack registers.
13112 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
13113 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000013114 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013115 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013116 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000013117 return std::make_pair(0U, X86::RFP64RegisterClass);
13118 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000013119 case 'y': // MMX_REGS if MMX allowed.
13120 if (!Subtarget->hasMMX()) break;
13121 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000013122 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013123 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000013124 // FALL THROUGH.
13125 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000013126 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000013127
Owen Anderson825b72b2009-08-11 20:47:22 +000013128 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000013129 default: break;
13130 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000013131 case MVT::f32:
13132 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000013133 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000013134 case MVT::f64:
13135 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000013136 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000013137 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000013138 case MVT::v16i8:
13139 case MVT::v8i16:
13140 case MVT::v4i32:
13141 case MVT::v2i64:
13142 case MVT::v4f32:
13143 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000013144 return std::make_pair(0U, X86::VR128RegisterClass);
13145 }
Chris Lattnerad043e82007-04-09 05:11:28 +000013146 break;
13147 }
13148 }
Scott Michelfdc40a02009-02-17 22:15:04 +000013149
Chris Lattnerf76d1802006-07-31 23:26:50 +000013150 // Use the default implementation in TargetLowering to convert the register
13151 // constraint into a member of a register class.
13152 std::pair<unsigned, const TargetRegisterClass*> Res;
13153 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000013154
13155 // Not found as a standard register?
13156 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000013157 // Map st(0) -> st(7) -> ST0
13158 if (Constraint.size() == 7 && Constraint[0] == '{' &&
13159 tolower(Constraint[1]) == 's' &&
13160 tolower(Constraint[2]) == 't' &&
13161 Constraint[3] == '(' &&
13162 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
13163 Constraint[5] == ')' &&
13164 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000013165
Chris Lattner56d77c72009-09-13 22:41:48 +000013166 Res.first = X86::ST0+Constraint[4]-'0';
13167 Res.second = X86::RFP80RegisterClass;
13168 return Res;
13169 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000013170
Chris Lattner56d77c72009-09-13 22:41:48 +000013171 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000013172 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000013173 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000013174 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000013175 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000013176 }
Chris Lattner56d77c72009-09-13 22:41:48 +000013177
13178 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000013179 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000013180 Res.first = X86::EFLAGS;
13181 Res.second = X86::CCRRegisterClass;
13182 return Res;
13183 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000013184
Dale Johannesen330169f2008-11-13 21:52:36 +000013185 // 'A' means EAX + EDX.
13186 if (Constraint == "A") {
13187 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000013188 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000013189 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000013190 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000013191 return Res;
13192 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013193
Chris Lattnerf76d1802006-07-31 23:26:50 +000013194 // Otherwise, check to see if this is a register class of the wrong value
13195 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
13196 // turn into {ax},{dx}.
13197 if (Res.second->hasType(VT))
13198 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013199
Chris Lattnerf76d1802006-07-31 23:26:50 +000013200 // All of the single-register GCC register classes map their values onto
13201 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
13202 // really want an 8-bit or 32-bit register, map to the appropriate register
13203 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000013204 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000013205 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013206 unsigned DestReg = 0;
13207 switch (Res.first) {
13208 default: break;
13209 case X86::AX: DestReg = X86::AL; break;
13210 case X86::DX: DestReg = X86::DL; break;
13211 case X86::CX: DestReg = X86::CL; break;
13212 case X86::BX: DestReg = X86::BL; break;
13213 }
13214 if (DestReg) {
13215 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013216 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013217 }
Owen Anderson825b72b2009-08-11 20:47:22 +000013218 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013219 unsigned DestReg = 0;
13220 switch (Res.first) {
13221 default: break;
13222 case X86::AX: DestReg = X86::EAX; break;
13223 case X86::DX: DestReg = X86::EDX; break;
13224 case X86::CX: DestReg = X86::ECX; break;
13225 case X86::BX: DestReg = X86::EBX; break;
13226 case X86::SI: DestReg = X86::ESI; break;
13227 case X86::DI: DestReg = X86::EDI; break;
13228 case X86::BP: DestReg = X86::EBP; break;
13229 case X86::SP: DestReg = X86::ESP; break;
13230 }
13231 if (DestReg) {
13232 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013233 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013234 }
Owen Anderson825b72b2009-08-11 20:47:22 +000013235 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000013236 unsigned DestReg = 0;
13237 switch (Res.first) {
13238 default: break;
13239 case X86::AX: DestReg = X86::RAX; break;
13240 case X86::DX: DestReg = X86::RDX; break;
13241 case X86::CX: DestReg = X86::RCX; break;
13242 case X86::BX: DestReg = X86::RBX; break;
13243 case X86::SI: DestReg = X86::RSI; break;
13244 case X86::DI: DestReg = X86::RDI; break;
13245 case X86::BP: DestReg = X86::RBP; break;
13246 case X86::SP: DestReg = X86::RSP; break;
13247 }
13248 if (DestReg) {
13249 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000013250 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000013251 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000013252 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000013253 } else if (Res.second == X86::FR32RegisterClass ||
13254 Res.second == X86::FR64RegisterClass ||
13255 Res.second == X86::VR128RegisterClass) {
13256 // Handle references to XMM physical registers that got mapped into the
13257 // wrong class. This can happen with constraints like {xmm0} where the
13258 // target independent register mapper will just pick the first match it can
13259 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000013260 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000013261 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000013262 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000013263 Res.second = X86::FR64RegisterClass;
13264 else if (X86::VR128RegisterClass->hasType(VT))
13265 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000013266 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000013267
Chris Lattnerf76d1802006-07-31 23:26:50 +000013268 return Res;
13269}