blob: 42193c41cb4b07bd54900d26180adb0927c842fa [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"
Rafael Espindola151ab3e2011-08-30 19:47:04 +000054#include "llvm/Target/TargetOptions.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000055using namespace llvm;
Bill Wendlingec041eb2010-03-12 19:20:40 +000056using namespace dwarf;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000057
Evan Chengb1712452010-01-27 06:25:16 +000058STATISTIC(NumTailCalls, "Number of tail calls");
59
Evan Cheng10e86422008-04-25 19:11:04 +000060// Forward declarations.
Owen Andersone50ed302009-08-10 22:56:29 +000061static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +000062 SDValue V2);
Evan Cheng10e86422008-04-25 19:11:04 +000063
David Greenea5f26012011-02-07 19:36:54 +000064static SDValue Insert128BitVector(SDValue Result,
65 SDValue Vec,
66 SDValue Idx,
67 SelectionDAG &DAG,
68 DebugLoc dl);
David Greenef125a292011-02-08 19:04:41 +000069
David Greenea5f26012011-02-07 19:36:54 +000070static SDValue Extract128BitVector(SDValue Vec,
71 SDValue Idx,
72 SelectionDAG &DAG,
73 DebugLoc dl);
74
75/// Generate a DAG to grab 128-bits from a vector > 128 bits. This
76/// sets things up to match to an AVX VEXTRACTF128 instruction or a
David Greene74a579d2011-02-10 16:57:36 +000077/// simple subregister reference. Idx is an index in the 128 bits we
78/// want. It need not be aligned to a 128-bit bounday. That makes
79/// lowering EXTRACT_VECTOR_ELT operations easier.
David Greenea5f26012011-02-07 19:36:54 +000080static SDValue Extract128BitVector(SDValue Vec,
81 SDValue Idx,
82 SelectionDAG &DAG,
83 DebugLoc dl) {
84 EVT VT = Vec.getValueType();
85 assert(VT.getSizeInBits() == 256 && "Unexpected vector size!");
David Greenea5f26012011-02-07 19:36:54 +000086 EVT ElVT = VT.getVectorElementType();
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +000087 int Factor = VT.getSizeInBits()/128;
88 EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
89 VT.getVectorNumElements()/Factor);
David Greenea5f26012011-02-07 19:36:54 +000090
91 // Extract from UNDEF is UNDEF.
92 if (Vec.getOpcode() == ISD::UNDEF)
93 return DAG.getNode(ISD::UNDEF, dl, ResultVT);
94
95 if (isa<ConstantSDNode>(Idx)) {
96 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
97
98 // Extract the relevant 128 bits. Generate an EXTRACT_SUBVECTOR
99 // we can match to VEXTRACTF128.
100 unsigned ElemsPerChunk = 128 / ElVT.getSizeInBits();
101
102 // This is the index of the first element of the 128-bit chunk
103 // we want.
104 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / 128)
105 * ElemsPerChunk);
106
107 SDValue VecIdx = DAG.getConstant(NormalizedIdxVal, MVT::i32);
David Greenea5f26012011-02-07 19:36:54 +0000108 SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
109 VecIdx);
110
111 return Result;
112 }
113
114 return SDValue();
115}
116
117/// Generate a DAG to put 128-bits into a vector > 128 bits. This
118/// sets things up to match to an AVX VINSERTF128 instruction or a
David Greene6b381262011-02-09 15:32:06 +0000119/// simple superregister reference. Idx is an index in the 128 bits
120/// we want. It need not be aligned to a 128-bit bounday. That makes
121/// lowering INSERT_VECTOR_ELT operations easier.
David Greenea5f26012011-02-07 19:36:54 +0000122static SDValue Insert128BitVector(SDValue Result,
123 SDValue Vec,
124 SDValue Idx,
125 SelectionDAG &DAG,
126 DebugLoc dl) {
127 if (isa<ConstantSDNode>(Idx)) {
128 EVT VT = Vec.getValueType();
129 assert(VT.getSizeInBits() == 128 && "Unexpected vector size!");
130
131 EVT ElVT = VT.getVectorElementType();
David Greenea5f26012011-02-07 19:36:54 +0000132 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
David Greenea5f26012011-02-07 19:36:54 +0000133 EVT ResultVT = Result.getValueType();
134
135 // Insert the relevant 128 bits.
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +0000136 unsigned ElemsPerChunk = 128/ElVT.getSizeInBits();
David Greenea5f26012011-02-07 19:36:54 +0000137
138 // This is the index of the first element of the 128-bit chunk
139 // we want.
Bruno Cardoso Lopes67727ca2011-07-21 01:55:27 +0000140 unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/128)
David Greenea5f26012011-02-07 19:36:54 +0000141 * ElemsPerChunk);
142
143 SDValue VecIdx = DAG.getConstant(NormalizedIdxVal, MVT::i32);
David Greenea5f26012011-02-07 19:36:54 +0000144 Result = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
145 VecIdx);
146 return Result;
147 }
148
149 return SDValue();
150}
151
Chris Lattnerf0144122009-07-28 03:13:23 +0000152static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
Evan Cheng2bffee22011-02-01 01:14:13 +0000153 const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
154 bool is64Bit = Subtarget->is64Bit();
NAKAMURA Takumi27635382011-02-05 15:10:54 +0000155
Evan Cheng2bffee22011-02-01 01:14:13 +0000156 if (Subtarget->isTargetEnvMacho()) {
Chris Lattnere019ec12010-12-19 20:07:10 +0000157 if (is64Bit)
158 return new X8664_MachoTargetObjectFile();
Anton Korobeynikov293d5922010-02-21 20:28:15 +0000159 return new TargetLoweringObjectFileMachO();
Michael J. Spencerec38de22010-10-10 22:04:20 +0000160 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000161
Evan Cheng203576a2011-07-20 19:50:42 +0000162 if (Subtarget->isTargetELF())
163 return new TargetLoweringObjectFileELF();
Evan Cheng2bffee22011-02-01 01:14:13 +0000164 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
Chris Lattnere019ec12010-12-19 20:07:10 +0000165 return new TargetLoweringObjectFileCOFF();
Eric Christopher62f35a22010-07-05 19:26:33 +0000166 llvm_unreachable("unknown subtarget type");
Chris Lattnerf0144122009-07-28 03:13:23 +0000167}
168
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +0000169X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +0000170 : TargetLowering(TM, createTLOF(TM)) {
Evan Cheng559806f2006-01-27 08:10:46 +0000171 Subtarget = &TM.getSubtarget<X86Subtarget>();
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +0000172 X86ScalarSSEf64 = Subtarget->hasXMMInt();
173 X86ScalarSSEf32 = Subtarget->hasXMM();
Evan Cheng25ab6902006-09-08 06:48:29 +0000174 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000175
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000176 RegInfo = TM.getRegisterInfo();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +0000177 TD = getTargetData();
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000178
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000179 // Set up the TargetLowering object.
Chris Lattnera34b3cf2010-12-19 20:03:11 +0000180 static MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000181
182 // X86 is weird, it always uses i8 for shift amounts and setcc results.
Duncan Sands03228082008-11-23 15:47:28 +0000183 setBooleanContents(ZeroOrOneBooleanContent);
Duncan Sands28b77e92011-09-06 19:07:46 +0000184 // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
185 setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
Eric Christopher471e4222011-06-08 23:55:35 +0000186
Eric Christopherde5e1012011-03-11 01:05:58 +0000187 // For 64-bit since we have so many registers use the ILP scheduler, for
188 // 32-bit code use the register pressure specific scheduling.
189 if (Subtarget->is64Bit())
190 setSchedulingPreference(Sched::ILP);
191 else
192 setSchedulingPreference(Sched::RegPressure);
Evan Cheng25ab6902006-09-08 06:48:29 +0000193 setStackPointerRegisterToSaveRestore(X86StackPtr);
Evan Cheng714554d2006-03-16 21:47:42 +0000194
Michael J. Spencer92bf38c2010-10-10 23:11:06 +0000195 if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000196 // Setup Windows compiler runtime calls.
197 setLibcallName(RTLIB::SDIV_I64, "_alldiv");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000198 setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
Julien Lerougef2960822011-07-08 21:40:25 +0000199 setLibcallName(RTLIB::SREM_I64, "_allrem");
200 setLibcallName(RTLIB::UREM_I64, "_aullrem");
201 setLibcallName(RTLIB::MUL_I64, "_allmul");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000202 setLibcallName(RTLIB::FPTOUINT_F64_I64, "_ftol2");
Michael J. Spencer94f7eeb2010-10-19 07:32:52 +0000203 setLibcallName(RTLIB::FPTOUINT_F32_I64, "_ftol2");
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000204 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer335b8062010-10-11 05:29:15 +0000205 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
Julien Lerougef2960822011-07-08 21:40:25 +0000206 setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
207 setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
208 setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
Michael J. Spencer6dad10e2010-10-27 18:52:38 +0000209 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::C);
210 setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::C);
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000211 }
212
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000213 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +0000214 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000215 setUseUnderscoreSetJmp(false);
216 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000217 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000218 // MS runtime is weird: it exports _setjmp, but longjmp!
219 setUseUnderscoreSetJmp(true);
220 setUseUnderscoreLongJmp(false);
221 } else {
222 setUseUnderscoreSetJmp(true);
223 setUseUnderscoreLongJmp(true);
224 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000225
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000226 // Set up the register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000227 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
Dan Gohman71edb242010-04-30 18:30:26 +0000228 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000229 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
Evan Cheng25ab6902006-09-08 06:48:29 +0000230 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000231 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000232
Owen Anderson825b72b2009-08-11 20:47:22 +0000233 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +0000234
Scott Michelfdc40a02009-02-17 22:15:04 +0000235 // We don't accept any truncstore of integer registers.
Owen Anderson825b72b2009-08-11 20:47:22 +0000236 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000237 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000238 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000239 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000240 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
241 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Evan Cheng7f042682008-10-15 02:05:31 +0000242
243 // SETOEQ and SETUNE require checking two conditions.
Owen Anderson825b72b2009-08-11 20:47:22 +0000244 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
245 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
246 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
247 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
248 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
249 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000250
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000251 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
252 // operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000253 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
254 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
255 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000256
Evan Cheng25ab6902006-09-08 06:48:29 +0000257 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000258 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
259 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Eli Friedman948e95a2009-05-23 09:59:16 +0000260 } else if (!UseSoftFloat) {
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000261 // We have an algorithm for SSE2->double, and we turn this into a
262 // 64-bit FILD followed by conditional FADD for other targets.
263 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Eli Friedman948e95a2009-05-23 09:59:16 +0000264 // We have an algorithm for SSE2, and we turn this into a 64-bit
265 // FILD for other targets.
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000266 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000267 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000268
269 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
270 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000271 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
272 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000273
Devang Patel6a784892009-06-05 18:48:29 +0000274 if (!UseSoftFloat) {
Bill Wendling105be5a2009-03-13 08:41:47 +0000275 // SSE has no i16 to fp conversion, only i32
276 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000277 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000278 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000279 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000280 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000281 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
282 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000283 }
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000284 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000285 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
286 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000287 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000288
Dale Johannesen73328d12007-09-19 23:55:34 +0000289 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
290 // are Legal, f80 is custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000291 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
292 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000293
Evan Cheng02568ff2006-01-30 22:13:22 +0000294 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
295 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000296 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
297 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
Evan Cheng02568ff2006-01-30 22:13:22 +0000298
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000299 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000300 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000301 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000302 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000303 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000304 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
305 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000306 }
307
308 // Handle FP_TO_UINT by promoting the destination to a larger signed
309 // conversion.
Owen Anderson825b72b2009-08-11 20:47:22 +0000310 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
311 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
312 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000313
Evan Cheng25ab6902006-09-08 06:48:29 +0000314 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000315 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
316 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Eli Friedman948e95a2009-05-23 09:59:16 +0000317 } else if (!UseSoftFloat) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +0000318 // Since AVX is a superset of SSE3, only check for SSE here.
319 if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000320 // Expand FP_TO_UINT into a select.
321 // FIXME: We would like to use a Custom expander here eventually to do
322 // the optimal thing for SSE vs. the default expansion in the legalizer.
Owen Anderson825b72b2009-08-11 20:47:22 +0000323 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000324 else
Eli Friedman948e95a2009-05-23 09:59:16 +0000325 // With SSE3 we can use fisttpll to convert to a signed i64; without
326 // SSE, we're stuck with a fistpll.
Owen Anderson825b72b2009-08-11 20:47:22 +0000327 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000328 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000329
Chris Lattner399610a2006-12-05 18:22:22 +0000330 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Michael J. Spencerec38de22010-10-10 22:04:20 +0000331 if (!X86ScalarSSEf64) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000332 setOperationAction(ISD::BITCAST , MVT::f32 , Expand);
333 setOperationAction(ISD::BITCAST , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000334 if (Subtarget->is64Bit()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000335 setOperationAction(ISD::BITCAST , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000336 // Without SSE, i64->f64 goes through memory.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000337 setOperationAction(ISD::BITCAST , MVT::i64 , Expand);
Dale Johannesen7d07b482010-05-21 00:52:33 +0000338 }
Chris Lattnerf3597a12006-12-05 18:45:06 +0000339 }
Chris Lattner21f66852005-12-23 05:15:23 +0000340
Dan Gohmanb00ee212008-02-18 19:34:53 +0000341 // Scalar integer divide and remainder are lowered to use operations that
342 // produce two results, to match the available instructions. This exposes
343 // the two-result form to trivial CSE, which is able to combine x/y and x%y
344 // into a single instruction.
345 //
346 // Scalar integer multiply-high is also lowered to use two-result
347 // operations, to match the available instructions. However, plain multiply
348 // (low) operations are left as Legal, as there are single-result
349 // instructions for this in x86. Using the two-result multiply instructions
350 // when both high and low results are needed must be arranged by dagcombine.
Chris Lattnere019ec12010-12-19 20:07:10 +0000351 for (unsigned i = 0, e = 4; i != e; ++i) {
352 MVT VT = IntVTs[i];
353 setOperationAction(ISD::MULHS, VT, Expand);
354 setOperationAction(ISD::MULHU, VT, Expand);
355 setOperationAction(ISD::SDIV, VT, Expand);
356 setOperationAction(ISD::UDIV, VT, Expand);
357 setOperationAction(ISD::SREM, VT, Expand);
358 setOperationAction(ISD::UREM, VT, Expand);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000359
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000360 // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
Chris Lattnerd8ff7ec2010-12-20 01:03:27 +0000361 setOperationAction(ISD::ADDC, VT, Custom);
362 setOperationAction(ISD::ADDE, VT, Custom);
363 setOperationAction(ISD::SUBC, VT, Custom);
364 setOperationAction(ISD::SUBE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000365 }
Dan Gohmana37c9f72007-09-25 18:23:27 +0000366
Owen Anderson825b72b2009-08-11 20:47:22 +0000367 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
368 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
369 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
370 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000371 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000372 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
373 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
374 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
375 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
376 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
377 setOperationAction(ISD::FREM , MVT::f32 , Expand);
378 setOperationAction(ISD::FREM , MVT::f64 , Expand);
379 setOperationAction(ISD::FREM , MVT::f80 , Expand);
380 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000381
Owen Anderson825b72b2009-08-11 20:47:22 +0000382 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
383 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000384 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
385 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000386 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
387 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000388 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000389 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
390 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000391 }
392
Benjamin Kramer1292c222010-12-04 20:32:23 +0000393 if (Subtarget->hasPOPCNT()) {
394 setOperationAction(ISD::CTPOP , MVT::i8 , Promote);
395 } else {
396 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
397 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
398 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
399 if (Subtarget->is64Bit())
400 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
401 }
402
Owen Anderson825b72b2009-08-11 20:47:22 +0000403 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
404 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000405
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000406 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000407 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000408 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000409 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000410 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000411 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
412 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
413 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
414 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
415 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000416 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000417 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
418 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
419 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
420 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000421 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000422 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
Andrew Trickf6c39412011-03-23 23:11:02 +0000423 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000424 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000425 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000426
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000427 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000428 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
429 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
430 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
431 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000432 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000433 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
434 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000435 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000436 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000437 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
438 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
439 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
440 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000441 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000442 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000443 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000444 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
445 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
446 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000447 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000448 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
449 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
450 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000451 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000452
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000453 if (Subtarget->hasXMM())
Owen Anderson825b72b2009-08-11 20:47:22 +0000454 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000455
Eric Christopher9a9d2752010-07-22 02:48:34 +0000456 setOperationAction(ISD::MEMBARRIER , MVT::Other, Custom);
Eli Friedman14648462011-07-27 22:21:52 +0000457 setOperationAction(ISD::ATOMIC_FENCE , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000458
Jim Grosbachf1ab49e2010-06-23 16:25:07 +0000459 // On X86 and X86-64, atomic operations are lowered to locked instructions.
460 // Locked instructions, in turn, have implicit fence semantics (all memory
461 // operations are flushed before issuing the locked instruction, and they
462 // are not buffered), so we can fold away the common pattern of
463 // fence-atomic-fence.
464 setShouldFoldAtomicFences(true);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000465
Mon P Wang63307c32008-05-05 19:05:59 +0000466 // Expand certain atomics
Chris Lattnere019ec12010-12-19 20:07:10 +0000467 for (unsigned i = 0, e = 4; i != e; ++i) {
468 MVT VT = IntVTs[i];
469 setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
470 setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
Eli Friedman327236c2011-08-24 20:50:09 +0000471 setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000472 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000473
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000474 if (!Subtarget->is64Bit()) {
Eli Friedmanf8f90f02011-08-24 22:33:28 +0000475 setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000476 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
477 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
478 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
479 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
480 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
481 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
482 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000483 }
484
Eli Friedman43f51ae2011-08-26 21:21:21 +0000485 if (Subtarget->hasCmpxchg16b()) {
486 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
487 }
488
Evan Cheng3c992d22006-03-07 02:02:57 +0000489 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000490 if (!Subtarget->isTargetDarwin() &&
491 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000492 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000493 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000494 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000495
Owen Anderson825b72b2009-08-11 20:47:22 +0000496 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
497 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
498 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
499 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000500 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000501 setExceptionPointerRegister(X86::RAX);
502 setExceptionSelectorRegister(X86::RDX);
503 } else {
504 setExceptionPointerRegister(X86::EAX);
505 setExceptionSelectorRegister(X86::EDX);
506 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000507 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
508 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000509
Duncan Sands4a544a72011-09-06 13:37:06 +0000510 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
511 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000512
Owen Anderson825b72b2009-08-11 20:47:22 +0000513 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000514
Nate Begemanacc398c2006-01-25 18:21:52 +0000515 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000516 setOperationAction(ISD::VASTART , MVT::Other, Custom);
517 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000518 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000519 setOperationAction(ISD::VAARG , MVT::Other, Custom);
520 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000521 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000522 setOperationAction(ISD::VAARG , MVT::Other, Expand);
523 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000524 }
Evan Chengae642192007-03-02 23:16:35 +0000525
Owen Anderson825b72b2009-08-11 20:47:22 +0000526 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
527 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Eric Christopherc967ad82011-08-31 04:17:21 +0000528
529 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
530 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
531 MVT::i64 : MVT::i32, Custom);
532 else if (EnableSegmentedStacks)
533 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
534 MVT::i64 : MVT::i32, Custom);
535 else
536 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
537 MVT::i64 : MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000538
Evan Chengc7ce29b2009-02-13 22:36:38 +0000539 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000540 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000541 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000542 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
543 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000544
Evan Cheng223547a2006-01-31 22:28:30 +0000545 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000546 setOperationAction(ISD::FABS , MVT::f64, Custom);
547 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000548
549 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000550 setOperationAction(ISD::FNEG , MVT::f64, Custom);
551 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000552
Evan Cheng68c47cb2007-01-05 07:55:56 +0000553 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000554 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
555 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000556
Stuart Hastings4fd0dee2011-06-01 04:39:42 +0000557 // Lower this to FGETSIGNx86 plus an AND.
558 setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
559 setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
560
Evan Chengd25e9e82006-02-02 00:28:23 +0000561 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000562 setOperationAction(ISD::FSIN , MVT::f64, Expand);
563 setOperationAction(ISD::FCOS , MVT::f64, Expand);
564 setOperationAction(ISD::FSIN , MVT::f32, Expand);
565 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000566
Chris Lattnera54aa942006-01-29 06:26:08 +0000567 // Expand FP immediates into loads from the stack, except for the special
568 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000569 addLegalFPImmediate(APFloat(+0.0)); // xorpd
570 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000571 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000572 // Use SSE for f32, x87 for f64.
573 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000574 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
575 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000576
577 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000578 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000579
580 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000581 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000582
Owen Anderson825b72b2009-08-11 20:47:22 +0000583 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000584
585 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000586 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
587 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000588
589 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000590 setOperationAction(ISD::FSIN , MVT::f32, Expand);
591 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000592
Nate Begemane1795842008-02-14 08:57:00 +0000593 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000594 addLegalFPImmediate(APFloat(+0.0f)); // xorps
595 addLegalFPImmediate(APFloat(+0.0)); // FLD0
596 addLegalFPImmediate(APFloat(+1.0)); // FLD1
597 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
598 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
599
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000600 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000601 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
602 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000603 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000604 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000605 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000606 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000607 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
608 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000609
Owen Anderson825b72b2009-08-11 20:47:22 +0000610 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
611 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
612 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
613 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000614
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000615 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000616 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
617 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000618 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000619 addLegalFPImmediate(APFloat(+0.0)); // FLD0
620 addLegalFPImmediate(APFloat(+1.0)); // FLD1
621 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
622 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000623 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
624 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
625 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
626 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000627 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000628
Cameron Zwarich33390842011-07-08 21:39:21 +0000629 // We don't support FMA.
630 setOperationAction(ISD::FMA, MVT::f64, Expand);
631 setOperationAction(ISD::FMA, MVT::f32, Expand);
632
Dale Johannesen59a58732007-08-05 18:49:15 +0000633 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000634 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000635 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
636 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
637 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000638 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000639 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000640 addLegalFPImmediate(TmpFlt); // FLD0
641 TmpFlt.changeSign();
642 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000643
644 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000645 APFloat TmpFlt2(+1.0);
646 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
647 &ignored);
648 addLegalFPImmediate(TmpFlt2); // FLD1
649 TmpFlt2.changeSign();
650 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
651 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000652
Evan Chengc7ce29b2009-02-13 22:36:38 +0000653 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000654 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
655 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000656 }
Cameron Zwarich33390842011-07-08 21:39:21 +0000657
658 setOperationAction(ISD::FMA, MVT::f80, Expand);
Dale Johannesen2f429012007-09-26 21:10:55 +0000659 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000660
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000661 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000662 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
663 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
664 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000665
Owen Anderson825b72b2009-08-11 20:47:22 +0000666 setOperationAction(ISD::FLOG, MVT::f80, Expand);
667 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
668 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
669 setOperationAction(ISD::FEXP, MVT::f80, Expand);
670 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000671
Mon P Wangf007a8b2008-11-06 05:31:54 +0000672 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000673 // (for widening) or expand (for scalarization). Then we will selectively
674 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000675 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
676 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
677 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
678 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
679 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
680 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
681 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
682 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
683 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
684 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
685 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
686 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
687 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
688 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
689 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
690 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
691 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000692 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
David Greenecfe33c42011-01-26 19:13:22 +0000693 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
694 setOperationAction(ISD::INSERT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000695 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
696 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
697 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
698 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
699 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
700 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
701 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
702 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
703 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
704 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
705 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
706 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
707 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
708 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
709 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
710 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
711 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
712 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
713 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
714 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
715 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
Duncan Sands28b77e92011-09-06 19:07:46 +0000716 setOperationAction(ISD::SETCC, (MVT::SimpleValueType)VT, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000717 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
718 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
719 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
720 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
721 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
722 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
723 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
724 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
725 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000726 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000727 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
728 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
729 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
730 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
Nadav Rotemaec58612011-09-13 19:17:42 +0000731 setOperationAction(ISD::VSELECT, (MVT::SimpleValueType)VT, Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000732 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
733 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
734 setTruncStoreAction((MVT::SimpleValueType)VT,
735 (MVT::SimpleValueType)InnerVT, Expand);
736 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
737 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
738 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000739 }
740
Evan Chengc7ce29b2009-02-13 22:36:38 +0000741 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
742 // with -msoft-float, disable use of MMX as well.
Chris Lattner2a786eb2010-12-19 20:19:20 +0000743 if (!UseSoftFloat && Subtarget->hasMMX()) {
Dale Johannesene93d99c2010-10-20 21:32:10 +0000744 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000745 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000746 }
747
Dale Johannesen0488fb62010-09-30 23:57:10 +0000748 // MMX-sized vectors (other than x86mmx) are expected to be expanded
749 // into smaller operations.
750 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
751 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
752 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
753 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
754 setOperationAction(ISD::AND, MVT::v8i8, Expand);
755 setOperationAction(ISD::AND, MVT::v4i16, Expand);
756 setOperationAction(ISD::AND, MVT::v2i32, Expand);
757 setOperationAction(ISD::AND, MVT::v1i64, Expand);
758 setOperationAction(ISD::OR, MVT::v8i8, Expand);
759 setOperationAction(ISD::OR, MVT::v4i16, Expand);
760 setOperationAction(ISD::OR, MVT::v2i32, Expand);
761 setOperationAction(ISD::OR, MVT::v1i64, Expand);
762 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
763 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
764 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
765 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
766 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
767 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
768 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
769 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
770 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
771 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
772 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
773 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
774 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000775 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
776 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
777 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
778 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000779
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000780 if (!UseSoftFloat && Subtarget->hasXMM()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000781 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000782
Owen Anderson825b72b2009-08-11 20:47:22 +0000783 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
784 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
785 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
786 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
787 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
788 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
789 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
790 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
791 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
792 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
793 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Duncan Sands28b77e92011-09-06 19:07:46 +0000794 setOperationAction(ISD::SETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000795 }
796
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000797 if (!UseSoftFloat && Subtarget->hasXMMInt()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000798 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000799
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000800 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
801 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000802 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
803 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
804 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
805 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000806
Owen Anderson825b72b2009-08-11 20:47:22 +0000807 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
808 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
809 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
810 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
811 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
812 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
813 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
814 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
815 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
816 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
817 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
818 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
819 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
820 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
821 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
822 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000823
Duncan Sands28b77e92011-09-06 19:07:46 +0000824 setOperationAction(ISD::SETCC, MVT::v2f64, Custom);
825 setOperationAction(ISD::SETCC, MVT::v16i8, Custom);
826 setOperationAction(ISD::SETCC, MVT::v8i16, Custom);
827 setOperationAction(ISD::SETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000828
Owen Anderson825b72b2009-08-11 20:47:22 +0000829 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
830 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
831 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
832 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
833 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000834
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000835 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
836 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
837 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
838 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
839 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
840
Evan Cheng2c3ae372006-04-12 21:21:57 +0000841 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000842 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
843 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000844 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000845 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000846 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000847 // Do not attempt to custom lower non-128-bit vectors
848 if (!VT.is128BitVector())
849 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000850 setOperationAction(ISD::BUILD_VECTOR,
851 VT.getSimpleVT().SimpleTy, Custom);
852 setOperationAction(ISD::VECTOR_SHUFFLE,
853 VT.getSimpleVT().SimpleTy, Custom);
854 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
855 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000856 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000857
Owen Anderson825b72b2009-08-11 20:47:22 +0000858 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
859 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
860 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
861 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
862 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
863 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000864
Nate Begemancdd1eec2008-02-12 22:51:28 +0000865 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000866 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
867 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000868 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000869
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000870 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000871 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
872 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000873 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000874
875 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000876 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000877 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000878
Owen Andersond6662ad2009-08-10 20:46:15 +0000879 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000880 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000881 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000882 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000883 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000884 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000885 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000886 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000887 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000888 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000889 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000890
Owen Anderson825b72b2009-08-11 20:47:22 +0000891 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000892
Evan Cheng2c3ae372006-04-12 21:21:57 +0000893 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000894 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
895 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
896 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
897 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000898
Owen Anderson825b72b2009-08-11 20:47:22 +0000899 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
900 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000901 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000902
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000903 if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
Dale Johannesen54feef22010-05-27 20:12:41 +0000904 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
905 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
906 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
907 setOperationAction(ISD::FRINT, MVT::f32, Legal);
908 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
909 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
910 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
911 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
912 setOperationAction(ISD::FRINT, MVT::f64, Legal);
913 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
914
Nate Begeman14d12ca2008-02-11 04:19:36 +0000915 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000916 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000917
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000918 // Can turn SHL into an integer multiply.
919 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Nate Begeman51409212010-07-28 00:21:48 +0000920 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000921
Nadav Rotemfbad25e2011-09-11 15:02:23 +0000922 setOperationAction(ISD::VSELECT, MVT::v2f64, Legal);
923 setOperationAction(ISD::VSELECT, MVT::v2i64, Legal);
924 setOperationAction(ISD::VSELECT, MVT::v16i8, Legal);
925 setOperationAction(ISD::VSELECT, MVT::v4i32, Legal);
926 setOperationAction(ISD::VSELECT, MVT::v4f32, Legal);
Nadav Rotemffe3e7d2011-09-08 08:11:19 +0000927
Nate Begeman14d12ca2008-02-11 04:19:36 +0000928 // i8 and i16 vectors are custom , because the source register and source
929 // source memory operand types are not the same width. f32 vectors are
930 // custom since the immediate controlling the insert encodes additional
931 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000932 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
933 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
934 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
935 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000936
Owen Anderson825b72b2009-08-11 20:47:22 +0000937 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
938 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
939 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
940 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000941
942 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000943 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
944 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000945 }
946 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000947
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +0000948 if (Subtarget->hasXMMInt()) {
Nadav Rotem43012222011-05-11 08:12:09 +0000949 setOperationAction(ISD::SRL, MVT::v2i64, Custom);
950 setOperationAction(ISD::SRL, MVT::v4i32, Custom);
951 setOperationAction(ISD::SRL, MVT::v16i8, Custom);
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000952 setOperationAction(ISD::SRL, MVT::v8i16, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +0000953
954 setOperationAction(ISD::SHL, MVT::v2i64, Custom);
955 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
956 setOperationAction(ISD::SHL, MVT::v8i16, Custom);
957
958 setOperationAction(ISD::SRA, MVT::v4i32, Custom);
959 setOperationAction(ISD::SRA, MVT::v8i16, Custom);
960 }
961
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000962 if (Subtarget->hasSSE42() || Subtarget->hasAVX())
Duncan Sands28b77e92011-09-06 19:07:46 +0000963 setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000964
David Greene9b9838d2009-06-29 16:47:10 +0000965 if (!UseSoftFloat && Subtarget->hasAVX()) {
Bruno Cardoso Lopesdbd4fe22011-07-21 02:24:08 +0000966 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
967 addRegisterClass(MVT::v16i16, X86::VR256RegisterClass);
968 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
969 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
970 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
971 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000972
Owen Anderson825b72b2009-08-11 20:47:22 +0000973 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +0000974 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
975 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +0000976
Owen Anderson825b72b2009-08-11 20:47:22 +0000977 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
978 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
979 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
980 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
981 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
982 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000983
Owen Anderson825b72b2009-08-11 20:47:22 +0000984 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
985 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
986 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
987 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
988 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
989 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000990
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +0000991 setOperationAction(ISD::FP_TO_SINT, MVT::v8i32, Legal);
992 setOperationAction(ISD::SINT_TO_FP, MVT::v8i32, Legal);
Bruno Cardoso Lopes55244ce2011-08-01 21:54:09 +0000993 setOperationAction(ISD::FP_ROUND, MVT::v4f32, Legal);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +0000994
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +0000995 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4f64, Custom);
996 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i64, Custom);
997 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f32, Custom);
998 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i32, Custom);
999 setOperationAction(ISD::CONCAT_VECTORS, MVT::v32i8, Custom);
1000 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i16, Custom);
1001
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001002 setOperationAction(ISD::SRL, MVT::v4i64, Custom);
1003 setOperationAction(ISD::SRL, MVT::v8i32, Custom);
1004 setOperationAction(ISD::SRL, MVT::v16i16, Custom);
1005 setOperationAction(ISD::SRL, MVT::v32i8, Custom);
1006
1007 setOperationAction(ISD::SHL, MVT::v4i64, Custom);
1008 setOperationAction(ISD::SHL, MVT::v8i32, Custom);
1009 setOperationAction(ISD::SHL, MVT::v16i16, Custom);
1010 setOperationAction(ISD::SHL, MVT::v32i8, Custom);
1011
1012 setOperationAction(ISD::SRA, MVT::v8i32, Custom);
1013 setOperationAction(ISD::SRA, MVT::v16i16, Custom);
1014
Duncan Sands28b77e92011-09-06 19:07:46 +00001015 setOperationAction(ISD::SETCC, MVT::v32i8, Custom);
1016 setOperationAction(ISD::SETCC, MVT::v16i16, Custom);
1017 setOperationAction(ISD::SETCC, MVT::v8i32, Custom);
1018 setOperationAction(ISD::SETCC, MVT::v4i64, Custom);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00001019
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +00001020 setOperationAction(ISD::SELECT, MVT::v4f64, Custom);
1021 setOperationAction(ISD::SELECT, MVT::v4i64, Custom);
1022 setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
1023
Nadav Rotemfbad25e2011-09-11 15:02:23 +00001024 setOperationAction(ISD::VSELECT, MVT::v4f64, Legal);
1025 setOperationAction(ISD::VSELECT, MVT::v4i64, Legal);
1026 setOperationAction(ISD::VSELECT, MVT::v8i32, Legal);
1027 setOperationAction(ISD::VSELECT, MVT::v8f32, Legal);
Nadav Rotem8ffad562011-09-09 20:29:17 +00001028
Craig Topper13894fa2011-08-24 06:14:18 +00001029 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
1030 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
1031 setOperationAction(ISD::ADD, MVT::v16i16, Custom);
1032 setOperationAction(ISD::ADD, MVT::v32i8, Custom);
1033
1034 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
1035 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
1036 setOperationAction(ISD::SUB, MVT::v16i16, Custom);
1037 setOperationAction(ISD::SUB, MVT::v32i8, Custom);
1038
1039 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1040 setOperationAction(ISD::MUL, MVT::v8i32, Custom);
1041 setOperationAction(ISD::MUL, MVT::v16i16, Custom);
1042 // Don't lower v32i8 because there is no 128-bit byte mul
1043
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001044 // Custom lower several nodes for 256-bit types.
David Greene54d8eba2011-01-27 22:38:56 +00001045 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001046 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
1047 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1048 EVT VT = SVT;
1049
1050 // Extract subvector is special because the value type
1051 // (result) is 128-bit but the source is 256-bit wide.
1052 if (VT.is128BitVector())
1053 setOperationAction(ISD::EXTRACT_SUBVECTOR, SVT, Custom);
1054
1055 // Do not attempt to custom lower other non-256-bit vectors
1056 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +00001057 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001058
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001059 setOperationAction(ISD::BUILD_VECTOR, SVT, Custom);
1060 setOperationAction(ISD::VECTOR_SHUFFLE, SVT, Custom);
1061 setOperationAction(ISD::INSERT_VECTOR_ELT, SVT, Custom);
1062 setOperationAction(ISD::EXTRACT_VECTOR_ELT, SVT, Custom);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00001063 setOperationAction(ISD::SCALAR_TO_VECTOR, SVT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001064 setOperationAction(ISD::INSERT_SUBVECTOR, SVT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001065 }
1066
David Greene54d8eba2011-01-27 22:38:56 +00001067 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001068 for (unsigned i = (unsigned)MVT::v32i8; i != (unsigned)MVT::v4i64; ++i) {
1069 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1070 EVT VT = SVT;
David Greene54d8eba2011-01-27 22:38:56 +00001071
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001072 // Do not attempt to promote non-256-bit vectors
1073 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +00001074 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001075
1076 setOperationAction(ISD::AND, SVT, Promote);
1077 AddPromotedToType (ISD::AND, SVT, MVT::v4i64);
1078 setOperationAction(ISD::OR, SVT, Promote);
1079 AddPromotedToType (ISD::OR, SVT, MVT::v4i64);
1080 setOperationAction(ISD::XOR, SVT, Promote);
1081 AddPromotedToType (ISD::XOR, SVT, MVT::v4i64);
1082 setOperationAction(ISD::LOAD, SVT, Promote);
1083 AddPromotedToType (ISD::LOAD, SVT, MVT::v4i64);
1084 setOperationAction(ISD::SELECT, SVT, Promote);
1085 AddPromotedToType (ISD::SELECT, SVT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001086 }
David Greene9b9838d2009-06-29 16:47:10 +00001087 }
1088
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001089 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1090 // of this type with custom code.
1091 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1092 VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE; VT++) {
1093 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT, Custom);
1094 }
1095
Evan Cheng6be2c582006-04-05 23:38:46 +00001096 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001097 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001098
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001099
Eli Friedman962f5492010-06-02 19:35:46 +00001100 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1101 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001102 //
Eli Friedman962f5492010-06-02 19:35:46 +00001103 // FIXME: We really should do custom legalization for addition and
1104 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1105 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001106 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1107 // Add/Sub/Mul with overflow operations are custom lowered.
1108 MVT VT = IntVTs[i];
1109 setOperationAction(ISD::SADDO, VT, Custom);
1110 setOperationAction(ISD::UADDO, VT, Custom);
1111 setOperationAction(ISD::SSUBO, VT, Custom);
1112 setOperationAction(ISD::USUBO, VT, Custom);
1113 setOperationAction(ISD::SMULO, VT, Custom);
1114 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001115 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001116
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001117 // There are no 8-bit 3-address imul/mul instructions
1118 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1119 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001120
Evan Chengd54f2d52009-03-31 19:38:51 +00001121 if (!Subtarget->is64Bit()) {
1122 // These libcalls are not available in 32-bit.
1123 setLibcallName(RTLIB::SHL_I128, 0);
1124 setLibcallName(RTLIB::SRL_I128, 0);
1125 setLibcallName(RTLIB::SRA_I128, 0);
1126 }
1127
Evan Cheng206ee9d2006-07-07 08:33:52 +00001128 // We have target-specific dag combine patterns for the following nodes:
1129 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001130 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +00001131 setTargetDAGCombine(ISD::BUILD_VECTOR);
Duncan Sands6bcd2192011-09-17 16:49:39 +00001132 setTargetDAGCombine(ISD::VSELECT);
Chris Lattner83e6c992006-10-04 06:57:07 +00001133 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001134 setTargetDAGCombine(ISD::SHL);
1135 setTargetDAGCombine(ISD::SRA);
1136 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001137 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001138 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001139 setTargetDAGCombine(ISD::ADD);
1140 setTargetDAGCombine(ISD::SUB);
Chris Lattner149a4e52008-02-22 02:09:43 +00001141 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001142 setTargetDAGCombine(ISD::ZERO_EXTEND);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001143 setTargetDAGCombine(ISD::SINT_TO_FP);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001144 if (Subtarget->is64Bit())
1145 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001146
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001147 computeRegisterProperties();
1148
Evan Cheng05219282011-01-06 06:52:41 +00001149 // On Darwin, -Os means optimize for size without hurting performance,
1150 // do not reduce the limit.
Dan Gohman87060f52008-06-30 21:00:56 +00001151 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001152 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
Evan Cheng255f20f2010-04-01 06:04:33 +00001153 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001154 maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1155 maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1156 maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Evan Chengfb8075d2008-02-28 00:43:03 +00001157 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +00001158 benefitFromCodePlacementOpt = true;
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001159
1160 setPrefFunctionAlignment(4);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001161}
1162
Scott Michel5b8f82e2008-03-10 15:42:14 +00001163
Duncan Sands28b77e92011-09-06 19:07:46 +00001164EVT X86TargetLowering::getSetCCResultType(EVT VT) const {
1165 if (!VT.isVector()) return MVT::i8;
1166 return VT.changeVectorElementTypeToInteger();
Scott Michel5b8f82e2008-03-10 15:42:14 +00001167}
1168
1169
Evan Cheng29286502008-01-23 23:17:41 +00001170/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1171/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001172static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001173 if (MaxAlign == 16)
1174 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001175 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001176 if (VTy->getBitWidth() == 128)
1177 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001178 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001179 unsigned EltAlign = 0;
1180 getMaxByValAlign(ATy->getElementType(), EltAlign);
1181 if (EltAlign > MaxAlign)
1182 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001183 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001184 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1185 unsigned EltAlign = 0;
1186 getMaxByValAlign(STy->getElementType(i), EltAlign);
1187 if (EltAlign > MaxAlign)
1188 MaxAlign = EltAlign;
1189 if (MaxAlign == 16)
1190 break;
1191 }
1192 }
1193 return;
1194}
1195
1196/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1197/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001198/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1199/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001200unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001201 if (Subtarget->is64Bit()) {
1202 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001203 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001204 if (TyAlign > 8)
1205 return TyAlign;
1206 return 8;
1207 }
1208
Evan Cheng29286502008-01-23 23:17:41 +00001209 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001210 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001211 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001212 return Align;
1213}
Chris Lattner2b02a442007-02-25 08:29:00 +00001214
Evan Chengf0df0312008-05-15 08:39:06 +00001215/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001216/// and store operations as a result of memset, memcpy, and memmove
1217/// lowering. If DstAlign is zero that means it's safe to destination
1218/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1219/// means there isn't a need to check it against alignment requirement,
1220/// probably because the source does not need to be loaded. If
1221/// 'NonScalarIntSafe' is true, that means it's safe to return a
1222/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1223/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1224/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001225/// It returns EVT::Other if the type should be determined using generic
1226/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001227EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001228X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1229 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001230 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001231 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001232 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001233 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1234 // linux. This is because the stack realignment code can't handle certain
1235 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001236 const Function *F = MF.getFunction();
Evan Chenga5e13622011-01-07 19:35:30 +00001237 if (NonScalarIntSafe &&
1238 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001239 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001240 (Subtarget->isUnalignedMemAccessFast() ||
1241 ((DstAlign == 0 || DstAlign >= 16) &&
1242 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001243 Subtarget->getStackAlignment() >= 16) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00001244 if (Subtarget->hasAVX() &&
1245 Subtarget->getStackAlignment() >= 32)
1246 return MVT::v8f32;
1247 if (Subtarget->hasXMMInt())
Evan Cheng255f20f2010-04-01 06:04:33 +00001248 return MVT::v4i32;
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00001249 if (Subtarget->hasXMM())
Evan Cheng255f20f2010-04-01 06:04:33 +00001250 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001251 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001252 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001253 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001254 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001255 // Do not use f64 to lower memcpy if source is string constant. It's
1256 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001257 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001258 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001259 }
Evan Chengf0df0312008-05-15 08:39:06 +00001260 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001261 return MVT::i64;
1262 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001263}
1264
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001265/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1266/// current function. The returned value is a member of the
1267/// MachineJumpTableInfo::JTEntryKind enum.
1268unsigned X86TargetLowering::getJumpTableEncoding() const {
1269 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1270 // symbol.
1271 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1272 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001273 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001274
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001275 // Otherwise, use the normal jump table encoding heuristics.
1276 return TargetLowering::getJumpTableEncoding();
1277}
1278
Chris Lattnerc64daab2010-01-26 05:02:42 +00001279const MCExpr *
1280X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1281 const MachineBasicBlock *MBB,
1282 unsigned uid,MCContext &Ctx) const{
1283 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1284 Subtarget->isPICStyleGOT());
1285 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1286 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001287 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1288 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001289}
1290
Evan Chengcc415862007-11-09 01:32:10 +00001291/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1292/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001293SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001294 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001295 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001296 // This doesn't have DebugLoc associated with it, but is not really the
1297 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001298 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001299 return Table;
1300}
1301
Chris Lattner589c6f62010-01-26 06:28:43 +00001302/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1303/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1304/// MCExpr.
1305const MCExpr *X86TargetLowering::
1306getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1307 MCContext &Ctx) const {
1308 // X86-64 uses RIP relative addressing based on the jump table label.
1309 if (Subtarget->isPICStyleRIPRel())
1310 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1311
1312 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001313 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001314}
1315
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001316// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001317std::pair<const TargetRegisterClass*, uint8_t>
1318X86TargetLowering::findRepresentativeClass(EVT VT) const{
1319 const TargetRegisterClass *RRC = 0;
1320 uint8_t Cost = 1;
1321 switch (VT.getSimpleVT().SimpleTy) {
1322 default:
1323 return TargetLowering::findRepresentativeClass(VT);
1324 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1325 RRC = (Subtarget->is64Bit()
1326 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1327 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001328 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001329 RRC = X86::VR64RegisterClass;
1330 break;
1331 case MVT::f32: case MVT::f64:
1332 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1333 case MVT::v4f32: case MVT::v2f64:
1334 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1335 case MVT::v4f64:
1336 RRC = X86::VR128RegisterClass;
1337 break;
1338 }
1339 return std::make_pair(RRC, Cost);
1340}
1341
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001342bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1343 unsigned &Offset) const {
1344 if (!Subtarget->isTargetLinux())
1345 return false;
1346
1347 if (Subtarget->is64Bit()) {
1348 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1349 Offset = 0x28;
1350 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1351 AddressSpace = 256;
1352 else
1353 AddressSpace = 257;
1354 } else {
1355 // %gs:0x14 on i386
1356 Offset = 0x14;
1357 AddressSpace = 256;
1358 }
1359 return true;
1360}
1361
1362
Chris Lattner2b02a442007-02-25 08:29:00 +00001363//===----------------------------------------------------------------------===//
1364// Return Value Calling Convention Implementation
1365//===----------------------------------------------------------------------===//
1366
Chris Lattner59ed56b2007-02-28 04:55:35 +00001367#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001368
Michael J. Spencerec38de22010-10-10 22:04:20 +00001369bool
Eric Christopher471e4222011-06-08 23:55:35 +00001370X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1371 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001372 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001373 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001374 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001375 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001376 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001377 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001378}
1379
Dan Gohman98ca4f22009-08-05 01:29:28 +00001380SDValue
1381X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001382 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001383 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001384 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001385 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001386 MachineFunction &MF = DAG.getMachineFunction();
1387 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001388
Chris Lattner9774c912007-02-27 05:28:59 +00001389 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001390 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001391 RVLocs, *DAG.getContext());
1392 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001393
Evan Chengdcea1632010-02-04 02:40:39 +00001394 // Add the regs to the liveout set for the function.
1395 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1396 for (unsigned i = 0; i != RVLocs.size(); ++i)
1397 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1398 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001399
Dan Gohman475871a2008-07-27 21:46:04 +00001400 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001401
Dan Gohman475871a2008-07-27 21:46:04 +00001402 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001403 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1404 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001405 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1406 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001407
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001408 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001409 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1410 CCValAssign &VA = RVLocs[i];
1411 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001412 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001413 EVT ValVT = ValToCopy.getValueType();
1414
Dale Johannesenc4510512010-09-24 19:05:48 +00001415 // If this is x86-64, and we disabled SSE, we can't return FP values,
1416 // or SSE or MMX vectors.
1417 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1418 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001419 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001420 report_fatal_error("SSE register return with SSE disabled");
1421 }
1422 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1423 // llvm-gcc has never done it right and no one has noticed, so this
1424 // should be OK for now.
1425 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001426 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001427 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001428
Chris Lattner447ff682008-03-11 03:23:40 +00001429 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1430 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001431 if (VA.getLocReg() == X86::ST0 ||
1432 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001433 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1434 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001435 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001436 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001437 RetOps.push_back(ValToCopy);
1438 // Don't emit a copytoreg.
1439 continue;
1440 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001441
Evan Cheng242b38b2009-02-23 09:03:22 +00001442 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1443 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001444 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001445 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001446 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001447 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001448 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1449 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001450 // If we don't have SSE2 available, convert to v4f32 so the generated
1451 // register is legal.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00001452 if (!Subtarget->hasXMMInt())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001453 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001454 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001455 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001456 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001457
Dale Johannesendd64c412009-02-04 00:33:20 +00001458 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001459 Flag = Chain.getValue(1);
1460 }
Dan Gohman61a92132008-04-21 23:59:07 +00001461
1462 // The x86-64 ABI for returning structs by value requires that we copy
1463 // the sret argument into %rax for the return. We saved the argument into
1464 // a virtual register in the entry block, so now we copy the value out
1465 // and into %rax.
1466 if (Subtarget->is64Bit() &&
1467 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1468 MachineFunction &MF = DAG.getMachineFunction();
1469 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1470 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001471 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001472 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001473 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001474
Dale Johannesendd64c412009-02-04 00:33:20 +00001475 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001476 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001477
1478 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001479 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001480 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001481
Chris Lattner447ff682008-03-11 03:23:40 +00001482 RetOps[0] = Chain; // Update chain.
1483
1484 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001485 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001486 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001487
1488 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001489 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001490}
1491
Evan Cheng3d2125c2010-11-30 23:55:39 +00001492bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1493 if (N->getNumValues() != 1)
1494 return false;
1495 if (!N->hasNUsesOfValue(1, 0))
1496 return false;
1497
1498 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001499 if (Copy->getOpcode() != ISD::CopyToReg &&
1500 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001501 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001502
1503 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001504 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001505 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001506 if (UI->getOpcode() != X86ISD::RET_FLAG)
1507 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001508 HasRet = true;
1509 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001510
Evan Cheng1bf891a2010-12-01 22:59:46 +00001511 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001512}
1513
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001514EVT
1515X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001516 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001517 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001518 // TODO: Is this also valid on 32-bit?
1519 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001520 ReturnMVT = MVT::i8;
1521 else
1522 ReturnMVT = MVT::i32;
1523
1524 EVT MinVT = getRegisterType(Context, ReturnMVT);
1525 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001526}
1527
Dan Gohman98ca4f22009-08-05 01:29:28 +00001528/// LowerCallResult - Lower the result values of a call into the
1529/// appropriate copies out of appropriate physical registers.
1530///
1531SDValue
1532X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001533 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001534 const SmallVectorImpl<ISD::InputArg> &Ins,
1535 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001536 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001537
Chris Lattnere32bbf62007-02-28 07:09:55 +00001538 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001539 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001540 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001541 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1542 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001543 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001544
Chris Lattner3085e152007-02-25 08:59:22 +00001545 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001546 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001547 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001548 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001549
Torok Edwin3f142c32009-02-01 18:15:56 +00001550 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001551 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001552 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001553 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001554 }
1555
Evan Cheng79fb3b42009-02-20 20:43:02 +00001556 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001557
1558 // If this is a call to a function that returns an fp value on the floating
1559 // point stack, we must guarantee the the value is popped from the stack, so
1560 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001561 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001562 // instead.
1563 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1564 // If we prefer to use the value in xmm registers, copy it out as f80 and
1565 // use a truncate to move it from fp stack reg to xmm reg.
1566 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001567 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001568 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1569 MVT::Other, MVT::Glue, Ops, 2), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001570 Val = Chain.getValue(0);
1571
1572 // Round the f80 to the right size, which also moves it to the appropriate
1573 // xmm register.
1574 if (CopyVT != VA.getValVT())
1575 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1576 // This truncation won't change the value.
1577 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001578 } else {
1579 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1580 CopyVT, InFlag).getValue(1);
1581 Val = Chain.getValue(0);
1582 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001583 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001584 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001585 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001586
Dan Gohman98ca4f22009-08-05 01:29:28 +00001587 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001588}
1589
1590
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001591//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001592// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001593//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001594// StdCall calling convention seems to be standard for many Windows' API
1595// routines and around. It differs from C calling convention just a little:
1596// callee should clean up the stack, not caller. Symbols should be also
1597// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001598// For info on fast calling convention see Fast Calling Convention (tail call)
1599// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001600
Dan Gohman98ca4f22009-08-05 01:29:28 +00001601/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001602/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001603static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1604 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001605 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001606
Dan Gohman98ca4f22009-08-05 01:29:28 +00001607 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001608}
1609
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001610/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001611/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001612static bool
1613ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1614 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001615 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001616
Dan Gohman98ca4f22009-08-05 01:29:28 +00001617 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001618}
1619
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001620/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1621/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001622/// the specific parameter attribute. The copy will be passed as a byval
1623/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001624static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001625CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001626 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1627 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001628 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001629
Dale Johannesendd64c412009-02-04 00:33:20 +00001630 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00001631 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001632 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001633}
1634
Chris Lattner29689432010-03-11 00:22:57 +00001635/// IsTailCallConvention - Return true if the calling convention is one that
1636/// supports tail call optimization.
1637static bool IsTailCallConvention(CallingConv::ID CC) {
1638 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1639}
1640
Evan Cheng485fafc2011-03-21 01:19:09 +00001641bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1642 if (!CI->isTailCall())
1643 return false;
1644
1645 CallSite CS(CI);
1646 CallingConv::ID CalleeCC = CS.getCallingConv();
1647 if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1648 return false;
1649
1650 return true;
1651}
1652
Evan Cheng0c439eb2010-01-27 00:07:07 +00001653/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1654/// a tailcall target by changing its ABI.
1655static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001656 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001657}
1658
Dan Gohman98ca4f22009-08-05 01:29:28 +00001659SDValue
1660X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001661 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001662 const SmallVectorImpl<ISD::InputArg> &Ins,
1663 DebugLoc dl, SelectionDAG &DAG,
1664 const CCValAssign &VA,
1665 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001666 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001667 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001668 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001669 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001670 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001671 EVT ValVT;
1672
1673 // If value is passed by pointer we have address passed instead of the value
1674 // itself.
1675 if (VA.getLocInfo() == CCValAssign::Indirect)
1676 ValVT = VA.getLocVT();
1677 else
1678 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001679
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001680 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001681 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001682 // In case of tail call optimization mark all arguments mutable. Since they
1683 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001684 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00001685 unsigned Bytes = Flags.getByValSize();
1686 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1687 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001688 return DAG.getFrameIndex(FI, getPointerTy());
1689 } else {
1690 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001691 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001692 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1693 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001694 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001695 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001696 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001697}
1698
Dan Gohman475871a2008-07-27 21:46:04 +00001699SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001700X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001701 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001702 bool isVarArg,
1703 const SmallVectorImpl<ISD::InputArg> &Ins,
1704 DebugLoc dl,
1705 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001706 SmallVectorImpl<SDValue> &InVals)
1707 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001708 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001709 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001710
Gordon Henriksen86737662008-01-05 16:56:59 +00001711 const Function* Fn = MF.getFunction();
1712 if (Fn->hasExternalLinkage() &&
1713 Subtarget->isTargetCygMing() &&
1714 Fn->getName() == "main")
1715 FuncInfo->setForceFramePointer(true);
1716
Evan Cheng1bc78042006-04-26 01:20:17 +00001717 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001718 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001719 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001720
Chris Lattner29689432010-03-11 00:22:57 +00001721 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1722 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001723
Chris Lattner638402b2007-02-28 07:00:42 +00001724 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001725 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001726 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001727 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001728
1729 // Allocate shadow area for Win64
1730 if (IsWin64) {
1731 CCInfo.AllocateStack(32, 8);
1732 }
1733
Duncan Sands45907662010-10-31 13:21:44 +00001734 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001735
Chris Lattnerf39f7712007-02-28 05:46:49 +00001736 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001737 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001738 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1739 CCValAssign &VA = ArgLocs[i];
1740 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1741 // places.
1742 assert(VA.getValNo() != LastVal &&
1743 "Don't support value assigned to multiple locs yet");
1744 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001745
Chris Lattnerf39f7712007-02-28 05:46:49 +00001746 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001747 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001748 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001749 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001750 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001751 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001752 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001753 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001754 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001755 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001756 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001757 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1758 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001759 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001760 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001761 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001762 RC = X86::VR64RegisterClass;
1763 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001764 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001765
Devang Patel68e6bee2011-02-21 23:21:26 +00001766 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001767 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001768
Chris Lattnerf39f7712007-02-28 05:46:49 +00001769 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1770 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1771 // right size.
1772 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001773 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001774 DAG.getValueType(VA.getValVT()));
1775 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001776 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001777 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001778 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001779 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001780
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001781 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001782 // Handle MMX values passed in XMM regs.
1783 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001784 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1785 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001786 } else
1787 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001788 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001789 } else {
1790 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001791 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001792 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001793
1794 // If value is passed via pointer - do a load.
1795 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001796 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1797 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001798
Dan Gohman98ca4f22009-08-05 01:29:28 +00001799 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001800 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001801
Dan Gohman61a92132008-04-21 23:59:07 +00001802 // The x86-64 ABI for returning structs by value requires that we copy
1803 // the sret argument into %rax for the return. Save the argument into
1804 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001805 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001806 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1807 unsigned Reg = FuncInfo->getSRetReturnReg();
1808 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001809 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001810 FuncInfo->setSRetReturnReg(Reg);
1811 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001812 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001813 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001814 }
1815
Chris Lattnerf39f7712007-02-28 05:46:49 +00001816 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001817 // Align stack specially for tail calls.
1818 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001819 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001820
Evan Cheng1bc78042006-04-26 01:20:17 +00001821 // If the function takes variable number of arguments, make a frame index for
1822 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001823 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001824 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1825 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001826 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001827 }
1828 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001829 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1830
1831 // FIXME: We should really autogenerate these arrays
1832 static const unsigned GPR64ArgRegsWin64[] = {
1833 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001834 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001835 static const unsigned GPR64ArgRegs64Bit[] = {
1836 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1837 };
1838 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001839 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1840 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1841 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001842 const unsigned *GPR64ArgRegs;
1843 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001844
1845 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001846 // The XMM registers which might contain var arg parameters are shadowed
1847 // in their paired GPR. So we only need to save the GPR to their home
1848 // slots.
1849 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001850 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001851 } else {
1852 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1853 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001854
1855 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001856 }
1857 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1858 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001859
Devang Patel578efa92009-06-05 21:57:13 +00001860 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001861 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001862 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001863 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001864 "SSE register cannot be used when SSE is disabled!");
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001865 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001866 // Kernel mode asks for SSE to be disabled, so don't push them
1867 // on the stack.
1868 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001869
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001870 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001871 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001872 // Get to the caller-allocated home save location. Add 8 to account
1873 // for the return address.
1874 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001875 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001876 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001877 // Fixup to set vararg frame on shadow area (4 x i64).
1878 if (NumIntRegs < 4)
1879 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001880 } else {
1881 // For X86-64, if there are vararg parameters that are passed via
1882 // registers, then we must store them to their spots on the stack so they
1883 // may be loaded by deferencing the result of va_next.
1884 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1885 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1886 FuncInfo->setRegSaveFrameIndex(
1887 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001888 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001889 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001890
Gordon Henriksen86737662008-01-05 16:56:59 +00001891 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001892 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001893 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1894 getPointerTy());
1895 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001896 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001897 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1898 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001899 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001900 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001901 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001902 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001903 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001904 MachinePointerInfo::getFixedStack(
1905 FuncInfo->getRegSaveFrameIndex(), Offset),
1906 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001907 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001908 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001909 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001910
Dan Gohmanface41a2009-08-16 21:24:25 +00001911 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1912 // Now store the XMM (fp + vector) parameter registers.
1913 SmallVector<SDValue, 11> SaveXMMOps;
1914 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001915
Devang Patel68e6bee2011-02-21 23:21:26 +00001916 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001917 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1918 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001919
Dan Gohman1e93df62010-04-17 14:41:14 +00001920 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1921 FuncInfo->getRegSaveFrameIndex()));
1922 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1923 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001924
Dan Gohmanface41a2009-08-16 21:24:25 +00001925 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001926 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001927 X86::VR128RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001928 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1929 SaveXMMOps.push_back(Val);
1930 }
1931 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1932 MVT::Other,
1933 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001934 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001935
1936 if (!MemOps.empty())
1937 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1938 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001939 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001940 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001941
Gordon Henriksen86737662008-01-05 16:56:59 +00001942 // Some CCs need callee pop.
Evan Chengef41ff62011-06-23 17:54:54 +00001943 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001944 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001945 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001946 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001947 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001948 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001949 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001950 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001951
Gordon Henriksen86737662008-01-05 16:56:59 +00001952 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001953 // RegSaveFrameIndex is X86-64 only.
1954 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001955 if (CallConv == CallingConv::X86_FastCall ||
1956 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001957 // fastcc functions can't have varargs.
1958 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001959 }
Evan Cheng25caf632006-05-23 21:06:34 +00001960
Rafael Espindola76927d752011-08-30 19:39:58 +00001961 FuncInfo->setArgumentStackSize(StackSize);
1962
Dan Gohman98ca4f22009-08-05 01:29:28 +00001963 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001964}
1965
Dan Gohman475871a2008-07-27 21:46:04 +00001966SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001967X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1968 SDValue StackPtr, SDValue Arg,
1969 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001970 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001971 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001972 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001973 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001974 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001975 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001976 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001977
1978 return DAG.getStore(Chain, dl, Arg, PtrOff,
1979 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001980 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001981}
1982
Bill Wendling64e87322009-01-16 19:25:27 +00001983/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001984/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001985SDValue
1986X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001987 SDValue &OutRetAddr, SDValue Chain,
1988 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001989 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001990 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001991 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001992 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001993
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001994 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001995 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1996 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001997 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001998}
1999
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002000/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002001/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00002002static SDValue
2003EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00002004 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00002005 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002006 // Store the return address to the appropriate stack slot.
2007 if (!FPDiff) return Chain;
2008 // Calculate the new stack slot for the return address.
2009 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00002010 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00002011 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00002012 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00002013 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002014 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00002015 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00002016 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002017 return Chain;
2018}
2019
Dan Gohman98ca4f22009-08-05 01:29:28 +00002020SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00002021X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002022 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00002023 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002024 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002025 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002026 const SmallVectorImpl<ISD::InputArg> &Ins,
2027 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002028 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002029 MachineFunction &MF = DAG.getMachineFunction();
2030 bool Is64Bit = Subtarget->is64Bit();
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002031 bool IsWin64 = Subtarget->isTargetWin64();
Dan Gohman98ca4f22009-08-05 01:29:28 +00002032 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00002033 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002034
Evan Cheng5f941932010-02-05 02:21:12 +00002035 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00002036 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00002037 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2038 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00002039 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00002040
2041 // Sibcalls are automatically detected tailcalls which do not require
2042 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00002043 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00002044 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00002045
2046 if (isTailCall)
2047 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00002048 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00002049
Chris Lattner29689432010-03-11 00:22:57 +00002050 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2051 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002052
Chris Lattner638402b2007-02-28 07:00:42 +00002053 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002054 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002055 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002056 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002057
2058 // Allocate shadow area for Win64
2059 if (IsWin64) {
2060 CCInfo.AllocateStack(32, 8);
2061 }
2062
Duncan Sands45907662010-10-31 13:21:44 +00002063 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002064
Chris Lattner423c5f42007-02-28 05:31:48 +00002065 // Get a count of how many bytes are to be pushed on the stack.
2066 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002067 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002068 // This is a sibcall. The memory operands are available in caller's
2069 // own caller's stack.
2070 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00002071 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002072 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002073
Gordon Henriksen86737662008-01-05 16:56:59 +00002074 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002075 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002076 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00002077 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00002078 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
2079 FPDiff = NumBytesCallerPushed - NumBytes;
2080
2081 // Set the delta of movement of the returnaddr stackslot.
2082 // But only set if delta is greater than previous delta.
2083 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2084 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2085 }
2086
Evan Chengf22f9b32010-02-06 03:28:46 +00002087 if (!IsSibcall)
2088 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002089
Dan Gohman475871a2008-07-27 21:46:04 +00002090 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002091 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002092 if (isTailCall && FPDiff)
2093 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2094 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002095
Dan Gohman475871a2008-07-27 21:46:04 +00002096 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2097 SmallVector<SDValue, 8> MemOpChains;
2098 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002099
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002100 // Walk the register/memloc assignments, inserting copies/loads. In the case
2101 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00002102 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2103 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002104 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002105 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002106 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002107 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002108
Chris Lattner423c5f42007-02-28 05:31:48 +00002109 // Promote the value if needed.
2110 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002111 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002112 case CCValAssign::Full: break;
2113 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002114 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002115 break;
2116 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002117 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002118 break;
2119 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002120 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2121 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002122 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002123 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2124 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002125 } else
2126 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2127 break;
2128 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002129 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002130 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002131 case CCValAssign::Indirect: {
2132 // Store the argument.
2133 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002134 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002135 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002136 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002137 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002138 Arg = SpillSlot;
2139 break;
2140 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002141 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002142
Chris Lattner423c5f42007-02-28 05:31:48 +00002143 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002144 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2145 if (isVarArg && IsWin64) {
2146 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2147 // shadow reg if callee is a varargs function.
2148 unsigned ShadowReg = 0;
2149 switch (VA.getLocReg()) {
2150 case X86::XMM0: ShadowReg = X86::RCX; break;
2151 case X86::XMM1: ShadowReg = X86::RDX; break;
2152 case X86::XMM2: ShadowReg = X86::R8; break;
2153 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002154 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002155 if (ShadowReg)
2156 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002157 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002158 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002159 assert(VA.isMemLoc());
2160 if (StackPtr.getNode() == 0)
2161 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2162 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2163 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002164 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002165 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002166
Evan Cheng32fe1032006-05-25 00:59:30 +00002167 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002168 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002169 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002170
Evan Cheng347d5f72006-04-28 21:29:37 +00002171 // Build a sequence of copy-to-reg nodes chained together with token chain
2172 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002173 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002174 // Tail call byval lowering might overwrite argument registers so in case of
2175 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002176 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002177 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002178 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002179 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002180 InFlag = Chain.getValue(1);
2181 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002182
Chris Lattner88e1fd52009-07-09 04:24:46 +00002183 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002184 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2185 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002186 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002187 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2188 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002189 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002190 InFlag);
2191 InFlag = Chain.getValue(1);
2192 } else {
2193 // If we are tail calling and generating PIC/GOT style code load the
2194 // address of the callee into ECX. The value in ecx is used as target of
2195 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2196 // for tail calls on PIC/GOT architectures. Normally we would just put the
2197 // address of GOT into ebx and then call target@PLT. But for tail calls
2198 // ebx would be restored (since ebx is callee saved) before jumping to the
2199 // target@PLT.
2200
2201 // Note: The actual moving to ECX is done further down.
2202 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2203 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2204 !G->getGlobal()->hasProtectedVisibility())
2205 Callee = LowerGlobalAddress(Callee, DAG);
2206 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002207 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002208 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002209 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002210
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002211 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002212 // From AMD64 ABI document:
2213 // For calls that may call functions that use varargs or stdargs
2214 // (prototype-less calls or calls to functions containing ellipsis (...) in
2215 // the declaration) %al is used as hidden argument to specify the number
2216 // of SSE registers used. The contents of %al do not need to match exactly
2217 // the number of registers, but must be an ubound on the number of SSE
2218 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002219
Gordon Henriksen86737662008-01-05 16:56:59 +00002220 // Count the number of XMM registers allocated.
2221 static const unsigned XMMArgRegs[] = {
2222 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2223 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2224 };
2225 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002226 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002227 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002228
Dale Johannesendd64c412009-02-04 00:33:20 +00002229 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002230 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002231 InFlag = Chain.getValue(1);
2232 }
2233
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002234
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002235 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002236 if (isTailCall) {
2237 // Force all the incoming stack arguments to be loaded from the stack
2238 // before any new outgoing arguments are stored to the stack, because the
2239 // outgoing stack slots may alias the incoming argument stack slots, and
2240 // the alias isn't otherwise explicit. This is slightly more conservative
2241 // than necessary, because it means that each store effectively depends
2242 // on every argument instead of just those arguments it would clobber.
2243 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2244
Dan Gohman475871a2008-07-27 21:46:04 +00002245 SmallVector<SDValue, 8> MemOpChains2;
2246 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002247 int FI = 0;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002248 // Do not flag preceding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002249 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002250 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002251 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2252 CCValAssign &VA = ArgLocs[i];
2253 if (VA.isRegLoc())
2254 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002255 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002256 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002257 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002258 // Create frame index.
2259 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002260 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002261 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002262 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002263
Duncan Sands276dcbd2008-03-21 09:14:45 +00002264 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002265 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002266 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002267 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002268 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002269 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002270 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002271
Dan Gohman98ca4f22009-08-05 01:29:28 +00002272 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2273 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002274 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002275 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002276 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002277 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002278 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002279 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002280 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002281 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002282 }
2283 }
2284
2285 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002286 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002287 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002288
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002289 // Copy arguments to their registers.
2290 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002291 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002292 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002293 InFlag = Chain.getValue(1);
2294 }
Dan Gohman475871a2008-07-27 21:46:04 +00002295 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002296
Gordon Henriksen86737662008-01-05 16:56:59 +00002297 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002298 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002299 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002300 }
2301
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002302 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2303 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2304 // In the 64-bit large code model, we have to make all calls
2305 // through a register, since the call instruction's 32-bit
2306 // pc-relative offset may not be large enough to hold the whole
2307 // address.
2308 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002309 // If the callee is a GlobalAddress node (quite common, every direct call
2310 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2311 // it.
2312
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002313 // We should use extra load for direct calls to dllimported functions in
2314 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002315 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002316 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002317 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002318 bool ExtraLoad = false;
2319 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002320
Chris Lattner48a7d022009-07-09 05:02:21 +00002321 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2322 // external symbols most go through the PLT in PIC mode. If the symbol
2323 // has hidden or protected visibility, or if it is static or local, then
2324 // we don't need to use the PLT - we can directly call it.
2325 if (Subtarget->isTargetELF() &&
2326 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002327 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002328 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002329 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002330 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002331 (!Subtarget->getTargetTriple().isMacOSX() ||
2332 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002333 // PC-relative references to external symbols should go through $stub,
2334 // unless we're building with the leopard linker or later, which
2335 // automatically synthesizes these stubs.
2336 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002337 } else if (Subtarget->isPICStyleRIPRel() &&
2338 isa<Function>(GV) &&
2339 cast<Function>(GV)->hasFnAttr(Attribute::NonLazyBind)) {
2340 // If the function is marked as non-lazy, generate an indirect call
2341 // which loads from the GOT directly. This avoids runtime overhead
2342 // at the cost of eager binding (and one extra byte of encoding).
2343 OpFlags = X86II::MO_GOTPCREL;
2344 WrapperKind = X86ISD::WrapperRIP;
2345 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002346 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002347
Devang Patel0d881da2010-07-06 22:08:15 +00002348 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002349 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002350
2351 // Add a wrapper if needed.
2352 if (WrapperKind != ISD::DELETED_NODE)
2353 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2354 // Add extra indirection if needed.
2355 if (ExtraLoad)
2356 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2357 MachinePointerInfo::getGOT(),
2358 false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002359 }
Bill Wendling056292f2008-09-16 21:48:12 +00002360 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002361 unsigned char OpFlags = 0;
2362
Evan Cheng1bf891a2010-12-01 22:59:46 +00002363 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2364 // external symbols should go through the PLT.
2365 if (Subtarget->isTargetELF() &&
2366 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2367 OpFlags = X86II::MO_PLT;
2368 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002369 (!Subtarget->getTargetTriple().isMacOSX() ||
2370 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002371 // PC-relative references to external symbols should go through $stub,
2372 // unless we're building with the leopard linker or later, which
2373 // automatically synthesizes these stubs.
2374 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002375 }
Eric Christopherfd179292009-08-27 18:07:15 +00002376
Chris Lattner48a7d022009-07-09 05:02:21 +00002377 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2378 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002379 }
2380
Chris Lattnerd96d0722007-02-25 06:40:16 +00002381 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002382 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002383 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002384
Evan Chengf22f9b32010-02-06 03:28:46 +00002385 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002386 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2387 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002388 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002389 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002390
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002391 Ops.push_back(Chain);
2392 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002393
Dan Gohman98ca4f22009-08-05 01:29:28 +00002394 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002395 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002396
Gordon Henriksen86737662008-01-05 16:56:59 +00002397 // Add argument registers to the end of the list so that they are known live
2398 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002399 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2400 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2401 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002402
Evan Cheng586ccac2008-03-18 23:36:35 +00002403 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002404 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002405 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2406
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002407 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002408 if (Is64Bit && isVarArg && !IsWin64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002409 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002410
Gabor Greifba36cb52008-08-28 21:40:38 +00002411 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002412 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002413
Dan Gohman98ca4f22009-08-05 01:29:28 +00002414 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002415 // We used to do:
2416 //// If this is the first return lowered for this function, add the regs
2417 //// to the liveout set for the function.
2418 // This isn't right, although it's probably harmless on x86; liveouts
2419 // should be computed from returns not tail calls. Consider a void
2420 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002421 return DAG.getNode(X86ISD::TC_RETURN, dl,
2422 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002423 }
2424
Dale Johannesenace16102009-02-03 19:33:06 +00002425 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002426 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002427
Chris Lattner2d297092006-05-23 18:50:38 +00002428 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002429 unsigned NumBytesForCalleeToPush;
Evan Chengef41ff62011-06-23 17:54:54 +00002430 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002431 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002432 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002433 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002434 // pops the hidden struct pointer, so we have to push it back.
2435 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002436 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002437 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002438 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002439
Gordon Henriksenae636f82008-01-03 16:47:34 +00002440 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002441 if (!IsSibcall) {
2442 Chain = DAG.getCALLSEQ_END(Chain,
2443 DAG.getIntPtrConstant(NumBytes, true),
2444 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2445 true),
2446 InFlag);
2447 InFlag = Chain.getValue(1);
2448 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002449
Chris Lattner3085e152007-02-25 08:59:22 +00002450 // Handle result values, copying them out of physregs into vregs that we
2451 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002452 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2453 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002454}
2455
Evan Cheng25ab6902006-09-08 06:48:29 +00002456
2457//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002458// Fast Calling Convention (tail call) implementation
2459//===----------------------------------------------------------------------===//
2460
2461// Like std call, callee cleans arguments, convention except that ECX is
2462// reserved for storing the tail called function address. Only 2 registers are
2463// free for argument passing (inreg). Tail call optimization is performed
2464// provided:
2465// * tailcallopt is enabled
2466// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002467// On X86_64 architecture with GOT-style position independent code only local
2468// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002469// To keep the stack aligned according to platform abi the function
2470// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2471// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002472// If a tail called function callee has more arguments than the caller the
2473// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002474// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002475// original REtADDR, but before the saved framepointer or the spilled registers
2476// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2477// stack layout:
2478// arg1
2479// arg2
2480// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002481// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002482// move area ]
2483// (possible EBP)
2484// ESI
2485// EDI
2486// local1 ..
2487
2488/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2489/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002490unsigned
2491X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2492 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002493 MachineFunction &MF = DAG.getMachineFunction();
2494 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002495 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002496 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002497 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002498 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002499 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002500 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2501 // Number smaller than 12 so just add the difference.
2502 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2503 } else {
2504 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002505 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002506 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002507 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002508 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002509}
2510
Evan Cheng5f941932010-02-05 02:21:12 +00002511/// MatchingStackOffset - Return true if the given stack call argument is
2512/// already available in the same position (relatively) of the caller's
2513/// incoming argument stack.
2514static
2515bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2516 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2517 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002518 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2519 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002520 if (Arg.getOpcode() == ISD::CopyFromReg) {
2521 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002522 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002523 return false;
2524 MachineInstr *Def = MRI->getVRegDef(VR);
2525 if (!Def)
2526 return false;
2527 if (!Flags.isByVal()) {
2528 if (!TII->isLoadFromStackSlot(Def, FI))
2529 return false;
2530 } else {
2531 unsigned Opcode = Def->getOpcode();
2532 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2533 Def->getOperand(1).isFI()) {
2534 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002535 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002536 } else
2537 return false;
2538 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002539 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2540 if (Flags.isByVal())
2541 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002542 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002543 // define @foo(%struct.X* %A) {
2544 // tail call @bar(%struct.X* byval %A)
2545 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002546 return false;
2547 SDValue Ptr = Ld->getBasePtr();
2548 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2549 if (!FINode)
2550 return false;
2551 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002552 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00002553 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002554 FI = FINode->getIndex();
2555 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00002556 } else
2557 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002558
Evan Cheng4cae1332010-03-05 08:38:04 +00002559 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002560 if (!MFI->isFixedObjectIndex(FI))
2561 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002562 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002563}
2564
Dan Gohman98ca4f22009-08-05 01:29:28 +00002565/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2566/// for tail call optimization. Targets which want to do tail call
2567/// optimization should implement this function.
2568bool
2569X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002570 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002571 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002572 bool isCalleeStructRet,
2573 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002574 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002575 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002576 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002577 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002578 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002579 CalleeCC != CallingConv::C)
2580 return false;
2581
Evan Cheng7096ae42010-01-29 06:45:59 +00002582 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002583 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002584 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002585 CallingConv::ID CallerCC = CallerF->getCallingConv();
2586 bool CCMatch = CallerCC == CalleeCC;
2587
Dan Gohman1797ed52010-02-08 20:27:50 +00002588 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002589 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002590 return true;
2591 return false;
2592 }
2593
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002594 // Look for obvious safe cases to perform tail call optimization that do not
2595 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002596
Evan Cheng2c12cb42010-03-26 16:26:03 +00002597 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2598 // emit a special epilogue.
2599 if (RegInfo->needsStackRealignment(MF))
2600 return false;
2601
Evan Chenga375d472010-03-15 18:54:48 +00002602 // Also avoid sibcall optimization if either caller or callee uses struct
2603 // return semantics.
2604 if (isCalleeStructRet || isCallerStructRet)
2605 return false;
2606
Chad Rosier2416da32011-06-24 21:15:36 +00002607 // An stdcall caller is expected to clean up its arguments; the callee
2608 // isn't going to do that.
2609 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2610 return false;
2611
Chad Rosier871f6642011-05-18 19:59:50 +00002612 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00002613 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00002614 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00002615
2616 // Optimizing for varargs on Win64 is unlikely to be safe without
2617 // additional testing.
2618 if (Subtarget->isTargetWin64())
2619 return false;
2620
Chad Rosier871f6642011-05-18 19:59:50 +00002621 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002622 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2623 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00002624
Chad Rosier871f6642011-05-18 19:59:50 +00002625 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2626 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2627 if (!ArgLocs[i].isRegLoc())
2628 return false;
2629 }
2630
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002631 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2632 // Therefore if it's not used by the call it is not safe to optimize this into
2633 // a sibcall.
2634 bool Unused = false;
2635 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2636 if (!Ins[i].Used) {
2637 Unused = true;
2638 break;
2639 }
2640 }
2641 if (Unused) {
2642 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002643 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
2644 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002645 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002646 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002647 CCValAssign &VA = RVLocs[i];
2648 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2649 return false;
2650 }
2651 }
2652
Evan Cheng13617962010-04-30 01:12:32 +00002653 // If the calling conventions do not match, then we'd better make sure the
2654 // results are returned in the same way as what the caller expects.
2655 if (!CCMatch) {
2656 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00002657 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2658 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002659 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2660
2661 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00002662 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2663 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002664 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2665
2666 if (RVLocs1.size() != RVLocs2.size())
2667 return false;
2668 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2669 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2670 return false;
2671 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2672 return false;
2673 if (RVLocs1[i].isRegLoc()) {
2674 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2675 return false;
2676 } else {
2677 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2678 return false;
2679 }
2680 }
2681 }
2682
Evan Chenga6bff982010-01-30 01:22:00 +00002683 // If the callee takes no arguments then go on to check the results of the
2684 // call.
2685 if (!Outs.empty()) {
2686 // Check if stack adjustment is needed. For now, do not do this if any
2687 // argument is passed on the stack.
2688 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002689 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2690 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002691
2692 // Allocate shadow area for Win64
2693 if (Subtarget->isTargetWin64()) {
2694 CCInfo.AllocateStack(32, 8);
2695 }
2696
Duncan Sands45907662010-10-31 13:21:44 +00002697 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00002698 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00002699 MachineFunction &MF = DAG.getMachineFunction();
2700 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2701 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00002702
2703 // Check if the arguments are already laid out in the right way as
2704 // the caller's fixed stack objects.
2705 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002706 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2707 const X86InstrInfo *TII =
2708 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002709 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2710 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002711 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002712 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002713 if (VA.getLocInfo() == CCValAssign::Indirect)
2714 return false;
2715 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002716 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2717 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002718 return false;
2719 }
2720 }
2721 }
Evan Cheng9c044672010-05-29 01:35:22 +00002722
2723 // If the tailcall address may be in a register, then make sure it's
2724 // possible to register allocate for it. In 32-bit, the call address can
2725 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002726 // callee-saved registers are restored. These happen to be the same
2727 // registers used to pass 'inreg' arguments so watch out for those.
2728 if (!Subtarget->is64Bit() &&
2729 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002730 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002731 unsigned NumInRegs = 0;
2732 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2733 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002734 if (!VA.isRegLoc())
2735 continue;
2736 unsigned Reg = VA.getLocReg();
2737 switch (Reg) {
2738 default: break;
2739 case X86::EAX: case X86::EDX: case X86::ECX:
2740 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002741 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002742 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002743 }
2744 }
2745 }
Evan Chenga6bff982010-01-30 01:22:00 +00002746 }
Evan Chengb1712452010-01-27 06:25:16 +00002747
Evan Cheng86809cc2010-02-03 03:28:02 +00002748 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002749}
2750
Dan Gohman3df24e62008-09-03 23:12:08 +00002751FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002752X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2753 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002754}
2755
2756
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002757//===----------------------------------------------------------------------===//
2758// Other Lowering Hooks
2759//===----------------------------------------------------------------------===//
2760
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002761static bool MayFoldLoad(SDValue Op) {
2762 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2763}
2764
2765static bool MayFoldIntoStore(SDValue Op) {
2766 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2767}
2768
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002769static bool isTargetShuffle(unsigned Opcode) {
2770 switch(Opcode) {
2771 default: return false;
2772 case X86ISD::PSHUFD:
2773 case X86ISD::PSHUFHW:
2774 case X86ISD::PSHUFLW:
2775 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002776 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002777 case X86ISD::SHUFPS:
2778 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002779 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002780 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002781 case X86ISD::MOVLPS:
2782 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002783 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002784 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002785 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002786 case X86ISD::MOVSS:
2787 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002788 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002789 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002790 case X86ISD::VUNPCKLPSY:
2791 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002792 case X86ISD::PUNPCKLWD:
2793 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002794 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002795 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002796 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002797 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002798 case X86ISD::VUNPCKHPSY:
2799 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002800 case X86ISD::PUNPCKHWD:
2801 case X86ISD::PUNPCKHBW:
2802 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002803 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002804 case X86ISD::VPERMILPS:
2805 case X86ISD::VPERMILPSY:
2806 case X86ISD::VPERMILPD:
2807 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00002808 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002809 return true;
2810 }
2811 return false;
2812}
2813
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002814static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002815 SDValue V1, SelectionDAG &DAG) {
2816 switch(Opc) {
2817 default: llvm_unreachable("Unknown x86 shuffle node");
2818 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002819 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002820 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002821 return DAG.getNode(Opc, dl, VT, V1);
2822 }
2823
2824 return SDValue();
2825}
2826
2827static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002828 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002829 switch(Opc) {
2830 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002831 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002832 case X86ISD::PSHUFHW:
2833 case X86ISD::PSHUFLW:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002834 case X86ISD::VPERMILPS:
2835 case X86ISD::VPERMILPSY:
2836 case X86ISD::VPERMILPD:
2837 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002838 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2839 }
2840
2841 return SDValue();
2842}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002843
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002844static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2845 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2846 switch(Opc) {
2847 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002848 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002849 case X86ISD::SHUFPD:
2850 case X86ISD::SHUFPS:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00002851 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002852 return DAG.getNode(Opc, dl, VT, V1, V2,
2853 DAG.getConstant(TargetMask, MVT::i8));
2854 }
2855 return SDValue();
2856}
2857
2858static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2859 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2860 switch(Opc) {
2861 default: llvm_unreachable("Unknown x86 shuffle node");
2862 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002863 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002864 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002865 case X86ISD::MOVLPS:
2866 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002867 case X86ISD::MOVSS:
2868 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002869 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002870 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002871 case X86ISD::VUNPCKLPSY:
2872 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002873 case X86ISD::PUNPCKLWD:
2874 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002875 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002876 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002877 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002878 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002879 case X86ISD::VUNPCKHPSY:
2880 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002881 case X86ISD::PUNPCKHWD:
2882 case X86ISD::PUNPCKHBW:
2883 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002884 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002885 return DAG.getNode(Opc, dl, VT, V1, V2);
2886 }
2887 return SDValue();
2888}
2889
Dan Gohmand858e902010-04-17 15:26:15 +00002890SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002891 MachineFunction &MF = DAG.getMachineFunction();
2892 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2893 int ReturnAddrIndex = FuncInfo->getRAIndex();
2894
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002895 if (ReturnAddrIndex == 0) {
2896 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002897 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002898 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002899 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002900 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002901 }
2902
Evan Cheng25ab6902006-09-08 06:48:29 +00002903 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002904}
2905
2906
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002907bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2908 bool hasSymbolicDisplacement) {
2909 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002910 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002911 return false;
2912
2913 // If we don't have a symbolic displacement - we don't have any extra
2914 // restrictions.
2915 if (!hasSymbolicDisplacement)
2916 return true;
2917
2918 // FIXME: Some tweaks might be needed for medium code model.
2919 if (M != CodeModel::Small && M != CodeModel::Kernel)
2920 return false;
2921
2922 // For small code model we assume that latest object is 16MB before end of 31
2923 // bits boundary. We may also accept pretty large negative constants knowing
2924 // that all objects are in the positive half of address space.
2925 if (M == CodeModel::Small && Offset < 16*1024*1024)
2926 return true;
2927
2928 // For kernel code model we know that all object resist in the negative half
2929 // of 32bits address space. We may not accept negative offsets, since they may
2930 // be just off and we may accept pretty large positive ones.
2931 if (M == CodeModel::Kernel && Offset > 0)
2932 return true;
2933
2934 return false;
2935}
2936
Evan Chengef41ff62011-06-23 17:54:54 +00002937/// isCalleePop - Determines whether the callee is required to pop its
2938/// own arguments. Callee pop is necessary to support tail calls.
2939bool X86::isCalleePop(CallingConv::ID CallingConv,
2940 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
2941 if (IsVarArg)
2942 return false;
2943
2944 switch (CallingConv) {
2945 default:
2946 return false;
2947 case CallingConv::X86_StdCall:
2948 return !is64Bit;
2949 case CallingConv::X86_FastCall:
2950 return !is64Bit;
2951 case CallingConv::X86_ThisCall:
2952 return !is64Bit;
2953 case CallingConv::Fast:
2954 return TailCallOpt;
2955 case CallingConv::GHC:
2956 return TailCallOpt;
2957 }
2958}
2959
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002960/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2961/// specific condition code, returning the condition code and the LHS/RHS of the
2962/// comparison to make.
2963static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2964 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002965 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002966 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2967 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2968 // X > -1 -> X == 0, jump !sign.
2969 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002970 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002971 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2972 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002973 return X86::COND_S;
Andrew Trickf6c39412011-03-23 23:11:02 +00002974 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002975 // X < 1 -> X <= 0
2976 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002977 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002978 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002979 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002980
Evan Chengd9558e02006-01-06 00:43:03 +00002981 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002982 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002983 case ISD::SETEQ: return X86::COND_E;
2984 case ISD::SETGT: return X86::COND_G;
2985 case ISD::SETGE: return X86::COND_GE;
2986 case ISD::SETLT: return X86::COND_L;
2987 case ISD::SETLE: return X86::COND_LE;
2988 case ISD::SETNE: return X86::COND_NE;
2989 case ISD::SETULT: return X86::COND_B;
2990 case ISD::SETUGT: return X86::COND_A;
2991 case ISD::SETULE: return X86::COND_BE;
2992 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002993 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002994 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002995
Chris Lattner4c78e022008-12-23 23:42:27 +00002996 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002997
Chris Lattner4c78e022008-12-23 23:42:27 +00002998 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00002999 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3000 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00003001 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3002 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00003003 }
3004
Chris Lattner4c78e022008-12-23 23:42:27 +00003005 switch (SetCCOpcode) {
3006 default: break;
3007 case ISD::SETOLT:
3008 case ISD::SETOLE:
3009 case ISD::SETUGT:
3010 case ISD::SETUGE:
3011 std::swap(LHS, RHS);
3012 break;
3013 }
3014
3015 // On a floating point condition, the flags are set as follows:
3016 // ZF PF CF op
3017 // 0 | 0 | 0 | X > Y
3018 // 0 | 0 | 1 | X < Y
3019 // 1 | 0 | 0 | X == Y
3020 // 1 | 1 | 1 | unordered
3021 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003022 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00003023 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003024 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00003025 case ISD::SETOLT: // flipped
3026 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003027 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00003028 case ISD::SETOLE: // flipped
3029 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003030 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003031 case ISD::SETUGT: // flipped
3032 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003033 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00003034 case ISD::SETUGE: // flipped
3035 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003036 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003037 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003038 case ISD::SETNE: return X86::COND_NE;
3039 case ISD::SETUO: return X86::COND_P;
3040 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00003041 case ISD::SETOEQ:
3042 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00003043 }
Evan Chengd9558e02006-01-06 00:43:03 +00003044}
3045
Evan Cheng4a460802006-01-11 00:33:36 +00003046/// hasFPCMov - is there a floating point cmov for the specific X86 condition
3047/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00003048/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00003049static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00003050 switch (X86CC) {
3051 default:
3052 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003053 case X86::COND_B:
3054 case X86::COND_BE:
3055 case X86::COND_E:
3056 case X86::COND_P:
3057 case X86::COND_A:
3058 case X86::COND_AE:
3059 case X86::COND_NE:
3060 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003061 return true;
3062 }
3063}
3064
Evan Chengeb2f9692009-10-27 19:56:55 +00003065/// isFPImmLegal - Returns true if the target can instruction select the
3066/// specified FP immediate natively. If false, the legalizer will
3067/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003068bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003069 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3070 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3071 return true;
3072 }
3073 return false;
3074}
3075
Nate Begeman9008ca62009-04-27 18:41:29 +00003076/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3077/// the specified range (L, H].
3078static bool isUndefOrInRange(int Val, int Low, int Hi) {
3079 return (Val < 0) || (Val >= Low && Val < Hi);
3080}
3081
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00003082/// isUndefOrInRange - Return true if every element in Mask, begining
3083/// from position Pos and ending in Pos+Size, falls within the specified
3084/// range (L, L+Pos]. or is undef.
3085static bool isUndefOrInRange(const SmallVectorImpl<int> &Mask,
3086 int Pos, int Size, int Low, int Hi) {
3087 for (int i = Pos, e = Pos+Size; i != e; ++i)
3088 if (!isUndefOrInRange(Mask[i], Low, Hi))
3089 return false;
3090 return true;
3091}
3092
Nate Begeman9008ca62009-04-27 18:41:29 +00003093/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3094/// specified value.
3095static bool isUndefOrEqual(int Val, int CmpVal) {
3096 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003097 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00003098 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00003099}
3100
Bruno Cardoso Lopes4002d7e2011-08-12 21:54:42 +00003101/// isSequentialOrUndefInRange - Return true if every element in Mask, begining
3102/// from position Pos and ending in Pos+Size, falls within the specified
3103/// sequential range (L, L+Pos]. or is undef.
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003104static bool isSequentialOrUndefInRange(const SmallVectorImpl<int> &Mask,
3105 int Pos, int Size, int Low) {
3106 for (int i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3107 if (!isUndefOrEqual(Mask[i], Low))
3108 return false;
3109 return true;
3110}
3111
Nate Begeman9008ca62009-04-27 18:41:29 +00003112/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3113/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3114/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00003115static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003116 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003117 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003118 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003119 return (Mask[0] < 2 && Mask[1] < 2);
3120 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003121}
3122
Nate Begeman9008ca62009-04-27 18:41:29 +00003123bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003124 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003125 N->getMask(M);
3126 return ::isPSHUFDMask(M, N->getValueType(0));
3127}
Evan Cheng0188ecb2006-03-22 18:59:22 +00003128
Nate Begeman9008ca62009-04-27 18:41:29 +00003129/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3130/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00003131static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003132 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00003133 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003134
Nate Begeman9008ca62009-04-27 18:41:29 +00003135 // Lower quadword copied in order or undef.
3136 for (int i = 0; i != 4; ++i)
3137 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00003138 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003139
Evan Cheng506d3df2006-03-29 23:07:14 +00003140 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003141 for (int i = 4; i != 8; ++i)
3142 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00003143 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003144
Evan Cheng506d3df2006-03-29 23:07:14 +00003145 return true;
3146}
3147
Nate Begeman9008ca62009-04-27 18:41:29 +00003148bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003149 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003150 N->getMask(M);
3151 return ::isPSHUFHWMask(M, N->getValueType(0));
3152}
Evan Cheng506d3df2006-03-29 23:07:14 +00003153
Nate Begeman9008ca62009-04-27 18:41:29 +00003154/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3155/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00003156static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003157 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00003158 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003159
Rafael Espindola15684b22009-04-24 12:40:33 +00003160 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00003161 for (int i = 4; i != 8; ++i)
3162 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00003163 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003164
Rafael Espindola15684b22009-04-24 12:40:33 +00003165 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003166 for (int i = 0; i != 4; ++i)
3167 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00003168 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003169
Rafael Espindola15684b22009-04-24 12:40:33 +00003170 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003171}
3172
Nate Begeman9008ca62009-04-27 18:41:29 +00003173bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003174 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003175 N->getMask(M);
3176 return ::isPSHUFLWMask(M, N->getValueType(0));
3177}
3178
Nate Begemana09008b2009-10-19 02:17:23 +00003179/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3180/// is suitable for input to PALIGNR.
3181static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00003182 bool hasSSSE3OrAVX) {
Nate Begemana09008b2009-10-19 02:17:23 +00003183 int i, e = VT.getVectorNumElements();
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003184 if (VT.getSizeInBits() != 128 && VT.getSizeInBits() != 64)
3185 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003186
Nate Begemana09008b2009-10-19 02:17:23 +00003187 // Do not handle v2i64 / v2f64 shuffles with palignr.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00003188 if (e < 4 || !hasSSSE3OrAVX)
Nate Begemana09008b2009-10-19 02:17:23 +00003189 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003190
Nate Begemana09008b2009-10-19 02:17:23 +00003191 for (i = 0; i != e; ++i)
3192 if (Mask[i] >= 0)
3193 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003194
Nate Begemana09008b2009-10-19 02:17:23 +00003195 // All undef, not a palignr.
3196 if (i == e)
3197 return false;
3198
Eli Friedman63f8dde2011-07-25 21:36:45 +00003199 // Make sure we're shifting in the right direction.
3200 if (Mask[i] <= i)
3201 return false;
Nate Begemana09008b2009-10-19 02:17:23 +00003202
3203 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003204
Nate Begemana09008b2009-10-19 02:17:23 +00003205 // Check the rest of the elements to see if they are consecutive.
3206 for (++i; i != e; ++i) {
3207 int m = Mask[i];
Eli Friedman63f8dde2011-07-25 21:36:45 +00003208 if (m >= 0 && m != s+i)
Nate Begemana09008b2009-10-19 02:17:23 +00003209 return false;
3210 }
3211 return true;
3212}
3213
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003214/// isVSHUFPSYMask - Return true if the specified VECTOR_SHUFFLE operand
3215/// specifies a shuffle of elements that is suitable for input to 256-bit
3216/// VSHUFPSY.
3217static bool isVSHUFPSYMask(const SmallVectorImpl<int> &Mask, EVT VT,
3218 const X86Subtarget *Subtarget) {
3219 int NumElems = VT.getVectorNumElements();
3220
3221 if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256)
3222 return false;
3223
3224 if (NumElems != 8)
3225 return false;
3226
3227 // VSHUFPSY divides the resulting vector into 4 chunks.
3228 // The sources are also splitted into 4 chunks, and each destination
3229 // chunk must come from a different source chunk.
3230 //
3231 // SRC1 => X7 X6 X5 X4 X3 X2 X1 X0
3232 // SRC2 => Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y9
3233 //
3234 // DST => Y7..Y4, Y7..Y4, X7..X4, X7..X4,
3235 // Y3..Y0, Y3..Y0, X3..X0, X3..X0
3236 //
3237 int QuarterSize = NumElems/4;
3238 int HalfSize = QuarterSize*2;
3239 for (int i = 0; i < QuarterSize; ++i)
3240 if (!isUndefOrInRange(Mask[i], 0, HalfSize))
3241 return false;
3242 for (int i = QuarterSize; i < QuarterSize*2; ++i)
3243 if (!isUndefOrInRange(Mask[i], NumElems, NumElems+HalfSize))
3244 return false;
3245
3246 // The mask of the second half must be the same as the first but with
3247 // the appropriate offsets. This works in the same way as VPERMILPS
3248 // works with masks.
3249 for (int i = QuarterSize*2; i < QuarterSize*3; ++i) {
3250 if (!isUndefOrInRange(Mask[i], HalfSize, NumElems))
3251 return false;
3252 int FstHalfIdx = i-HalfSize;
3253 if (Mask[FstHalfIdx] < 0)
3254 continue;
3255 if (!isUndefOrEqual(Mask[i], Mask[FstHalfIdx]+HalfSize))
3256 return false;
3257 }
3258 for (int i = QuarterSize*3; i < NumElems; ++i) {
3259 if (!isUndefOrInRange(Mask[i], NumElems+HalfSize, NumElems*2))
3260 return false;
3261 int FstHalfIdx = i-HalfSize;
3262 if (Mask[FstHalfIdx] < 0)
3263 continue;
3264 if (!isUndefOrEqual(Mask[i], Mask[FstHalfIdx]+HalfSize))
3265 return false;
3266
3267 }
3268
3269 return true;
3270}
3271
3272/// getShuffleVSHUFPSYImmediate - Return the appropriate immediate to shuffle
3273/// the specified VECTOR_MASK mask with VSHUFPSY instruction.
3274static unsigned getShuffleVSHUFPSYImmediate(SDNode *N) {
3275 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3276 EVT VT = SVOp->getValueType(0);
3277 int NumElems = VT.getVectorNumElements();
3278
3279 assert(NumElems == 8 && VT.getSizeInBits() == 256 &&
3280 "Only supports v8i32 and v8f32 types");
3281
3282 int HalfSize = NumElems/2;
3283 unsigned Mask = 0;
3284 for (int i = 0; i != NumElems ; ++i) {
3285 if (SVOp->getMaskElt(i) < 0)
3286 continue;
3287 // The mask of the first half must be equal to the second one.
3288 unsigned Shamt = (i%HalfSize)*2;
3289 unsigned Elt = SVOp->getMaskElt(i) % HalfSize;
3290 Mask |= Elt << Shamt;
3291 }
3292
3293 return Mask;
3294}
3295
3296/// isVSHUFPDYMask - Return true if the specified VECTOR_SHUFFLE operand
3297/// specifies a shuffle of elements that is suitable for input to 256-bit
3298/// VSHUFPDY. This shuffle doesn't have the same restriction as the PS
3299/// version and the mask of the second half isn't binded with the first
3300/// one.
3301static bool isVSHUFPDYMask(const SmallVectorImpl<int> &Mask, EVT VT,
3302 const X86Subtarget *Subtarget) {
3303 int NumElems = VT.getVectorNumElements();
3304
3305 if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256)
3306 return false;
3307
3308 if (NumElems != 4)
3309 return false;
3310
3311 // VSHUFPSY divides the resulting vector into 4 chunks.
3312 // The sources are also splitted into 4 chunks, and each destination
3313 // chunk must come from a different source chunk.
3314 //
3315 // SRC1 => X3 X2 X1 X0
3316 // SRC2 => Y3 Y2 Y1 Y0
3317 //
3318 // DST => Y2..Y3, X2..X3, Y1..Y0, X1..X0
3319 //
3320 int QuarterSize = NumElems/4;
3321 int HalfSize = QuarterSize*2;
3322 for (int i = 0; i < QuarterSize; ++i)
3323 if (!isUndefOrInRange(Mask[i], 0, HalfSize))
3324 return false;
3325 for (int i = QuarterSize; i < QuarterSize*2; ++i)
3326 if (!isUndefOrInRange(Mask[i], NumElems, NumElems+HalfSize))
3327 return false;
3328 for (int i = QuarterSize*2; i < QuarterSize*3; ++i)
3329 if (!isUndefOrInRange(Mask[i], HalfSize, NumElems))
3330 return false;
3331 for (int i = QuarterSize*3; i < NumElems; ++i)
3332 if (!isUndefOrInRange(Mask[i], NumElems+HalfSize, NumElems*2))
3333 return false;
3334
3335 return true;
3336}
3337
3338/// getShuffleVSHUFPDYImmediate - Return the appropriate immediate to shuffle
3339/// the specified VECTOR_MASK mask with VSHUFPDY instruction.
3340static unsigned getShuffleVSHUFPDYImmediate(SDNode *N) {
3341 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3342 EVT VT = SVOp->getValueType(0);
3343 int NumElems = VT.getVectorNumElements();
3344
3345 assert(NumElems == 4 && VT.getSizeInBits() == 256 &&
3346 "Only supports v4i64 and v4f64 types");
3347
3348 int HalfSize = NumElems/2;
3349 unsigned Mask = 0;
3350 for (int i = 0; i != NumElems ; ++i) {
3351 if (SVOp->getMaskElt(i) < 0)
3352 continue;
3353 int Elt = SVOp->getMaskElt(i) % HalfSize;
3354 Mask |= Elt << i;
3355 }
3356
3357 return Mask;
3358}
3359
Evan Cheng14aed5e2006-03-24 01:18:28 +00003360/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopesaf002d82011-08-24 23:17:55 +00003361/// specifies a shuffle of elements that is suitable for input to 128-bit
3362/// SHUFPS and SHUFPD.
Owen Andersone50ed302009-08-10 22:56:29 +00003363static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003364 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesaf002d82011-08-24 23:17:55 +00003365
3366 if (VT.getSizeInBits() != 128)
3367 return false;
3368
Nate Begeman9008ca62009-04-27 18:41:29 +00003369 if (NumElems != 2 && NumElems != 4)
3370 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003371
Nate Begeman9008ca62009-04-27 18:41:29 +00003372 int Half = NumElems / 2;
3373 for (int i = 0; i < Half; ++i)
3374 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003375 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003376 for (int i = Half; i < NumElems; ++i)
3377 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003378 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003379
Evan Cheng14aed5e2006-03-24 01:18:28 +00003380 return true;
3381}
3382
Nate Begeman9008ca62009-04-27 18:41:29 +00003383bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3384 SmallVector<int, 8> M;
3385 N->getMask(M);
3386 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003387}
3388
Evan Cheng213d2cf2007-05-17 18:45:50 +00003389/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00003390/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
3391/// half elements to come from vector 1 (which would equal the dest.) and
3392/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00003393static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003394 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003395
3396 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00003397 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003398
Nate Begeman9008ca62009-04-27 18:41:29 +00003399 int Half = NumElems / 2;
3400 for (int i = 0; i < Half; ++i)
3401 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003402 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003403 for (int i = Half; i < NumElems; ++i)
3404 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003405 return false;
3406 return true;
3407}
3408
Nate Begeman9008ca62009-04-27 18:41:29 +00003409static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3410 SmallVector<int, 8> M;
3411 N->getMask(M);
3412 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003413}
3414
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003415/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3416/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003417bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003418 EVT VT = N->getValueType(0);
3419 unsigned NumElems = VT.getVectorNumElements();
3420
3421 if (VT.getSizeInBits() != 128)
3422 return false;
3423
3424 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003425 return false;
3426
Evan Cheng2064a2b2006-03-28 06:50:32 +00003427 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003428 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3429 isUndefOrEqual(N->getMaskElt(1), 7) &&
3430 isUndefOrEqual(N->getMaskElt(2), 2) &&
3431 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003432}
3433
Nate Begeman0b10b912009-11-07 23:17:15 +00003434/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3435/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3436/// <2, 3, 2, 3>
3437bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003438 EVT VT = N->getValueType(0);
3439 unsigned NumElems = VT.getVectorNumElements();
3440
3441 if (VT.getSizeInBits() != 128)
3442 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003443
Nate Begeman0b10b912009-11-07 23:17:15 +00003444 if (NumElems != 4)
3445 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003446
Nate Begeman0b10b912009-11-07 23:17:15 +00003447 return isUndefOrEqual(N->getMaskElt(0), 2) &&
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003448 isUndefOrEqual(N->getMaskElt(1), 3) &&
3449 isUndefOrEqual(N->getMaskElt(2), 2) &&
3450 isUndefOrEqual(N->getMaskElt(3), 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003451}
3452
Evan Cheng5ced1d82006-04-06 23:23:56 +00003453/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3454/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003455bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3456 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003457
Evan Cheng5ced1d82006-04-06 23:23:56 +00003458 if (NumElems != 2 && NumElems != 4)
3459 return false;
3460
Evan Chengc5cdff22006-04-07 21:53:05 +00003461 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003462 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003463 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003464
Evan Chengc5cdff22006-04-07 21:53:05 +00003465 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003466 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003467 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003468
3469 return true;
3470}
3471
Nate Begeman0b10b912009-11-07 23:17:15 +00003472/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3473/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3474bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003475 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003476
David Greenea20244d2011-03-02 17:23:43 +00003477 if ((NumElems != 2 && NumElems != 4)
3478 || N->getValueType(0).getSizeInBits() > 128)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003479 return false;
3480
Evan Chengc5cdff22006-04-07 21:53:05 +00003481 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003482 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003483 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003484
Nate Begeman9008ca62009-04-27 18:41:29 +00003485 for (unsigned i = 0; i < NumElems/2; ++i)
3486 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003487 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003488
3489 return true;
3490}
3491
Evan Cheng0038e592006-03-28 00:39:58 +00003492/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3493/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003494static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003495 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003496 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003497
3498 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3499 "Unsupported vector type for unpckh");
3500
3501 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng0038e592006-03-28 00:39:58 +00003502 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003503
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003504 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3505 // independently on 128-bit lanes.
3506 unsigned NumLanes = VT.getSizeInBits()/128;
3507 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003508
3509 unsigned Start = 0;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003510 unsigned End = NumLaneElts;
3511 for (unsigned s = 0; s < NumLanes; ++s) {
3512 for (unsigned i = Start, j = s * NumLaneElts;
David Greenea20244d2011-03-02 17:23:43 +00003513 i != End;
3514 i += 2, ++j) {
3515 int BitI = Mask[i];
3516 int BitI1 = Mask[i+1];
3517 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003518 return false;
David Greenea20244d2011-03-02 17:23:43 +00003519 if (V2IsSplat) {
3520 if (!isUndefOrEqual(BitI1, NumElts))
3521 return false;
3522 } else {
3523 if (!isUndefOrEqual(BitI1, j + NumElts))
3524 return false;
3525 }
Evan Cheng39623da2006-04-20 08:58:49 +00003526 }
David Greenea20244d2011-03-02 17:23:43 +00003527 // Process the next 128 bits.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003528 Start += NumLaneElts;
3529 End += NumLaneElts;
Evan Cheng0038e592006-03-28 00:39:58 +00003530 }
David Greenea20244d2011-03-02 17:23:43 +00003531
Evan Cheng0038e592006-03-28 00:39:58 +00003532 return true;
3533}
3534
Nate Begeman9008ca62009-04-27 18:41:29 +00003535bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3536 SmallVector<int, 8> M;
3537 N->getMask(M);
3538 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003539}
3540
Evan Cheng4fcb9222006-03-28 02:43:26 +00003541/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3542/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003543static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003544 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003545 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003546
3547 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3548 "Unsupported vector type for unpckh");
3549
3550 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003551 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003552
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003553 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3554 // independently on 128-bit lanes.
3555 unsigned NumLanes = VT.getSizeInBits()/128;
3556 unsigned NumLaneElts = NumElts/NumLanes;
3557
3558 unsigned Start = 0;
3559 unsigned End = NumLaneElts;
3560 for (unsigned l = 0; l != NumLanes; ++l) {
3561 for (unsigned i = Start, j = (l*NumLaneElts)+NumLaneElts/2;
3562 i != End; i += 2, ++j) {
3563 int BitI = Mask[i];
3564 int BitI1 = Mask[i+1];
3565 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003566 return false;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003567 if (V2IsSplat) {
3568 if (isUndefOrEqual(BitI1, NumElts))
3569 return false;
3570 } else {
3571 if (!isUndefOrEqual(BitI1, j+NumElts))
3572 return false;
3573 }
Evan Cheng39623da2006-04-20 08:58:49 +00003574 }
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003575 // Process the next 128 bits.
3576 Start += NumLaneElts;
3577 End += NumLaneElts;
Evan Cheng4fcb9222006-03-28 02:43:26 +00003578 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003579 return true;
3580}
3581
Nate Begeman9008ca62009-04-27 18:41:29 +00003582bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3583 SmallVector<int, 8> M;
3584 N->getMask(M);
3585 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003586}
3587
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003588/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3589/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3590/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003591static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003592 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003593 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003594 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003595
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003596 // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3597 // FIXME: Need a better way to get rid of this, there's no latency difference
3598 // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3599 // the former later. We should also remove the "_undef" special mask.
3600 if (NumElems == 4 && VT.getSizeInBits() == 256)
3601 return false;
3602
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003603 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3604 // independently on 128-bit lanes.
3605 unsigned NumLanes = VT.getSizeInBits() / 128;
3606 unsigned NumLaneElts = NumElems / NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003607
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003608 for (unsigned s = 0; s < NumLanes; ++s) {
3609 for (unsigned i = s * NumLaneElts, j = s * NumLaneElts;
3610 i != NumLaneElts * (s + 1);
David Greenea20244d2011-03-02 17:23:43 +00003611 i += 2, ++j) {
3612 int BitI = Mask[i];
3613 int BitI1 = Mask[i+1];
3614
3615 if (!isUndefOrEqual(BitI, j))
3616 return false;
3617 if (!isUndefOrEqual(BitI1, j))
3618 return false;
3619 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003620 }
David Greenea20244d2011-03-02 17:23:43 +00003621
Rafael Espindola15684b22009-04-24 12:40:33 +00003622 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003623}
3624
Nate Begeman9008ca62009-04-27 18:41:29 +00003625bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3626 SmallVector<int, 8> M;
3627 N->getMask(M);
3628 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3629}
3630
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003631/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3632/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3633/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003634static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003635 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003636 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3637 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003638
Nate Begeman9008ca62009-04-27 18:41:29 +00003639 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3640 int BitI = Mask[i];
3641 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003642 if (!isUndefOrEqual(BitI, j))
3643 return false;
3644 if (!isUndefOrEqual(BitI1, j))
3645 return false;
3646 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003647 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003648}
3649
Nate Begeman9008ca62009-04-27 18:41:29 +00003650bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3651 SmallVector<int, 8> M;
3652 N->getMask(M);
3653 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3654}
3655
Evan Cheng017dcc62006-04-21 01:05:10 +00003656/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3657/// specifies a shuffle of elements that is suitable for input to MOVSS,
3658/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003659static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003660 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003661 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003662
3663 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003664
Nate Begeman9008ca62009-04-27 18:41:29 +00003665 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003666 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003667
Nate Begeman9008ca62009-04-27 18:41:29 +00003668 for (int i = 1; i < NumElts; ++i)
3669 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003670 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003671
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003672 return true;
3673}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003674
Nate Begeman9008ca62009-04-27 18:41:29 +00003675bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3676 SmallVector<int, 8> M;
3677 N->getMask(M);
3678 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003679}
3680
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003681/// isVPERM2F128Mask - Match 256-bit shuffles where the elements are considered
3682/// as permutations between 128-bit chunks or halves. As an example: this
3683/// shuffle bellow:
3684/// vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
3685/// The first half comes from the second half of V1 and the second half from the
3686/// the second half of V2.
3687static bool isVPERM2F128Mask(const SmallVectorImpl<int> &Mask, EVT VT,
3688 const X86Subtarget *Subtarget) {
3689 if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256)
3690 return false;
3691
3692 // The shuffle result is divided into half A and half B. In total the two
3693 // sources have 4 halves, namely: C, D, E, F. The final values of A and
3694 // B must come from C, D, E or F.
3695 int HalfSize = VT.getVectorNumElements()/2;
3696 bool MatchA = false, MatchB = false;
3697
3698 // Check if A comes from one of C, D, E, F.
3699 for (int Half = 0; Half < 4; ++Half) {
3700 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
3701 MatchA = true;
3702 break;
3703 }
3704 }
3705
3706 // Check if B comes from one of C, D, E, F.
3707 for (int Half = 0; Half < 4; ++Half) {
3708 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
3709 MatchB = true;
3710 break;
3711 }
3712 }
3713
3714 return MatchA && MatchB;
3715}
3716
3717/// getShuffleVPERM2F128Immediate - Return the appropriate immediate to shuffle
3718/// the specified VECTOR_MASK mask with VPERM2F128 instructions.
3719static unsigned getShuffleVPERM2F128Immediate(SDNode *N) {
3720 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3721 EVT VT = SVOp->getValueType(0);
3722
3723 int HalfSize = VT.getVectorNumElements()/2;
3724
3725 int FstHalf = 0, SndHalf = 0;
3726 for (int i = 0; i < HalfSize; ++i) {
3727 if (SVOp->getMaskElt(i) > 0) {
3728 FstHalf = SVOp->getMaskElt(i)/HalfSize;
3729 break;
3730 }
3731 }
3732 for (int i = HalfSize; i < HalfSize*2; ++i) {
3733 if (SVOp->getMaskElt(i) > 0) {
3734 SndHalf = SVOp->getMaskElt(i)/HalfSize;
3735 break;
3736 }
3737 }
3738
3739 return (FstHalf | (SndHalf << 4));
3740}
3741
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003742/// isVPERMILPDMask - Return true if the specified VECTOR_SHUFFLE operand
3743/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
3744/// Note that VPERMIL mask matching is different depending whether theunderlying
3745/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3746/// to the same elements of the low, but to the higher half of the source.
3747/// In VPERMILPD the two lanes could be shuffled independently of each other
3748/// with the same restriction that lanes can't be crossed.
3749static bool isVPERMILPDMask(const SmallVectorImpl<int> &Mask, EVT VT,
3750 const X86Subtarget *Subtarget) {
3751 int NumElts = VT.getVectorNumElements();
3752 int NumLanes = VT.getSizeInBits()/128;
3753
3754 if (!Subtarget->hasAVX())
3755 return false;
3756
3757 // Match any permutation of 128-bit vector with 64-bit types
3758 if (NumLanes == 1 && NumElts != 2)
3759 return false;
3760
3761 // Only match 256-bit with 32 types
3762 if (VT.getSizeInBits() == 256 && NumElts != 4)
3763 return false;
3764
3765 // The mask on the high lane is independent of the low. Both can match
3766 // any element in inside its own lane, but can't cross.
3767 int LaneSize = NumElts/NumLanes;
3768 for (int l = 0; l < NumLanes; ++l)
3769 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3770 int LaneStart = l*LaneSize;
3771 if (!isUndefOrInRange(Mask[i], LaneStart, LaneStart+LaneSize))
3772 return false;
3773 }
3774
3775 return true;
3776}
3777
3778/// isVPERMILPSMask - Return true if the specified VECTOR_SHUFFLE operand
3779/// specifies a shuffle of elements that is suitable for input to VPERMILPS*.
3780/// Note that VPERMIL mask matching is different depending whether theunderlying
3781/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3782/// to the same elements of the low, but to the higher half of the source.
3783/// In VPERMILPD the two lanes could be shuffled independently of each other
3784/// with the same restriction that lanes can't be crossed.
3785static bool isVPERMILPSMask(const SmallVectorImpl<int> &Mask, EVT VT,
3786 const X86Subtarget *Subtarget) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003787 unsigned NumElts = VT.getVectorNumElements();
3788 unsigned NumLanes = VT.getSizeInBits()/128;
3789
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003790 if (!Subtarget->hasAVX())
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003791 return false;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003792
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003793 // Match any permutation of 128-bit vector with 32-bit types
3794 if (NumLanes == 1 && NumElts != 4)
3795 return false;
3796
3797 // Only match 256-bit with 32 types
3798 if (VT.getSizeInBits() == 256 && NumElts != 8)
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003799 return false;
3800
3801 // The mask on the high lane should be the same as the low. Actually,
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003802 // they can differ if any of the corresponding index in a lane is undef
3803 // and the other stays in range.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003804 int LaneSize = NumElts/NumLanes;
3805 for (int i = 0; i < LaneSize; ++i) {
3806 int HighElt = i+LaneSize;
Bruno Cardoso Lopes155a92a2011-08-10 01:54:17 +00003807 bool HighValid = isUndefOrInRange(Mask[HighElt], LaneSize, NumElts);
3808 bool LowValid = isUndefOrInRange(Mask[i], 0, LaneSize);
3809
3810 if (!HighValid || !LowValid)
3811 return false;
3812 if (Mask[i] < 0 || Mask[HighElt] < 0)
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003813 continue;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003814 if (Mask[HighElt]-Mask[i] != LaneSize)
3815 return false;
3816 }
3817
3818 return true;
3819}
3820
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003821/// getShuffleVPERMILPSImmediate - Return the appropriate immediate to shuffle
3822/// the specified VECTOR_MASK mask with VPERMILPS* instructions.
3823static unsigned getShuffleVPERMILPSImmediate(SDNode *N) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003824 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3825 EVT VT = SVOp->getValueType(0);
3826
3827 int NumElts = VT.getVectorNumElements();
3828 int NumLanes = VT.getSizeInBits()/128;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003829 int LaneSize = NumElts/NumLanes;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003830
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003831 // Although the mask is equal for both lanes do it twice to get the cases
3832 // where a mask will match because the same mask element is undef on the
3833 // first half but valid on the second. This would get pathological cases
3834 // such as: shuffle <u, 0, 1, 2, 4, 4, 5, 6>, which is completely valid.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003835 unsigned Mask = 0;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003836 for (int l = 0; l < NumLanes; ++l) {
3837 for (int i = 0; i < LaneSize; ++i) {
3838 int MaskElt = SVOp->getMaskElt(i+(l*LaneSize));
3839 if (MaskElt < 0)
3840 continue;
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003841 if (MaskElt >= LaneSize)
3842 MaskElt -= LaneSize;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003843 Mask |= MaskElt << (i*2);
3844 }
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003845 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003846
3847 return Mask;
3848}
3849
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003850/// getShuffleVPERMILPDImmediate - Return the appropriate immediate to shuffle
3851/// the specified VECTOR_MASK mask with VPERMILPD* instructions.
3852static unsigned getShuffleVPERMILPDImmediate(SDNode *N) {
3853 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3854 EVT VT = SVOp->getValueType(0);
3855
3856 int NumElts = VT.getVectorNumElements();
3857 int NumLanes = VT.getSizeInBits()/128;
3858
3859 unsigned Mask = 0;
3860 int LaneSize = NumElts/NumLanes;
3861 for (int l = 0; l < NumLanes; ++l)
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003862 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3863 int MaskElt = SVOp->getMaskElt(i);
3864 if (MaskElt < 0)
3865 continue;
3866 Mask |= (MaskElt-l*LaneSize) << i;
3867 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003868
3869 return Mask;
3870}
3871
Evan Cheng017dcc62006-04-21 01:05:10 +00003872/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3873/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003874/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003875static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003876 bool V2IsSplat = false, bool V2IsUndef = false) {
3877 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003878 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003879 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003880
Nate Begeman9008ca62009-04-27 18:41:29 +00003881 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003882 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003883
Nate Begeman9008ca62009-04-27 18:41:29 +00003884 for (int i = 1; i < NumOps; ++i)
3885 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3886 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3887 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003888 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003889
Evan Cheng39623da2006-04-20 08:58:49 +00003890 return true;
3891}
3892
Nate Begeman9008ca62009-04-27 18:41:29 +00003893static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003894 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003895 SmallVector<int, 8> M;
3896 N->getMask(M);
3897 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003898}
3899
Evan Chengd9539472006-04-14 21:59:03 +00003900/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3901/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003902/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
3903bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N,
3904 const X86Subtarget *Subtarget) {
3905 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003906 return false;
3907
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003908 // The second vector must be undef
3909 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3910 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003911
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003912 EVT VT = N->getValueType(0);
3913 unsigned NumElems = VT.getVectorNumElements();
3914
3915 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3916 (VT.getSizeInBits() == 256 && NumElems != 8))
3917 return false;
3918
3919 // "i+1" is the value the indexed mask element must have
3920 for (unsigned i = 0; i < NumElems; i += 2)
3921 if (!isUndefOrEqual(N->getMaskElt(i), i+1) ||
3922 !isUndefOrEqual(N->getMaskElt(i+1), i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00003923 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003924
3925 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003926}
3927
3928/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3929/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003930/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
3931bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N,
3932 const X86Subtarget *Subtarget) {
3933 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003934 return false;
3935
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003936 // The second vector must be undef
3937 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3938 return false;
3939
3940 EVT VT = N->getValueType(0);
3941 unsigned NumElems = VT.getVectorNumElements();
3942
3943 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3944 (VT.getSizeInBits() == 256 && NumElems != 8))
3945 return false;
3946
3947 // "i" is the value the indexed mask element must have
3948 for (unsigned i = 0; i < NumElems; i += 2)
3949 if (!isUndefOrEqual(N->getMaskElt(i), i) ||
3950 !isUndefOrEqual(N->getMaskElt(i+1), i))
Nate Begeman9008ca62009-04-27 18:41:29 +00003951 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003952
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003953 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003954}
3955
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003956/// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
3957/// specifies a shuffle of elements that is suitable for input to 256-bit
3958/// version of MOVDDUP.
3959static bool isMOVDDUPYMask(ShuffleVectorSDNode *N,
3960 const X86Subtarget *Subtarget) {
3961 EVT VT = N->getValueType(0);
3962 int NumElts = VT.getVectorNumElements();
3963 bool V2IsUndef = N->getOperand(1).getOpcode() == ISD::UNDEF;
3964
3965 if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256 ||
3966 !V2IsUndef || NumElts != 4)
3967 return false;
3968
3969 for (int i = 0; i != NumElts/2; ++i)
3970 if (!isUndefOrEqual(N->getMaskElt(i), 0))
3971 return false;
3972 for (int i = NumElts/2; i != NumElts; ++i)
3973 if (!isUndefOrEqual(N->getMaskElt(i), NumElts/2))
3974 return false;
3975 return true;
3976}
3977
Evan Cheng0b457f02008-09-25 20:50:48 +00003978/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00003979/// specifies a shuffle of elements that is suitable for input to 128-bit
3980/// version of MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003981bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00003982 EVT VT = N->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00003983
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00003984 if (VT.getSizeInBits() != 128)
3985 return false;
3986
3987 int e = VT.getVectorNumElements() / 2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003988 for (int i = 0; i < e; ++i)
3989 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003990 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003991 for (int i = 0; i < e; ++i)
3992 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003993 return false;
3994 return true;
3995}
3996
David Greenec38a03e2011-02-03 15:50:00 +00003997/// isVEXTRACTF128Index - Return true if the specified
3998/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3999/// suitable for input to VEXTRACTF128.
4000bool X86::isVEXTRACTF128Index(SDNode *N) {
4001 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4002 return false;
4003
4004 // The index should be aligned on a 128-bit boundary.
4005 uint64_t Index =
4006 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4007
4008 unsigned VL = N->getValueType(0).getVectorNumElements();
4009 unsigned VBits = N->getValueType(0).getSizeInBits();
4010 unsigned ElSize = VBits / VL;
4011 bool Result = (Index * ElSize) % 128 == 0;
4012
4013 return Result;
4014}
4015
David Greeneccacdc12011-02-04 16:08:29 +00004016/// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
4017/// operand specifies a subvector insert that is suitable for input to
4018/// VINSERTF128.
4019bool X86::isVINSERTF128Index(SDNode *N) {
4020 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4021 return false;
4022
4023 // The index should be aligned on a 128-bit boundary.
4024 uint64_t Index =
4025 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4026
4027 unsigned VL = N->getValueType(0).getVectorNumElements();
4028 unsigned VBits = N->getValueType(0).getSizeInBits();
4029 unsigned ElSize = VBits / VL;
4030 bool Result = (Index * ElSize) % 128 == 0;
4031
4032 return Result;
4033}
4034
Evan Cheng63d33002006-03-22 08:01:21 +00004035/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004036/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00004037unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004038 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
4039 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
4040
Evan Chengb9df0ca2006-03-22 02:53:00 +00004041 unsigned Shift = (NumOperands == 4) ? 2 : 1;
4042 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00004043 for (int i = 0; i < NumOperands; ++i) {
4044 int Val = SVOp->getMaskElt(NumOperands-i-1);
4045 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00004046 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00004047 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00004048 if (i != NumOperands - 1)
4049 Mask <<= Shift;
4050 }
Evan Cheng63d33002006-03-22 08:01:21 +00004051 return Mask;
4052}
4053
Evan Cheng506d3df2006-03-29 23:07:14 +00004054/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004055/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00004056unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004057 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00004058 unsigned Mask = 0;
4059 // 8 nodes, but we only care about the last 4.
4060 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004061 int Val = SVOp->getMaskElt(i);
4062 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00004063 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00004064 if (i != 4)
4065 Mask <<= 2;
4066 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004067 return Mask;
4068}
4069
4070/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004071/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00004072unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004073 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00004074 unsigned Mask = 0;
4075 // 8 nodes, but we only care about the first 4.
4076 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004077 int Val = SVOp->getMaskElt(i);
4078 if (Val >= 0)
4079 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00004080 if (i != 0)
4081 Mask <<= 2;
4082 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004083 return Mask;
4084}
4085
Nate Begemana09008b2009-10-19 02:17:23 +00004086/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4087/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4088unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
4089 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
4090 EVT VVT = N->getValueType(0);
4091 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
4092 int Val = 0;
4093
4094 unsigned i, e;
4095 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
4096 Val = SVOp->getMaskElt(i);
4097 if (Val >= 0)
4098 break;
4099 }
Eli Friedman63f8dde2011-07-25 21:36:45 +00004100 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00004101 return (Val - i) * EltSize;
4102}
4103
David Greenec38a03e2011-02-03 15:50:00 +00004104/// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
4105/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4106/// instructions.
4107unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
4108 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4109 llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
4110
4111 uint64_t Index =
4112 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4113
4114 EVT VecVT = N->getOperand(0).getValueType();
4115 EVT ElVT = VecVT.getVectorElementType();
4116
4117 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00004118 return Index / NumElemsPerChunk;
4119}
4120
David Greeneccacdc12011-02-04 16:08:29 +00004121/// getInsertVINSERTF128Immediate - Return the appropriate immediate
4122/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4123/// instructions.
4124unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
4125 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4126 llvm_unreachable("Illegal insert subvector for VINSERTF128");
4127
4128 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00004129 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00004130
4131 EVT VecVT = N->getValueType(0);
4132 EVT ElVT = VecVT.getVectorElementType();
4133
4134 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00004135 return Index / NumElemsPerChunk;
4136}
4137
Evan Cheng37b73872009-07-30 08:33:02 +00004138/// isZeroNode - Returns true if Elt is a constant zero or a floating point
4139/// constant +0.0.
4140bool X86::isZeroNode(SDValue Elt) {
4141 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00004142 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00004143 (isa<ConstantFPSDNode>(Elt) &&
4144 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
4145}
4146
Nate Begeman9008ca62009-04-27 18:41:29 +00004147/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4148/// their permute mask.
4149static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4150 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004151 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004152 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004153 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00004154
Nate Begeman5a5ca152009-04-29 05:20:52 +00004155 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004156 int idx = SVOp->getMaskElt(i);
4157 if (idx < 0)
4158 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004159 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00004160 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004161 else
Nate Begeman9008ca62009-04-27 18:41:29 +00004162 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004163 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004164 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
4165 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004166}
4167
Evan Cheng779ccea2007-12-07 21:30:01 +00004168/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
4169/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00004170static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00004171 unsigned NumElems = VT.getVectorNumElements();
4172 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004173 int idx = Mask[i];
4174 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004175 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004176 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00004177 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004178 else
Nate Begeman9008ca62009-04-27 18:41:29 +00004179 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004180 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004181}
4182
Evan Cheng533a0aa2006-04-19 20:35:22 +00004183/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4184/// match movhlps. The lower half elements should come from upper half of
4185/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004186/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00004187static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004188 EVT VT = Op->getValueType(0);
4189 if (VT.getSizeInBits() != 128)
4190 return false;
4191 if (VT.getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00004192 return false;
4193 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004194 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004195 return false;
4196 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004197 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004198 return false;
4199 return true;
4200}
4201
Evan Cheng5ced1d82006-04-06 23:23:56 +00004202/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00004203/// is promoted to a vector. It also returns the LoadSDNode by reference if
4204/// required.
4205static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00004206 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4207 return false;
4208 N = N->getOperand(0).getNode();
4209 if (!ISD::isNON_EXTLoad(N))
4210 return false;
4211 if (LD)
4212 *LD = cast<LoadSDNode>(N);
4213 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004214}
4215
Evan Cheng533a0aa2006-04-19 20:35:22 +00004216/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4217/// match movlp{s|d}. The lower half elements should come from lower half of
4218/// V1 (and in order), and the upper half elements should come from the upper
4219/// half of V2 (and in order). And since V1 will become the source of the
4220/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004221static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4222 ShuffleVectorSDNode *Op) {
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004223 EVT VT = Op->getValueType(0);
4224 if (VT.getSizeInBits() != 128)
4225 return false;
4226
Evan Cheng466685d2006-10-09 20:57:25 +00004227 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004228 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00004229 // Is V2 is a vector load, don't do this transformation. We will try to use
4230 // load folding shufps op.
4231 if (ISD::isNON_EXTLoad(V2))
4232 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004233
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004234 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004235
Evan Cheng533a0aa2006-04-19 20:35:22 +00004236 if (NumElems != 2 && NumElems != 4)
4237 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004238 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004239 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004240 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004241 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004242 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004243 return false;
4244 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004245}
4246
Evan Cheng39623da2006-04-20 08:58:49 +00004247/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4248/// all the same.
4249static bool isSplatVector(SDNode *N) {
4250 if (N->getOpcode() != ISD::BUILD_VECTOR)
4251 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004252
Dan Gohman475871a2008-07-27 21:46:04 +00004253 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00004254 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4255 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00004256 return false;
4257 return true;
4258}
4259
Evan Cheng213d2cf2007-05-17 18:45:50 +00004260/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00004261/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00004262/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00004263static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00004264 SDValue V1 = N->getOperand(0);
4265 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004266 unsigned NumElems = N->getValueType(0).getVectorNumElements();
4267 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004268 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004269 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004270 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00004271 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4272 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004273 if (Opc != ISD::BUILD_VECTOR ||
4274 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00004275 return false;
4276 } else if (Idx >= 0) {
4277 unsigned Opc = V1.getOpcode();
4278 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4279 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004280 if (Opc != ISD::BUILD_VECTOR ||
4281 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00004282 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00004283 }
4284 }
4285 return true;
4286}
4287
4288/// getZeroVector - Returns a vector of specified type with all zero elements.
4289///
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004290static SDValue getZeroVector(EVT VT, bool HasXMMInt, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00004291 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004292 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004293
Dale Johannesen0488fb62010-09-30 23:57:10 +00004294 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004295 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00004296 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00004297 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004298 if (HasXMMInt) { // SSE2
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004299 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4300 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4301 } else { // SSE1
4302 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4303 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4304 }
4305 } else if (VT.getSizeInBits() == 256) { // AVX
4306 // 256-bit logic and arithmetic instructions in AVX are
4307 // all floating-point, no support for integer ops. Default
4308 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00004309 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004310 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4311 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00004312 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004313 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004314}
4315
Chris Lattner8a594482007-11-25 00:24:49 +00004316/// getOnesVector - Returns a vector of specified type with all bits set.
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004317/// Always build ones vectors as <4 x i32>. For 256-bit types, use two
4318/// <4 x i32> inserted in a <8 x i32> appropriately. Then bitcast to their
4319/// original type, ensuring they get CSE'd.
Owen Andersone50ed302009-08-10 22:56:29 +00004320static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004321 assert(VT.isVector() && "Expected a vector type");
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004322 assert((VT.is128BitVector() || VT.is256BitVector())
4323 && "Expected a 128-bit or 256-bit vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004324
Owen Anderson825b72b2009-08-11 20:47:22 +00004325 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004326 SDValue Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
4327 Cst, Cst, Cst, Cst);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004328
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004329 if (VT.is256BitVector()) {
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004330 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, MVT::v8i32),
4331 Vec, DAG.getConstant(0, MVT::i32), DAG, dl);
4332 Vec = Insert128BitVector(InsV, Vec,
4333 DAG.getConstant(4 /* NumElems/2 */, MVT::i32), DAG, dl);
4334 }
4335
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004336 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004337}
4338
Evan Cheng39623da2006-04-20 08:58:49 +00004339/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4340/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00004341static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004342 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004343 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004344
Evan Cheng39623da2006-04-20 08:58:49 +00004345 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00004346 SmallVector<int, 8> MaskVec;
4347 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00004348
Nate Begeman5a5ca152009-04-29 05:20:52 +00004349 for (unsigned i = 0; i != NumElems; ++i) {
4350 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004351 MaskVec[i] = NumElems;
4352 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00004353 }
Evan Cheng39623da2006-04-20 08:58:49 +00004354 }
Evan Cheng39623da2006-04-20 08:58:49 +00004355 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00004356 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
4357 SVOp->getOperand(1), &MaskVec[0]);
4358 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00004359}
4360
Evan Cheng017dcc62006-04-21 01:05:10 +00004361/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4362/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00004363static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004364 SDValue V2) {
4365 unsigned NumElems = VT.getVectorNumElements();
4366 SmallVector<int, 8> Mask;
4367 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004368 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004369 Mask.push_back(i);
4370 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004371}
4372
Nate Begeman9008ca62009-04-27 18:41:29 +00004373/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004374static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004375 SDValue V2) {
4376 unsigned NumElems = VT.getVectorNumElements();
4377 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004378 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004379 Mask.push_back(i);
4380 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004381 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004382 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004383}
4384
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004385/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004386static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004387 SDValue V2) {
4388 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00004389 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00004390 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00004391 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004392 Mask.push_back(i + Half);
4393 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004394 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004395 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004396}
4397
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004398// PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004399// a generic shuffle instruction because the target has no such instructions.
4400// Generate shuffles which repeat i16 and i8 several times until they can be
4401// represented by v4f32 and then be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004402static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004403 EVT VT = V.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004404 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004405 DebugLoc dl = V.getDebugLoc();
Rafael Espindola15684b22009-04-24 12:40:33 +00004406
Nate Begeman9008ca62009-04-27 18:41:29 +00004407 while (NumElems > 4) {
4408 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004409 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004410 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004411 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004412 EltNo -= NumElems/2;
4413 }
4414 NumElems >>= 1;
4415 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004416 return V;
4417}
Eric Christopherfd179292009-08-27 18:07:15 +00004418
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004419/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4420static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4421 EVT VT = V.getValueType();
4422 DebugLoc dl = V.getDebugLoc();
4423 assert((VT.getSizeInBits() == 128 || VT.getSizeInBits() == 256)
4424 && "Vector size not supported");
4425
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004426 if (VT.getSizeInBits() == 128) {
4427 V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004428 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004429 V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4430 &SplatMask[0]);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004431 } else {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004432 // To use VPERMILPS to splat scalars, the second half of indicies must
4433 // refer to the higher part, which is a duplication of the lower one,
4434 // because VPERMILPS can only handle in-lane permutations.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004435 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4436 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004437
4438 V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4439 V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4440 &SplatMask[0]);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004441 }
4442
4443 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4444}
4445
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004446/// PromoteSplat - Splat is promoted to target supported vector shuffles.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004447static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4448 EVT SrcVT = SV->getValueType(0);
4449 SDValue V1 = SV->getOperand(0);
4450 DebugLoc dl = SV->getDebugLoc();
4451
4452 int EltNo = SV->getSplatIndex();
4453 int NumElems = SrcVT.getVectorNumElements();
4454 unsigned Size = SrcVT.getSizeInBits();
4455
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004456 assert(((Size == 128 && NumElems > 4) || Size == 256) &&
4457 "Unknown how to promote splat for type");
4458
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004459 // Extract the 128-bit part containing the splat element and update
4460 // the splat element index when it refers to the higher register.
4461 if (Size == 256) {
4462 unsigned Idx = (EltNo > NumElems/2) ? NumElems/2 : 0;
4463 V1 = Extract128BitVector(V1, DAG.getConstant(Idx, MVT::i32), DAG, dl);
4464 if (Idx > 0)
4465 EltNo -= NumElems/2;
4466 }
4467
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004468 // All i16 and i8 vector types can't be used directly by a generic shuffle
4469 // instruction because the target has no such instruction. Generate shuffles
4470 // which repeat i16 and i8 several times until they fit in i32, and then can
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004471 // be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004472 EVT EltVT = SrcVT.getVectorElementType();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004473 if (EltVT == MVT::i8 || EltVT == MVT::i16)
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004474 V1 = PromoteSplati8i16(V1, DAG, EltNo);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004475
4476 // Recreate the 256-bit vector and place the same 128-bit vector
4477 // into the low and high part. This is necessary because we want
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004478 // to use VPERM* to shuffle the vectors
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004479 if (Size == 256) {
4480 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), V1,
4481 DAG.getConstant(0, MVT::i32), DAG, dl);
4482 V1 = Insert128BitVector(InsV, V1,
4483 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4484 }
4485
4486 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004487}
4488
Evan Chengba05f722006-04-21 23:03:30 +00004489/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004490/// vector of zero or undef vector. This produces a shuffle where the low
4491/// element of V2 is swizzled into the zero/undef vector, landing at element
4492/// 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 +00004493static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004494 bool isZero, bool HasXMMInt,
4495 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004496 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00004497 SDValue V1 = isZero
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004498 ? getZeroVector(VT, HasXMMInt, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
Nate Begeman9008ca62009-04-27 18:41:29 +00004499 unsigned NumElems = VT.getVectorNumElements();
4500 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004501 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004502 // If this is the insertion idx, put the low elt of V2 here.
4503 MaskVec.push_back(i == Idx ? NumElems : i);
4504 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004505}
4506
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004507/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4508/// element of the result of the vector shuffle.
Benjamin Kramer050db522011-03-26 12:38:19 +00004509static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
4510 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004511 if (Depth == 6)
4512 return SDValue(); // Limit search depth.
4513
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004514 SDValue V = SDValue(N, 0);
4515 EVT VT = V.getValueType();
4516 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004517
4518 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4519 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4520 Index = SV->getMaskElt(Index);
4521
4522 if (Index < 0)
4523 return DAG.getUNDEF(VT.getVectorElementType());
4524
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004525 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004526 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004527 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00004528 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004529
4530 // Recurse into target specific vector shuffles to find scalars.
4531 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004532 int NumElems = VT.getVectorNumElements();
4533 SmallVector<unsigned, 16> ShuffleMask;
4534 SDValue ImmN;
4535
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004536 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004537 case X86ISD::SHUFPS:
4538 case X86ISD::SHUFPD:
4539 ImmN = N->getOperand(N->getNumOperands()-1);
4540 DecodeSHUFPSMask(NumElems,
4541 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4542 ShuffleMask);
4543 break;
4544 case X86ISD::PUNPCKHBW:
4545 case X86ISD::PUNPCKHWD:
4546 case X86ISD::PUNPCKHDQ:
4547 case X86ISD::PUNPCKHQDQ:
4548 DecodePUNPCKHMask(NumElems, ShuffleMask);
4549 break;
4550 case X86ISD::UNPCKHPS:
4551 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00004552 case X86ISD::VUNPCKHPSY:
4553 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004554 DecodeUNPCKHPMask(NumElems, ShuffleMask);
4555 break;
4556 case X86ISD::PUNPCKLBW:
4557 case X86ISD::PUNPCKLWD:
4558 case X86ISD::PUNPCKLDQ:
4559 case X86ISD::PUNPCKLQDQ:
David Greenec4db4e52011-02-28 19:06:56 +00004560 DecodePUNPCKLMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004561 break;
4562 case X86ISD::UNPCKLPS:
4563 case X86ISD::UNPCKLPD:
David Greenec4db4e52011-02-28 19:06:56 +00004564 case X86ISD::VUNPCKLPSY:
4565 case X86ISD::VUNPCKLPDY:
4566 DecodeUNPCKLPMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004567 break;
4568 case X86ISD::MOVHLPS:
4569 DecodeMOVHLPSMask(NumElems, ShuffleMask);
4570 break;
4571 case X86ISD::MOVLHPS:
4572 DecodeMOVLHPSMask(NumElems, ShuffleMask);
4573 break;
4574 case X86ISD::PSHUFD:
4575 ImmN = N->getOperand(N->getNumOperands()-1);
4576 DecodePSHUFMask(NumElems,
4577 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4578 ShuffleMask);
4579 break;
4580 case X86ISD::PSHUFHW:
4581 ImmN = N->getOperand(N->getNumOperands()-1);
4582 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4583 ShuffleMask);
4584 break;
4585 case X86ISD::PSHUFLW:
4586 ImmN = N->getOperand(N->getNumOperands()-1);
4587 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4588 ShuffleMask);
4589 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004590 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004591 case X86ISD::MOVSD: {
4592 // The index 0 always comes from the first element of the second source,
4593 // this is why MOVSS and MOVSD are used in the first place. The other
4594 // elements come from the other positions of the first source vector.
4595 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004596 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
4597 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004598 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004599 case X86ISD::VPERMILPS:
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004600 ImmN = N->getOperand(N->getNumOperands()-1);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004601 DecodeVPERMILPSMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004602 ShuffleMask);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004603 break;
4604 case X86ISD::VPERMILPSY:
4605 ImmN = N->getOperand(N->getNumOperands()-1);
4606 DecodeVPERMILPSMask(8, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4607 ShuffleMask);
4608 break;
4609 case X86ISD::VPERMILPD:
4610 ImmN = N->getOperand(N->getNumOperands()-1);
4611 DecodeVPERMILPDMask(2, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4612 ShuffleMask);
4613 break;
4614 case X86ISD::VPERMILPDY:
4615 ImmN = N->getOperand(N->getNumOperands()-1);
4616 DecodeVPERMILPDMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4617 ShuffleMask);
4618 break;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004619 case X86ISD::VPERM2F128:
4620 ImmN = N->getOperand(N->getNumOperands()-1);
4621 DecodeVPERM2F128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4622 ShuffleMask);
4623 break;
Eli Friedman106f6e72011-09-10 02:01:42 +00004624 case X86ISD::MOVDDUP:
4625 case X86ISD::MOVLHPD:
4626 case X86ISD::MOVLPD:
4627 case X86ISD::MOVLPS:
4628 case X86ISD::MOVSHDUP:
4629 case X86ISD::MOVSLDUP:
4630 case X86ISD::PALIGN:
4631 return SDValue(); // Not yet implemented.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004632 default:
Eli Friedman106f6e72011-09-10 02:01:42 +00004633 assert(0 && "unknown target shuffle node");
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004634 return SDValue();
4635 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004636
4637 Index = ShuffleMask[Index];
4638 if (Index < 0)
4639 return DAG.getUNDEF(VT.getVectorElementType());
4640
4641 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
4642 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
4643 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004644 }
4645
4646 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004647 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004648 V = V.getOperand(0);
4649 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004650 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004651
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004652 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004653 return SDValue();
4654 }
4655
4656 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4657 return (Index == 0) ? V.getOperand(0)
4658 : DAG.getUNDEF(VT.getVectorElementType());
4659
4660 if (V.getOpcode() == ISD::BUILD_VECTOR)
4661 return V.getOperand(Index);
4662
4663 return SDValue();
4664}
4665
4666/// getNumOfConsecutiveZeros - Return the number of elements of a vector
4667/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00004668/// search can start in two different directions, from left or right.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004669static
4670unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
4671 bool ZerosFromLeft, SelectionDAG &DAG) {
4672 int i = 0;
4673
4674 while (i < NumElems) {
4675 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004676 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004677 if (!(Elt.getNode() &&
4678 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4679 break;
4680 ++i;
4681 }
4682
4683 return i;
4684}
4685
4686/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
4687/// MaskE correspond consecutively to elements from one of the vector operands,
4688/// starting from its index OpIdx. Also tell OpNum which source vector operand.
4689static
4690bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
4691 int OpIdx, int NumElems, unsigned &OpNum) {
4692 bool SeenV1 = false;
4693 bool SeenV2 = false;
4694
4695 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
4696 int Idx = SVOp->getMaskElt(i);
4697 // Ignore undef indicies
4698 if (Idx < 0)
4699 continue;
4700
4701 if (Idx < NumElems)
4702 SeenV1 = true;
4703 else
4704 SeenV2 = true;
4705
4706 // Only accept consecutive elements from the same vector
4707 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4708 return false;
4709 }
4710
4711 OpNum = SeenV1 ? 0 : 1;
4712 return true;
4713}
4714
4715/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4716/// logical left shift of a vector.
4717static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4718 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4719 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4720 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4721 false /* check zeros from right */, DAG);
4722 unsigned OpSrc;
4723
4724 if (!NumZeros)
4725 return false;
4726
4727 // Considering the elements in the mask that are not consecutive zeros,
4728 // check if they consecutively come from only one of the source vectors.
4729 //
4730 // V1 = {X, A, B, C} 0
4731 // \ \ \ /
4732 // vector_shuffle V1, V2 <1, 2, 3, X>
4733 //
4734 if (!isShuffleMaskConsecutive(SVOp,
4735 0, // Mask Start Index
4736 NumElems-NumZeros-1, // Mask End Index
4737 NumZeros, // Where to start looking in the src vector
4738 NumElems, // Number of elements in vector
4739 OpSrc)) // Which source operand ?
4740 return false;
4741
4742 isLeft = false;
4743 ShAmt = NumZeros;
4744 ShVal = SVOp->getOperand(OpSrc);
4745 return true;
4746}
4747
4748/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4749/// logical left shift of a vector.
4750static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4751 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4752 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4753 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4754 true /* check zeros from left */, DAG);
4755 unsigned OpSrc;
4756
4757 if (!NumZeros)
4758 return false;
4759
4760 // Considering the elements in the mask that are not consecutive zeros,
4761 // check if they consecutively come from only one of the source vectors.
4762 //
4763 // 0 { A, B, X, X } = V2
4764 // / \ / /
4765 // vector_shuffle V1, V2 <X, X, 4, 5>
4766 //
4767 if (!isShuffleMaskConsecutive(SVOp,
4768 NumZeros, // Mask Start Index
4769 NumElems-1, // Mask End Index
4770 0, // Where to start looking in the src vector
4771 NumElems, // Number of elements in vector
4772 OpSrc)) // Which source operand ?
4773 return false;
4774
4775 isLeft = true;
4776 ShAmt = NumZeros;
4777 ShVal = SVOp->getOperand(OpSrc);
4778 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004779}
4780
4781/// isVectorShift - Returns true if the shuffle can be implemented as a
4782/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004783static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004784 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004785 // Although the logic below support any bitwidth size, there are no
4786 // shift instructions which handle more than 128-bit vectors.
4787 if (SVOp->getValueType(0).getSizeInBits() > 128)
4788 return false;
4789
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004790 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4791 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4792 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004793
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004794 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00004795}
4796
Evan Chengc78d3b42006-04-24 18:01:45 +00004797/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4798///
Dan Gohman475871a2008-07-27 21:46:04 +00004799static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00004800 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00004801 SelectionDAG &DAG,
4802 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004803 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00004804 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004805
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004806 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004807 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004808 bool First = true;
4809 for (unsigned i = 0; i < 16; ++i) {
4810 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4811 if (ThisIsNonZero && First) {
4812 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004813 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004814 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004815 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004816 First = false;
4817 }
4818
4819 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00004820 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004821 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4822 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004823 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004824 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00004825 }
4826 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004827 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4828 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4829 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00004830 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004831 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00004832 } else
4833 ThisElt = LastElt;
4834
Gabor Greifba36cb52008-08-28 21:40:38 +00004835 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00004836 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00004837 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00004838 }
4839 }
4840
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004841 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00004842}
4843
Bill Wendlinga348c562007-03-22 18:42:45 +00004844/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00004845///
Dan Gohman475871a2008-07-27 21:46:04 +00004846static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00004847 unsigned NumNonZero, unsigned NumZero,
4848 SelectionDAG &DAG,
4849 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004850 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00004851 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004852
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004853 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004854 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004855 bool First = true;
4856 for (unsigned i = 0; i < 8; ++i) {
4857 bool isNonZero = (NonZeros & (1 << i)) != 0;
4858 if (isNonZero) {
4859 if (First) {
4860 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004861 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004862 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004863 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004864 First = false;
4865 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004866 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004867 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00004868 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00004869 }
4870 }
4871
4872 return V;
4873}
4874
Evan Chengf26ffe92008-05-29 08:22:04 +00004875/// getVShift - Return a vector logical shift node.
4876///
Owen Andersone50ed302009-08-10 22:56:29 +00004877static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00004878 unsigned NumBits, SelectionDAG &DAG,
4879 const TargetLowering &TLI, DebugLoc dl) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00004880 assert(VT.getSizeInBits() == 128 && "Unknown type for VShift");
Dale Johannesen0488fb62010-09-30 23:57:10 +00004881 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00004882 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004883 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4884 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004885 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00004886 DAG.getConstant(NumBits,
4887 TLI.getShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00004888}
4889
Dan Gohman475871a2008-07-27 21:46:04 +00004890SDValue
Evan Chengc3630942009-12-09 21:00:30 +00004891X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00004892 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00004893
Evan Chengc3630942009-12-09 21:00:30 +00004894 // Check if the scalar load can be widened into a vector load. And if
4895 // the address is "base + cst" see if the cst can be "absorbed" into
4896 // the shuffle mask.
4897 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4898 SDValue Ptr = LD->getBasePtr();
4899 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4900 return SDValue();
4901 EVT PVT = LD->getValueType(0);
4902 if (PVT != MVT::i32 && PVT != MVT::f32)
4903 return SDValue();
4904
4905 int FI = -1;
4906 int64_t Offset = 0;
4907 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4908 FI = FINode->getIndex();
4909 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00004910 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00004911 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4912 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4913 Offset = Ptr.getConstantOperandVal(1);
4914 Ptr = Ptr.getOperand(0);
4915 } else {
4916 return SDValue();
4917 }
4918
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004919 // FIXME: 256-bit vector instructions don't require a strict alignment,
4920 // improve this code to support it better.
4921 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00004922 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004923 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00004924 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004925 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00004926 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004927 // Can't change the alignment. FIXME: It's possible to compute
4928 // the exact stack offset and reference FI + adjust offset instead.
4929 // If someone *really* cares about this. That's the way to implement it.
4930 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004931 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004932 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00004933 }
4934 }
4935
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004936 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00004937 // Ptr + (Offset & ~15).
4938 if (Offset < 0)
4939 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004940 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00004941 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004942 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00004943 if (StartOffset)
4944 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4945 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4946
4947 int EltNo = (Offset - StartOffset) >> 2;
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004948 int NumElems = VT.getVectorNumElements();
4949
4950 EVT CanonVT = VT.getSizeInBits() == 128 ? MVT::v4i32 : MVT::v8i32;
4951 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
4952 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00004953 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004954 false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004955
4956 // Canonicalize it to a v4i32 or v8i32 shuffle.
4957 SmallVector<int, 8> Mask;
4958 for (int i = 0; i < NumElems; ++i)
4959 Mask.push_back(EltNo);
4960
4961 V1 = DAG.getNode(ISD::BITCAST, dl, CanonVT, V1);
4962 return DAG.getNode(ISD::BITCAST, dl, NVT,
4963 DAG.getVectorShuffle(CanonVT, dl, V1,
4964 DAG.getUNDEF(CanonVT),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004965 }
4966
4967 return SDValue();
4968}
4969
Michael J. Spencerec38de22010-10-10 22:04:20 +00004970/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4971/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004972/// load which has the same value as a build_vector whose operands are 'elts'.
4973///
4974/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004975///
Nate Begeman1449f292010-03-24 22:19:06 +00004976/// FIXME: we'd also like to handle the case where the last elements are zero
4977/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4978/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004979static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004980 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004981 EVT EltVT = VT.getVectorElementType();
4982 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004983
Nate Begemanfdea31a2010-03-24 20:49:50 +00004984 LoadSDNode *LDBase = NULL;
4985 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004986
Nate Begeman1449f292010-03-24 22:19:06 +00004987 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004988 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004989 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004990 for (unsigned i = 0; i < NumElems; ++i) {
4991 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004992
Nate Begemanfdea31a2010-03-24 20:49:50 +00004993 if (!Elt.getNode() ||
4994 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4995 return SDValue();
4996 if (!LDBase) {
4997 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4998 return SDValue();
4999 LDBase = cast<LoadSDNode>(Elt.getNode());
5000 LastLoadedElt = i;
5001 continue;
5002 }
5003 if (Elt.getOpcode() == ISD::UNDEF)
5004 continue;
5005
5006 LoadSDNode *LD = cast<LoadSDNode>(Elt);
5007 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5008 return SDValue();
5009 LastLoadedElt = i;
5010 }
Nate Begeman1449f292010-03-24 22:19:06 +00005011
5012 // If we have found an entire vector of loads and undefs, then return a large
5013 // load of the entire vector width starting at the base pointer. If we found
5014 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005015 if (LastLoadedElt == NumElems - 1) {
5016 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00005017 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00005018 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00005019 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00005020 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00005021 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00005022 LDBase->isVolatile(), LDBase->isNonTemporal(),
5023 LDBase->getAlignment());
Eli Friedman61cc47e2011-07-26 21:02:58 +00005024 } else if (NumElems == 4 && LastLoadedElt == 1 &&
5025 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005026 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5027 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Eli Friedman322ea082011-09-14 23:42:45 +00005028 SDValue ResNode =
5029 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops, 2, MVT::i64,
5030 LDBase->getPointerInfo(),
5031 LDBase->getAlignment(),
5032 false/*isVolatile*/, true/*ReadMem*/,
5033 false/*WriteMem*/);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005034 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00005035 }
5036 return SDValue();
5037}
5038
Evan Chengc3630942009-12-09 21:00:30 +00005039SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005040X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005041 DebugLoc dl = Op.getDebugLoc();
David Greenea5f26012011-02-07 19:36:54 +00005042
David Greenef125a292011-02-08 19:04:41 +00005043 EVT VT = Op.getValueType();
5044 EVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00005045 unsigned NumElems = Op.getNumOperands();
5046
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005047 // Vectors containing all zeros can be matched by pxor and xorps later
5048 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5049 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5050 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00005051 if (Op.getValueType() == MVT::v4i32 ||
5052 Op.getValueType() == MVT::v8i32)
Chris Lattner8a594482007-11-25 00:24:49 +00005053 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005054
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005055 return getZeroVector(Op.getValueType(), Subtarget->hasXMMInt(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00005056 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005057
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005058 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
5059 // vectors or broken into v4i32 operations on 256-bit vectors.
5060 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5061 if (Op.getValueType() == MVT::v4i32)
5062 return Op;
5063
5064 return getOnesVector(Op.getValueType(), DAG, dl);
5065 }
5066
Owen Andersone50ed302009-08-10 22:56:29 +00005067 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005068
Evan Cheng0db9fe62006-04-25 20:13:52 +00005069 unsigned NumZero = 0;
5070 unsigned NumNonZero = 0;
5071 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005072 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005073 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005074 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005075 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00005076 if (Elt.getOpcode() == ISD::UNDEF)
5077 continue;
5078 Values.insert(Elt);
5079 if (Elt.getOpcode() != ISD::Constant &&
5080 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005081 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00005082 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00005083 NumZero++;
5084 else {
5085 NonZeros |= (1 << i);
5086 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005087 }
5088 }
5089
Chris Lattner97a2a562010-08-26 05:24:29 +00005090 // All undef vector. Return an UNDEF. All zero vectors were handled above.
5091 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00005092 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005093
Chris Lattner67f453a2008-03-09 05:42:06 +00005094 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00005095 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005096 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00005097 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005098
Chris Lattner62098042008-03-09 01:05:04 +00005099 // If this is an insertion of an i64 value on x86-32, and if the top bits of
5100 // the value are obviously zero, truncate the value to i32 and do the
5101 // insertion that way. Only do this if the value is non-constant or if the
5102 // value is a constant being inserted into element 0. It is cheaper to do
5103 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00005104 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00005105 (!IsAllConstants || Idx == 0)) {
5106 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00005107 // Handle SSE only.
5108 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5109 EVT VecVT = MVT::v4i32;
5110 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00005111
Chris Lattner62098042008-03-09 01:05:04 +00005112 // Truncate the value (which may itself be a constant) to i32, and
5113 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00005114 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00005115 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00005116 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005117 Subtarget->hasXMMInt(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005118
Chris Lattner62098042008-03-09 01:05:04 +00005119 // Now we have our 32-bit value zero extended in the low element of
5120 // a vector. If Idx != 0, swizzle it into place.
5121 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005122 SmallVector<int, 4> Mask;
5123 Mask.push_back(Idx);
5124 for (unsigned i = 1; i != VecElts; ++i)
5125 Mask.push_back(i);
5126 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00005127 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00005128 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00005129 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005130 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00005131 }
5132 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005133
Chris Lattner19f79692008-03-08 22:59:52 +00005134 // If we have a constant or non-constant insertion into the low element of
5135 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5136 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00005137 // depending on what the source datatype is.
5138 if (Idx == 0) {
5139 if (NumZero == 0) {
5140 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00005141 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5142 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00005143 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5144 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005145 return getShuffleVectorZeroOrUndef(Item, 0, true,Subtarget->hasXMMInt(),
Eli Friedman10415532009-06-06 06:05:10 +00005146 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00005147 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
5148 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00005149 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
5150 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00005151 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
5152 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005153 Subtarget->hasXMMInt(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005154 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00005155 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005156 }
Evan Chengf26ffe92008-05-29 08:22:04 +00005157
5158 // Is it a vector logical left shift?
5159 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00005160 X86::isZeroNode(Op.getOperand(0)) &&
5161 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005162 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00005163 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00005164 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005165 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00005166 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005167 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005168
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005169 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00005170 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005171
Chris Lattner19f79692008-03-08 22:59:52 +00005172 // Otherwise, if this is a vector with i32 or f32 elements, and the element
5173 // is a non-constant being inserted into an element other than the low one,
5174 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
5175 // movd/movss) to move this into the low element, then shuffle it into
5176 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005177 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00005178 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00005179
Evan Cheng0db9fe62006-04-25 20:13:52 +00005180 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00005181 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005182 Subtarget->hasXMMInt(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00005183 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005184 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00005185 MaskVec.push_back(i == Idx ? 0 : 1);
5186 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005187 }
5188 }
5189
Chris Lattner67f453a2008-03-09 05:42:06 +00005190 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00005191 if (Values.size() == 1) {
5192 if (EVTBits == 32) {
5193 // Instead of a shuffle like this:
5194 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5195 // Check if it's possible to issue this instead.
5196 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
5197 unsigned Idx = CountTrailingZeros_32(NonZeros);
5198 SDValue Item = Op.getOperand(Idx);
5199 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5200 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5201 }
Dan Gohman475871a2008-07-27 21:46:04 +00005202 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005203 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005204
Dan Gohmana3941172007-07-24 22:55:08 +00005205 // A vector full of immediates; various special cases are already
5206 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005207 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00005208 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00005209
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005210 // For AVX-length vectors, build the individual 128-bit pieces and use
5211 // shuffles to put them in place.
5212 if (VT.getSizeInBits() == 256 && !ISD::isBuildVectorAllZeros(Op.getNode())) {
5213 SmallVector<SDValue, 32> V;
5214 for (unsigned i = 0; i < NumElems; ++i)
5215 V.push_back(Op.getOperand(i));
5216
5217 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5218
5219 // Build both the lower and upper subvector.
5220 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5221 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5222 NumElems/2);
5223
5224 // Recreate the wider vector with the lower and upper part.
Bruno Cardoso Lopes15d03fb2011-07-28 01:26:53 +00005225 SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Lower,
5226 DAG.getConstant(0, MVT::i32), DAG, dl);
5227 return Insert128BitVector(Vec, Upper, DAG.getConstant(NumElems/2, MVT::i32),
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005228 DAG, dl);
5229 }
5230
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00005231 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005232 if (EVTBits == 64) {
5233 if (NumNonZero == 1) {
5234 // One half is zero or undef.
5235 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00005236 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00005237 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00005238 return getShuffleVectorZeroOrUndef(V2, Idx, true,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005239 Subtarget->hasXMMInt(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00005240 }
Dan Gohman475871a2008-07-27 21:46:04 +00005241 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00005242 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005243
5244 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00005245 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005246 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00005247 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00005248 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005249 }
5250
Bill Wendling826f36f2007-03-28 00:57:11 +00005251 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00005252 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00005253 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00005254 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005255 }
5256
5257 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00005258 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00005259 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005260 if (NumElems == 4 && NumZero > 0) {
5261 for (unsigned i = 0; i < 4; ++i) {
5262 bool isZero = !(NonZeros & (1 << i));
5263 if (isZero)
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005264 V[i] = getZeroVector(VT, Subtarget->hasXMMInt(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005265 else
Dale Johannesenace16102009-02-03 19:33:06 +00005266 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005267 }
5268
5269 for (unsigned i = 0; i < 2; ++i) {
5270 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
5271 default: break;
5272 case 0:
5273 V[i] = V[i*2]; // Must be a zero vector.
5274 break;
5275 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00005276 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005277 break;
5278 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00005279 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005280 break;
5281 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00005282 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005283 break;
5284 }
5285 }
5286
Nate Begeman9008ca62009-04-27 18:41:29 +00005287 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005288 bool Reverse = (NonZeros & 0x3) == 2;
5289 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005290 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005291 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
5292 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005293 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
5294 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005295 }
5296
Nate Begemanfdea31a2010-03-24 20:49:50 +00005297 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
5298 // Check for a build vector of consecutive loads.
5299 for (unsigned i = 0; i < NumElems; ++i)
5300 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005301
Nate Begemanfdea31a2010-03-24 20:49:50 +00005302 // Check for elements which are consecutive loads.
5303 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
5304 if (LD.getNode())
5305 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005306
5307 // For SSE 4.1, use insertps to put the high elements into the low element.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005308 if (getSubtarget()->hasSSE41() || getSubtarget()->hasAVX()) {
Chris Lattner24faf612010-08-28 17:59:08 +00005309 SDValue Result;
5310 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
5311 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
5312 else
5313 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005314
Chris Lattner24faf612010-08-28 17:59:08 +00005315 for (unsigned i = 1; i < NumElems; ++i) {
5316 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
5317 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00005318 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00005319 }
5320 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00005321 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00005322
Chris Lattner6e80e442010-08-28 17:15:43 +00005323 // Otherwise, expand into a number of unpckl*, start by extending each of
5324 // our (non-undef) elements to the full vector width with the element in the
5325 // bottom slot of the vector (which generates no code for SSE).
5326 for (unsigned i = 0; i < NumElems; ++i) {
5327 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
5328 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
5329 else
5330 V[i] = DAG.getUNDEF(VT);
5331 }
5332
5333 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005334 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
5335 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
5336 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00005337 unsigned EltStride = NumElems >> 1;
5338 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00005339 for (unsigned i = 0; i < EltStride; ++i) {
5340 // If V[i+EltStride] is undef and this is the first round of mixing,
5341 // then it is safe to just drop this shuffle: V[i] is already in the
5342 // right place, the one element (since it's the first round) being
5343 // inserted as undef can be dropped. This isn't safe for successive
5344 // rounds because they will permute elements within both vectors.
5345 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
5346 EltStride == NumElems/2)
5347 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005348
Chris Lattner6e80e442010-08-28 17:15:43 +00005349 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00005350 }
Chris Lattner6e80e442010-08-28 17:15:43 +00005351 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005352 }
5353 return V[0];
5354 }
Dan Gohman475871a2008-07-27 21:46:04 +00005355 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005356}
5357
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005358// LowerMMXCONCAT_VECTORS - We support concatenate two MMX registers and place
5359// them in a MMX register. This is better than doing a stack convert.
5360static SDValue LowerMMXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005361 DebugLoc dl = Op.getDebugLoc();
5362 EVT ResVT = Op.getValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005363
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005364 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
5365 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
5366 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005367 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005368 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5369 InVec = Op.getOperand(1);
5370 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
5371 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005372 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005373 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
5374 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
5375 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005376 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005377 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5378 Mask[0] = 0; Mask[1] = 2;
5379 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
5380 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005381 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005382}
5383
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005384// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
5385// to create 256-bit vectors from two other 128-bit ones.
5386static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5387 DebugLoc dl = Op.getDebugLoc();
5388 EVT ResVT = Op.getValueType();
5389
5390 assert(ResVT.getSizeInBits() == 256 && "Value type must be 256-bit wide");
5391
5392 SDValue V1 = Op.getOperand(0);
5393 SDValue V2 = Op.getOperand(1);
5394 unsigned NumElems = ResVT.getVectorNumElements();
5395
5396 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, ResVT), V1,
5397 DAG.getConstant(0, MVT::i32), DAG, dl);
5398 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5399 DAG, dl);
5400}
5401
5402SDValue
5403X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005404 EVT ResVT = Op.getValueType();
5405
5406 assert(Op.getNumOperands() == 2);
5407 assert((ResVT.getSizeInBits() == 128 || ResVT.getSizeInBits() == 256) &&
5408 "Unsupported CONCAT_VECTORS for value type");
5409
5410 // We support concatenate two MMX registers and place them in a MMX register.
5411 // This is better than doing a stack convert.
5412 if (ResVT.is128BitVector())
5413 return LowerMMXCONCAT_VECTORS(Op, DAG);
5414
5415 // 256-bit AVX can use the vinsertf128 instruction to create 256-bit vectors
5416 // from two other 128-bit ones.
5417 return LowerAVXCONCAT_VECTORS(Op, DAG);
5418}
5419
Nate Begemanb9a47b82009-02-23 08:49:38 +00005420// v8i16 shuffles - Prefer shuffles in the following order:
5421// 1. [all] pshuflw, pshufhw, optional move
5422// 2. [ssse3] 1 x pshufb
5423// 3. [ssse3] 2 x pshufb + 1 x por
5424// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005425SDValue
5426X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
5427 SelectionDAG &DAG) const {
5428 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00005429 SDValue V1 = SVOp->getOperand(0);
5430 SDValue V2 = SVOp->getOperand(1);
5431 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005432 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00005433
Nate Begemanb9a47b82009-02-23 08:49:38 +00005434 // Determine if more than 1 of the words in each of the low and high quadwords
5435 // of the result come from the same quadword of one of the two inputs. Undef
5436 // mask values count as coming from any quadword, for better codegen.
5437 SmallVector<unsigned, 4> LoQuad(4);
5438 SmallVector<unsigned, 4> HiQuad(4);
5439 BitVector InputQuads(4);
5440 for (unsigned i = 0; i < 8; ++i) {
5441 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00005442 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005443 MaskVals.push_back(EltIdx);
5444 if (EltIdx < 0) {
5445 ++Quad[0];
5446 ++Quad[1];
5447 ++Quad[2];
5448 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00005449 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005450 }
5451 ++Quad[EltIdx / 4];
5452 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00005453 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005454
Nate Begemanb9a47b82009-02-23 08:49:38 +00005455 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005456 unsigned MaxQuad = 1;
5457 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005458 if (LoQuad[i] > MaxQuad) {
5459 BestLoQuad = i;
5460 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005461 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005462 }
5463
Nate Begemanb9a47b82009-02-23 08:49:38 +00005464 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005465 MaxQuad = 1;
5466 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005467 if (HiQuad[i] > MaxQuad) {
5468 BestHiQuad = i;
5469 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005470 }
5471 }
5472
Nate Begemanb9a47b82009-02-23 08:49:38 +00005473 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00005474 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00005475 // single pshufb instruction is necessary. If There are more than 2 input
5476 // quads, disable the next transformation since it does not help SSSE3.
5477 bool V1Used = InputQuads[0] || InputQuads[1];
5478 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005479 if (Subtarget->hasSSSE3() || Subtarget->hasAVX()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005480 if (InputQuads.count() == 2 && V1Used && V2Used) {
5481 BestLoQuad = InputQuads.find_first();
5482 BestHiQuad = InputQuads.find_next(BestLoQuad);
5483 }
5484 if (InputQuads.count() > 2) {
5485 BestLoQuad = -1;
5486 BestHiQuad = -1;
5487 }
5488 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005489
Nate Begemanb9a47b82009-02-23 08:49:38 +00005490 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
5491 // the shuffle mask. If a quad is scored as -1, that means that it contains
5492 // words from all 4 input quadwords.
5493 SDValue NewV;
5494 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005495 SmallVector<int, 8> MaskV;
5496 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
5497 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00005498 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005499 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
5500 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
5501 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005502
Nate Begemanb9a47b82009-02-23 08:49:38 +00005503 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
5504 // source words for the shuffle, to aid later transformations.
5505 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00005506 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00005507 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005508 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00005509 if (idx != (int)i)
5510 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005511 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00005512 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005513 AllWordsInNewV = false;
5514 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00005515 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005516
Nate Begemanb9a47b82009-02-23 08:49:38 +00005517 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
5518 if (AllWordsInNewV) {
5519 for (int i = 0; i != 8; ++i) {
5520 int idx = MaskVals[i];
5521 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005522 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005523 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005524 if ((idx != i) && idx < 4)
5525 pshufhw = false;
5526 if ((idx != i) && idx > 3)
5527 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00005528 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00005529 V1 = NewV;
5530 V2Used = false;
5531 BestLoQuad = 0;
5532 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005533 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005534
Nate Begemanb9a47b82009-02-23 08:49:38 +00005535 // If we've eliminated the use of V2, and the new mask is a pshuflw or
5536 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00005537 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005538 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
5539 unsigned TargetMask = 0;
5540 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00005541 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005542 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
5543 X86::getShufflePSHUFLWImmediate(NewV.getNode());
5544 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005545 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00005546 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005547 }
Eric Christopherfd179292009-08-27 18:07:15 +00005548
Nate Begemanb9a47b82009-02-23 08:49:38 +00005549 // If we have SSSE3, and all words of the result are from 1 input vector,
5550 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
5551 // is present, fall back to case 4.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005552 if (Subtarget->hasSSSE3() || Subtarget->hasAVX()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005553 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005554
Nate Begemanb9a47b82009-02-23 08:49:38 +00005555 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00005556 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00005557 // mask, and elements that come from V1 in the V2 mask, so that the two
5558 // results can be OR'd together.
5559 bool TwoInputs = V1Used && V2Used;
5560 for (unsigned i = 0; i != 8; ++i) {
5561 int EltIdx = MaskVals[i] * 2;
5562 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005563 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5564 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005565 continue;
5566 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005567 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5568 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005569 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005570 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005571 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005572 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005573 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005574 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005575 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005576
Nate Begemanb9a47b82009-02-23 08:49:38 +00005577 // Calculate the shuffle mask for the second input, shuffle it, and
5578 // OR it with the first shuffled input.
5579 pshufbMask.clear();
5580 for (unsigned i = 0; i != 8; ++i) {
5581 int EltIdx = MaskVals[i] * 2;
5582 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005583 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5584 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005585 continue;
5586 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005587 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
5588 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005589 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005590 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00005591 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005592 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005593 MVT::v16i8, &pshufbMask[0], 16));
5594 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005595 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005596 }
5597
5598 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5599 // and update MaskVals with new element order.
5600 BitVector InOrder(8);
5601 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005602 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005603 for (int i = 0; i != 4; ++i) {
5604 int idx = MaskVals[i];
5605 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005606 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005607 InOrder.set(i);
5608 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005609 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005610 InOrder.set(i);
5611 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005612 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005613 }
5614 }
5615 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005616 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00005617 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005618 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005619
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005620 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE &&
5621 (Subtarget->hasSSSE3() || Subtarget->hasAVX()))
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005622 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
5623 NewV.getOperand(0),
5624 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
5625 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005626 }
Eric Christopherfd179292009-08-27 18:07:15 +00005627
Nate Begemanb9a47b82009-02-23 08:49:38 +00005628 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5629 // and update MaskVals with the new element order.
5630 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005631 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005632 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005633 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005634 for (unsigned i = 4; i != 8; ++i) {
5635 int idx = MaskVals[i];
5636 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005637 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005638 InOrder.set(i);
5639 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005640 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005641 InOrder.set(i);
5642 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005643 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005644 }
5645 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005646 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005647 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005648
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005649 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE &&
5650 (Subtarget->hasSSSE3() || Subtarget->hasAVX()))
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005651 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5652 NewV.getOperand(0),
5653 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
5654 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005655 }
Eric Christopherfd179292009-08-27 18:07:15 +00005656
Nate Begemanb9a47b82009-02-23 08:49:38 +00005657 // In case BestHi & BestLo were both -1, which means each quadword has a word
5658 // from each of the four input quadwords, calculate the InOrder bitvector now
5659 // before falling through to the insert/extract cleanup.
5660 if (BestLoQuad == -1 && BestHiQuad == -1) {
5661 NewV = V1;
5662 for (int i = 0; i != 8; ++i)
5663 if (MaskVals[i] < 0 || MaskVals[i] == i)
5664 InOrder.set(i);
5665 }
Eric Christopherfd179292009-08-27 18:07:15 +00005666
Nate Begemanb9a47b82009-02-23 08:49:38 +00005667 // The other elements are put in the right place using pextrw and pinsrw.
5668 for (unsigned i = 0; i != 8; ++i) {
5669 if (InOrder[i])
5670 continue;
5671 int EltIdx = MaskVals[i];
5672 if (EltIdx < 0)
5673 continue;
5674 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005675 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005676 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00005677 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005678 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00005679 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005680 DAG.getIntPtrConstant(i));
5681 }
5682 return NewV;
5683}
5684
5685// v16i8 shuffles - Prefer shuffles in the following order:
5686// 1. [ssse3] 1 x pshufb
5687// 2. [ssse3] 2 x pshufb + 1 x por
5688// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
5689static
Nate Begeman9008ca62009-04-27 18:41:29 +00005690SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00005691 SelectionDAG &DAG,
5692 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005693 SDValue V1 = SVOp->getOperand(0);
5694 SDValue V2 = SVOp->getOperand(1);
5695 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005696 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00005697 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00005698
Nate Begemanb9a47b82009-02-23 08:49:38 +00005699 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00005700 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00005701 // present, fall back to case 3.
5702 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
5703 bool V1Only = true;
5704 bool V2Only = true;
5705 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005706 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00005707 if (EltIdx < 0)
5708 continue;
5709 if (EltIdx < 16)
5710 V2Only = false;
5711 else
5712 V1Only = false;
5713 }
Eric Christopherfd179292009-08-27 18:07:15 +00005714
Nate Begemanb9a47b82009-02-23 08:49:38 +00005715 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00005716 if (TLI.getSubtarget()->hasSSSE3() || TLI.getSubtarget()->hasAVX()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005717 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005718
Nate Begemanb9a47b82009-02-23 08:49:38 +00005719 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00005720 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005721 //
5722 // Otherwise, we have elements from both input vectors, and must zero out
5723 // elements that come from V2 in the first mask, and V1 in the second mask
5724 // so that we can OR them together.
5725 bool TwoInputs = !(V1Only || V2Only);
5726 for (unsigned i = 0; i != 16; ++i) {
5727 int EltIdx = MaskVals[i];
5728 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005729 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005730 continue;
5731 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005732 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005733 }
5734 // If all the elements are from V2, assign it to V1 and return after
5735 // building the first pshufb.
5736 if (V2Only)
5737 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00005738 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005739 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005740 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005741 if (!TwoInputs)
5742 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00005743
Nate Begemanb9a47b82009-02-23 08:49:38 +00005744 // Calculate the shuffle mask for the second input, shuffle it, and
5745 // OR it with the first shuffled input.
5746 pshufbMask.clear();
5747 for (unsigned i = 0; i != 16; ++i) {
5748 int EltIdx = MaskVals[i];
5749 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005750 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005751 continue;
5752 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005753 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005754 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005755 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005756 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005757 MVT::v16i8, &pshufbMask[0], 16));
5758 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005759 }
Eric Christopherfd179292009-08-27 18:07:15 +00005760
Nate Begemanb9a47b82009-02-23 08:49:38 +00005761 // No SSSE3 - Calculate in place words and then fix all out of place words
5762 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
5763 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005764 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5765 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005766 SDValue NewV = V2Only ? V2 : V1;
5767 for (int i = 0; i != 8; ++i) {
5768 int Elt0 = MaskVals[i*2];
5769 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00005770
Nate Begemanb9a47b82009-02-23 08:49:38 +00005771 // This word of the result is all undef, skip it.
5772 if (Elt0 < 0 && Elt1 < 0)
5773 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005774
Nate Begemanb9a47b82009-02-23 08:49:38 +00005775 // This word of the result is already in the correct place, skip it.
5776 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5777 continue;
5778 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
5779 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005780
Nate Begemanb9a47b82009-02-23 08:49:38 +00005781 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5782 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5783 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00005784
5785 // If Elt0 and Elt1 are defined, are consecutive, and can be load
5786 // using a single extract together, load it and store it.
5787 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005788 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005789 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00005790 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005791 DAG.getIntPtrConstant(i));
5792 continue;
5793 }
5794
Nate Begemanb9a47b82009-02-23 08:49:38 +00005795 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00005796 // source byte is not also odd, shift the extracted word left 8 bits
5797 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005798 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005799 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005800 DAG.getIntPtrConstant(Elt1 / 2));
5801 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005802 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00005803 DAG.getConstant(8,
5804 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005805 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005806 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5807 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005808 }
5809 // If Elt0 is defined, extract it from the appropriate source. If the
5810 // source byte is not also even, shift the extracted word right 8 bits. If
5811 // Elt1 was also defined, OR the extracted values together before
5812 // inserting them in the result.
5813 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005814 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005815 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5816 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005817 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00005818 DAG.getConstant(8,
5819 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005820 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005821 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5822 DAG.getConstant(0x00FF, MVT::i16));
5823 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00005824 : InsElt0;
5825 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005826 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005827 DAG.getIntPtrConstant(i));
5828 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005829 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005830}
5831
Evan Cheng7a831ce2007-12-15 03:00:47 +00005832/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005833/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00005834/// done when every pair / quad of shuffle mask elements point to elements in
5835/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005836/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00005837static
Nate Begeman9008ca62009-04-27 18:41:29 +00005838SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005839 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00005840 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00005841 SDValue V1 = SVOp->getOperand(0);
5842 SDValue V2 = SVOp->getOperand(1);
5843 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00005844 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005845 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00005846 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005847 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00005848 case MVT::v4f32: NewVT = MVT::v2f64; break;
5849 case MVT::v4i32: NewVT = MVT::v2i64; break;
5850 case MVT::v8i16: NewVT = MVT::v4i32; break;
5851 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00005852 }
5853
Nate Begeman9008ca62009-04-27 18:41:29 +00005854 int Scale = NumElems / NewWidth;
5855 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00005856 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005857 int StartIdx = -1;
5858 for (int j = 0; j < Scale; ++j) {
5859 int EltIdx = SVOp->getMaskElt(i+j);
5860 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005861 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00005862 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00005863 StartIdx = EltIdx - (EltIdx % Scale);
5864 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00005865 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005866 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005867 if (StartIdx == -1)
5868 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00005869 else
Nate Begeman9008ca62009-04-27 18:41:29 +00005870 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005871 }
5872
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005873 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
5874 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005875 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005876}
5877
Evan Chengd880b972008-05-09 21:53:03 +00005878/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005879///
Owen Andersone50ed302009-08-10 22:56:29 +00005880static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00005881 SDValue SrcOp, SelectionDAG &DAG,
5882 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005883 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005884 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00005885 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00005886 LD = dyn_cast<LoadSDNode>(SrcOp);
5887 if (!LD) {
5888 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
5889 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00005890 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00005891 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00005892 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005893 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00005894 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005895 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00005896 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005897 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005898 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5899 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5900 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00005901 SrcOp.getOperand(0)
5902 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005903 }
5904 }
5905 }
5906
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005907 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005908 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005909 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00005910 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005911}
5912
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00005913/// areShuffleHalvesWithinDisjointLanes - Check whether each half of a vector
5914/// shuffle node referes to only one lane in the sources.
5915static bool areShuffleHalvesWithinDisjointLanes(ShuffleVectorSDNode *SVOp) {
5916 EVT VT = SVOp->getValueType(0);
5917 int NumElems = VT.getVectorNumElements();
5918 int HalfSize = NumElems/2;
5919 SmallVector<int, 16> M;
5920 SVOp->getMask(M);
5921 bool MatchA = false, MatchB = false;
5922
5923 for (int l = 0; l < NumElems*2; l += HalfSize) {
5924 if (isUndefOrInRange(M, 0, HalfSize, l, l+HalfSize)) {
5925 MatchA = true;
5926 break;
5927 }
5928 }
5929
5930 for (int l = 0; l < NumElems*2; l += HalfSize) {
5931 if (isUndefOrInRange(M, HalfSize, HalfSize, l, l+HalfSize)) {
5932 MatchB = true;
5933 break;
5934 }
5935 }
5936
5937 return MatchA && MatchB;
5938}
5939
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005940/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
5941/// which could not be matched by any known target speficic shuffle
5942static SDValue
5943LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00005944 if (areShuffleHalvesWithinDisjointLanes(SVOp)) {
5945 // If each half of a vector shuffle node referes to only one lane in the
5946 // source vectors, extract each used 128-bit lane and shuffle them using
5947 // 128-bit shuffles. Then, concatenate the results. Otherwise leave
5948 // the work to the legalizer.
5949 DebugLoc dl = SVOp->getDebugLoc();
5950 EVT VT = SVOp->getValueType(0);
5951 int NumElems = VT.getVectorNumElements();
5952 int HalfSize = NumElems/2;
5953
5954 // Extract the reference for each half
5955 int FstVecExtractIdx = 0, SndVecExtractIdx = 0;
5956 int FstVecOpNum = 0, SndVecOpNum = 0;
5957 for (int i = 0; i < HalfSize; ++i) {
5958 int Elt = SVOp->getMaskElt(i);
5959 if (SVOp->getMaskElt(i) < 0)
5960 continue;
5961 FstVecOpNum = Elt/NumElems;
5962 FstVecExtractIdx = Elt % NumElems < HalfSize ? 0 : HalfSize;
5963 break;
5964 }
5965 for (int i = HalfSize; i < NumElems; ++i) {
5966 int Elt = SVOp->getMaskElt(i);
5967 if (SVOp->getMaskElt(i) < 0)
5968 continue;
5969 SndVecOpNum = Elt/NumElems;
5970 SndVecExtractIdx = Elt % NumElems < HalfSize ? 0 : HalfSize;
5971 break;
5972 }
5973
5974 // Extract the subvectors
5975 SDValue V1 = Extract128BitVector(SVOp->getOperand(FstVecOpNum),
5976 DAG.getConstant(FstVecExtractIdx, MVT::i32), DAG, dl);
5977 SDValue V2 = Extract128BitVector(SVOp->getOperand(SndVecOpNum),
5978 DAG.getConstant(SndVecExtractIdx, MVT::i32), DAG, dl);
5979
5980 // Generate 128-bit shuffles
5981 SmallVector<int, 16> MaskV1, MaskV2;
5982 for (int i = 0; i < HalfSize; ++i) {
5983 int Elt = SVOp->getMaskElt(i);
5984 MaskV1.push_back(Elt < 0 ? Elt : Elt % HalfSize);
5985 }
5986 for (int i = HalfSize; i < NumElems; ++i) {
5987 int Elt = SVOp->getMaskElt(i);
5988 MaskV2.push_back(Elt < 0 ? Elt : Elt % HalfSize);
5989 }
5990
5991 EVT NVT = V1.getValueType();
5992 V1 = DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &MaskV1[0]);
5993 V2 = DAG.getVectorShuffle(NVT, dl, V2, DAG.getUNDEF(NVT), &MaskV2[0]);
5994
5995 // Concatenate the result back
5996 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), V1,
5997 DAG.getConstant(0, MVT::i32), DAG, dl);
5998 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5999 DAG, dl);
6000 }
6001
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006002 return SDValue();
6003}
6004
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006005/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6006/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00006007static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006008LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006009 SDValue V1 = SVOp->getOperand(0);
6010 SDValue V2 = SVOp->getOperand(1);
6011 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006012 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00006013
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006014 assert(VT.getSizeInBits() == 128 && "Unsupported vector size");
6015
Evan Chengace3c172008-07-22 21:13:36 +00006016 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00006017 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00006018 SmallVector<int, 8> Mask1(4U, -1);
6019 SmallVector<int, 8> PermMask;
6020 SVOp->getMask(PermMask);
6021
Evan Chengace3c172008-07-22 21:13:36 +00006022 unsigned NumHi = 0;
6023 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00006024 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006025 int Idx = PermMask[i];
6026 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006027 Locs[i] = std::make_pair(-1, -1);
6028 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00006029 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6030 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006031 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00006032 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006033 NumLo++;
6034 } else {
6035 Locs[i] = std::make_pair(1, NumHi);
6036 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00006037 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006038 NumHi++;
6039 }
6040 }
6041 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006042
Evan Chengace3c172008-07-22 21:13:36 +00006043 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006044 // If no more than two elements come from either vector. This can be
6045 // implemented with two shuffles. First shuffle gather the elements.
6046 // The second shuffle, which takes the first shuffle as both of its
6047 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00006048 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006049
Nate Begeman9008ca62009-04-27 18:41:29 +00006050 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00006051
Evan Chengace3c172008-07-22 21:13:36 +00006052 for (unsigned i = 0; i != 4; ++i) {
6053 if (Locs[i].first == -1)
6054 continue;
6055 else {
6056 unsigned Idx = (i < 2) ? 0 : 4;
6057 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006058 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006059 }
6060 }
6061
Nate Begeman9008ca62009-04-27 18:41:29 +00006062 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006063 } else if (NumLo == 3 || NumHi == 3) {
6064 // Otherwise, we must have three elements from one vector, call it X, and
6065 // one element from the other, call it Y. First, use a shufps to build an
6066 // intermediate vector with the one element from Y and the element from X
6067 // that will be in the same half in the final destination (the indexes don't
6068 // matter). Then, use a shufps to build the final vector, taking the half
6069 // containing the element from Y from the intermediate, and the other half
6070 // from X.
6071 if (NumHi == 3) {
6072 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00006073 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006074 std::swap(V1, V2);
6075 }
6076
6077 // Find the element from V2.
6078 unsigned HiIndex;
6079 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006080 int Val = PermMask[HiIndex];
6081 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006082 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006083 if (Val >= 4)
6084 break;
6085 }
6086
Nate Begeman9008ca62009-04-27 18:41:29 +00006087 Mask1[0] = PermMask[HiIndex];
6088 Mask1[1] = -1;
6089 Mask1[2] = PermMask[HiIndex^1];
6090 Mask1[3] = -1;
6091 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006092
6093 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006094 Mask1[0] = PermMask[0];
6095 Mask1[1] = PermMask[1];
6096 Mask1[2] = HiIndex & 1 ? 6 : 4;
6097 Mask1[3] = HiIndex & 1 ? 4 : 6;
6098 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006099 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00006100 Mask1[0] = HiIndex & 1 ? 2 : 0;
6101 Mask1[1] = HiIndex & 1 ? 0 : 2;
6102 Mask1[2] = PermMask[2];
6103 Mask1[3] = PermMask[3];
6104 if (Mask1[2] >= 0)
6105 Mask1[2] += 4;
6106 if (Mask1[3] >= 0)
6107 Mask1[3] += 4;
6108 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006109 }
Evan Chengace3c172008-07-22 21:13:36 +00006110 }
6111
6112 // Break it into (shuffle shuffle_hi, shuffle_lo).
6113 Locs.clear();
David Greenec4db4e52011-02-28 19:06:56 +00006114 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00006115 SmallVector<int,8> LoMask(4U, -1);
6116 SmallVector<int,8> HiMask(4U, -1);
6117
6118 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00006119 unsigned MaskIdx = 0;
6120 unsigned LoIdx = 0;
6121 unsigned HiIdx = 2;
6122 for (unsigned i = 0; i != 4; ++i) {
6123 if (i == 2) {
6124 MaskPtr = &HiMask;
6125 MaskIdx = 1;
6126 LoIdx = 0;
6127 HiIdx = 2;
6128 }
Nate Begeman9008ca62009-04-27 18:41:29 +00006129 int Idx = PermMask[i];
6130 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006131 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00006132 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006133 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00006134 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006135 LoIdx++;
6136 } else {
6137 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00006138 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006139 HiIdx++;
6140 }
6141 }
6142
Nate Begeman9008ca62009-04-27 18:41:29 +00006143 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6144 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
6145 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00006146 for (unsigned i = 0; i != 4; ++i) {
6147 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006148 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00006149 } else {
6150 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006151 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00006152 }
6153 }
Nate Begeman9008ca62009-04-27 18:41:29 +00006154 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006155}
6156
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006157static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006158 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006159 V = V.getOperand(0);
6160 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6161 V = V.getOperand(0);
6162 if (MayFoldLoad(V))
6163 return true;
6164 return false;
6165}
6166
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006167// FIXME: the version above should always be used. Since there's
6168// a bug where several vector shuffles can't be folded because the
6169// DAG is not updated during lowering and a node claims to have two
6170// uses while it only has one, use this version, and let isel match
6171// another instruction if the load really happens to have more than
6172// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00006173// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006174static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006175 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006176 V = V.getOperand(0);
6177 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6178 V = V.getOperand(0);
6179 if (ISD::isNormalLoad(V.getNode()))
6180 return true;
6181 return false;
6182}
6183
6184/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
6185/// a vector extract, and if both can be later optimized into a single load.
6186/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
6187/// here because otherwise a target specific shuffle node is going to be
6188/// emitted for this shuffle, and the optimization not done.
6189/// FIXME: This is probably not the best approach, but fix the problem
6190/// until the right path is decided.
6191static
6192bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
6193 const TargetLowering &TLI) {
6194 EVT VT = V.getValueType();
6195 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
6196
6197 // Be sure that the vector shuffle is present in a pattern like this:
6198 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
6199 if (!V.hasOneUse())
6200 return false;
6201
6202 SDNode *N = *V.getNode()->use_begin();
6203 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
6204 return false;
6205
6206 SDValue EltNo = N->getOperand(1);
6207 if (!isa<ConstantSDNode>(EltNo))
6208 return false;
6209
6210 // If the bit convert changed the number of elements, it is unsafe
6211 // to examine the mask.
6212 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006213 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006214 EVT SrcVT = V.getOperand(0).getValueType();
6215 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
6216 return false;
6217 V = V.getOperand(0);
6218 HasShuffleIntoBitcast = true;
6219 }
6220
6221 // Select the input vector, guarding against out of range extract vector.
6222 unsigned NumElems = VT.getVectorNumElements();
6223 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
6224 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
6225 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
6226
6227 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006228 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006229 V = V.getOperand(0);
6230
6231 if (ISD::isNormalLoad(V.getNode())) {
6232 // Is the original load suitable?
6233 LoadSDNode *LN0 = cast<LoadSDNode>(V);
6234
6235 // FIXME: avoid the multi-use bug that is preventing lots of
6236 // of foldings to be detected, this is still wrong of course, but
6237 // give the temporary desired behavior, and if it happens that
6238 // the load has real more uses, during isel it will not fold, and
6239 // will generate poor code.
6240 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
6241 return false;
6242
6243 if (!HasShuffleIntoBitcast)
6244 return true;
6245
6246 // If there's a bitcast before the shuffle, check if the load type and
6247 // alignment is valid.
6248 unsigned Align = LN0->getAlignment();
6249 unsigned NewAlign =
6250 TLI.getTargetData()->getABITypeAlignment(
6251 VT.getTypeForEVT(*DAG.getContext()));
6252
6253 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
6254 return false;
6255 }
6256
6257 return true;
6258}
6259
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006260static
Evan Cheng835580f2010-10-07 20:50:20 +00006261SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
6262 EVT VT = Op.getValueType();
6263
6264 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006265 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6266 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00006267 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6268 V1, DAG));
6269}
6270
6271static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006272SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006273 bool HasXMMInt) {
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006274 SDValue V1 = Op.getOperand(0);
6275 SDValue V2 = Op.getOperand(1);
6276 EVT VT = Op.getValueType();
6277
6278 assert(VT != MVT::v2i64 && "unsupported shuffle type");
6279
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006280 if (HasXMMInt && VT == MVT::v2f64)
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006281 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
6282
Evan Cheng0899f5c2011-08-31 02:05:24 +00006283 // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
6284 return DAG.getNode(ISD::BITCAST, dl, VT,
6285 getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
6286 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
6287 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006288}
6289
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006290static
6291SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
6292 SDValue V1 = Op.getOperand(0);
6293 SDValue V2 = Op.getOperand(1);
6294 EVT VT = Op.getValueType();
6295
6296 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
6297 "unsupported shuffle type");
6298
6299 if (V2.getOpcode() == ISD::UNDEF)
6300 V2 = V1;
6301
6302 // v4i32 or v4f32
6303 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
6304}
6305
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006306static inline unsigned getSHUFPOpcode(EVT VT) {
6307 switch(VT.getSimpleVT().SimpleTy) {
6308 case MVT::v8i32: // Use fp unit for int unpack.
6309 case MVT::v8f32:
6310 case MVT::v4i32: // Use fp unit for int unpack.
6311 case MVT::v4f32: return X86ISD::SHUFPS;
6312 case MVT::v4i64: // Use fp unit for int unpack.
6313 case MVT::v4f64:
6314 case MVT::v2i64: // Use fp unit for int unpack.
6315 case MVT::v2f64: return X86ISD::SHUFPD;
6316 default:
6317 llvm_unreachable("Unknown type for shufp*");
6318 }
6319 return 0;
6320}
6321
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006322static
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006323SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasXMMInt) {
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006324 SDValue V1 = Op.getOperand(0);
6325 SDValue V2 = Op.getOperand(1);
6326 EVT VT = Op.getValueType();
6327 unsigned NumElems = VT.getVectorNumElements();
6328
6329 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
6330 // operand of these instructions is only memory, so check if there's a
6331 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
6332 // same masks.
6333 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006334
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00006335 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006336 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006337 CanFoldLoad = true;
6338
6339 // When V1 is a load, it can be folded later into a store in isel, example:
6340 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
6341 // turns into:
6342 // (MOVLPSmr addr:$src1, VR128:$src2)
6343 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006344 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006345 CanFoldLoad = true;
6346
Eric Christopher893a8822011-02-20 05:04:42 +00006347 // Both of them can't be memory operations though.
6348 if (MayFoldVectorLoad(V1) && MayFoldVectorLoad(V2))
6349 CanFoldLoad = false;
Owen Anderson95771af2011-02-25 21:41:48 +00006350
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006351 if (CanFoldLoad) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006352 if (HasXMMInt && NumElems == 2)
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006353 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
6354
6355 if (NumElems == 4)
6356 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
6357 }
6358
6359 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6360 // movl and movlp will both match v2i64, but v2i64 is never matched by
6361 // movl earlier because we make it strict to avoid messing with the movlp load
6362 // folding logic (see the code above getMOVLP call). Match it here then,
6363 // this is horrible, but will stay like this until we move all shuffle
6364 // matching to x86 specific nodes. Note that for the 1st condition all
6365 // types are matched with movsd.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006366 if (HasXMMInt) {
Bruno Cardoso Lopes5ca0d142011-09-14 02:36:14 +00006367 // FIXME: isMOVLMask should be checked and matched before getMOVLP,
6368 // as to remove this logic from here, as much as possible
6369 if (NumElems == 2 || !X86::isMOVLMask(SVOp))
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00006370 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006371 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00006372 }
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006373
6374 assert(VT != MVT::v4i32 && "unsupported shuffle type");
6375
6376 // Invert the operand order and use SHUFPS to match it.
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006377 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V2, V1,
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006378 X86::getShuffleSHUFImmediate(SVOp), DAG);
6379}
6380
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006381static inline unsigned getUNPCKLOpcode(EVT VT) {
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006382 switch(VT.getSimpleVT().SimpleTy) {
6383 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
6384 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006385 case MVT::v4f32: return X86ISD::UNPCKLPS;
6386 case MVT::v2f64: return X86ISD::UNPCKLPD;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006387 case MVT::v8i32: // Use fp unit for int unpack.
David Greenec4db4e52011-02-28 19:06:56 +00006388 case MVT::v8f32: return X86ISD::VUNPCKLPSY;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006389 case MVT::v4i64: // Use fp unit for int unpack.
David Greenec4db4e52011-02-28 19:06:56 +00006390 case MVT::v4f64: return X86ISD::VUNPCKLPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006391 case MVT::v16i8: return X86ISD::PUNPCKLBW;
6392 case MVT::v8i16: return X86ISD::PUNPCKLWD;
6393 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00006394 llvm_unreachable("Unknown type for unpckl");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006395 }
6396 return 0;
6397}
6398
6399static inline unsigned getUNPCKHOpcode(EVT VT) {
6400 switch(VT.getSimpleVT().SimpleTy) {
6401 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
6402 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
6403 case MVT::v4f32: return X86ISD::UNPCKHPS;
6404 case MVT::v2f64: return X86ISD::UNPCKHPD;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006405 case MVT::v8i32: // Use fp unit for int unpack.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00006406 case MVT::v8f32: return X86ISD::VUNPCKHPSY;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006407 case MVT::v4i64: // Use fp unit for int unpack.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00006408 case MVT::v4f64: return X86ISD::VUNPCKHPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006409 case MVT::v16i8: return X86ISD::PUNPCKHBW;
6410 case MVT::v8i16: return X86ISD::PUNPCKHWD;
6411 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00006412 llvm_unreachable("Unknown type for unpckh");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006413 }
6414 return 0;
6415}
6416
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006417static inline unsigned getVPERMILOpcode(EVT VT) {
6418 switch(VT.getSimpleVT().SimpleTy) {
6419 case MVT::v4i32:
6420 case MVT::v4f32: return X86ISD::VPERMILPS;
6421 case MVT::v2i64:
6422 case MVT::v2f64: return X86ISD::VPERMILPD;
6423 case MVT::v8i32:
6424 case MVT::v8f32: return X86ISD::VPERMILPSY;
6425 case MVT::v4i64:
6426 case MVT::v4f64: return X86ISD::VPERMILPDY;
6427 default:
6428 llvm_unreachable("Unknown type for vpermil");
6429 }
6430 return 0;
6431}
6432
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006433/// isVectorBroadcast - Check if the node chain is suitable to be xformed to
6434/// a vbroadcast node. The nodes are suitable whenever we can fold a load coming
6435/// from a 32 or 64 bit scalar. Update Op to the desired load to be folded.
6436static bool isVectorBroadcast(SDValue &Op) {
6437 EVT VT = Op.getValueType();
6438 bool Is256 = VT.getSizeInBits() == 256;
6439
6440 assert((VT.getSizeInBits() == 128 || Is256) &&
6441 "Unsupported type for vbroadcast node");
6442
6443 SDValue V = Op;
6444 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6445 V = V.getOperand(0);
6446
6447 if (Is256 && !(V.hasOneUse() &&
6448 V.getOpcode() == ISD::INSERT_SUBVECTOR &&
6449 V.getOperand(0).getOpcode() == ISD::UNDEF))
6450 return false;
6451
6452 if (Is256)
6453 V = V.getOperand(1);
Bruno Cardoso Lopesa39ccdb2011-09-01 18:15:06 +00006454
6455 if (!V.hasOneUse())
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006456 return false;
6457
6458 // Check the source scalar_to_vector type. 256-bit broadcasts are
6459 // supported for 32/64-bit sizes, while 128-bit ones are only supported
6460 // for 32-bit scalars.
Bruno Cardoso Lopesa39ccdb2011-09-01 18:15:06 +00006461 if (V.getOpcode() != ISD::SCALAR_TO_VECTOR)
6462 return false;
6463
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006464 unsigned ScalarSize = V.getOperand(0).getValueType().getSizeInBits();
6465 if (ScalarSize != 32 && ScalarSize != 64)
6466 return false;
6467 if (!Is256 && ScalarSize == 64)
6468 return false;
6469
6470 V = V.getOperand(0);
6471 if (!MayFoldLoad(V))
6472 return false;
6473
6474 // Return the load node
6475 Op = V;
6476 return true;
6477}
6478
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006479static
6480SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006481 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006482 const X86Subtarget *Subtarget) {
6483 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6484 EVT VT = Op.getValueType();
6485 DebugLoc dl = Op.getDebugLoc();
6486 SDValue V1 = Op.getOperand(0);
6487 SDValue V2 = Op.getOperand(1);
6488
6489 if (isZeroShuffle(SVOp))
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006490 return getZeroVector(VT, Subtarget->hasXMMInt(), DAG, dl);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006491
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006492 // Handle splat operations
6493 if (SVOp->isSplat()) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006494 unsigned NumElem = VT.getVectorNumElements();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00006495 int Size = VT.getSizeInBits();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006496 // Special case, this is the only place now where it's allowed to return
6497 // a vector_shuffle operation without using a target specific node, because
6498 // *hopefully* it will be optimized away by the dag combiner. FIXME: should
6499 // this be moved to DAGCombine instead?
6500 if (NumElem <= 4 && CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006501 return Op;
6502
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006503 // Use vbroadcast whenever the splat comes from a foldable load
6504 if (Subtarget->hasAVX() && isVectorBroadcast(V1))
6505 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, V1);
6506
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00006507 // Handle splats by matching through known shuffle masks
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00006508 if ((Size == 128 && NumElem <= 4) ||
6509 (Size == 256 && NumElem < 8))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006510 return SDValue();
6511
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00006512 // All remaning splats are promoted to target supported vector shuffles.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006513 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006514 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006515
6516 // If the shuffle can be profitably rewritten as a narrower shuffle, then
6517 // do it!
6518 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
6519 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6520 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006521 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006522 } else if ((VT == MVT::v4i32 ||
6523 (VT == MVT::v4f32 && Subtarget->hasXMMInt()))) {
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006524 // FIXME: Figure out a cleaner way to do this.
6525 // Try to make use of movq to zero out the top part.
6526 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
6527 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6528 if (NewOp.getNode()) {
6529 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
6530 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
6531 DAG, Subtarget, dl);
6532 }
6533 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
6534 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6535 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
6536 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
6537 DAG, Subtarget, dl);
6538 }
6539 }
6540 return SDValue();
6541}
6542
Dan Gohman475871a2008-07-27 21:46:04 +00006543SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006544X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00006545 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00006546 SDValue V1 = Op.getOperand(0);
6547 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00006548 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006549 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00006550 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006551 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006552 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
6553 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00006554 bool V1IsSplat = false;
6555 bool V2IsSplat = false;
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006556 bool HasXMMInt = Subtarget->hasXMMInt();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006557 MachineFunction &MF = DAG.getMachineFunction();
6558 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006559
Dale Johannesen0488fb62010-09-30 23:57:10 +00006560 // Shuffle operations on MMX not supported.
6561 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00006562 return Op;
6563
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006564 // Vector shuffle lowering takes 3 steps:
6565 //
6566 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
6567 // narrowing and commutation of operands should be handled.
6568 // 2) Matching of shuffles with known shuffle masks to x86 target specific
6569 // shuffle nodes.
6570 // 3) Rewriting of unmatched masks into new generic shuffle operations,
6571 // so the shuffle can be broken into other shuffles and the legalizer can
6572 // try the lowering again.
6573 //
6574 // The general ideia is that no vector_shuffle operation should be left to
6575 // be matched during isel, all of them must be converted to a target specific
6576 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00006577
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006578 // Normalize the input vectors. Here splats, zeroed vectors, profitable
6579 // narrowing and commutation of operands should be handled. The actual code
6580 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006581 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006582 if (NewOp.getNode())
6583 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00006584
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006585 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
6586 // unpckh_undef). Only use pshufd if speed is more important than size.
6587 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006588 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006589 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006590 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00006591
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006592 if (X86::isMOVDDUPMask(SVOp) &&
6593 (Subtarget->hasSSE3() || Subtarget->hasAVX()) &&
6594 V2IsUndef && RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00006595 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006596
Dale Johannesen0488fb62010-09-30 23:57:10 +00006597 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006598 return getMOVHighToLow(Op, dl, DAG);
6599
6600 // Use to match splats
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006601 if (HasXMMInt && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006602 (VT == MVT::v2f64 || VT == MVT::v2i64))
6603 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
6604
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006605 if (X86::isPSHUFDMask(SVOp)) {
6606 // The actual implementation will match the mask in the if above and then
6607 // during isel it can match several different instructions, not only pshufd
6608 // as its name says, sad but true, emulate the behavior for now...
6609 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
6610 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
6611
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006612 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6613
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006614 if (HasXMMInt && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006615 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
6616
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006617 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V1,
6618 TargetMask, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006619 }
Eric Christopherfd179292009-08-27 18:07:15 +00006620
Evan Chengf26ffe92008-05-29 08:22:04 +00006621 // Check if this can be converted into a logical shift.
6622 bool isLeft = false;
6623 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00006624 SDValue ShVal;
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006625 bool isShift = getSubtarget()->hasXMMInt() &&
6626 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00006627 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006628 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00006629 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006630 EVT EltVT = VT.getVectorElementType();
6631 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006632 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006633 }
Eric Christopherfd179292009-08-27 18:07:15 +00006634
Nate Begeman9008ca62009-04-27 18:41:29 +00006635 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006636 if (V1IsUndef)
6637 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00006638 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00006639 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00006640 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006641 if (HasXMMInt && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006642 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6643
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006644 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006645 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6646 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00006647 }
Eric Christopherfd179292009-08-27 18:07:15 +00006648
Nate Begeman9008ca62009-04-27 18:41:29 +00006649 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00006650 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006651 return getMOVLowToHigh(Op, dl, DAG, HasXMMInt);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006652
Dale Johannesen0488fb62010-09-30 23:57:10 +00006653 if (X86::isMOVHLPSMask(SVOp))
6654 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006655
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006656 if (X86::isMOVSHDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006657 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006658
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006659 if (X86::isMOVSLDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006660 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00006661
Dale Johannesen0488fb62010-09-30 23:57:10 +00006662 if (X86::isMOVLPMask(SVOp))
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006663 return getMOVLP(Op, dl, DAG, HasXMMInt);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006664
Nate Begeman9008ca62009-04-27 18:41:29 +00006665 if (ShouldXformToMOVHLPS(SVOp) ||
6666 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
6667 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006668
Evan Chengf26ffe92008-05-29 08:22:04 +00006669 if (isShift) {
6670 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006671 EVT EltVT = VT.getVectorElementType();
6672 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006673 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006674 }
Eric Christopherfd179292009-08-27 18:07:15 +00006675
Evan Cheng9eca5e82006-10-25 21:49:50 +00006676 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00006677 // FIXME: This should also accept a bitcast of a splat? Be careful, not
6678 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00006679 V1IsSplat = isSplatVector(V1.getNode());
6680 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00006681
Chris Lattner8a594482007-11-25 00:24:49 +00006682 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00006683 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006684 Op = CommuteVectorShuffle(SVOp, DAG);
6685 SVOp = cast<ShuffleVectorSDNode>(Op);
6686 V1 = SVOp->getOperand(0);
6687 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00006688 std::swap(V1IsSplat, V2IsSplat);
6689 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006690 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00006691 }
6692
Nate Begeman9008ca62009-04-27 18:41:29 +00006693 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
6694 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00006695 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00006696 return V1;
6697 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
6698 // the instruction selector will not match, so get a canonical MOVL with
6699 // swapped operands to undo the commute.
6700 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00006701 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006702
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006703 if (X86::isUNPCKLMask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006704 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006705
6706 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006707 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00006708
Evan Cheng9bbbb982006-10-25 20:48:19 +00006709 if (V2IsSplat) {
6710 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00006711 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00006712 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00006713 SDValue NewMask = NormalizeMask(SVOp, DAG);
6714 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
6715 if (NSVOp != SVOp) {
6716 if (X86::isUNPCKLMask(NSVOp, true)) {
6717 return NewMask;
6718 } else if (X86::isUNPCKHMask(NSVOp, true)) {
6719 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006720 }
6721 }
6722 }
6723
Evan Cheng9eca5e82006-10-25 21:49:50 +00006724 if (Commuted) {
6725 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00006726 // FIXME: this seems wrong.
6727 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
6728 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006729
6730 if (X86::isUNPCKLMask(NewSVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006731 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006732
6733 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006734 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006735 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006736
Nate Begeman9008ca62009-04-27 18:41:29 +00006737 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00006738 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00006739 return CommuteVectorShuffle(SVOp, DAG);
6740
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00006741 // The checks below are all present in isShuffleMaskLegal, but they are
6742 // inlined here right now to enable us to directly emit target specific
6743 // nodes, and remove one by one until they don't return Op anymore.
6744 SmallVector<int, 16> M;
6745 SVOp->getMask(M);
6746
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00006747 if (isPALIGNRMask(M, VT, Subtarget->hasSSSE3() || Subtarget->hasAVX()))
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006748 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
6749 X86::getShufflePALIGNRImmediate(SVOp),
6750 DAG);
6751
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006752 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6753 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006754 if (VT == MVT::v2f64)
6755 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006756 if (VT == MVT::v2i64)
6757 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
6758 }
6759
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00006760 if (isPSHUFHWMask(M, VT))
6761 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
6762 X86::getShufflePSHUFHWImmediate(SVOp),
6763 DAG);
6764
6765 if (isPSHUFLWMask(M, VT))
6766 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
6767 X86::getShufflePSHUFLWImmediate(SVOp),
6768 DAG);
6769
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006770 if (isSHUFPMask(M, VT))
6771 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V2,
6772 X86::getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00006773
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006774 if (X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006775 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006776 if (X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006777 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006778
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006779 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006780 // Generate target specific nodes for 128 or 256-bit shuffles only
6781 // supported in the AVX instruction set.
6782 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006783
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00006784 // Handle VMOVDDUPY permutations
6785 if (isMOVDDUPYMask(SVOp, Subtarget))
6786 return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
6787
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006788 // Handle VPERMILPS* permutations
6789 if (isVPERMILPSMask(M, VT, Subtarget))
6790 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6791 getShuffleVPERMILPSImmediate(SVOp), DAG);
6792
6793 // Handle VPERMILPD* permutations
6794 if (isVPERMILPDMask(M, VT, Subtarget))
6795 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6796 getShuffleVPERMILPDImmediate(SVOp), DAG);
6797
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00006798 // Handle VPERM2F128 permutations
6799 if (isVPERM2F128Mask(M, VT, Subtarget))
6800 return getTargetShuffleNode(X86ISD::VPERM2F128, dl, VT, V1, V2,
6801 getShuffleVPERM2F128Immediate(SVOp), DAG);
6802
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006803 // Handle VSHUFPSY permutations
6804 if (isVSHUFPSYMask(M, VT, Subtarget))
6805 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V2,
6806 getShuffleVSHUFPSYImmediate(SVOp), DAG);
6807
6808 // Handle VSHUFPDY permutations
6809 if (isVSHUFPDYMask(M, VT, Subtarget))
6810 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V2,
6811 getShuffleVSHUFPDYImmediate(SVOp), DAG);
6812
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006813 //===--------------------------------------------------------------------===//
6814 // Since no target specific shuffle was selected for this generic one,
6815 // lower it into other known shuffles. FIXME: this isn't true yet, but
6816 // this is the plan.
6817 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00006818
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00006819 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
6820 if (VT == MVT::v8i16) {
6821 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
6822 if (NewOp.getNode())
6823 return NewOp;
6824 }
6825
6826 if (VT == MVT::v16i8) {
6827 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
6828 if (NewOp.getNode())
6829 return NewOp;
6830 }
6831
6832 // Handle all 128-bit wide vectors with 4 elements, and match them with
6833 // several different shuffle types.
6834 if (NumElems == 4 && VT.getSizeInBits() == 128)
6835 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
6836
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006837 // Handle general 256-bit shuffles
6838 if (VT.is256BitVector())
6839 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
6840
Dan Gohman475871a2008-07-27 21:46:04 +00006841 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006842}
6843
Dan Gohman475871a2008-07-27 21:46:04 +00006844SDValue
6845X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00006846 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006847 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006848 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006849
6850 if (Op.getOperand(0).getValueType().getSizeInBits() != 128)
6851 return SDValue();
6852
Duncan Sands83ec4b62008-06-06 12:08:01 +00006853 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006854 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006855 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006856 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006857 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006858 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006859 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00006860 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6861 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
6862 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006863 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6864 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006865 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006866 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00006867 Op.getOperand(0)),
6868 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006869 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006870 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006871 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006872 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006873 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00006874 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00006875 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
6876 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006877 // result has a single use which is a store or a bitcast to i32. And in
6878 // the case of a store, it's not worth it if the index is a constant 0,
6879 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00006880 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00006881 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006882 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006883 if ((User->getOpcode() != ISD::STORE ||
6884 (isa<ConstantSDNode>(Op.getOperand(1)) &&
6885 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006886 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006887 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00006888 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00006889 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006890 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00006891 Op.getOperand(0)),
6892 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006893 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00006894 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00006895 // ExtractPS works with constant index.
6896 if (isa<ConstantSDNode>(Op.getOperand(1)))
6897 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006898 }
Dan Gohman475871a2008-07-27 21:46:04 +00006899 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006900}
6901
6902
Dan Gohman475871a2008-07-27 21:46:04 +00006903SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006904X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6905 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006906 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00006907 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006908
David Greene74a579d2011-02-10 16:57:36 +00006909 SDValue Vec = Op.getOperand(0);
6910 EVT VecVT = Vec.getValueType();
6911
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006912 // If this is a 256-bit vector result, first extract the 128-bit vector and
6913 // then extract the element from the 128-bit vector.
6914 if (VecVT.getSizeInBits() == 256) {
David Greene74a579d2011-02-10 16:57:36 +00006915 DebugLoc dl = Op.getNode()->getDebugLoc();
6916 unsigned NumElems = VecVT.getVectorNumElements();
6917 SDValue Idx = Op.getOperand(1);
David Greene74a579d2011-02-10 16:57:36 +00006918 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
6919
6920 // Get the 128-bit vector.
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006921 bool Upper = IdxVal >= NumElems/2;
6922 Vec = Extract128BitVector(Vec,
6923 DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32), DAG, dl);
David Greene74a579d2011-02-10 16:57:36 +00006924
David Greene74a579d2011-02-10 16:57:36 +00006925 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006926 Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : Idx);
David Greene74a579d2011-02-10 16:57:36 +00006927 }
6928
6929 assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
6930
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006931 if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006932 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006933 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00006934 return Res;
6935 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00006936
Owen Andersone50ed302009-08-10 22:56:29 +00006937 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006938 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006939 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006940 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006941 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006942 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006943 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006944 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6945 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006946 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006947 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00006948 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006949 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00006950 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00006951 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006952 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00006953 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006954 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006955 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006956 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006957 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006958 if (Idx == 0)
6959 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00006960
Evan Cheng0db9fe62006-04-25 20:13:52 +00006961 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00006962 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006963 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006964 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006965 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006966 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006967 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00006968 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006969 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
6970 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
6971 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006972 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006973 if (Idx == 0)
6974 return Op;
6975
6976 // UNPCKHPD the element to the lowest double word, then movsd.
6977 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6978 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00006979 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006980 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006981 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006982 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006983 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006984 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006985 }
6986
Dan Gohman475871a2008-07-27 21:46:04 +00006987 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006988}
6989
Dan Gohman475871a2008-07-27 21:46:04 +00006990SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006991X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6992 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006993 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006994 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006995 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006996
Dan Gohman475871a2008-07-27 21:46:04 +00006997 SDValue N0 = Op.getOperand(0);
6998 SDValue N1 = Op.getOperand(1);
6999 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00007000
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007001 if (VT.getSizeInBits() == 256)
7002 return SDValue();
7003
Dan Gohman8a55ce42009-09-23 21:02:20 +00007004 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00007005 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007006 unsigned Opc;
7007 if (VT == MVT::v8i16)
7008 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00007009 else if (VT == MVT::v16i8)
7010 Opc = X86ISD::PINSRB;
7011 else
7012 Opc = X86ISD::PINSRB;
7013
Nate Begeman14d12ca2008-02-11 04:19:36 +00007014 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7015 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007016 if (N1.getValueType() != MVT::i32)
7017 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7018 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007019 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00007020 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00007021 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007022 // Bits [7:6] of the constant are the source select. This will always be
7023 // zero here. The DAG Combiner may combine an extract_elt index into these
7024 // bits. For example (insert (extract, 3), 2) could be matched by putting
7025 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00007026 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00007027 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00007028 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00007029 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007030 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00007031 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00007032 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00007033 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00007034 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00007035 // PINSR* works with constant index.
7036 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007037 }
Dan Gohman475871a2008-07-27 21:46:04 +00007038 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007039}
7040
Dan Gohman475871a2008-07-27 21:46:04 +00007041SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007042X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00007043 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007044 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007045
David Greene6b381262011-02-09 15:32:06 +00007046 DebugLoc dl = Op.getDebugLoc();
7047 SDValue N0 = Op.getOperand(0);
7048 SDValue N1 = Op.getOperand(1);
7049 SDValue N2 = Op.getOperand(2);
7050
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007051 // If this is a 256-bit vector result, first extract the 128-bit vector,
7052 // insert the element into the extracted half and then place it back.
7053 if (VT.getSizeInBits() == 256) {
David Greene6b381262011-02-09 15:32:06 +00007054 if (!isa<ConstantSDNode>(N2))
7055 return SDValue();
7056
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007057 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00007058 unsigned NumElems = VT.getVectorNumElements();
7059 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007060 bool Upper = IdxVal >= NumElems/2;
7061 SDValue Ins128Idx = DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32);
7062 SDValue V = Extract128BitVector(N0, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007063
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007064 // Insert the element into the desired half.
7065 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V,
7066 N1, Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : N2);
David Greene6b381262011-02-09 15:32:06 +00007067
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007068 // Insert the changed part back to the 256-bit vector
7069 return Insert128BitVector(N0, V, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007070 }
7071
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007072 if (Subtarget->hasSSE41() || Subtarget->hasAVX())
Nate Begeman14d12ca2008-02-11 04:19:36 +00007073 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7074
Dan Gohman8a55ce42009-09-23 21:02:20 +00007075 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00007076 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00007077
Dan Gohman8a55ce42009-09-23 21:02:20 +00007078 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00007079 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7080 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007081 if (N1.getValueType() != MVT::i32)
7082 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7083 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007084 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00007085 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007086 }
Dan Gohman475871a2008-07-27 21:46:04 +00007087 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007088}
7089
Dan Gohman475871a2008-07-27 21:46:04 +00007090SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007091X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007092 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007093 DebugLoc dl = Op.getDebugLoc();
David Greene2fcdfb42011-02-10 23:11:29 +00007094 EVT OpVT = Op.getValueType();
7095
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007096 // If this is a 256-bit vector result, first insert into a 128-bit
7097 // vector and then insert into the 256-bit vector.
7098 if (OpVT.getSizeInBits() > 128) {
7099 // Insert into a 128-bit vector.
7100 EVT VT128 = EVT::getVectorVT(*Context,
7101 OpVT.getVectorElementType(),
7102 OpVT.getVectorNumElements() / 2);
7103
7104 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7105
7106 // Insert the 128-bit vector.
7107 return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op,
7108 DAG.getConstant(0, MVT::i32),
7109 DAG, dl);
7110 }
7111
Chris Lattnerf172ecd2010-07-04 23:07:25 +00007112 if (Op.getValueType() == MVT::v1i64 &&
7113 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00007114 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00007115
Owen Anderson825b72b2009-08-11 20:47:22 +00007116 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00007117 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
7118 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007119 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00007120 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007121}
7122
David Greene91585092011-01-26 15:38:49 +00007123// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
7124// a simple subregister reference or explicit instructions to grab
7125// upper bits of a vector.
7126SDValue
7127X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
7128 if (Subtarget->hasAVX()) {
David Greenea5f26012011-02-07 19:36:54 +00007129 DebugLoc dl = Op.getNode()->getDebugLoc();
7130 SDValue Vec = Op.getNode()->getOperand(0);
7131 SDValue Idx = Op.getNode()->getOperand(1);
7132
7133 if (Op.getNode()->getValueType(0).getSizeInBits() == 128
7134 && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
7135 return Extract128BitVector(Vec, Idx, DAG, dl);
7136 }
David Greene91585092011-01-26 15:38:49 +00007137 }
7138 return SDValue();
7139}
7140
David Greenecfe33c42011-01-26 19:13:22 +00007141// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
7142// simple superregister reference or explicit instructions to insert
7143// the upper bits of a vector.
7144SDValue
7145X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
7146 if (Subtarget->hasAVX()) {
7147 DebugLoc dl = Op.getNode()->getDebugLoc();
7148 SDValue Vec = Op.getNode()->getOperand(0);
7149 SDValue SubVec = Op.getNode()->getOperand(1);
7150 SDValue Idx = Op.getNode()->getOperand(2);
7151
7152 if (Op.getNode()->getValueType(0).getSizeInBits() == 256
7153 && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
David Greenea5f26012011-02-07 19:36:54 +00007154 return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00007155 }
7156 }
7157 return SDValue();
7158}
7159
Bill Wendling056292f2008-09-16 21:48:12 +00007160// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7161// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7162// one of the above mentioned nodes. It has to be wrapped because otherwise
7163// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7164// be used to form addressing mode. These wrapped nodes will be selected
7165// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00007166SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007167X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007168 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007169
Chris Lattner41621a22009-06-26 19:22:52 +00007170 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7171 // global base reg.
7172 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007173 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007174 CodeModel::Model M = getTargetMachine().getCodeModel();
7175
Chris Lattner4f066492009-07-11 20:29:19 +00007176 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007177 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007178 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007179 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007180 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007181 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007182 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007183
Evan Cheng1606e8e2009-03-13 07:51:59 +00007184 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00007185 CP->getAlignment(),
7186 CP->getOffset(), OpFlag);
7187 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00007188 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007189 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00007190 if (OpFlag) {
7191 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00007192 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007193 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007194 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007195 }
7196
7197 return Result;
7198}
7199
Dan Gohmand858e902010-04-17 15:26:15 +00007200SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007201 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007202
Chris Lattner18c59872009-06-27 04:16:01 +00007203 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7204 // global base reg.
7205 unsigned char OpFlag = 0;
7206 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007207 CodeModel::Model M = getTargetMachine().getCodeModel();
7208
Chris Lattner4f066492009-07-11 20:29:19 +00007209 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007210 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007211 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007212 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007213 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007214 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007215 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007216
Chris Lattner18c59872009-06-27 04:16:01 +00007217 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7218 OpFlag);
7219 DebugLoc DL = JT->getDebugLoc();
7220 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007221
Chris Lattner18c59872009-06-27 04:16:01 +00007222 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00007223 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00007224 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7225 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007226 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007227 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007228
Chris Lattner18c59872009-06-27 04:16:01 +00007229 return Result;
7230}
7231
7232SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007233X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007234 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00007235
Chris Lattner18c59872009-06-27 04:16:01 +00007236 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7237 // global base reg.
7238 unsigned char OpFlag = 0;
7239 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007240 CodeModel::Model M = getTargetMachine().getCodeModel();
7241
Chris Lattner4f066492009-07-11 20:29:19 +00007242 if (Subtarget->isPICStyleRIPRel() &&
Eli Friedman586272d2011-08-11 01:48:05 +00007243 (M == CodeModel::Small || M == CodeModel::Kernel)) {
7244 if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7245 OpFlag = X86II::MO_GOTPCREL;
Chris Lattnere4df7562009-07-09 03:15:51 +00007246 WrapperKind = X86ISD::WrapperRIP;
Eli Friedman586272d2011-08-11 01:48:05 +00007247 } else if (Subtarget->isPICStyleGOT()) {
7248 OpFlag = X86II::MO_GOT;
7249 } else if (Subtarget->isPICStyleStubPIC()) {
7250 OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
7251 } else if (Subtarget->isPICStyleStubNoDynamic()) {
7252 OpFlag = X86II::MO_DARWIN_NONLAZY;
7253 }
Eric Christopherfd179292009-08-27 18:07:15 +00007254
Chris Lattner18c59872009-06-27 04:16:01 +00007255 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00007256
Chris Lattner18c59872009-06-27 04:16:01 +00007257 DebugLoc DL = Op.getDebugLoc();
7258 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007259
7260
Chris Lattner18c59872009-06-27 04:16:01 +00007261 // With PIC, the address is actually $g + Offset.
7262 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00007263 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00007264 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7265 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007266 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007267 Result);
7268 }
Eric Christopherfd179292009-08-27 18:07:15 +00007269
Eli Friedman586272d2011-08-11 01:48:05 +00007270 // For symbols that require a load from a stub to get the address, emit the
7271 // load.
7272 if (isGlobalStubReference(OpFlag))
7273 Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
7274 MachinePointerInfo::getGOT(), false, false, 0);
7275
Chris Lattner18c59872009-06-27 04:16:01 +00007276 return Result;
7277}
7278
Dan Gohman475871a2008-07-27 21:46:04 +00007279SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007280X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00007281 // Create the TargetBlockAddressAddress node.
7282 unsigned char OpFlags =
7283 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00007284 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00007285 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00007286 DebugLoc dl = Op.getDebugLoc();
7287 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
7288 /*isTarget=*/true, OpFlags);
7289
Dan Gohmanf705adb2009-10-30 01:28:02 +00007290 if (Subtarget->isPICStyleRIPRel() &&
7291 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00007292 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7293 else
7294 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00007295
Dan Gohman29cbade2009-11-20 23:18:13 +00007296 // With PIC, the address is actually $g + Offset.
7297 if (isGlobalRelativeToPICBase(OpFlags)) {
7298 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7299 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
7300 Result);
7301 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00007302
7303 return Result;
7304}
7305
7306SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00007307X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00007308 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00007309 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00007310 // Create the TargetGlobalAddress node, folding in the constant
7311 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00007312 unsigned char OpFlags =
7313 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007314 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00007315 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007316 if (OpFlags == X86II::MO_NO_FLAG &&
7317 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00007318 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00007319 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00007320 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007321 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00007322 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00007323 }
Eric Christopherfd179292009-08-27 18:07:15 +00007324
Chris Lattner4f066492009-07-11 20:29:19 +00007325 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007326 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00007327 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7328 else
7329 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00007330
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007331 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00007332 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00007333 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7334 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007335 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007336 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007337
Chris Lattner36c25012009-07-10 07:34:39 +00007338 // For globals that require a load from a stub to get the address, emit the
7339 // load.
7340 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00007341 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00007342 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007343
Dan Gohman6520e202008-10-18 02:06:02 +00007344 // If there was a non-zero offset that we didn't fold, create an explicit
7345 // addition for it.
7346 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00007347 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00007348 DAG.getConstant(Offset, getPointerTy()));
7349
Evan Cheng0db9fe62006-04-25 20:13:52 +00007350 return Result;
7351}
7352
Evan Chengda43bcf2008-09-24 00:05:32 +00007353SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007354X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00007355 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00007356 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007357 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00007358}
7359
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007360static SDValue
7361GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00007362 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00007363 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007364 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007365 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007366 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00007367 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007368 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00007369 GA->getOffset(),
7370 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007371 if (InFlag) {
7372 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00007373 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007374 } else {
7375 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00007376 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007377 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007378
7379 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00007380 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007381
Rafael Espindola15f1b662009-04-24 12:59:40 +00007382 SDValue Flag = Chain.getValue(1);
7383 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007384}
7385
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007386// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00007387static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007388LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007389 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00007390 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00007391 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
7392 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007393 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007394 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007395 InFlag = Chain.getValue(1);
7396
Chris Lattnerb903bed2009-06-26 21:20:29 +00007397 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007398}
7399
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007400// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00007401static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007402LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007403 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00007404 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
7405 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007406}
7407
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007408// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
7409// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00007410static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007411 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00007412 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00007413 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00007414
Chris Lattnerf93b90c2010-09-22 04:39:11 +00007415 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
7416 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
7417 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00007418
Michael J. Spencerec38de22010-10-10 22:04:20 +00007419 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00007420 DAG.getIntPtrConstant(0),
7421 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00007422
Chris Lattnerb903bed2009-06-26 21:20:29 +00007423 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007424 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
7425 // initialexec.
7426 unsigned WrapperKind = X86ISD::Wrapper;
7427 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00007428 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00007429 } else if (is64Bit) {
7430 assert(model == TLSModel::InitialExec);
7431 OperandFlags = X86II::MO_GOTTPOFF;
7432 WrapperKind = X86ISD::WrapperRIP;
7433 } else {
7434 assert(model == TLSModel::InitialExec);
7435 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00007436 }
Eric Christopherfd179292009-08-27 18:07:15 +00007437
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007438 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
7439 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00007440 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00007441 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00007442 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00007443 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00007444
Rafael Espindola9a580232009-02-27 13:37:18 +00007445 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00007446 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00007447 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00007448
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007449 // The address of the thread local variable is the add of the thread
7450 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00007451 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007452}
7453
Dan Gohman475871a2008-07-27 21:46:04 +00007454SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007455X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00007456
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007457 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00007458 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00007459
Eric Christopher30ef0e52010-06-03 04:07:48 +00007460 if (Subtarget->isTargetELF()) {
7461 // TODO: implement the "local dynamic" model
7462 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00007463
Eric Christopher30ef0e52010-06-03 04:07:48 +00007464 // If GV is an alias then use the aliasee for determining
7465 // thread-localness.
7466 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
7467 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007468
7469 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00007470 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00007471
Eric Christopher30ef0e52010-06-03 04:07:48 +00007472 switch (model) {
7473 case TLSModel::GeneralDynamic:
7474 case TLSModel::LocalDynamic: // not implemented
7475 if (Subtarget->is64Bit())
7476 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
7477 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00007478
Eric Christopher30ef0e52010-06-03 04:07:48 +00007479 case TLSModel::InitialExec:
7480 case TLSModel::LocalExec:
7481 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
7482 Subtarget->is64Bit());
7483 }
7484 } else if (Subtarget->isTargetDarwin()) {
7485 // Darwin only has one model of TLS. Lower to that.
7486 unsigned char OpFlag = 0;
7487 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
7488 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007489
Eric Christopher30ef0e52010-06-03 04:07:48 +00007490 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7491 // global base reg.
7492 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
7493 !Subtarget->is64Bit();
7494 if (PIC32)
7495 OpFlag = X86II::MO_TLVP_PIC_BASE;
7496 else
7497 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007498 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00007499 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00007500 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00007501 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00007502 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007503
Eric Christopher30ef0e52010-06-03 04:07:48 +00007504 // With PIC32, the address is actually $g + Offset.
7505 if (PIC32)
7506 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7507 DAG.getNode(X86ISD::GlobalBaseReg,
7508 DebugLoc(), getPointerTy()),
7509 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007510
Eric Christopher30ef0e52010-06-03 04:07:48 +00007511 // Lowering the machine isd will make sure everything is in the right
7512 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007513 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007514 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00007515 SDValue Args[] = { Chain, Offset };
7516 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007517
Eric Christopher30ef0e52010-06-03 04:07:48 +00007518 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
7519 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7520 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007521
Eric Christopher30ef0e52010-06-03 04:07:48 +00007522 // And our return value (tls address) is in the standard call return value
7523 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007524 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
7525 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007526 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007527
Eric Christopher30ef0e52010-06-03 04:07:48 +00007528 assert(false &&
7529 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00007530
Torok Edwinc23197a2009-07-14 16:55:14 +00007531 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00007532 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007533}
7534
Evan Cheng0db9fe62006-04-25 20:13:52 +00007535
Nadav Rotem43012222011-05-11 08:12:09 +00007536/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00007537/// take a 2 x i32 value to shift plus a shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00007538SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00007539 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00007540 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007541 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007542 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007543 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00007544 SDValue ShOpLo = Op.getOperand(0);
7545 SDValue ShOpHi = Op.getOperand(1);
7546 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00007547 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00007548 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00007549 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00007550
Dan Gohman475871a2008-07-27 21:46:04 +00007551 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007552 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007553 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
7554 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007555 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007556 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
7557 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007558 }
Evan Chenge3413162006-01-09 18:33:28 +00007559
Owen Anderson825b72b2009-08-11 20:47:22 +00007560 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
7561 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00007562 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00007563 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00007564
Dan Gohman475871a2008-07-27 21:46:04 +00007565 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00007566 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00007567 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
7568 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00007569
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007570 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007571 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7572 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007573 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007574 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7575 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007576 }
7577
Dan Gohman475871a2008-07-27 21:46:04 +00007578 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00007579 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007580}
Evan Chenga3195e82006-01-12 22:54:21 +00007581
Dan Gohmand858e902010-04-17 15:26:15 +00007582SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
7583 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00007584 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00007585
Dale Johannesen0488fb62010-09-30 23:57:10 +00007586 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007587 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007588
Owen Anderson825b72b2009-08-11 20:47:22 +00007589 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00007590 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00007591
Eli Friedman36df4992009-05-27 00:47:34 +00007592 // These are really Legal; return the operand so the caller accepts it as
7593 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007594 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00007595 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00007596 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00007597 Subtarget->is64Bit()) {
7598 return Op;
7599 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007600
Bruno Cardoso Lopesa511b8e2011-08-09 17:39:01 +00007601 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007602 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007603 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00007604 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007605 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00007606 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00007607 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007608 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007609 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007610 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
7611}
Evan Cheng0db9fe62006-04-25 20:13:52 +00007612
Owen Andersone50ed302009-08-10 22:56:29 +00007613SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007614 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00007615 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007616 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00007617 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00007618 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00007619 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007620 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007621 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00007622 else
Owen Anderson825b72b2009-08-11 20:47:22 +00007623 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007624
Chris Lattner492a43e2010-09-22 01:28:21 +00007625 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007626
Stuart Hastings84be9582011-06-02 15:57:11 +00007627 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
7628 MachineMemOperand *MMO;
7629 if (FI) {
7630 int SSFI = FI->getIndex();
7631 MMO =
7632 DAG.getMachineFunction()
7633 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7634 MachineMemOperand::MOLoad, ByteSize, ByteSize);
7635 } else {
7636 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
7637 StackSlot = StackSlot.getOperand(1);
7638 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007639 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007640 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
7641 X86ISD::FILD, DL,
7642 Tys, Ops, array_lengthof(Ops),
7643 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007644
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007645 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007646 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00007647 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007648
7649 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
7650 // shouldn't be necessary except that RFP cannot be live across
7651 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007652 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007653 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
7654 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007655 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00007656 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007657 SDValue Ops[] = {
7658 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
7659 };
Chris Lattner492a43e2010-09-22 01:28:21 +00007660 MachineMemOperand *MMO =
7661 DAG.getMachineFunction()
7662 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007663 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007664
Chris Lattner492a43e2010-09-22 01:28:21 +00007665 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
7666 Ops, array_lengthof(Ops),
7667 Op.getValueType(), MMO);
7668 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007669 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007670 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007671 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007672
Evan Cheng0db9fe62006-04-25 20:13:52 +00007673 return Result;
7674}
7675
Bill Wendling8b8a6362009-01-17 03:56:04 +00007676// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007677SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
7678 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00007679 // This algorithm is not obvious. Here it is in C code, more or less:
7680 /*
7681 double uint64_to_double( uint32_t hi, uint32_t lo ) {
7682 static const __m128i exp = { 0x4330000045300000ULL, 0 };
7683 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00007684
Bill Wendling8b8a6362009-01-17 03:56:04 +00007685 // Copy ints to xmm registers.
7686 __m128i xh = _mm_cvtsi32_si128( hi );
7687 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00007688
Bill Wendling8b8a6362009-01-17 03:56:04 +00007689 // Combine into low half of a single xmm register.
7690 __m128i x = _mm_unpacklo_epi32( xh, xl );
7691 __m128d d;
7692 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00007693
Bill Wendling8b8a6362009-01-17 03:56:04 +00007694 // Merge in appropriate exponents to give the integer bits the right
7695 // magnitude.
7696 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00007697
Bill Wendling8b8a6362009-01-17 03:56:04 +00007698 // Subtract away the biases to deal with the IEEE-754 double precision
7699 // implicit 1.
7700 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00007701
Bill Wendling8b8a6362009-01-17 03:56:04 +00007702 // All conversions up to here are exact. The correctly rounded result is
7703 // calculated using the current rounding mode using the following
7704 // horizontal add.
7705 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
7706 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
7707 // store doesn't really need to be here (except
7708 // maybe to zero the other double)
7709 return sd;
7710 }
7711 */
Dale Johannesen040225f2008-10-21 23:07:49 +00007712
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007713 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00007714 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00007715
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007716 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00007717 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00007718 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
7719 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
7720 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
7721 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007722 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007723 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007724
Bill Wendling8b8a6362009-01-17 03:56:04 +00007725 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00007726 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007727 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00007728 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007729 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007730 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007731 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007732
Owen Anderson825b72b2009-08-11 20:47:22 +00007733 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7734 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007735 Op.getOperand(0),
7736 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007737 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7738 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007739 Op.getOperand(0),
7740 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007741 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
7742 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00007743 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007744 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007745 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007746 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00007747 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00007748 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007749 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007750 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007751
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007752 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00007753 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00007754 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
7755 DAG.getUNDEF(MVT::v2f64), ShufMask);
7756 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
7757 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007758 DAG.getIntPtrConstant(0));
7759}
7760
Bill Wendling8b8a6362009-01-17 03:56:04 +00007761// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007762SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
7763 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007764 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007765 // FP constant to bias correct the final result.
7766 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00007767 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007768
7769 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00007770 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00007771 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007772
Eli Friedmanf3704762011-08-29 21:15:46 +00007773 // Zero out the upper parts of the register.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00007774 Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget->hasXMMInt(),
7775 DAG);
Eli Friedmanf3704762011-08-29 21:15:46 +00007776
Owen Anderson825b72b2009-08-11 20:47:22 +00007777 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007778 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007779 DAG.getIntPtrConstant(0));
7780
7781 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007782 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007783 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007784 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007785 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007786 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007787 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007788 MVT::v2f64, Bias)));
7789 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007790 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007791 DAG.getIntPtrConstant(0));
7792
7793 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007794 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007795
7796 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00007797 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00007798
Owen Anderson825b72b2009-08-11 20:47:22 +00007799 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007800 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00007801 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00007802 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007803 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00007804 }
7805
7806 // Handle final rounding.
7807 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00007808}
7809
Dan Gohmand858e902010-04-17 15:26:15 +00007810SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
7811 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00007812 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007813 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007814
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007815 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00007816 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
7817 // the optimization here.
7818 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00007819 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00007820
Owen Andersone50ed302009-08-10 22:56:29 +00007821 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007822 EVT DstVT = Op.getValueType();
7823 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007824 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007825 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007826 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00007827
7828 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00007829 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007830 if (SrcVT == MVT::i32) {
7831 SDValue WordOff = DAG.getConstant(4, getPointerTy());
7832 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
7833 getPointerTy(), StackSlot, WordOff);
7834 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007835 StackSlot, MachinePointerInfo(),
7836 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007837 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007838 OffsetSlot, MachinePointerInfo(),
7839 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007840 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
7841 return Fild;
7842 }
7843
7844 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
7845 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007846 StackSlot, MachinePointerInfo(),
7847 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007848 // For i64 source, we need to add the appropriate power of 2 if the input
7849 // was negative. This is the same as the optimization in
7850 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
7851 // we must be careful to do the computation in x87 extended precision, not
7852 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00007853 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
7854 MachineMemOperand *MMO =
7855 DAG.getMachineFunction()
7856 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7857 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007858
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007859 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
7860 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007861 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
7862 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007863
7864 APInt FF(32, 0x5F800000ULL);
7865
7866 // Check whether the sign bit is set.
7867 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
7868 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
7869 ISD::SETLT);
7870
7871 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
7872 SDValue FudgePtr = DAG.getConstantPool(
7873 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
7874 getPointerTy());
7875
7876 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
7877 SDValue Zero = DAG.getIntPtrConstant(0);
7878 SDValue Four = DAG.getIntPtrConstant(4);
7879 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
7880 Zero, Four);
7881 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
7882
7883 // Load the value out, extending it from f32 to f80.
7884 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00007885 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00007886 FudgePtr, MachinePointerInfo::getConstantPool(),
7887 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007888 // Extend everything to 80 bits to force it to be done on x87.
7889 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
7890 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007891}
7892
Dan Gohman475871a2008-07-27 21:46:04 +00007893std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00007894FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00007895 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00007896
Owen Andersone50ed302009-08-10 22:56:29 +00007897 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00007898
7899 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007900 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
7901 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00007902 }
7903
Owen Anderson825b72b2009-08-11 20:47:22 +00007904 assert(DstTy.getSimpleVT() <= MVT::i64 &&
7905 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00007906 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00007907
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007908 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007909 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00007910 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007911 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00007912 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007913 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00007914 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007915 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007916
Evan Cheng87c89352007-10-15 20:11:21 +00007917 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
7918 // stack slot.
7919 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00007920 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00007921 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007922 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00007923
Michael J. Spencerec38de22010-10-10 22:04:20 +00007924
7925
Evan Cheng0db9fe62006-04-25 20:13:52 +00007926 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00007927 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007928 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007929 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
7930 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
7931 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007932 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007933
Dan Gohman475871a2008-07-27 21:46:04 +00007934 SDValue Chain = DAG.getEntryNode();
7935 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00007936 EVT TheVT = Op.getOperand(0).getValueType();
7937 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007938 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00007939 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007940 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007941 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007942 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00007943 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00007944 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00007945 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00007946
Chris Lattner492a43e2010-09-22 01:28:21 +00007947 MachineMemOperand *MMO =
7948 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7949 MachineMemOperand::MOLoad, MemSize, MemSize);
7950 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
7951 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007952 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00007953 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007954 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7955 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007956
Chris Lattner07290932010-09-22 01:05:16 +00007957 MachineMemOperand *MMO =
7958 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7959 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007960
Evan Cheng0db9fe62006-04-25 20:13:52 +00007961 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00007962 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00007963 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
7964 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00007965
Chris Lattner27a6c732007-11-24 07:07:01 +00007966 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007967}
7968
Dan Gohmand858e902010-04-17 15:26:15 +00007969SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
7970 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00007971 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007972 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007973
Eli Friedman948e95a2009-05-23 09:59:16 +00007974 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00007975 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00007976 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
7977 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00007978
Chris Lattner27a6c732007-11-24 07:07:01 +00007979 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007980 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007981 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00007982}
7983
Dan Gohmand858e902010-04-17 15:26:15 +00007984SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
7985 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00007986 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
7987 SDValue FIST = Vals.first, StackSlot = Vals.second;
7988 assert(FIST.getNode() && "Unexpected failure");
7989
7990 // Load the result.
7991 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007992 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007993}
7994
Dan Gohmand858e902010-04-17 15:26:15 +00007995SDValue X86TargetLowering::LowerFABS(SDValue Op,
7996 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007997 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007998 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007999 EVT VT = Op.getValueType();
8000 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008001 if (VT.isVector())
8002 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00008003 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00008004 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008005 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00008006 CV.push_back(C);
8007 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008008 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008009 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00008010 CV.push_back(C);
8011 CV.push_back(C);
8012 CV.push_back(C);
8013 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008014 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00008015 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008016 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008017 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008018 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00008019 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008020 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008021}
8022
Dan Gohmand858e902010-04-17 15:26:15 +00008023SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00008024 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008025 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008026 EVT VT = Op.getValueType();
8027 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00008028 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00008029 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00008030 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00008031 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008032 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00008033 CV.push_back(C);
8034 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008035 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008036 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00008037 CV.push_back(C);
8038 CV.push_back(C);
8039 CV.push_back(C);
8040 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008041 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00008042 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008043 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008044 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008045 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00008046 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00008047 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008048 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008049 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008050 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008051 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008052 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00008053 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008054 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00008055 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008056}
8057
Dan Gohmand858e902010-04-17 15:26:15 +00008058SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00008059 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00008060 SDValue Op0 = Op.getOperand(0);
8061 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008062 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008063 EVT VT = Op.getValueType();
8064 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00008065
8066 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00008067 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00008068 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00008069 SrcVT = VT;
8070 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00008071 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00008072 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00008073 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00008074 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00008075 }
8076
8077 // At this point the operands and the result should have the same
8078 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00008079
Evan Cheng68c47cb2007-01-05 07:55:56 +00008080 // First get the sign bit of second operand.
8081 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00008082 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008083 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
8084 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00008085 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008086 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
8087 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8088 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8089 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00008090 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00008091 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008092 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008093 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008094 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00008095 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008096 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008097
8098 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00008099 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008100 // Op0 is MVT::f32, Op1 is MVT::f64.
8101 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
8102 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
8103 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008104 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00008105 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00008106 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00008107 }
8108
Evan Cheng73d6cf12007-01-05 21:37:56 +00008109 // Clear first operand sign bit.
8110 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00008111 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008112 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
8113 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00008114 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008115 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
8116 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8117 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8118 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00008119 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00008120 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008121 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008122 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008123 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00008124 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008125 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00008126
8127 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00008128 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008129}
8130
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00008131SDValue X86TargetLowering::LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) const {
8132 SDValue N0 = Op.getOperand(0);
8133 DebugLoc dl = Op.getDebugLoc();
8134 EVT VT = Op.getValueType();
8135
8136 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
8137 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
8138 DAG.getConstant(1, VT));
8139 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
8140}
8141
Dan Gohman076aee32009-03-04 19:44:21 +00008142/// Emit nodes that will be selected as "test Op0,Op0", or something
8143/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00008144SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00008145 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00008146 DebugLoc dl = Op.getDebugLoc();
8147
Dan Gohman31125812009-03-07 01:58:32 +00008148 // CF and OF aren't always set the way we want. Determine which
8149 // of these we need.
8150 bool NeedCF = false;
8151 bool NeedOF = false;
8152 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008153 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00008154 case X86::COND_A: case X86::COND_AE:
8155 case X86::COND_B: case X86::COND_BE:
8156 NeedCF = true;
8157 break;
8158 case X86::COND_G: case X86::COND_GE:
8159 case X86::COND_L: case X86::COND_LE:
8160 case X86::COND_O: case X86::COND_NO:
8161 NeedOF = true;
8162 break;
Dan Gohman31125812009-03-07 01:58:32 +00008163 }
8164
Dan Gohman076aee32009-03-04 19:44:21 +00008165 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00008166 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
8167 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008168 if (Op.getResNo() != 0 || NeedOF || NeedCF)
8169 // Emit a CMP with 0, which is the TEST pattern.
8170 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
8171 DAG.getConstant(0, Op.getValueType()));
8172
8173 unsigned Opcode = 0;
8174 unsigned NumOperands = 0;
8175 switch (Op.getNode()->getOpcode()) {
8176 case ISD::ADD:
8177 // Due to an isel shortcoming, be conservative if this add is likely to be
8178 // selected as part of a load-modify-store instruction. When the root node
8179 // in a match is a store, isel doesn't know how to remap non-chain non-flag
8180 // uses of other nodes in the match, such as the ADD in this case. This
8181 // leads to the ADD being left around and reselected, with the result being
8182 // two adds in the output. Alas, even if none our users are stores, that
8183 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
8184 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
8185 // climbing the DAG back to the root, and it doesn't seem to be worth the
8186 // effort.
8187 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00008188 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008189 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
8190 goto default_case;
8191
8192 if (ConstantSDNode *C =
8193 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
8194 // An add of one will be selected as an INC.
8195 if (C->getAPIntValue() == 1) {
8196 Opcode = X86ISD::INC;
8197 NumOperands = 1;
8198 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00008199 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008200
8201 // An add of negative one (subtract of one) will be selected as a DEC.
8202 if (C->getAPIntValue().isAllOnesValue()) {
8203 Opcode = X86ISD::DEC;
8204 NumOperands = 1;
8205 break;
8206 }
Dan Gohman076aee32009-03-04 19:44:21 +00008207 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008208
8209 // Otherwise use a regular EFLAGS-setting add.
8210 Opcode = X86ISD::ADD;
8211 NumOperands = 2;
8212 break;
8213 case ISD::AND: {
8214 // If the primary and result isn't used, don't bother using X86ISD::AND,
8215 // because a TEST instruction will be better.
8216 bool NonFlagUse = false;
8217 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8218 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
8219 SDNode *User = *UI;
8220 unsigned UOpNo = UI.getOperandNo();
8221 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
8222 // Look pass truncate.
8223 UOpNo = User->use_begin().getOperandNo();
8224 User = *User->use_begin();
8225 }
8226
8227 if (User->getOpcode() != ISD::BRCOND &&
8228 User->getOpcode() != ISD::SETCC &&
8229 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
8230 NonFlagUse = true;
8231 break;
8232 }
Dan Gohman076aee32009-03-04 19:44:21 +00008233 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008234
8235 if (!NonFlagUse)
8236 break;
8237 }
8238 // FALL THROUGH
8239 case ISD::SUB:
8240 case ISD::OR:
8241 case ISD::XOR:
8242 // Due to the ISEL shortcoming noted above, be conservative if this op is
8243 // likely to be selected as part of a load-modify-store instruction.
8244 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8245 UE = Op.getNode()->use_end(); UI != UE; ++UI)
8246 if (UI->getOpcode() == ISD::STORE)
8247 goto default_case;
8248
8249 // Otherwise use a regular EFLAGS-setting instruction.
8250 switch (Op.getNode()->getOpcode()) {
8251 default: llvm_unreachable("unexpected operator!");
8252 case ISD::SUB: Opcode = X86ISD::SUB; break;
8253 case ISD::OR: Opcode = X86ISD::OR; break;
8254 case ISD::XOR: Opcode = X86ISD::XOR; break;
8255 case ISD::AND: Opcode = X86ISD::AND; break;
8256 }
8257
8258 NumOperands = 2;
8259 break;
8260 case X86ISD::ADD:
8261 case X86ISD::SUB:
8262 case X86ISD::INC:
8263 case X86ISD::DEC:
8264 case X86ISD::OR:
8265 case X86ISD::XOR:
8266 case X86ISD::AND:
8267 return SDValue(Op.getNode(), 1);
8268 default:
8269 default_case:
8270 break;
Dan Gohman076aee32009-03-04 19:44:21 +00008271 }
8272
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008273 if (Opcode == 0)
8274 // Emit a CMP with 0, which is the TEST pattern.
8275 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
8276 DAG.getConstant(0, Op.getValueType()));
8277
8278 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
8279 SmallVector<SDValue, 4> Ops;
8280 for (unsigned i = 0; i != NumOperands; ++i)
8281 Ops.push_back(Op.getOperand(i));
8282
8283 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
8284 DAG.ReplaceAllUsesWith(Op, New);
8285 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00008286}
8287
8288/// Emit nodes that will be selected as "cmp Op0,Op1", or something
8289/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00008290SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00008291 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00008292 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
8293 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00008294 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00008295
8296 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00008297 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00008298}
8299
Evan Chengd40d03e2010-01-06 19:38:29 +00008300/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
8301/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00008302SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
8303 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00008304 SDValue Op0 = And.getOperand(0);
8305 SDValue Op1 = And.getOperand(1);
8306 if (Op0.getOpcode() == ISD::TRUNCATE)
8307 Op0 = Op0.getOperand(0);
8308 if (Op1.getOpcode() == ISD::TRUNCATE)
8309 Op1 = Op1.getOperand(0);
8310
Evan Chengd40d03e2010-01-06 19:38:29 +00008311 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00008312 if (Op1.getOpcode() == ISD::SHL)
8313 std::swap(Op0, Op1);
8314 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00008315 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
8316 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00008317 // If we looked past a truncate, check that it's only truncating away
8318 // known zeros.
8319 unsigned BitWidth = Op0.getValueSizeInBits();
8320 unsigned AndBitWidth = And.getValueSizeInBits();
8321 if (BitWidth > AndBitWidth) {
8322 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
8323 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
8324 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
8325 return SDValue();
8326 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008327 LHS = Op1;
8328 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00008329 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008330 } else if (Op1.getOpcode() == ISD::Constant) {
8331 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
8332 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00008333 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
8334 LHS = AndLHS.getOperand(0);
8335 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008336 }
Evan Chengd40d03e2010-01-06 19:38:29 +00008337 }
Evan Cheng0488db92007-09-25 01:57:46 +00008338
Evan Chengd40d03e2010-01-06 19:38:29 +00008339 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00008340 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00008341 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00008342 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00008343 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00008344 // Also promote i16 to i32 for performance / code size reason.
8345 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00008346 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00008347 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00008348
Evan Chengd40d03e2010-01-06 19:38:29 +00008349 // If the operand types disagree, extend the shift amount to match. Since
8350 // BT ignores high bits (like shifts) we can use anyextend.
8351 if (LHS.getValueType() != RHS.getValueType())
8352 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008353
Evan Chengd40d03e2010-01-06 19:38:29 +00008354 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
8355 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
8356 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8357 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00008358 }
8359
Evan Cheng54de3ea2010-01-05 06:52:31 +00008360 return SDValue();
8361}
8362
Dan Gohmand858e902010-04-17 15:26:15 +00008363SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Duncan Sands28b77e92011-09-06 19:07:46 +00008364
8365 if (Op.getValueType().isVector()) return LowerVSETCC(Op, DAG);
8366
Evan Cheng54de3ea2010-01-05 06:52:31 +00008367 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
8368 SDValue Op0 = Op.getOperand(0);
8369 SDValue Op1 = Op.getOperand(1);
8370 DebugLoc dl = Op.getDebugLoc();
8371 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
8372
8373 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00008374 // Lower (X & (1 << N)) == 0 to BT(X, N).
8375 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
8376 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Andrew Trickf6c39412011-03-23 23:11:02 +00008377 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00008378 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00008379 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00008380 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
8381 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
8382 if (NewSetCC.getNode())
8383 return NewSetCC;
8384 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00008385
Chris Lattner481eebc2010-12-19 21:23:48 +00008386 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
8387 // these.
8388 if (Op1.getOpcode() == ISD::Constant &&
Andrew Trickf6c39412011-03-23 23:11:02 +00008389 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
Evan Cheng2c755ba2010-02-27 07:36:59 +00008390 cast<ConstantSDNode>(Op1)->isNullValue()) &&
8391 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008392
Chris Lattner481eebc2010-12-19 21:23:48 +00008393 // If the input is a setcc, then reuse the input setcc or use a new one with
8394 // the inverted condition.
8395 if (Op0.getOpcode() == X86ISD::SETCC) {
8396 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
8397 bool Invert = (CC == ISD::SETNE) ^
8398 cast<ConstantSDNode>(Op1)->isNullValue();
8399 if (!Invert) return Op0;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008400
Evan Cheng2c755ba2010-02-27 07:36:59 +00008401 CCode = X86::GetOppositeBranchCondition(CCode);
Chris Lattner481eebc2010-12-19 21:23:48 +00008402 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8403 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
8404 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008405 }
8406
Evan Chenge5b51ac2010-04-17 06:13:15 +00008407 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00008408 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008409 if (X86CC == X86::COND_INVALID)
8410 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008411
Chris Lattnerc19d1c32010-12-19 22:08:31 +00008412 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00008413 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnerc19d1c32010-12-19 22:08:31 +00008414 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
Evan Cheng0488db92007-09-25 01:57:46 +00008415}
8416
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008417// Lower256IntVETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
8418// ones, and then concatenate the result back.
8419static SDValue Lower256IntVETCC(SDValue Op, SelectionDAG &DAG) {
8420 EVT VT = Op.getValueType();
8421
Duncan Sands28b77e92011-09-06 19:07:46 +00008422 assert(VT.getSizeInBits() == 256 && Op.getOpcode() == ISD::SETCC &&
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008423 "Unsupported value type for operation");
8424
8425 int NumElems = VT.getVectorNumElements();
8426 DebugLoc dl = Op.getDebugLoc();
8427 SDValue CC = Op.getOperand(2);
8428 SDValue Idx0 = DAG.getConstant(0, MVT::i32);
8429 SDValue Idx1 = DAG.getConstant(NumElems/2, MVT::i32);
8430
8431 // Extract the LHS vectors
8432 SDValue LHS = Op.getOperand(0);
8433 SDValue LHS1 = Extract128BitVector(LHS, Idx0, DAG, dl);
8434 SDValue LHS2 = Extract128BitVector(LHS, Idx1, DAG, dl);
8435
8436 // Extract the RHS vectors
8437 SDValue RHS = Op.getOperand(1);
8438 SDValue RHS1 = Extract128BitVector(RHS, Idx0, DAG, dl);
8439 SDValue RHS2 = Extract128BitVector(RHS, Idx1, DAG, dl);
8440
8441 // Issue the operation on the smaller types and concatenate the result back
8442 MVT EltVT = VT.getVectorElementType().getSimpleVT();
8443 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
8444 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
8445 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
8446 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
8447}
8448
8449
Dan Gohmand858e902010-04-17 15:26:15 +00008450SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008451 SDValue Cond;
8452 SDValue Op0 = Op.getOperand(0);
8453 SDValue Op1 = Op.getOperand(1);
8454 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00008455 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00008456 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
8457 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008458 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00008459
8460 if (isFP) {
8461 unsigned SSECC = 8;
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008462 EVT EltVT = Op0.getValueType().getVectorElementType();
8463 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
8464
8465 unsigned Opc = EltVT == MVT::f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00008466 bool Swap = false;
8467
Bruno Cardoso Lopes8e03a822011-09-12 19:30:40 +00008468 // SSE Condition code mapping:
8469 // 0 - EQ
8470 // 1 - LT
8471 // 2 - LE
8472 // 3 - UNORD
8473 // 4 - NEQ
8474 // 5 - NLT
8475 // 6 - NLE
8476 // 7 - ORD
Nate Begeman30a0de92008-07-17 16:51:19 +00008477 switch (SetCCOpcode) {
8478 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00008479 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00008480 case ISD::SETEQ: SSECC = 0; break;
Bruno Cardoso Lopes8e03a822011-09-12 19:30:40 +00008481 case ISD::SETOGT:
8482 case ISD::SETGT: Swap = true; // Fallthrough
Bruno Cardoso Lopes457d53d2011-09-12 21:24:07 +00008483 case ISD::SETLT:
8484 case ISD::SETOLT: SSECC = 1; break;
8485 case ISD::SETOGE:
8486 case ISD::SETGE: Swap = true; // Fallthrough
Nate Begeman30a0de92008-07-17 16:51:19 +00008487 case ISD::SETLE:
8488 case ISD::SETOLE: SSECC = 2; break;
8489 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00008490 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00008491 case ISD::SETNE: SSECC = 4; break;
8492 case ISD::SETULE: Swap = true;
8493 case ISD::SETUGE: SSECC = 5; break;
8494 case ISD::SETULT: Swap = true;
8495 case ISD::SETUGT: SSECC = 6; break;
8496 case ISD::SETO: SSECC = 7; break;
8497 }
8498 if (Swap)
8499 std::swap(Op0, Op1);
8500
Nate Begemanfb8ead02008-07-25 19:05:58 +00008501 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00008502 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00008503 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00008504 SDValue UNORD, EQ;
Bruno Cardoso Lopes809f17f2011-09-13 19:33:00 +00008505 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
8506 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00008507 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00008508 }
8509 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00008510 SDValue ORD, NEQ;
Bruno Cardoso Lopes809f17f2011-09-13 19:33:00 +00008511 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
8512 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00008513 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00008514 }
Torok Edwinc23197a2009-07-14 16:55:14 +00008515 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00008516 }
8517 // Handle all other FP comparisons here.
Bruno Cardoso Lopes809f17f2011-09-13 19:33:00 +00008518 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00008519 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008520
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008521 // Break 256-bit integer vector compare into smaller ones.
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008522 if (!isFP && VT.getSizeInBits() == 256)
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008523 return Lower256IntVETCC(Op, DAG);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008524
Nate Begeman30a0de92008-07-17 16:51:19 +00008525 // We are handling one of the integer comparisons here. Since SSE only has
8526 // GT and EQ comparisons for integer, swapping operands and multiple
8527 // operations may be required for some comparisons.
8528 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
8529 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00008530
Owen Anderson825b72b2009-08-11 20:47:22 +00008531 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00008532 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008533 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008534 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008535 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
8536 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00008537 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008538
Nate Begeman30a0de92008-07-17 16:51:19 +00008539 switch (SetCCOpcode) {
8540 default: break;
8541 case ISD::SETNE: Invert = true;
8542 case ISD::SETEQ: Opc = EQOpc; break;
8543 case ISD::SETLT: Swap = true;
8544 case ISD::SETGT: Opc = GTOpc; break;
8545 case ISD::SETGE: Swap = true;
8546 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
8547 case ISD::SETULT: Swap = true;
8548 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
8549 case ISD::SETUGE: Swap = true;
8550 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
8551 }
8552 if (Swap)
8553 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008554
Nate Begeman30a0de92008-07-17 16:51:19 +00008555 // Since SSE has no unsigned integer comparisons, we need to flip the sign
8556 // bits of the inputs before performing those operations.
8557 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00008558 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00008559 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
8560 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00008561 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00008562 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
8563 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00008564 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
8565 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00008566 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008567
Dale Johannesenace16102009-02-03 19:33:06 +00008568 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00008569
8570 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00008571 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00008572 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00008573
Nate Begeman30a0de92008-07-17 16:51:19 +00008574 return Result;
8575}
Evan Cheng0488db92007-09-25 01:57:46 +00008576
Evan Cheng370e5342008-12-03 08:38:43 +00008577// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00008578static bool isX86LogicalCmp(SDValue Op) {
8579 unsigned Opc = Op.getNode()->getOpcode();
8580 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
8581 return true;
8582 if (Op.getResNo() == 1 &&
8583 (Opc == X86ISD::ADD ||
8584 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00008585 Opc == X86ISD::ADC ||
8586 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00008587 Opc == X86ISD::SMUL ||
8588 Opc == X86ISD::UMUL ||
8589 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00008590 Opc == X86ISD::DEC ||
8591 Opc == X86ISD::OR ||
8592 Opc == X86ISD::XOR ||
8593 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00008594 return true;
8595
Chris Lattner9637d5b2010-12-05 07:49:54 +00008596 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
8597 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008598
Dan Gohman076aee32009-03-04 19:44:21 +00008599 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00008600}
8601
Chris Lattnera2b56002010-12-05 01:23:24 +00008602static bool isZero(SDValue V) {
8603 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8604 return C && C->isNullValue();
8605}
8606
Chris Lattner96908b12010-12-05 02:00:51 +00008607static bool isAllOnes(SDValue V) {
8608 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8609 return C && C->isAllOnesValue();
8610}
8611
Dan Gohmand858e902010-04-17 15:26:15 +00008612SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008613 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008614 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00008615 SDValue Op1 = Op.getOperand(1);
8616 SDValue Op2 = Op.getOperand(2);
8617 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008618 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00008619
Dan Gohman1a492952009-10-20 16:22:37 +00008620 if (Cond.getOpcode() == ISD::SETCC) {
8621 SDValue NewCond = LowerSETCC(Cond, DAG);
8622 if (NewCond.getNode())
8623 Cond = NewCond;
8624 }
Evan Cheng734503b2006-09-11 02:19:56 +00008625
Chris Lattnera2b56002010-12-05 01:23:24 +00008626 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008627 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00008628 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008629 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008630 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00008631 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
8632 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008633 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008634
Chris Lattnera2b56002010-12-05 01:23:24 +00008635 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008636
8637 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00008638 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
8639 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00008640
8641 SDValue CmpOp0 = Cmp.getOperand(0);
8642 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
8643 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008644
Chris Lattner96908b12010-12-05 02:00:51 +00008645 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00008646 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8647 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008648
Chris Lattner96908b12010-12-05 02:00:51 +00008649 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
8650 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008651
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008652 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00008653 if (N2C == 0 || !N2C->isNullValue())
8654 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
8655 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008656 }
8657 }
8658
Chris Lattnera2b56002010-12-05 01:23:24 +00008659 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00008660 if (Cond.getOpcode() == ISD::AND &&
8661 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8662 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008663 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008664 Cond = Cond.getOperand(0);
8665 }
8666
Evan Cheng3f41d662007-10-08 22:16:29 +00008667 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8668 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008669 if (Cond.getOpcode() == X86ISD::SETCC ||
8670 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008671 CC = Cond.getOperand(0);
8672
Dan Gohman475871a2008-07-27 21:46:04 +00008673 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008674 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00008675 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008676
Evan Cheng3f41d662007-10-08 22:16:29 +00008677 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008678 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00008679 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00008680 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00008681
Chris Lattnerd1980a52009-03-12 06:52:53 +00008682 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
8683 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00008684 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008685 addTest = false;
8686 }
8687 }
8688
8689 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008690 // Look pass the truncate.
8691 if (Cond.getOpcode() == ISD::TRUNCATE)
8692 Cond = Cond.getOperand(0);
8693
8694 // We know the result of AND is compared against zero. Try to match
8695 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008696 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00008697 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00008698 if (NewSetCC.getNode()) {
8699 CC = NewSetCC.getOperand(0);
8700 Cond = NewSetCC.getOperand(1);
8701 addTest = false;
8702 }
8703 }
8704 }
8705
8706 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008707 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008708 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008709 }
8710
Benjamin Kramere915ff32010-12-22 23:09:28 +00008711 // a < b ? -1 : 0 -> RES = ~setcc_carry
8712 // a < b ? 0 : -1 -> RES = setcc_carry
8713 // a >= b ? -1 : 0 -> RES = setcc_carry
8714 // a >= b ? 0 : -1 -> RES = ~setcc_carry
8715 if (Cond.getOpcode() == X86ISD::CMP) {
8716 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
8717
8718 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
8719 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
8720 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8721 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
8722 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
8723 return DAG.getNOT(DL, Res, Res.getValueType());
8724 return Res;
8725 }
8726 }
8727
Evan Cheng0488db92007-09-25 01:57:46 +00008728 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
8729 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008730 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008731 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00008732 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00008733}
8734
Evan Cheng370e5342008-12-03 08:38:43 +00008735// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
8736// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
8737// from the AND / OR.
8738static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
8739 Opc = Op.getOpcode();
8740 if (Opc != ISD::OR && Opc != ISD::AND)
8741 return false;
8742 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8743 Op.getOperand(0).hasOneUse() &&
8744 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
8745 Op.getOperand(1).hasOneUse());
8746}
8747
Evan Cheng961d6d42009-02-02 08:19:07 +00008748// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
8749// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00008750static bool isXor1OfSetCC(SDValue Op) {
8751 if (Op.getOpcode() != ISD::XOR)
8752 return false;
8753 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8754 if (N1C && N1C->getAPIntValue() == 1) {
8755 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8756 Op.getOperand(0).hasOneUse();
8757 }
8758 return false;
8759}
8760
Dan Gohmand858e902010-04-17 15:26:15 +00008761SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008762 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008763 SDValue Chain = Op.getOperand(0);
8764 SDValue Cond = Op.getOperand(1);
8765 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008766 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008767 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00008768
Dan Gohman1a492952009-10-20 16:22:37 +00008769 if (Cond.getOpcode() == ISD::SETCC) {
8770 SDValue NewCond = LowerSETCC(Cond, DAG);
8771 if (NewCond.getNode())
8772 Cond = NewCond;
8773 }
Chris Lattnere55484e2008-12-25 05:34:37 +00008774#if 0
8775 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00008776 else if (Cond.getOpcode() == X86ISD::ADD ||
8777 Cond.getOpcode() == X86ISD::SUB ||
8778 Cond.getOpcode() == X86ISD::SMUL ||
8779 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00008780 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00008781#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00008782
Evan Chengad9c0a32009-12-15 00:53:42 +00008783 // Look pass (and (setcc_carry (cmp ...)), 1).
8784 if (Cond.getOpcode() == ISD::AND &&
8785 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8786 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008787 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008788 Cond = Cond.getOperand(0);
8789 }
8790
Evan Cheng3f41d662007-10-08 22:16:29 +00008791 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8792 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008793 if (Cond.getOpcode() == X86ISD::SETCC ||
8794 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008795 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008796
Dan Gohman475871a2008-07-27 21:46:04 +00008797 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008798 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00008799 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00008800 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00008801 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008802 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00008803 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00008804 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008805 default: break;
8806 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00008807 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00008808 // These can only come from an arithmetic instruction with overflow,
8809 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008810 Cond = Cond.getNode()->getOperand(1);
8811 addTest = false;
8812 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008813 }
Evan Cheng0488db92007-09-25 01:57:46 +00008814 }
Evan Cheng370e5342008-12-03 08:38:43 +00008815 } else {
8816 unsigned CondOpc;
8817 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
8818 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00008819 if (CondOpc == ISD::OR) {
8820 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
8821 // two branches instead of an explicit OR instruction with a
8822 // separate test.
8823 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008824 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00008825 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008826 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008827 Chain, Dest, CC, Cmp);
8828 CC = Cond.getOperand(1).getOperand(0);
8829 Cond = Cmp;
8830 addTest = false;
8831 }
8832 } else { // ISD::AND
8833 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
8834 // two branches instead of an explicit AND instruction with a
8835 // separate test. However, we only do this if this block doesn't
8836 // have a fall-through edge, because this requires an explicit
8837 // jmp when the condition is false.
8838 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008839 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00008840 Op.getNode()->hasOneUse()) {
8841 X86::CondCode CCode =
8842 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8843 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008844 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00008845 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00008846 // Look for an unconditional branch following this conditional branch.
8847 // We need this because we need to reverse the successors in order
8848 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00008849 if (User->getOpcode() == ISD::BR) {
8850 SDValue FalseBB = User->getOperand(1);
8851 SDNode *NewBR =
8852 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00008853 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00008854 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00008855 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00008856
Dale Johannesene4d209d2009-02-03 20:21:25 +00008857 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008858 Chain, Dest, CC, Cmp);
8859 X86::CondCode CCode =
8860 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
8861 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008862 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00008863 Cond = Cmp;
8864 addTest = false;
8865 }
8866 }
Dan Gohman279c22e2008-10-21 03:29:32 +00008867 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00008868 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
8869 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
8870 // It should be transformed during dag combiner except when the condition
8871 // is set by a arithmetics with overflow node.
8872 X86::CondCode CCode =
8873 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8874 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008875 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00008876 Cond = Cond.getOperand(0).getOperand(1);
8877 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00008878 }
Evan Cheng0488db92007-09-25 01:57:46 +00008879 }
8880
8881 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008882 // Look pass the truncate.
8883 if (Cond.getOpcode() == ISD::TRUNCATE)
8884 Cond = Cond.getOperand(0);
8885
8886 // We know the result of AND is compared against zero. Try to match
8887 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008888 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008889 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
8890 if (NewSetCC.getNode()) {
8891 CC = NewSetCC.getOperand(0);
8892 Cond = NewSetCC.getOperand(1);
8893 addTest = false;
8894 }
8895 }
8896 }
8897
8898 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008899 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008900 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008901 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00008902 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00008903 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00008904}
8905
Anton Korobeynikove060b532007-04-17 19:34:00 +00008906
8907// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
8908// Calls to _alloca is needed to probe the stack when allocating more than 4k
8909// bytes in one go. Touching the stack at 4K increments is necessary to ensure
8910// that the guard pages used by the OS virtual memory manager are allocated in
8911// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00008912SDValue
8913X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008914 SelectionDAG &DAG) const {
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008915 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
8916 EnableSegmentedStacks) &&
8917 "This should be used only on Windows targets or when segmented stacks "
Rafael Espindola96428ce2011-09-06 18:43:08 +00008918 "are being used");
8919 assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008920 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008921
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008922 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008923 SDValue Chain = Op.getOperand(0);
8924 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008925 // FIXME: Ensure alignment here
8926
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008927 bool Is64Bit = Subtarget->is64Bit();
8928 EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008929
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008930 if (EnableSegmentedStacks) {
8931 MachineFunction &MF = DAG.getMachineFunction();
8932 MachineRegisterInfo &MRI = MF.getRegInfo();
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008933
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008934 if (Is64Bit) {
8935 // The 64 bit implementation of segmented stacks needs to clobber both r10
Rafael Espindola96428ce2011-09-06 18:43:08 +00008936 // r11. This makes it impossible to use it along with nested parameters.
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008937 const Function *F = MF.getFunction();
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008938
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008939 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
8940 I != E; I++)
8941 if (I->hasNestAttr())
8942 report_fatal_error("Cannot use segmented stacks with functions that "
8943 "have nested arguments.");
8944 }
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008945
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008946 const TargetRegisterClass *AddrRegClass =
8947 getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
8948 unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
8949 Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
8950 SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
8951 DAG.getRegister(Vreg, SPTy));
8952 SDValue Ops1[2] = { Value, Chain };
8953 return DAG.getMergeValues(Ops1, 2, dl);
8954 } else {
8955 SDValue Flag;
8956 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008957
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008958 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
8959 Flag = Chain.getValue(1);
8960 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008961
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008962 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
8963 Flag = Chain.getValue(1);
8964
8965 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
8966
8967 SDValue Ops1[2] = { Chain.getValue(0), Chain };
8968 return DAG.getMergeValues(Ops1, 2, dl);
8969 }
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008970}
8971
Dan Gohmand858e902010-04-17 15:26:15 +00008972SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00008973 MachineFunction &MF = DAG.getMachineFunction();
8974 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
8975
Dan Gohman69de1932008-02-06 22:27:42 +00008976 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00008977 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00008978
Anton Korobeynikove7beda12010-10-03 22:52:07 +00008979 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00008980 // vastart just stores the address of the VarArgsFrameIndex slot into the
8981 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00008982 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8983 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008984 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
8985 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008986 }
8987
8988 // __va_list_tag:
8989 // gp_offset (0 - 6 * 8)
8990 // fp_offset (48 - 48 + 8 * 16)
8991 // overflow_arg_area (point to parameters coming in memory).
8992 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00008993 SmallVector<SDValue, 8> MemOps;
8994 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00008995 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008996 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008997 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
8998 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008999 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00009000 MemOps.push_back(Store);
9001
9002 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00009003 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009004 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009005 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00009006 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
9007 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009008 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00009009 MemOps.push_back(Store);
9010
9011 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00009012 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009013 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00009014 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
9015 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00009016 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
9017 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00009018 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00009019 MemOps.push_back(Store);
9020
9021 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00009022 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009023 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00009024 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
9025 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00009026 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
9027 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00009028 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00009029 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00009030 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00009031}
9032
Dan Gohmand858e902010-04-17 15:26:15 +00009033SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00009034 assert(Subtarget->is64Bit() &&
9035 "LowerVAARG only handles 64-bit va_arg!");
9036 assert((Subtarget->isTargetLinux() ||
9037 Subtarget->isTargetDarwin()) &&
9038 "Unhandled target in LowerVAARG");
9039 assert(Op.getNode()->getNumOperands() == 4);
9040 SDValue Chain = Op.getOperand(0);
9041 SDValue SrcPtr = Op.getOperand(1);
9042 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
9043 unsigned Align = Op.getConstantOperandVal(3);
9044 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00009045
Dan Gohman320afb82010-10-12 18:00:49 +00009046 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009047 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Dan Gohman320afb82010-10-12 18:00:49 +00009048 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
9049 uint8_t ArgMode;
9050
9051 // Decide which area this value should be read from.
9052 // TODO: Implement the AMD64 ABI in its entirety. This simple
9053 // selection mechanism works only for the basic types.
9054 if (ArgVT == MVT::f80) {
9055 llvm_unreachable("va_arg for f80 not yet implemented");
9056 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
9057 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
9058 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
9059 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
9060 } else {
9061 llvm_unreachable("Unhandled argument type in LowerVAARG");
9062 }
9063
9064 if (ArgMode == 2) {
9065 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00009066 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00009067 !(DAG.getMachineFunction()
9068 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00009069 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00009070 }
9071
9072 // Insert VAARG_64 node into the DAG
9073 // VAARG_64 returns two values: Variable Argument Address, Chain
9074 SmallVector<SDValue, 11> InstOps;
9075 InstOps.push_back(Chain);
9076 InstOps.push_back(SrcPtr);
9077 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
9078 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
9079 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
9080 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
9081 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
9082 VTs, &InstOps[0], InstOps.size(),
9083 MVT::i64,
9084 MachinePointerInfo(SV),
9085 /*Align=*/0,
9086 /*Volatile=*/false,
9087 /*ReadMem=*/true,
9088 /*WriteMem=*/true);
9089 Chain = VAARG.getValue(1);
9090
9091 // Load the next argument and return it
9092 return DAG.getLoad(ArgVT, dl,
9093 Chain,
9094 VAARG,
9095 MachinePointerInfo(),
9096 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00009097}
9098
Dan Gohmand858e902010-04-17 15:26:15 +00009099SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00009100 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00009101 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00009102 SDValue Chain = Op.getOperand(0);
9103 SDValue DstPtr = Op.getOperand(1);
9104 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00009105 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
9106 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00009107 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00009108
Chris Lattnere72f2022010-09-21 05:40:29 +00009109 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00009110 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00009111 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00009112 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00009113}
9114
Dan Gohman475871a2008-07-27 21:46:04 +00009115SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00009116X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009117 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00009118 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00009119 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00009120 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00009121 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00009122 case Intrinsic::x86_sse_comieq_ss:
9123 case Intrinsic::x86_sse_comilt_ss:
9124 case Intrinsic::x86_sse_comile_ss:
9125 case Intrinsic::x86_sse_comigt_ss:
9126 case Intrinsic::x86_sse_comige_ss:
9127 case Intrinsic::x86_sse_comineq_ss:
9128 case Intrinsic::x86_sse_ucomieq_ss:
9129 case Intrinsic::x86_sse_ucomilt_ss:
9130 case Intrinsic::x86_sse_ucomile_ss:
9131 case Intrinsic::x86_sse_ucomigt_ss:
9132 case Intrinsic::x86_sse_ucomige_ss:
9133 case Intrinsic::x86_sse_ucomineq_ss:
9134 case Intrinsic::x86_sse2_comieq_sd:
9135 case Intrinsic::x86_sse2_comilt_sd:
9136 case Intrinsic::x86_sse2_comile_sd:
9137 case Intrinsic::x86_sse2_comigt_sd:
9138 case Intrinsic::x86_sse2_comige_sd:
9139 case Intrinsic::x86_sse2_comineq_sd:
9140 case Intrinsic::x86_sse2_ucomieq_sd:
9141 case Intrinsic::x86_sse2_ucomilt_sd:
9142 case Intrinsic::x86_sse2_ucomile_sd:
9143 case Intrinsic::x86_sse2_ucomigt_sd:
9144 case Intrinsic::x86_sse2_ucomige_sd:
9145 case Intrinsic::x86_sse2_ucomineq_sd: {
9146 unsigned Opc = 0;
9147 ISD::CondCode CC = ISD::SETCC_INVALID;
9148 switch (IntNo) {
9149 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00009150 case Intrinsic::x86_sse_comieq_ss:
9151 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009152 Opc = X86ISD::COMI;
9153 CC = ISD::SETEQ;
9154 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00009155 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009156 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009157 Opc = X86ISD::COMI;
9158 CC = ISD::SETLT;
9159 break;
9160 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009161 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009162 Opc = X86ISD::COMI;
9163 CC = ISD::SETLE;
9164 break;
9165 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009166 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009167 Opc = X86ISD::COMI;
9168 CC = ISD::SETGT;
9169 break;
9170 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009171 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009172 Opc = X86ISD::COMI;
9173 CC = ISD::SETGE;
9174 break;
9175 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009176 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009177 Opc = X86ISD::COMI;
9178 CC = ISD::SETNE;
9179 break;
9180 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009181 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009182 Opc = X86ISD::UCOMI;
9183 CC = ISD::SETEQ;
9184 break;
9185 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009186 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009187 Opc = X86ISD::UCOMI;
9188 CC = ISD::SETLT;
9189 break;
9190 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009191 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009192 Opc = X86ISD::UCOMI;
9193 CC = ISD::SETLE;
9194 break;
9195 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009196 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009197 Opc = X86ISD::UCOMI;
9198 CC = ISD::SETGT;
9199 break;
9200 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009201 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009202 Opc = X86ISD::UCOMI;
9203 CC = ISD::SETGE;
9204 break;
9205 case Intrinsic::x86_sse_ucomineq_ss:
9206 case Intrinsic::x86_sse2_ucomineq_sd:
9207 Opc = X86ISD::UCOMI;
9208 CC = ISD::SETNE;
9209 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00009210 }
Evan Cheng734503b2006-09-11 02:19:56 +00009211
Dan Gohman475871a2008-07-27 21:46:04 +00009212 SDValue LHS = Op.getOperand(1);
9213 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00009214 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00009215 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00009216 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
9217 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9218 DAG.getConstant(X86CC, MVT::i8), Cond);
9219 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00009220 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009221 // ptest and testp intrinsics. The intrinsic these come from are designed to
9222 // return an integer value, not just an instruction so lower it to the ptest
9223 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00009224 case Intrinsic::x86_sse41_ptestz:
9225 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009226 case Intrinsic::x86_sse41_ptestnzc:
9227 case Intrinsic::x86_avx_ptestz_256:
9228 case Intrinsic::x86_avx_ptestc_256:
9229 case Intrinsic::x86_avx_ptestnzc_256:
9230 case Intrinsic::x86_avx_vtestz_ps:
9231 case Intrinsic::x86_avx_vtestc_ps:
9232 case Intrinsic::x86_avx_vtestnzc_ps:
9233 case Intrinsic::x86_avx_vtestz_pd:
9234 case Intrinsic::x86_avx_vtestc_pd:
9235 case Intrinsic::x86_avx_vtestnzc_pd:
9236 case Intrinsic::x86_avx_vtestz_ps_256:
9237 case Intrinsic::x86_avx_vtestc_ps_256:
9238 case Intrinsic::x86_avx_vtestnzc_ps_256:
9239 case Intrinsic::x86_avx_vtestz_pd_256:
9240 case Intrinsic::x86_avx_vtestc_pd_256:
9241 case Intrinsic::x86_avx_vtestnzc_pd_256: {
9242 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00009243 unsigned X86CC = 0;
9244 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00009245 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009246 case Intrinsic::x86_avx_vtestz_ps:
9247 case Intrinsic::x86_avx_vtestz_pd:
9248 case Intrinsic::x86_avx_vtestz_ps_256:
9249 case Intrinsic::x86_avx_vtestz_pd_256:
9250 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00009251 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009252 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00009253 // ZF = 1
9254 X86CC = X86::COND_E;
9255 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009256 case Intrinsic::x86_avx_vtestc_ps:
9257 case Intrinsic::x86_avx_vtestc_pd:
9258 case Intrinsic::x86_avx_vtestc_ps_256:
9259 case Intrinsic::x86_avx_vtestc_pd_256:
9260 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00009261 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009262 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00009263 // CF = 1
9264 X86CC = X86::COND_B;
9265 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009266 case Intrinsic::x86_avx_vtestnzc_ps:
9267 case Intrinsic::x86_avx_vtestnzc_pd:
9268 case Intrinsic::x86_avx_vtestnzc_ps_256:
9269 case Intrinsic::x86_avx_vtestnzc_pd_256:
9270 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00009271 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009272 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00009273 // ZF and CF = 0
9274 X86CC = X86::COND_A;
9275 break;
9276 }
Eric Christopherfd179292009-08-27 18:07:15 +00009277
Eric Christopher71c67532009-07-29 00:28:05 +00009278 SDValue LHS = Op.getOperand(1);
9279 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009280 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
9281 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00009282 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
9283 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
9284 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00009285 }
Evan Cheng5759f972008-05-04 09:15:50 +00009286
9287 // Fix vector shift instructions where the last operand is a non-immediate
9288 // i32 value.
9289 case Intrinsic::x86_sse2_pslli_w:
9290 case Intrinsic::x86_sse2_pslli_d:
9291 case Intrinsic::x86_sse2_pslli_q:
9292 case Intrinsic::x86_sse2_psrli_w:
9293 case Intrinsic::x86_sse2_psrli_d:
9294 case Intrinsic::x86_sse2_psrli_q:
9295 case Intrinsic::x86_sse2_psrai_w:
9296 case Intrinsic::x86_sse2_psrai_d:
9297 case Intrinsic::x86_mmx_pslli_w:
9298 case Intrinsic::x86_mmx_pslli_d:
9299 case Intrinsic::x86_mmx_pslli_q:
9300 case Intrinsic::x86_mmx_psrli_w:
9301 case Intrinsic::x86_mmx_psrli_d:
9302 case Intrinsic::x86_mmx_psrli_q:
9303 case Intrinsic::x86_mmx_psrai_w:
9304 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00009305 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00009306 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00009307 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00009308
9309 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00009310 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00009311 switch (IntNo) {
9312 case Intrinsic::x86_sse2_pslli_w:
9313 NewIntNo = Intrinsic::x86_sse2_psll_w;
9314 break;
9315 case Intrinsic::x86_sse2_pslli_d:
9316 NewIntNo = Intrinsic::x86_sse2_psll_d;
9317 break;
9318 case Intrinsic::x86_sse2_pslli_q:
9319 NewIntNo = Intrinsic::x86_sse2_psll_q;
9320 break;
9321 case Intrinsic::x86_sse2_psrli_w:
9322 NewIntNo = Intrinsic::x86_sse2_psrl_w;
9323 break;
9324 case Intrinsic::x86_sse2_psrli_d:
9325 NewIntNo = Intrinsic::x86_sse2_psrl_d;
9326 break;
9327 case Intrinsic::x86_sse2_psrli_q:
9328 NewIntNo = Intrinsic::x86_sse2_psrl_q;
9329 break;
9330 case Intrinsic::x86_sse2_psrai_w:
9331 NewIntNo = Intrinsic::x86_sse2_psra_w;
9332 break;
9333 case Intrinsic::x86_sse2_psrai_d:
9334 NewIntNo = Intrinsic::x86_sse2_psra_d;
9335 break;
9336 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00009337 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00009338 switch (IntNo) {
9339 case Intrinsic::x86_mmx_pslli_w:
9340 NewIntNo = Intrinsic::x86_mmx_psll_w;
9341 break;
9342 case Intrinsic::x86_mmx_pslli_d:
9343 NewIntNo = Intrinsic::x86_mmx_psll_d;
9344 break;
9345 case Intrinsic::x86_mmx_pslli_q:
9346 NewIntNo = Intrinsic::x86_mmx_psll_q;
9347 break;
9348 case Intrinsic::x86_mmx_psrli_w:
9349 NewIntNo = Intrinsic::x86_mmx_psrl_w;
9350 break;
9351 case Intrinsic::x86_mmx_psrli_d:
9352 NewIntNo = Intrinsic::x86_mmx_psrl_d;
9353 break;
9354 case Intrinsic::x86_mmx_psrli_q:
9355 NewIntNo = Intrinsic::x86_mmx_psrl_q;
9356 break;
9357 case Intrinsic::x86_mmx_psrai_w:
9358 NewIntNo = Intrinsic::x86_mmx_psra_w;
9359 break;
9360 case Intrinsic::x86_mmx_psrai_d:
9361 NewIntNo = Intrinsic::x86_mmx_psra_d;
9362 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00009363 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00009364 }
9365 break;
9366 }
9367 }
Mon P Wangefa42202009-09-03 19:56:25 +00009368
9369 // The vector shift intrinsics with scalars uses 32b shift amounts but
9370 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
9371 // to be zero.
9372 SDValue ShOps[4];
9373 ShOps[0] = ShAmt;
9374 ShOps[1] = DAG.getConstant(0, MVT::i32);
9375 if (ShAmtVT == MVT::v4i32) {
9376 ShOps[2] = DAG.getUNDEF(MVT::i32);
9377 ShOps[3] = DAG.getUNDEF(MVT::i32);
9378 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
9379 } else {
9380 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00009381// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00009382 }
9383
Owen Andersone50ed302009-08-10 22:56:29 +00009384 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009385 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009386 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009387 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00009388 Op.getOperand(1), ShAmt);
9389 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00009390 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00009391}
Evan Cheng72261582005-12-20 06:22:03 +00009392
Dan Gohmand858e902010-04-17 15:26:15 +00009393SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
9394 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00009395 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9396 MFI->setReturnAddressIsTaken(true);
9397
Bill Wendling64e87322009-01-16 19:25:27 +00009398 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009399 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00009400
9401 if (Depth > 0) {
9402 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
9403 SDValue Offset =
9404 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00009405 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009406 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00009407 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009408 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00009409 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00009410 }
9411
9412 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00009413 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00009414 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009415 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00009416}
9417
Dan Gohmand858e902010-04-17 15:26:15 +00009418SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00009419 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9420 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00009421
Owen Andersone50ed302009-08-10 22:56:29 +00009422 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009423 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00009424 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9425 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00009426 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00009427 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00009428 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
9429 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00009430 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00009431 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00009432}
9433
Dan Gohman475871a2008-07-27 21:46:04 +00009434SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009435 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00009436 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009437}
9438
Dan Gohmand858e902010-04-17 15:26:15 +00009439SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009440 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00009441 SDValue Chain = Op.getOperand(0);
9442 SDValue Offset = Op.getOperand(1);
9443 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009444 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009445
Dan Gohmand8816272010-08-11 18:14:00 +00009446 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
9447 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
9448 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009449 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009450
Dan Gohmand8816272010-08-11 18:14:00 +00009451 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
9452 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009453 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00009454 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
9455 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00009456 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009457 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009458
Dale Johannesene4d209d2009-02-03 20:21:25 +00009459 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00009460 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009461 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009462}
9463
Duncan Sands4a544a72011-09-06 13:37:06 +00009464SDValue X86TargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op,
9465 SelectionDAG &DAG) const {
9466 return Op.getOperand(0);
9467}
9468
9469SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
9470 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00009471 SDValue Root = Op.getOperand(0);
9472 SDValue Trmp = Op.getOperand(1); // trampoline
9473 SDValue FPtr = Op.getOperand(2); // nested function
9474 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009475 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009476
Dan Gohman69de1932008-02-06 22:27:42 +00009477 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009478
9479 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00009480 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00009481
9482 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00009483 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
9484 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00009485
Evan Cheng0e6a0522011-07-18 20:57:22 +00009486 const unsigned char N86R10 = X86_MC::getX86RegNum(X86::R10);
9487 const unsigned char N86R11 = X86_MC::getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00009488
9489 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
9490
9491 // Load the pointer to the nested function into R11.
9492 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00009493 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00009494 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009495 Addr, MachinePointerInfo(TrmpAddr),
9496 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009497
Owen Anderson825b72b2009-08-11 20:47:22 +00009498 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9499 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009500 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
9501 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00009502 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00009503
9504 // Load the 'nest' parameter value into R10.
9505 // R10 is specified in X86CallingConv.td
9506 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00009507 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9508 DAG.getConstant(10, MVT::i64));
9509 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009510 Addr, MachinePointerInfo(TrmpAddr, 10),
9511 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009512
Owen Anderson825b72b2009-08-11 20:47:22 +00009513 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9514 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009515 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
9516 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00009517 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00009518
9519 // Jump to the nested function.
9520 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00009521 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9522 DAG.getConstant(20, MVT::i64));
9523 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009524 Addr, MachinePointerInfo(TrmpAddr, 20),
9525 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009526
9527 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00009528 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9529 DAG.getConstant(22, MVT::i64));
9530 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00009531 MachinePointerInfo(TrmpAddr, 22),
9532 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009533
Duncan Sands4a544a72011-09-06 13:37:06 +00009534 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009535 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00009536 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00009537 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00009538 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00009539 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009540
9541 switch (CC) {
9542 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00009543 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00009544 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00009545 case CallingConv::X86_StdCall: {
9546 // Pass 'nest' parameter in ECX.
9547 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00009548 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009549
9550 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009551 FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00009552 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009553
Chris Lattner58d74912008-03-12 17:45:29 +00009554 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00009555 unsigned InRegCount = 0;
9556 unsigned Idx = 1;
9557
9558 for (FunctionType::param_iterator I = FTy->param_begin(),
9559 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00009560 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00009561 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00009562 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009563
9564 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00009565 report_fatal_error("Nest register in use - reduce number of inreg"
9566 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00009567 }
9568 }
9569 break;
9570 }
9571 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00009572 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00009573 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00009574 // Pass 'nest' parameter in EAX.
9575 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00009576 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009577 break;
9578 }
9579
Dan Gohman475871a2008-07-27 21:46:04 +00009580 SDValue OutChains[4];
9581 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009582
Owen Anderson825b72b2009-08-11 20:47:22 +00009583 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9584 DAG.getConstant(10, MVT::i32));
9585 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009586
Chris Lattnera62fe662010-02-05 19:20:30 +00009587 // This is storing the opcode for MOV32ri.
9588 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Evan Cheng0e6a0522011-07-18 20:57:22 +00009589 const unsigned char N86Reg = X86_MC::getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009590 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00009591 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009592 Trmp, MachinePointerInfo(TrmpAddr),
9593 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009594
Owen Anderson825b72b2009-08-11 20:47:22 +00009595 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9596 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009597 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
9598 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00009599 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009600
Chris Lattnera62fe662010-02-05 19:20:30 +00009601 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00009602 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9603 DAG.getConstant(5, MVT::i32));
9604 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00009605 MachinePointerInfo(TrmpAddr, 5),
9606 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009607
Owen Anderson825b72b2009-08-11 20:47:22 +00009608 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9609 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009610 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
9611 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00009612 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009613
Duncan Sands4a544a72011-09-06 13:37:06 +00009614 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009615 }
9616}
9617
Dan Gohmand858e902010-04-17 15:26:15 +00009618SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
9619 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009620 /*
9621 The rounding mode is in bits 11:10 of FPSR, and has the following
9622 settings:
9623 00 Round to nearest
9624 01 Round to -inf
9625 10 Round to +inf
9626 11 Round to 0
9627
9628 FLT_ROUNDS, on the other hand, expects the following:
9629 -1 Undefined
9630 0 Round to 0
9631 1 Round to nearest
9632 2 Round to +inf
9633 3 Round to -inf
9634
9635 To perform the conversion, we do:
9636 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
9637 */
9638
9639 MachineFunction &MF = DAG.getMachineFunction();
9640 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00009641 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009642 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00009643 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00009644 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009645
9646 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00009647 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00009648 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009649
Michael J. Spencerec38de22010-10-10 22:04:20 +00009650
Chris Lattner2156b792010-09-22 01:11:26 +00009651 MachineMemOperand *MMO =
9652 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9653 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009654
Chris Lattner2156b792010-09-22 01:11:26 +00009655 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
9656 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
9657 DAG.getVTList(MVT::Other),
9658 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009659
9660 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00009661 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00009662 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009663
9664 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00009665 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00009666 DAG.getNode(ISD::SRL, DL, MVT::i16,
9667 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009668 CWD, DAG.getConstant(0x800, MVT::i16)),
9669 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00009670 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00009671 DAG.getNode(ISD::SRL, DL, MVT::i16,
9672 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009673 CWD, DAG.getConstant(0x400, MVT::i16)),
9674 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009675
Dan Gohman475871a2008-07-27 21:46:04 +00009676 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00009677 DAG.getNode(ISD::AND, DL, MVT::i16,
9678 DAG.getNode(ISD::ADD, DL, MVT::i16,
9679 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00009680 DAG.getConstant(1, MVT::i16)),
9681 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009682
9683
Duncan Sands83ec4b62008-06-06 12:08:01 +00009684 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00009685 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009686}
9687
Dan Gohmand858e902010-04-17 15:26:15 +00009688SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009689 EVT VT = Op.getValueType();
9690 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009691 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009692 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009693
9694 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009695 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00009696 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00009697 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009698 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009699 }
Evan Cheng18efe262007-12-14 02:13:44 +00009700
Evan Cheng152804e2007-12-14 08:30:15 +00009701 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009702 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009703 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009704
9705 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009706 SDValue Ops[] = {
9707 Op,
9708 DAG.getConstant(NumBits+NumBits-1, OpVT),
9709 DAG.getConstant(X86::COND_E, MVT::i8),
9710 Op.getValue(1)
9711 };
9712 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009713
9714 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00009715 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00009716
Owen Anderson825b72b2009-08-11 20:47:22 +00009717 if (VT == MVT::i8)
9718 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009719 return Op;
9720}
9721
Dan Gohmand858e902010-04-17 15:26:15 +00009722SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009723 EVT VT = Op.getValueType();
9724 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009725 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009726 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009727
9728 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009729 if (VT == MVT::i8) {
9730 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009731 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009732 }
Evan Cheng152804e2007-12-14 08:30:15 +00009733
9734 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009735 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009736 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009737
9738 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009739 SDValue Ops[] = {
9740 Op,
9741 DAG.getConstant(NumBits, OpVT),
9742 DAG.getConstant(X86::COND_E, MVT::i8),
9743 Op.getValue(1)
9744 };
9745 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009746
Owen Anderson825b72b2009-08-11 20:47:22 +00009747 if (VT == MVT::i8)
9748 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009749 return Op;
9750}
9751
Craig Topper13894fa2011-08-24 06:14:18 +00009752// Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
9753// ones, and then concatenate the result back.
9754static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00009755 EVT VT = Op.getValueType();
Craig Topper13894fa2011-08-24 06:14:18 +00009756
9757 assert(VT.getSizeInBits() == 256 && VT.isInteger() &&
9758 "Unsupported value type for operation");
9759
9760 int NumElems = VT.getVectorNumElements();
9761 DebugLoc dl = Op.getDebugLoc();
9762 SDValue Idx0 = DAG.getConstant(0, MVT::i32);
9763 SDValue Idx1 = DAG.getConstant(NumElems/2, MVT::i32);
9764
9765 // Extract the LHS vectors
9766 SDValue LHS = Op.getOperand(0);
9767 SDValue LHS1 = Extract128BitVector(LHS, Idx0, DAG, dl);
9768 SDValue LHS2 = Extract128BitVector(LHS, Idx1, DAG, dl);
9769
9770 // Extract the RHS vectors
9771 SDValue RHS = Op.getOperand(1);
9772 SDValue RHS1 = Extract128BitVector(RHS, Idx0, DAG, dl);
9773 SDValue RHS2 = Extract128BitVector(RHS, Idx1, DAG, dl);
9774
9775 MVT EltVT = VT.getVectorElementType().getSimpleVT();
9776 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9777
9778 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9779 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
9780 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
9781}
9782
9783SDValue X86TargetLowering::LowerADD(SDValue Op, SelectionDAG &DAG) const {
9784 assert(Op.getValueType().getSizeInBits() == 256 &&
9785 Op.getValueType().isInteger() &&
9786 "Only handle AVX 256-bit vector integer operation");
9787 return Lower256IntArith(Op, DAG);
9788}
9789
9790SDValue X86TargetLowering::LowerSUB(SDValue Op, SelectionDAG &DAG) const {
9791 assert(Op.getValueType().getSizeInBits() == 256 &&
9792 Op.getValueType().isInteger() &&
9793 "Only handle AVX 256-bit vector integer operation");
9794 return Lower256IntArith(Op, DAG);
9795}
9796
9797SDValue X86TargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
9798 EVT VT = Op.getValueType();
9799
9800 // Decompose 256-bit ops into smaller 128-bit ops.
9801 if (VT.getSizeInBits() == 256)
9802 return Lower256IntArith(Op, DAG);
9803
Owen Anderson825b72b2009-08-11 20:47:22 +00009804 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009805 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00009806
Mon P Wangaf9b9522008-12-18 21:42:19 +00009807 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
9808 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
9809 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
9810 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
9811 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
9812 //
9813 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
9814 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
9815 // return AloBlo + AloBhi + AhiBlo;
9816
9817 SDValue A = Op.getOperand(0);
9818 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009819
Dale Johannesene4d209d2009-02-03 20:21:25 +00009820 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009821 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9822 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009823 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009824 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9825 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009826 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009827 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009828 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009829 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009830 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009831 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009832 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009833 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009834 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009835 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009836 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9837 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009838 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009839 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9840 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009841 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
9842 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009843 return Res;
9844}
9845
Nadav Rotem43012222011-05-11 08:12:09 +00009846SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
9847
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009848 EVT VT = Op.getValueType();
9849 DebugLoc dl = Op.getDebugLoc();
9850 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +00009851 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009852 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009853
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +00009854 if (!Subtarget->hasXMMInt())
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009855 return SDValue();
9856
9857 // Decompose 256-bit shifts into smaller 128-bit shifts.
9858 if (VT.getSizeInBits() == 256) {
9859 int NumElems = VT.getVectorNumElements();
9860 MVT EltVT = VT.getVectorElementType().getSimpleVT();
9861 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9862
9863 // Extract the two vectors
9864 SDValue V1 = Extract128BitVector(R, DAG.getConstant(0, MVT::i32), DAG, dl);
9865 SDValue V2 = Extract128BitVector(R, DAG.getConstant(NumElems/2, MVT::i32),
9866 DAG, dl);
9867
9868 // Recreate the shift amount vectors
Bruno Cardoso Lopes0dd80b02011-08-17 22:12:20 +00009869 SDValue Amt1, Amt2;
9870 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
9871 // Constant shift amount
9872 SmallVector<SDValue, 4> Amt1Csts;
9873 SmallVector<SDValue, 4> Amt2Csts;
9874 for (int i = 0; i < NumElems/2; ++i)
9875 Amt1Csts.push_back(Amt->getOperand(i));
9876 for (int i = NumElems/2; i < NumElems; ++i)
9877 Amt2Csts.push_back(Amt->getOperand(i));
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009878
Bruno Cardoso Lopes0dd80b02011-08-17 22:12:20 +00009879 Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9880 &Amt1Csts[0], NumElems/2);
9881 Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9882 &Amt2Csts[0], NumElems/2);
9883 } else {
9884 // Variable shift amount
9885 Amt1 = Extract128BitVector(Amt, DAG.getConstant(0, MVT::i32), DAG, dl);
9886 Amt2 = Extract128BitVector(Amt, DAG.getConstant(NumElems/2, MVT::i32),
9887 DAG, dl);
9888 }
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009889
9890 // Issue new vector shifts for the smaller types
9891 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
9892 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
9893
9894 // Concatenate the result back
9895 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
9896 }
Nate Begeman51409212010-07-28 00:21:48 +00009897
Nadav Rotem43012222011-05-11 08:12:09 +00009898 // Optimize shl/srl/sra with constant shift amount.
9899 if (isSplatVector(Amt.getNode())) {
9900 SDValue SclrAmt = Amt->getOperand(0);
9901 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
9902 uint64_t ShiftAmt = C->getZExtValue();
9903
9904 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SHL)
9905 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9906 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9907 R, DAG.getConstant(ShiftAmt, MVT::i32));
9908
9909 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SHL)
9910 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9911 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9912 R, DAG.getConstant(ShiftAmt, MVT::i32));
9913
9914 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SHL)
9915 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9916 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9917 R, DAG.getConstant(ShiftAmt, MVT::i32));
9918
9919 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SRL)
9920 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9921 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9922 R, DAG.getConstant(ShiftAmt, MVT::i32));
9923
9924 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRL)
9925 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9926 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
9927 R, DAG.getConstant(ShiftAmt, MVT::i32));
9928
9929 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRL)
9930 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9931 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
9932 R, DAG.getConstant(ShiftAmt, MVT::i32));
9933
9934 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRA)
9935 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9936 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
9937 R, DAG.getConstant(ShiftAmt, MVT::i32));
9938
9939 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRA)
9940 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9941 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
9942 R, DAG.getConstant(ShiftAmt, MVT::i32));
9943 }
9944 }
9945
9946 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00009947 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009948 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9949 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9950 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
9951
9952 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009953
Nate Begeman51409212010-07-28 00:21:48 +00009954 std::vector<Constant*> CV(4, CI);
9955 Constant *C = ConstantVector::get(CV);
9956 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9957 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009958 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009959 false, false, 16);
9960
9961 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009962 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009963 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
9964 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
9965 }
Nadav Rotem43012222011-05-11 08:12:09 +00009966 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009967 // a = a << 5;
9968 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9969 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9970 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
9971
9972 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
9973 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
9974
9975 std::vector<Constant*> CVM1(16, CM1);
9976 std::vector<Constant*> CVM2(16, CM2);
9977 Constant *C = ConstantVector::get(CVM1);
9978 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9979 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009980 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009981 false, false, 16);
9982
9983 // r = pblendv(r, psllw(r & (char16)15, 4), a);
9984 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9985 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9986 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9987 DAG.getConstant(4, MVT::i32));
Nadav Rotemfbad25e2011-09-11 15:02:23 +00009988 R = DAG.getNode(ISD::VSELECT, dl, VT, Op, R, M);
Nate Begeman51409212010-07-28 00:21:48 +00009989 // a += a
9990 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009991
Nate Begeman51409212010-07-28 00:21:48 +00009992 C = ConstantVector::get(CVM2);
9993 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9994 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009995 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009996 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009997
Nate Begeman51409212010-07-28 00:21:48 +00009998 // r = pblendv(r, psllw(r & (char16)63, 2), a);
9999 M = DAG.getNode(ISD::AND, dl, VT, R, M);
10000 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10001 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
10002 DAG.getConstant(2, MVT::i32));
Nadav Rotemfbad25e2011-09-11 15:02:23 +000010003 R = DAG.getNode(ISD::VSELECT, dl, VT, Op, R, M);
Nate Begeman51409212010-07-28 00:21:48 +000010004 // a += a
10005 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +000010006
Nate Begeman51409212010-07-28 00:21:48 +000010007 // return pblendv(r, r+r, a);
Nadav Rotemfbad25e2011-09-11 15:02:23 +000010008 R = DAG.getNode(ISD::VSELECT, dl, VT, Op,
10009 R, DAG.getNode(ISD::ADD, dl, VT, R, R));
Nate Begeman51409212010-07-28 00:21:48 +000010010 return R;
10011 }
10012 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +000010013}
Mon P Wangaf9b9522008-12-18 21:42:19 +000010014
Dan Gohmand858e902010-04-17 15:26:15 +000010015SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +000010016 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
10017 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +000010018 // looks for this combo and may remove the "setcc" instruction if the "setcc"
10019 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +000010020 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +000010021 SDValue LHS = N->getOperand(0);
10022 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +000010023 unsigned BaseOp = 0;
10024 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010025 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +000010026 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010027 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +000010028 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +000010029 // A subtract of one will be selected as a INC. Note that INC doesn't
10030 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000010031 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
10032 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000010033 BaseOp = X86ISD::INC;
10034 Cond = X86::COND_O;
10035 break;
10036 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010037 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +000010038 Cond = X86::COND_O;
10039 break;
10040 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010041 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +000010042 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000010043 break;
10044 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +000010045 // A subtract of one will be selected as a DEC. Note that DEC doesn't
10046 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000010047 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
10048 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000010049 BaseOp = X86ISD::DEC;
10050 Cond = X86::COND_O;
10051 break;
10052 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010053 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +000010054 Cond = X86::COND_O;
10055 break;
10056 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010057 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +000010058 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000010059 break;
10060 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +000010061 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +000010062 Cond = X86::COND_O;
10063 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010064 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
10065 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
10066 MVT::i32);
10067 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010068
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010069 SDValue SetCC =
10070 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10071 DAG.getConstant(X86::COND_O, MVT::i32),
10072 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010073
Dan Gohman6e5fda22011-07-22 18:45:15 +000010074 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010075 }
Bill Wendling74c37652008-12-09 22:08:41 +000010076 }
Bill Wendling3fafd932008-11-26 22:37:40 +000010077
Bill Wendling61edeb52008-12-02 01:06:39 +000010078 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000010079 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010080 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +000010081
Bill Wendling61edeb52008-12-02 01:06:39 +000010082 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010083 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
10084 DAG.getConstant(Cond, MVT::i32),
10085 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +000010086
Dan Gohman6e5fda22011-07-22 18:45:15 +000010087 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +000010088}
10089
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010090SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const{
10091 DebugLoc dl = Op.getDebugLoc();
10092 SDNode* Node = Op.getNode();
10093 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
10094 EVT VT = Node->getValueType(0);
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000010095 if (Subtarget->hasXMMInt() && VT.isVector()) {
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010096 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
10097 ExtraVT.getScalarType().getSizeInBits();
10098 SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
10099
10100 unsigned SHLIntrinsicsID = 0;
10101 unsigned SRAIntrinsicsID = 0;
10102 switch (VT.getSimpleVT().SimpleTy) {
10103 default:
10104 return SDValue();
10105 case MVT::v2i64: {
10106 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_q;
10107 SRAIntrinsicsID = 0;
10108 break;
10109 }
10110 case MVT::v4i32: {
10111 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_d;
10112 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_d;
10113 break;
10114 }
10115 case MVT::v8i16: {
10116 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_w;
10117 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_w;
10118 break;
10119 }
10120 }
10121
10122 SDValue Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10123 DAG.getConstant(SHLIntrinsicsID, MVT::i32),
10124 Node->getOperand(0), ShAmt);
10125
10126 // In case of 1 bit sext, no need to shr
10127 if (ExtraVT.getScalarType().getSizeInBits() == 1) return Tmp1;
10128
10129 if (SRAIntrinsicsID) {
10130 Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10131 DAG.getConstant(SRAIntrinsicsID, MVT::i32),
10132 Tmp1, ShAmt);
10133 }
10134 return Tmp1;
10135 }
10136
10137 return SDValue();
10138}
10139
10140
Eric Christopher9a9d2752010-07-22 02:48:34 +000010141SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
10142 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010143
Eric Christopher77ed1352011-07-08 00:04:56 +000010144 // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
10145 // There isn't any reason to disable it if the target processor supports it.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000010146 if (!Subtarget->hasXMMInt() && !Subtarget->is64Bit()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +000010147 SDValue Chain = Op.getOperand(0);
Eric Christopher77ed1352011-07-08 00:04:56 +000010148 SDValue Zero = DAG.getConstant(0, MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +000010149 SDValue Ops[] = {
10150 DAG.getRegister(X86::ESP, MVT::i32), // Base
10151 DAG.getTargetConstant(1, MVT::i8), // Scale
10152 DAG.getRegister(0, MVT::i32), // Index
10153 DAG.getTargetConstant(0, MVT::i32), // Disp
10154 DAG.getRegister(0, MVT::i32), // Segment.
10155 Zero,
10156 Chain
10157 };
Michael J. Spencerec38de22010-10-10 22:04:20 +000010158 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +000010159 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
10160 array_lengthof(Ops));
10161 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +000010162 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000010163
Eric Christopher9a9d2752010-07-22 02:48:34 +000010164 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +000010165 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +000010166 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010167
Chris Lattner132929a2010-08-14 17:26:09 +000010168 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
10169 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10170 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
10171 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010172
Chris Lattner132929a2010-08-14 17:26:09 +000010173 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
10174 if (!Op1 && !Op2 && !Op3 && Op4)
10175 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010176
Chris Lattner132929a2010-08-14 17:26:09 +000010177 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
10178 if (Op1 && !Op2 && !Op3 && !Op4)
10179 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010180
10181 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +000010182 // (MFENCE)>;
10183 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +000010184}
10185
Eli Friedman14648462011-07-27 22:21:52 +000010186SDValue X86TargetLowering::LowerATOMIC_FENCE(SDValue Op,
10187 SelectionDAG &DAG) const {
10188 DebugLoc dl = Op.getDebugLoc();
10189 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
10190 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
10191 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
10192 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
10193
10194 // The only fence that needs an instruction is a sequentially-consistent
10195 // cross-thread fence.
10196 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
10197 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
10198 // no-sse2). There isn't any reason to disable it if the target processor
10199 // supports it.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000010200 if (Subtarget->hasXMMInt() || Subtarget->is64Bit())
Eli Friedman14648462011-07-27 22:21:52 +000010201 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
10202
10203 SDValue Chain = Op.getOperand(0);
10204 SDValue Zero = DAG.getConstant(0, MVT::i32);
10205 SDValue Ops[] = {
10206 DAG.getRegister(X86::ESP, MVT::i32), // Base
10207 DAG.getTargetConstant(1, MVT::i8), // Scale
10208 DAG.getRegister(0, MVT::i32), // Index
10209 DAG.getTargetConstant(0, MVT::i32), // Disp
10210 DAG.getRegister(0, MVT::i32), // Segment.
10211 Zero,
10212 Chain
10213 };
10214 SDNode *Res =
10215 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
10216 array_lengthof(Ops));
10217 return SDValue(Res, 0);
10218 }
10219
10220 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
10221 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
10222}
10223
10224
Dan Gohmand858e902010-04-17 15:26:15 +000010225SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +000010226 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +000010227 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +000010228 unsigned Reg = 0;
10229 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +000010230 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +000010231 default:
10232 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +000010233 case MVT::i8: Reg = X86::AL; size = 1; break;
10234 case MVT::i16: Reg = X86::AX; size = 2; break;
10235 case MVT::i32: Reg = X86::EAX; size = 4; break;
10236 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +000010237 assert(Subtarget->is64Bit() && "Node not type legal!");
10238 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +000010239 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000010240 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +000010241 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +000010242 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +000010243 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +000010244 Op.getOperand(1),
10245 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +000010246 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +000010247 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010248 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +000010249 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
10250 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
10251 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +000010252 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +000010253 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +000010254 return cpOut;
10255}
10256
Duncan Sands1607f052008-12-01 11:39:25 +000010257SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000010258 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +000010259 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010260 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000010261 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +000010262 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +000010263 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010264 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
10265 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +000010266 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +000010267 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
10268 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +000010269 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +000010270 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +000010271 rdx.getValue(1)
10272 };
Dale Johannesene4d209d2009-02-03 20:21:25 +000010273 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010274}
10275
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010276SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +000010277 SelectionDAG &DAG) const {
10278 EVT SrcVT = Op.getOperand(0).getValueType();
10279 EVT DstVT = Op.getValueType();
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000010280 assert(Subtarget->is64Bit() && !Subtarget->hasXMMInt() &&
Chris Lattner2a786eb2010-12-19 20:19:20 +000010281 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +000010282 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +000010283 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010284 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +000010285 // i64 <=> MMX conversions are Legal.
10286 if (SrcVT==MVT::i64 && DstVT.isVector())
10287 return Op;
10288 if (DstVT==MVT::i64 && SrcVT.isVector())
10289 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +000010290 // MMX <=> MMX conversions are Legal.
10291 if (SrcVT.isVector() && DstVT.isVector())
10292 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +000010293 // All other conversions need to be expanded.
10294 return SDValue();
10295}
Chris Lattner5b856542010-12-20 00:59:46 +000010296
Dan Gohmand858e902010-04-17 15:26:15 +000010297SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +000010298 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +000010299 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000010300 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010301 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +000010302 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +000010303 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010304 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +000010305 Node->getOperand(0),
10306 Node->getOperand(1), negOp,
10307 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +000010308 cast<AtomicSDNode>(Node)->getAlignment(),
10309 cast<AtomicSDNode>(Node)->getOrdering(),
10310 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +000010311}
10312
Eli Friedman327236c2011-08-24 20:50:09 +000010313static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
10314 SDNode *Node = Op.getNode();
10315 DebugLoc dl = Node->getDebugLoc();
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010316 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
Eli Friedman327236c2011-08-24 20:50:09 +000010317
10318 // Convert seq_cst store -> xchg
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010319 // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
10320 // FIXME: On 32-bit, store -> fist or movq would be more efficient
10321 // (The only way to get a 16-byte store is cmpxchg16b)
10322 // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
10323 if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
10324 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Eli Friedman4317fe12011-08-24 21:17:30 +000010325 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
10326 cast<AtomicSDNode>(Node)->getMemoryVT(),
10327 Node->getOperand(0),
10328 Node->getOperand(1), Node->getOperand(2),
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010329 cast<AtomicSDNode>(Node)->getMemOperand(),
Eli Friedman4317fe12011-08-24 21:17:30 +000010330 cast<AtomicSDNode>(Node)->getOrdering(),
10331 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman327236c2011-08-24 20:50:09 +000010332 return Swap.getValue(1);
10333 }
10334 // Other atomic stores have a simple pattern.
10335 return Op;
10336}
10337
Chris Lattner5b856542010-12-20 00:59:46 +000010338static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
10339 EVT VT = Op.getNode()->getValueType(0);
10340
10341 // Let legalize expand this if it isn't a legal type yet.
10342 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
10343 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010344
Chris Lattner5b856542010-12-20 00:59:46 +000010345 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010346
Chris Lattner5b856542010-12-20 00:59:46 +000010347 unsigned Opc;
10348 bool ExtraOp = false;
10349 switch (Op.getOpcode()) {
10350 default: assert(0 && "Invalid code");
10351 case ISD::ADDC: Opc = X86ISD::ADD; break;
10352 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
10353 case ISD::SUBC: Opc = X86ISD::SUB; break;
10354 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
10355 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010356
Chris Lattner5b856542010-12-20 00:59:46 +000010357 if (!ExtraOp)
10358 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
10359 Op.getOperand(1));
10360 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
10361 Op.getOperand(1), Op.getOperand(2));
10362}
10363
Evan Cheng0db9fe62006-04-25 20:13:52 +000010364/// LowerOperation - Provide custom lowering hooks for some operations.
10365///
Dan Gohmand858e902010-04-17 15:26:15 +000010366SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +000010367 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010368 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010369 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Eric Christopher9a9d2752010-07-22 02:48:34 +000010370 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Eli Friedman14648462011-07-27 22:21:52 +000010371 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010372 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
10373 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Eli Friedman327236c2011-08-24 20:50:09 +000010374 case ISD::ATOMIC_STORE: return LowerATOMIC_STORE(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010375 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +000010376 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010377 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
10378 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
10379 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
David Greene91585092011-01-26 15:38:49 +000010380 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
David Greenecfe33c42011-01-26 19:13:22 +000010381 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010382 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
10383 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
10384 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000010385 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +000010386 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +000010387 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010388 case ISD::SHL_PARTS:
10389 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +000010390 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010391 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +000010392 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010393 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +000010394 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010395 case ISD::FABS: return LowerFABS(Op, DAG);
10396 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +000010397 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +000010398 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +000010399 case ISD::SETCC: return LowerSETCC(Op, DAG);
10400 case ISD::SELECT: return LowerSELECT(Op, DAG);
10401 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010402 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010403 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +000010404 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +000010405 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010406 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +000010407 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
10408 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010409 case ISD::FRAME_TO_ARGS_OFFSET:
10410 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010411 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010412 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sands4a544a72011-09-06 13:37:06 +000010413 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
10414 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +000010415 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000010416 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
10417 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000010418 case ISD::MUL: return LowerMUL(Op, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +000010419 case ISD::SRA:
10420 case ISD::SRL:
10421 case ISD::SHL: return LowerShift(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +000010422 case ISD::SADDO:
10423 case ISD::UADDO:
10424 case ISD::SSUBO:
10425 case ISD::USUBO:
10426 case ISD::SMULO:
10427 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +000010428 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010429 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +000010430 case ISD::ADDC:
10431 case ISD::ADDE:
10432 case ISD::SUBC:
10433 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000010434 case ISD::ADD: return LowerADD(Op, DAG);
10435 case ISD::SUB: return LowerSUB(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010436 }
Chris Lattner27a6c732007-11-24 07:07:01 +000010437}
10438
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010439static void ReplaceATOMIC_LOAD(SDNode *Node,
10440 SmallVectorImpl<SDValue> &Results,
10441 SelectionDAG &DAG) {
10442 DebugLoc dl = Node->getDebugLoc();
10443 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
10444
10445 // Convert wide load -> cmpxchg8b/cmpxchg16b
10446 // FIXME: On 32-bit, load -> fild or movq would be more efficient
10447 // (The only way to get a 16-byte load is cmpxchg16b)
10448 // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
Benjamin Kramer2753ae32011-08-27 17:36:14 +000010449 SDValue Zero = DAG.getConstant(0, VT);
10450 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010451 Node->getOperand(0),
10452 Node->getOperand(1), Zero, Zero,
10453 cast<AtomicSDNode>(Node)->getMemOperand(),
10454 cast<AtomicSDNode>(Node)->getOrdering(),
10455 cast<AtomicSDNode>(Node)->getSynchScope());
10456 Results.push_back(Swap.getValue(0));
10457 Results.push_back(Swap.getValue(1));
10458}
10459
Duncan Sands1607f052008-12-01 11:39:25 +000010460void X86TargetLowering::
10461ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000010462 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +000010463 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010464 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +000010465 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +000010466
10467 SDValue Chain = Node->getOperand(0);
10468 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010469 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010470 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +000010471 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010472 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +000010473 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +000010474 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +000010475 SDValue Result =
10476 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
10477 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +000010478 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +000010479 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010480 Results.push_back(Result.getValue(2));
10481}
10482
Duncan Sands126d9072008-07-04 11:47:58 +000010483/// ReplaceNodeResults - Replace a node with an illegal result type
10484/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +000010485void X86TargetLowering::ReplaceNodeResults(SDNode *N,
10486 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000010487 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010488 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +000010489 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +000010490 default:
Duncan Sands1607f052008-12-01 11:39:25 +000010491 assert(false && "Do not know how to custom type legalize this operation!");
10492 return;
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010493 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +000010494 case ISD::ADDC:
10495 case ISD::ADDE:
10496 case ISD::SUBC:
10497 case ISD::SUBE:
10498 // We don't want to expand or promote these.
10499 return;
Duncan Sands1607f052008-12-01 11:39:25 +000010500 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +000010501 std::pair<SDValue,SDValue> Vals =
10502 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +000010503 SDValue FIST = Vals.first, StackSlot = Vals.second;
10504 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +000010505 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +000010506 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +000010507 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
10508 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +000010509 }
10510 return;
10511 }
10512 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010513 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000010514 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010515 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010516 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +000010517 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +000010518 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010519 eax.getValue(2));
10520 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
10521 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +000010522 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010523 Results.push_back(edx.getValue(1));
10524 return;
10525 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010526 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +000010527 EVT T = N->getValueType(0);
Benjamin Kramer2753ae32011-08-27 17:36:14 +000010528 assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
Eli Friedman43f51ae2011-08-26 21:21:21 +000010529 bool Regs64bit = T == MVT::i128;
10530 EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
Duncan Sands1607f052008-12-01 11:39:25 +000010531 SDValue cpInL, cpInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000010532 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
10533 DAG.getConstant(0, HalfT));
10534 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
10535 DAG.getConstant(1, HalfT));
10536 cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
10537 Regs64bit ? X86::RAX : X86::EAX,
10538 cpInL, SDValue());
10539 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
10540 Regs64bit ? X86::RDX : X86::EDX,
10541 cpInH, cpInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000010542 SDValue swapInL, swapInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000010543 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
10544 DAG.getConstant(0, HalfT));
10545 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
10546 DAG.getConstant(1, HalfT));
10547 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
10548 Regs64bit ? X86::RBX : X86::EBX,
10549 swapInL, cpInH.getValue(1));
10550 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
10551 Regs64bit ? X86::RCX : X86::ECX,
10552 swapInH, swapInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000010553 SDValue Ops[] = { swapInH.getValue(0),
10554 N->getOperand(1),
10555 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010556 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000010557 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
Eli Friedman43f51ae2011-08-26 21:21:21 +000010558 unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
10559 X86ISD::LCMPXCHG8_DAG;
10560 SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000010561 Ops, 3, T, MMO);
Eli Friedman43f51ae2011-08-26 21:21:21 +000010562 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
10563 Regs64bit ? X86::RAX : X86::EAX,
10564 HalfT, Result.getValue(1));
10565 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
10566 Regs64bit ? X86::RDX : X86::EDX,
10567 HalfT, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +000010568 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Eli Friedman43f51ae2011-08-26 21:21:21 +000010569 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010570 Results.push_back(cpOutH.getValue(1));
10571 return;
10572 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010573 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +000010574 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
10575 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010576 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +000010577 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
10578 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010579 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +000010580 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
10581 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010582 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +000010583 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
10584 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010585 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +000010586 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
10587 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010588 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +000010589 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
10590 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010591 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +000010592 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
10593 return;
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010594 case ISD::ATOMIC_LOAD:
10595 ReplaceATOMIC_LOAD(N, Results, DAG);
Chris Lattner27a6c732007-11-24 07:07:01 +000010596 }
Evan Cheng0db9fe62006-04-25 20:13:52 +000010597}
10598
Evan Cheng72261582005-12-20 06:22:03 +000010599const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
10600 switch (Opcode) {
10601 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +000010602 case X86ISD::BSF: return "X86ISD::BSF";
10603 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +000010604 case X86ISD::SHLD: return "X86ISD::SHLD";
10605 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +000010606 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +000010607 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +000010608 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +000010609 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +000010610 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +000010611 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +000010612 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
10613 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
10614 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +000010615 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +000010616 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +000010617 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +000010618 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +000010619 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +000010620 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +000010621 case X86ISD::COMI: return "X86ISD::COMI";
10622 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +000010623 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +000010624 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +000010625 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
10626 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +000010627 case X86ISD::CMOV: return "X86ISD::CMOV";
10628 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +000010629 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +000010630 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
10631 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +000010632 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +000010633 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +000010634 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +000010635 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +000010636 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +000010637 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
10638 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +000010639 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +000010640 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000010641 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Nate Begemanb65c1752010-12-17 22:55:37 +000010642 case X86ISD::PSIGNB: return "X86ISD::PSIGNB";
10643 case X86ISD::PSIGNW: return "X86ISD::PSIGNW";
10644 case X86ISD::PSIGND: return "X86ISD::PSIGND";
Evan Cheng8ca29322006-11-10 21:43:37 +000010645 case X86ISD::FMAX: return "X86ISD::FMAX";
10646 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +000010647 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
10648 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000010649 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +000010650 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010651 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000010652 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000010653 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +000010654 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
10655 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010656 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
10657 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
10658 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
10659 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
10660 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
10661 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +000010662 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
10663 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +000010664 case X86ISD::VSHL: return "X86ISD::VSHL";
10665 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +000010666 case X86ISD::CMPPD: return "X86ISD::CMPPD";
10667 case X86ISD::CMPPS: return "X86ISD::CMPPS";
10668 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
10669 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
10670 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
10671 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
10672 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
10673 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
10674 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
10675 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010676 case X86ISD::ADD: return "X86ISD::ADD";
10677 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +000010678 case X86ISD::ADC: return "X86ISD::ADC";
10679 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +000010680 case X86ISD::SMUL: return "X86ISD::SMUL";
10681 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +000010682 case X86ISD::INC: return "X86ISD::INC";
10683 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +000010684 case X86ISD::OR: return "X86ISD::OR";
10685 case X86ISD::XOR: return "X86ISD::XOR";
10686 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +000010687 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +000010688 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000010689 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010690 case X86ISD::PALIGN: return "X86ISD::PALIGN";
10691 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
10692 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
10693 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
10694 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
10695 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
10696 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
10697 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
10698 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010699 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000010700 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010701 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000010702 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
10703 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010704 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
10705 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
10706 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
10707 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
10708 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
10709 case X86ISD::MOVSD: return "X86ISD::MOVSD";
10710 case X86ISD::MOVSS: return "X86ISD::MOVSS";
10711 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
10712 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
David Greenefbf05d32011-02-22 23:31:46 +000010713 case X86ISD::VUNPCKLPDY: return "X86ISD::VUNPCKLPDY";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010714 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
10715 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
10716 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
10717 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
10718 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
10719 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
10720 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
10721 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
10722 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
10723 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +000010724 case X86ISD::VBROADCAST: return "X86ISD::VBROADCAST";
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000010725 case X86ISD::VPERMILPS: return "X86ISD::VPERMILPS";
10726 case X86ISD::VPERMILPSY: return "X86ISD::VPERMILPSY";
10727 case X86ISD::VPERMILPD: return "X86ISD::VPERMILPD";
10728 case X86ISD::VPERMILPDY: return "X86ISD::VPERMILPDY";
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +000010729 case X86ISD::VPERM2F128: return "X86ISD::VPERM2F128";
Dan Gohmand6708ea2009-08-15 01:38:56 +000010730 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000010731 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010732 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000010733 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Rafael Espindolad07b7ec2011-08-30 19:43:21 +000010734 case X86ISD::SEG_ALLOCA: return "X86ISD::SEG_ALLOCA";
Evan Cheng72261582005-12-20 06:22:03 +000010735 }
10736}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010737
Chris Lattnerc9addb72007-03-30 23:15:24 +000010738// isLegalAddressingMode - Return true if the addressing mode represented
10739// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000010740bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010741 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000010742 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010743 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000010744 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000010745
Chris Lattnerc9addb72007-03-30 23:15:24 +000010746 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010747 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010748 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000010749
Chris Lattnerc9addb72007-03-30 23:15:24 +000010750 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000010751 unsigned GVFlags =
10752 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010753
Chris Lattnerdfed4132009-07-10 07:38:24 +000010754 // If a reference to this global requires an extra load, we can't fold it.
10755 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010756 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010757
Chris Lattnerdfed4132009-07-10 07:38:24 +000010758 // If BaseGV requires a register for the PIC base, we cannot also have a
10759 // BaseReg specified.
10760 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000010761 return false;
Evan Cheng52787842007-08-01 23:46:47 +000010762
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010763 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000010764 if ((M != CodeModel::Small || R != Reloc::Static) &&
10765 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010766 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000010767 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010768
Chris Lattnerc9addb72007-03-30 23:15:24 +000010769 switch (AM.Scale) {
10770 case 0:
10771 case 1:
10772 case 2:
10773 case 4:
10774 case 8:
10775 // These scales always work.
10776 break;
10777 case 3:
10778 case 5:
10779 case 9:
10780 // These scales are formed with basereg+scalereg. Only accept if there is
10781 // no basereg yet.
10782 if (AM.HasBaseReg)
10783 return false;
10784 break;
10785 default: // Other stuff never works.
10786 return false;
10787 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010788
Chris Lattnerc9addb72007-03-30 23:15:24 +000010789 return true;
10790}
10791
10792
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010793bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010794 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000010795 return false;
Evan Chenge127a732007-10-29 07:57:50 +000010796 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
10797 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010798 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +000010799 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010800 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +000010801}
10802
Owen Andersone50ed302009-08-10 22:56:29 +000010803bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000010804 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010805 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010806 unsigned NumBits1 = VT1.getSizeInBits();
10807 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010808 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010809 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010810 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010811}
Evan Cheng2bd122c2007-10-26 01:56:11 +000010812
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010813bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010814 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010815 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010816}
10817
Owen Andersone50ed302009-08-10 22:56:29 +000010818bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010819 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000010820 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010821}
10822
Owen Andersone50ed302009-08-10 22:56:29 +000010823bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000010824 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000010825 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000010826}
10827
Evan Cheng60c07e12006-07-05 22:17:51 +000010828/// isShuffleMaskLegal - Targets can use this to indicate that they only
10829/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
10830/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
10831/// are assumed to be legal.
10832bool
Eric Christopherfd179292009-08-27 18:07:15 +000010833X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000010834 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +000010835 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000010836 if (VT.getSizeInBits() == 64)
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000010837 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3() || Subtarget->hasAVX());
Nate Begeman9008ca62009-04-27 18:41:29 +000010838
Nate Begemana09008b2009-10-19 02:17:23 +000010839 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +000010840 return (VT.getVectorNumElements() == 2 ||
10841 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
10842 isMOVLMask(M, VT) ||
10843 isSHUFPMask(M, VT) ||
10844 isPSHUFDMask(M, VT) ||
10845 isPSHUFHWMask(M, VT) ||
10846 isPSHUFLWMask(M, VT) ||
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000010847 isPALIGNRMask(M, VT, Subtarget->hasSSSE3() || Subtarget->hasAVX()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +000010848 isUNPCKLMask(M, VT) ||
10849 isUNPCKHMask(M, VT) ||
10850 isUNPCKL_v_undef_Mask(M, VT) ||
10851 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010852}
10853
Dan Gohman7d8143f2008-04-09 20:09:42 +000010854bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000010855X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000010856 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +000010857 unsigned NumElts = VT.getVectorNumElements();
10858 // FIXME: This collection of masks seems suspect.
10859 if (NumElts == 2)
10860 return true;
10861 if (NumElts == 4 && VT.getSizeInBits() == 128) {
10862 return (isMOVLMask(Mask, VT) ||
10863 isCommutedMOVLMask(Mask, VT, true) ||
10864 isSHUFPMask(Mask, VT) ||
10865 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010866 }
10867 return false;
10868}
10869
10870//===----------------------------------------------------------------------===//
10871// X86 Scheduler Hooks
10872//===----------------------------------------------------------------------===//
10873
Mon P Wang63307c32008-05-05 19:05:59 +000010874// private utility function
10875MachineBasicBlock *
10876X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
10877 MachineBasicBlock *MBB,
10878 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010879 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010880 unsigned LoadOpc,
10881 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010882 unsigned notOpc,
10883 unsigned EAXreg,
10884 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010885 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010886 // For the atomic bitwise operator, we generate
10887 // thisMBB:
10888 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010889 // ld t1 = [bitinstr.addr]
10890 // op t2 = t1, [bitinstr.val]
10891 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010892 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10893 // bz newMBB
10894 // fallthrough -->nextMBB
10895 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10896 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010897 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010898 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010899
Mon P Wang63307c32008-05-05 19:05:59 +000010900 /// First build the CFG
10901 MachineFunction *F = MBB->getParent();
10902 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010903 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10904 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10905 F->insert(MBBIter, newMBB);
10906 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010907
Dan Gohman14152b42010-07-06 20:24:04 +000010908 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10909 nextMBB->splice(nextMBB->begin(), thisMBB,
10910 llvm::next(MachineBasicBlock::iterator(bInstr)),
10911 thisMBB->end());
10912 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010913
Mon P Wang63307c32008-05-05 19:05:59 +000010914 // Update thisMBB to fall through to newMBB
10915 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010916
Mon P Wang63307c32008-05-05 19:05:59 +000010917 // newMBB jumps to itself and fall through to nextMBB
10918 newMBB->addSuccessor(nextMBB);
10919 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010920
Mon P Wang63307c32008-05-05 19:05:59 +000010921 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010922 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010923 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +000010924 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010925 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010926 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010927 int numArgs = bInstr->getNumOperands() - 1;
10928 for (int i=0; i < numArgs; ++i)
10929 argOpers[i] = &bInstr->getOperand(i+1);
10930
10931 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010932 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010933 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010934
Dale Johannesen140be2d2008-08-19 18:47:28 +000010935 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010936 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010937 for (int i=0; i <= lastAddrIndx; ++i)
10938 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010939
Dale Johannesen140be2d2008-08-19 18:47:28 +000010940 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010941 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010942 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010943 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010944 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010945 tt = t1;
10946
Dale Johannesen140be2d2008-08-19 18:47:28 +000010947 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +000010948 assert((argOpers[valArgIndx]->isReg() ||
10949 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010950 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +000010951 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010952 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010953 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010954 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010955 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +000010956 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010957
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010958 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +000010959 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010960
Dale Johannesene4d209d2009-02-03 20:21:25 +000010961 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +000010962 for (int i=0; i <= lastAddrIndx; ++i)
10963 (*MIB).addOperand(*argOpers[i]);
10964 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +000010965 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010966 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10967 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +000010968
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010969 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +000010970 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +000010971
Mon P Wang63307c32008-05-05 19:05:59 +000010972 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010973 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010974
Dan Gohman14152b42010-07-06 20:24:04 +000010975 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010976 return nextMBB;
10977}
10978
Dale Johannesen1b54c7f2008-10-03 19:41:08 +000010979// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +000010980MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010981X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
10982 MachineBasicBlock *MBB,
10983 unsigned regOpcL,
10984 unsigned regOpcH,
10985 unsigned immOpcL,
10986 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010987 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010988 // For the atomic bitwise operator, we generate
10989 // thisMBB (instructions are in pairs, except cmpxchg8b)
10990 // ld t1,t2 = [bitinstr.addr]
10991 // newMBB:
10992 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
10993 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +000010994 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010995 // mov ECX, EBX <- t5, t6
10996 // mov EAX, EDX <- t1, t2
10997 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
10998 // mov t3, t4 <- EAX, EDX
10999 // bz newMBB
11000 // result in out1, out2
11001 // fallthrough -->nextMBB
11002
11003 const TargetRegisterClass *RC = X86::GR32RegisterClass;
11004 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011005 const unsigned NotOpc = X86::NOT32r;
11006 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11007 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11008 MachineFunction::iterator MBBIter = MBB;
11009 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000011010
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011011 /// First build the CFG
11012 MachineFunction *F = MBB->getParent();
11013 MachineBasicBlock *thisMBB = MBB;
11014 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
11015 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
11016 F->insert(MBBIter, newMBB);
11017 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011018
Dan Gohman14152b42010-07-06 20:24:04 +000011019 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11020 nextMBB->splice(nextMBB->begin(), thisMBB,
11021 llvm::next(MachineBasicBlock::iterator(bInstr)),
11022 thisMBB->end());
11023 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011024
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011025 // Update thisMBB to fall through to newMBB
11026 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011027
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011028 // newMBB jumps to itself and fall through to nextMBB
11029 newMBB->addSuccessor(nextMBB);
11030 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011031
Dale Johannesene4d209d2009-02-03 20:21:25 +000011032 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011033 // Insert instructions into newMBB based on incoming instruction
11034 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011035 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000011036 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011037 MachineOperand& dest1Oper = bInstr->getOperand(0);
11038 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011039 MachineOperand* argOpers[2 + X86::AddrNumOperands];
11040 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011041 argOpers[i] = &bInstr->getOperand(i+2);
11042
Dan Gohman71ea4e52010-05-14 21:01:44 +000011043 // We use some of the operands multiple times, so conservatively just
11044 // clear any kill flags that might be present.
11045 if (argOpers[i]->isReg() && argOpers[i]->isUse())
11046 argOpers[i]->setIsKill(false);
11047 }
11048
Evan Chengad5b52f2010-01-08 19:14:57 +000011049 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011050 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +000011051
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011052 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011053 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011054 for (int i=0; i <= lastAddrIndx; ++i)
11055 (*MIB).addOperand(*argOpers[i]);
11056 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011057 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +000011058 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +000011059 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011060 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +000011061 MachineOperand newOp3 = *(argOpers[3]);
11062 if (newOp3.isImm())
11063 newOp3.setImm(newOp3.getImm()+4);
11064 else
11065 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011066 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +000011067 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011068
11069 // t3/4 are defined later, at the bottom of the loop
11070 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
11071 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011072 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011073 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011074 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011075 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
11076
Evan Cheng306b4ca2010-01-08 23:41:50 +000011077 // The subsequent operations should be using the destination registers of
11078 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +000011079 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +000011080 t1 = F->getRegInfo().createVirtualRegister(RC);
11081 t2 = F->getRegInfo().createVirtualRegister(RC);
11082 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
11083 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011084 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +000011085 t1 = dest1Oper.getReg();
11086 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011087 }
11088
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011089 int valArgIndx = lastAddrIndx + 1;
11090 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +000011091 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011092 "invalid operand");
11093 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
11094 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011095 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000011096 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011097 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000011098 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +000011099 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000011100 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011101 (*MIB).addOperand(*argOpers[valArgIndx]);
11102 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000011103 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011104 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000011105 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011106 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000011107 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011108 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000011109 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +000011110 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000011111 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011112 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011113
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011114 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011115 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011116 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011117 MIB.addReg(t2);
11118
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011119 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011120 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011121 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011122 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +000011123
Dale Johannesene4d209d2009-02-03 20:21:25 +000011124 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011125 for (int i=0; i <= lastAddrIndx; ++i)
11126 (*MIB).addOperand(*argOpers[i]);
11127
11128 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000011129 (*MIB).setMemRefs(bInstr->memoperands_begin(),
11130 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011131
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011132 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011133 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011134 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011135 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +000011136
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011137 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000011138 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011139
Dan Gohman14152b42010-07-06 20:24:04 +000011140 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011141 return nextMBB;
11142}
11143
11144// private utility function
11145MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +000011146X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
11147 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000011148 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000011149 // For the atomic min/max operator, we generate
11150 // thisMBB:
11151 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000011152 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +000011153 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +000011154 // cmp t1, t2
11155 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +000011156 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000011157 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
11158 // bz newMBB
11159 // fallthrough -->nextMBB
11160 //
11161 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11162 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000011163 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000011164 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000011165
Mon P Wang63307c32008-05-05 19:05:59 +000011166 /// First build the CFG
11167 MachineFunction *F = MBB->getParent();
11168 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000011169 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
11170 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
11171 F->insert(MBBIter, newMBB);
11172 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011173
Dan Gohman14152b42010-07-06 20:24:04 +000011174 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11175 nextMBB->splice(nextMBB->begin(), thisMBB,
11176 llvm::next(MachineBasicBlock::iterator(mInstr)),
11177 thisMBB->end());
11178 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011179
Mon P Wang63307c32008-05-05 19:05:59 +000011180 // Update thisMBB to fall through to newMBB
11181 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011182
Mon P Wang63307c32008-05-05 19:05:59 +000011183 // newMBB jumps to newMBB and fall through to nextMBB
11184 newMBB->addSuccessor(nextMBB);
11185 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011186
Dale Johannesene4d209d2009-02-03 20:21:25 +000011187 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000011188 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011189 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000011190 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +000011191 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011192 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000011193 int numArgs = mInstr->getNumOperands() - 1;
11194 for (int i=0; i < numArgs; ++i)
11195 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +000011196
Mon P Wang63307c32008-05-05 19:05:59 +000011197 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011198 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011199 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000011200
Mon P Wangab3e7472008-05-05 22:56:23 +000011201 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011202 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000011203 for (int i=0; i <= lastAddrIndx; ++i)
11204 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +000011205
Mon P Wang63307c32008-05-05 19:05:59 +000011206 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +000011207 assert((argOpers[valArgIndx]->isReg() ||
11208 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000011209 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +000011210
11211 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +000011212 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011213 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +000011214 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000011215 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000011216 (*MIB).addOperand(*argOpers[valArgIndx]);
11217
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011218 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +000011219 MIB.addReg(t1);
11220
Dale Johannesene4d209d2009-02-03 20:21:25 +000011221 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +000011222 MIB.addReg(t1);
11223 MIB.addReg(t2);
11224
11225 // Generate movc
11226 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011227 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +000011228 MIB.addReg(t2);
11229 MIB.addReg(t1);
11230
11231 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +000011232 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +000011233 for (int i=0; i <= lastAddrIndx; ++i)
11234 (*MIB).addOperand(*argOpers[i]);
11235 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +000011236 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000011237 (*MIB).setMemRefs(mInstr->memoperands_begin(),
11238 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000011239
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011240 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +000011241 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +000011242
Mon P Wang63307c32008-05-05 19:05:59 +000011243 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000011244 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000011245
Dan Gohman14152b42010-07-06 20:24:04 +000011246 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000011247 return nextMBB;
11248}
11249
Eric Christopherf83a5de2009-08-27 18:08:16 +000011250// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011251// or XMM0_V32I8 in AVX all of this code can be replaced with that
11252// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +000011253MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +000011254X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +000011255 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011256 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
11257 "Target must have SSE4.2 or AVX features enabled");
11258
Eric Christopherb120ab42009-08-18 22:50:32 +000011259 DebugLoc dl = MI->getDebugLoc();
11260 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +000011261 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011262 if (!Subtarget->hasAVX()) {
11263 if (memArg)
11264 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
11265 else
11266 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
11267 } else {
11268 if (memArg)
11269 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
11270 else
11271 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
11272 }
Eric Christopherb120ab42009-08-18 22:50:32 +000011273
Eric Christopher41c902f2010-11-30 08:20:21 +000011274 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +000011275 for (unsigned i = 0; i < numArgs; ++i) {
11276 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +000011277 if (!(Op.isReg() && Op.isImplicit()))
11278 MIB.addOperand(Op);
11279 }
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000011280 BuildMI(*BB, MI, dl,
11281 TII->get(Subtarget->hasAVX() ? X86::VMOVAPSrr : X86::MOVAPSrr),
11282 MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000011283 .addReg(X86::XMM0);
11284
Dan Gohman14152b42010-07-06 20:24:04 +000011285 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000011286 return BB;
11287}
11288
11289MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +000011290X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000011291 DebugLoc dl = MI->getDebugLoc();
11292 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011293
Eric Christopher228232b2010-11-30 07:20:12 +000011294 // Address into RAX/EAX, other two args into ECX, EDX.
11295 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
11296 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
11297 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
11298 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000011299 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011300
Eric Christopher228232b2010-11-30 07:20:12 +000011301 unsigned ValOps = X86::AddrNumOperands;
11302 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
11303 .addReg(MI->getOperand(ValOps).getReg());
11304 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
11305 .addReg(MI->getOperand(ValOps+1).getReg());
11306
11307 // The instruction doesn't actually take any operands though.
11308 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011309
Eric Christopher228232b2010-11-30 07:20:12 +000011310 MI->eraseFromParent(); // The pseudo is gone now.
11311 return BB;
11312}
11313
11314MachineBasicBlock *
11315X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000011316 DebugLoc dl = MI->getDebugLoc();
11317 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011318
Eric Christopher228232b2010-11-30 07:20:12 +000011319 // First arg in ECX, the second in EAX.
11320 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
11321 .addReg(MI->getOperand(0).getReg());
11322 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
11323 .addReg(MI->getOperand(1).getReg());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011324
Eric Christopher228232b2010-11-30 07:20:12 +000011325 // The instruction doesn't actually take any operands though.
11326 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011327
Eric Christopher228232b2010-11-30 07:20:12 +000011328 MI->eraseFromParent(); // The pseudo is gone now.
11329 return BB;
11330}
11331
11332MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000011333X86TargetLowering::EmitVAARG64WithCustomInserter(
11334 MachineInstr *MI,
11335 MachineBasicBlock *MBB) const {
11336 // Emit va_arg instruction on X86-64.
11337
11338 // Operands to this pseudo-instruction:
11339 // 0 ) Output : destination address (reg)
11340 // 1-5) Input : va_list address (addr, i64mem)
11341 // 6 ) ArgSize : Size (in bytes) of vararg type
11342 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
11343 // 8 ) Align : Alignment of type
11344 // 9 ) EFLAGS (implicit-def)
11345
11346 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
11347 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
11348
11349 unsigned DestReg = MI->getOperand(0).getReg();
11350 MachineOperand &Base = MI->getOperand(1);
11351 MachineOperand &Scale = MI->getOperand(2);
11352 MachineOperand &Index = MI->getOperand(3);
11353 MachineOperand &Disp = MI->getOperand(4);
11354 MachineOperand &Segment = MI->getOperand(5);
11355 unsigned ArgSize = MI->getOperand(6).getImm();
11356 unsigned ArgMode = MI->getOperand(7).getImm();
11357 unsigned Align = MI->getOperand(8).getImm();
11358
11359 // Memory Reference
11360 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
11361 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
11362 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
11363
11364 // Machine Information
11365 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11366 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
11367 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
11368 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
11369 DebugLoc DL = MI->getDebugLoc();
11370
11371 // struct va_list {
11372 // i32 gp_offset
11373 // i32 fp_offset
11374 // i64 overflow_area (address)
11375 // i64 reg_save_area (address)
11376 // }
11377 // sizeof(va_list) = 24
11378 // alignment(va_list) = 8
11379
11380 unsigned TotalNumIntRegs = 6;
11381 unsigned TotalNumXMMRegs = 8;
11382 bool UseGPOffset = (ArgMode == 1);
11383 bool UseFPOffset = (ArgMode == 2);
11384 unsigned MaxOffset = TotalNumIntRegs * 8 +
11385 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
11386
11387 /* Align ArgSize to a multiple of 8 */
11388 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
11389 bool NeedsAlign = (Align > 8);
11390
11391 MachineBasicBlock *thisMBB = MBB;
11392 MachineBasicBlock *overflowMBB;
11393 MachineBasicBlock *offsetMBB;
11394 MachineBasicBlock *endMBB;
11395
11396 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
11397 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
11398 unsigned OffsetReg = 0;
11399
11400 if (!UseGPOffset && !UseFPOffset) {
11401 // If we only pull from the overflow region, we don't create a branch.
11402 // We don't need to alter control flow.
11403 OffsetDestReg = 0; // unused
11404 OverflowDestReg = DestReg;
11405
11406 offsetMBB = NULL;
11407 overflowMBB = thisMBB;
11408 endMBB = thisMBB;
11409 } else {
11410 // First emit code to check if gp_offset (or fp_offset) is below the bound.
11411 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
11412 // If not, pull from overflow_area. (branch to overflowMBB)
11413 //
11414 // thisMBB
11415 // | .
11416 // | .
11417 // offsetMBB overflowMBB
11418 // | .
11419 // | .
11420 // endMBB
11421
11422 // Registers for the PHI in endMBB
11423 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
11424 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
11425
11426 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11427 MachineFunction *MF = MBB->getParent();
11428 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11429 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11430 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11431
11432 MachineFunction::iterator MBBIter = MBB;
11433 ++MBBIter;
11434
11435 // Insert the new basic blocks
11436 MF->insert(MBBIter, offsetMBB);
11437 MF->insert(MBBIter, overflowMBB);
11438 MF->insert(MBBIter, endMBB);
11439
11440 // Transfer the remainder of MBB and its successor edges to endMBB.
11441 endMBB->splice(endMBB->begin(), thisMBB,
11442 llvm::next(MachineBasicBlock::iterator(MI)),
11443 thisMBB->end());
11444 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11445
11446 // Make offsetMBB and overflowMBB successors of thisMBB
11447 thisMBB->addSuccessor(offsetMBB);
11448 thisMBB->addSuccessor(overflowMBB);
11449
11450 // endMBB is a successor of both offsetMBB and overflowMBB
11451 offsetMBB->addSuccessor(endMBB);
11452 overflowMBB->addSuccessor(endMBB);
11453
11454 // Load the offset value into a register
11455 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
11456 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
11457 .addOperand(Base)
11458 .addOperand(Scale)
11459 .addOperand(Index)
11460 .addDisp(Disp, UseFPOffset ? 4 : 0)
11461 .addOperand(Segment)
11462 .setMemRefs(MMOBegin, MMOEnd);
11463
11464 // Check if there is enough room left to pull this argument.
11465 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
11466 .addReg(OffsetReg)
11467 .addImm(MaxOffset + 8 - ArgSizeA8);
11468
11469 // Branch to "overflowMBB" if offset >= max
11470 // Fall through to "offsetMBB" otherwise
11471 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
11472 .addMBB(overflowMBB);
11473 }
11474
11475 // In offsetMBB, emit code to use the reg_save_area.
11476 if (offsetMBB) {
11477 assert(OffsetReg != 0);
11478
11479 // Read the reg_save_area address.
11480 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
11481 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
11482 .addOperand(Base)
11483 .addOperand(Scale)
11484 .addOperand(Index)
11485 .addDisp(Disp, 16)
11486 .addOperand(Segment)
11487 .setMemRefs(MMOBegin, MMOEnd);
11488
11489 // Zero-extend the offset
11490 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
11491 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
11492 .addImm(0)
11493 .addReg(OffsetReg)
11494 .addImm(X86::sub_32bit);
11495
11496 // Add the offset to the reg_save_area to get the final address.
11497 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
11498 .addReg(OffsetReg64)
11499 .addReg(RegSaveReg);
11500
11501 // Compute the offset for the next argument
11502 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
11503 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
11504 .addReg(OffsetReg)
11505 .addImm(UseFPOffset ? 16 : 8);
11506
11507 // Store it back into the va_list.
11508 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
11509 .addOperand(Base)
11510 .addOperand(Scale)
11511 .addOperand(Index)
11512 .addDisp(Disp, UseFPOffset ? 4 : 0)
11513 .addOperand(Segment)
11514 .addReg(NextOffsetReg)
11515 .setMemRefs(MMOBegin, MMOEnd);
11516
11517 // Jump to endMBB
11518 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
11519 .addMBB(endMBB);
11520 }
11521
11522 //
11523 // Emit code to use overflow area
11524 //
11525
11526 // Load the overflow_area address into a register.
11527 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
11528 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
11529 .addOperand(Base)
11530 .addOperand(Scale)
11531 .addOperand(Index)
11532 .addDisp(Disp, 8)
11533 .addOperand(Segment)
11534 .setMemRefs(MMOBegin, MMOEnd);
11535
11536 // If we need to align it, do so. Otherwise, just copy the address
11537 // to OverflowDestReg.
11538 if (NeedsAlign) {
11539 // Align the overflow address
11540 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
11541 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
11542
11543 // aligned_addr = (addr + (align-1)) & ~(align-1)
11544 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
11545 .addReg(OverflowAddrReg)
11546 .addImm(Align-1);
11547
11548 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
11549 .addReg(TmpReg)
11550 .addImm(~(uint64_t)(Align-1));
11551 } else {
11552 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
11553 .addReg(OverflowAddrReg);
11554 }
11555
11556 // Compute the next overflow address after this argument.
11557 // (the overflow address should be kept 8-byte aligned)
11558 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
11559 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
11560 .addReg(OverflowDestReg)
11561 .addImm(ArgSizeA8);
11562
11563 // Store the new overflow address.
11564 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
11565 .addOperand(Base)
11566 .addOperand(Scale)
11567 .addOperand(Index)
11568 .addDisp(Disp, 8)
11569 .addOperand(Segment)
11570 .addReg(NextAddrReg)
11571 .setMemRefs(MMOBegin, MMOEnd);
11572
11573 // If we branched, emit the PHI to the front of endMBB.
11574 if (offsetMBB) {
11575 BuildMI(*endMBB, endMBB->begin(), DL,
11576 TII->get(X86::PHI), DestReg)
11577 .addReg(OffsetDestReg).addMBB(offsetMBB)
11578 .addReg(OverflowDestReg).addMBB(overflowMBB);
11579 }
11580
11581 // Erase the pseudo instruction
11582 MI->eraseFromParent();
11583
11584 return endMBB;
11585}
11586
11587MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000011588X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
11589 MachineInstr *MI,
11590 MachineBasicBlock *MBB) const {
11591 // Emit code to save XMM registers to the stack. The ABI says that the
11592 // number of registers to save is given in %al, so it's theoretically
11593 // possible to do an indirect jump trick to avoid saving all of them,
11594 // however this code takes a simpler approach and just executes all
11595 // of the stores if %al is non-zero. It's less code, and it's probably
11596 // easier on the hardware branch predictor, and stores aren't all that
11597 // expensive anyway.
11598
11599 // Create the new basic blocks. One block contains all the XMM stores,
11600 // and one block is the final destination regardless of whether any
11601 // stores were performed.
11602 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11603 MachineFunction *F = MBB->getParent();
11604 MachineFunction::iterator MBBIter = MBB;
11605 ++MBBIter;
11606 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
11607 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
11608 F->insert(MBBIter, XMMSaveMBB);
11609 F->insert(MBBIter, EndMBB);
11610
Dan Gohman14152b42010-07-06 20:24:04 +000011611 // Transfer the remainder of MBB and its successor edges to EndMBB.
11612 EndMBB->splice(EndMBB->begin(), MBB,
11613 llvm::next(MachineBasicBlock::iterator(MI)),
11614 MBB->end());
11615 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
11616
Dan Gohmand6708ea2009-08-15 01:38:56 +000011617 // The original block will now fall through to the XMM save block.
11618 MBB->addSuccessor(XMMSaveMBB);
11619 // The XMMSaveMBB will fall through to the end block.
11620 XMMSaveMBB->addSuccessor(EndMBB);
11621
11622 // Now add the instructions.
11623 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11624 DebugLoc DL = MI->getDebugLoc();
11625
11626 unsigned CountReg = MI->getOperand(0).getReg();
11627 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
11628 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
11629
11630 if (!Subtarget->isTargetWin64()) {
11631 // If %al is 0, branch around the XMM save block.
11632 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000011633 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011634 MBB->addSuccessor(EndMBB);
11635 }
11636
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000011637 unsigned MOVOpc = Subtarget->hasAVX() ? X86::VMOVAPSmr : X86::MOVAPSmr;
Dan Gohmand6708ea2009-08-15 01:38:56 +000011638 // In the XMM save block, save all the XMM argument registers.
11639 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
11640 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000011641 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000011642 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000011643 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000011644 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000011645 /*Size=*/16, /*Align=*/16);
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000011646 BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
Dan Gohmand6708ea2009-08-15 01:38:56 +000011647 .addFrameIndex(RegSaveFrameIndex)
11648 .addImm(/*Scale=*/1)
11649 .addReg(/*IndexReg=*/0)
11650 .addImm(/*Disp=*/Offset)
11651 .addReg(/*Segment=*/0)
11652 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000011653 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011654 }
11655
Dan Gohman14152b42010-07-06 20:24:04 +000011656 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000011657
11658 return EndMBB;
11659}
Mon P Wang63307c32008-05-05 19:05:59 +000011660
Evan Cheng60c07e12006-07-05 22:17:51 +000011661MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000011662X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011663 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000011664 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11665 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000011666
Chris Lattner52600972009-09-02 05:57:00 +000011667 // To "insert" a SELECT_CC instruction, we actually have to insert the
11668 // diamond control-flow pattern. The incoming instruction knows the
11669 // destination vreg to set, the condition code register to branch on, the
11670 // true/false values to select between, and a branch opcode to use.
11671 const BasicBlock *LLVM_BB = BB->getBasicBlock();
11672 MachineFunction::iterator It = BB;
11673 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000011674
Chris Lattner52600972009-09-02 05:57:00 +000011675 // thisMBB:
11676 // ...
11677 // TrueVal = ...
11678 // cmpTY ccX, r1, r2
11679 // bCC copy1MBB
11680 // fallthrough --> copy0MBB
11681 MachineBasicBlock *thisMBB = BB;
11682 MachineFunction *F = BB->getParent();
11683 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
11684 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000011685 F->insert(It, copy0MBB);
11686 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000011687
Bill Wendling730c07e2010-06-25 20:48:10 +000011688 // If the EFLAGS register isn't dead in the terminator, then claim that it's
11689 // live into the sink and copy blocks.
Jakob Stoklund Olesen4a1b9d82011-09-02 23:52:49 +000011690 if (!MI->killsRegister(X86::EFLAGS)) {
11691 copy0MBB->addLiveIn(X86::EFLAGS);
11692 sinkMBB->addLiveIn(X86::EFLAGS);
Bill Wendling730c07e2010-06-25 20:48:10 +000011693 }
11694
Dan Gohman14152b42010-07-06 20:24:04 +000011695 // Transfer the remainder of BB and its successor edges to sinkMBB.
11696 sinkMBB->splice(sinkMBB->begin(), BB,
11697 llvm::next(MachineBasicBlock::iterator(MI)),
11698 BB->end());
11699 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
11700
11701 // Add the true and fallthrough blocks as its successors.
11702 BB->addSuccessor(copy0MBB);
11703 BB->addSuccessor(sinkMBB);
11704
11705 // Create the conditional branch instruction.
11706 unsigned Opc =
11707 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
11708 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
11709
Chris Lattner52600972009-09-02 05:57:00 +000011710 // copy0MBB:
11711 // %FalseValue = ...
11712 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000011713 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000011714
Chris Lattner52600972009-09-02 05:57:00 +000011715 // sinkMBB:
11716 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
11717 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000011718 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
11719 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000011720 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
11721 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
11722
Dan Gohman14152b42010-07-06 20:24:04 +000011723 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000011724 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000011725}
11726
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011727MachineBasicBlock *
Rafael Espindola151ab3e2011-08-30 19:47:04 +000011728X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
11729 bool Is64Bit) const {
11730 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11731 DebugLoc DL = MI->getDebugLoc();
11732 MachineFunction *MF = BB->getParent();
11733 const BasicBlock *LLVM_BB = BB->getBasicBlock();
11734
11735 assert(EnableSegmentedStacks);
11736
11737 unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
11738 unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
11739
11740 // BB:
11741 // ... [Till the alloca]
11742 // If stacklet is not large enough, jump to mallocMBB
11743 //
11744 // bumpMBB:
11745 // Allocate by subtracting from RSP
11746 // Jump to continueMBB
11747 //
11748 // mallocMBB:
11749 // Allocate by call to runtime
11750 //
11751 // continueMBB:
11752 // ...
11753 // [rest of original BB]
11754 //
11755
11756 MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11757 MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11758 MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11759
11760 MachineRegisterInfo &MRI = MF->getRegInfo();
11761 const TargetRegisterClass *AddrRegClass =
11762 getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
11763
11764 unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
11765 bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
11766 tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
11767 sizeVReg = MI->getOperand(1).getReg(),
11768 physSPReg = Is64Bit ? X86::RSP : X86::ESP;
11769
11770 MachineFunction::iterator MBBIter = BB;
11771 ++MBBIter;
11772
11773 MF->insert(MBBIter, bumpMBB);
11774 MF->insert(MBBIter, mallocMBB);
11775 MF->insert(MBBIter, continueMBB);
11776
11777 continueMBB->splice(continueMBB->begin(), BB, llvm::next
11778 (MachineBasicBlock::iterator(MI)), BB->end());
11779 continueMBB->transferSuccessorsAndUpdatePHIs(BB);
11780
11781 // Add code to the main basic block to check if the stack limit has been hit,
11782 // and if so, jump to mallocMBB otherwise to bumpMBB.
11783 BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
11784 BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), tmpSPVReg)
11785 .addReg(tmpSPVReg).addReg(sizeVReg);
11786 BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
11787 .addReg(0).addImm(0).addReg(0).addImm(TlsOffset).addReg(TlsReg)
11788 .addReg(tmpSPVReg);
11789 BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
11790
11791 // bumpMBB simply decreases the stack pointer, since we know the current
11792 // stacklet has enough space.
11793 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
11794 .addReg(tmpSPVReg);
11795 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
11796 .addReg(tmpSPVReg);
11797 BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
11798
11799 // Calls into a routine in libgcc to allocate more space from the heap.
11800 if (Is64Bit) {
11801 BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
11802 .addReg(sizeVReg);
11803 BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
11804 .addExternalSymbol("__morestack_allocate_stack_space").addReg(X86::RDI);
11805 } else {
11806 BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
11807 .addImm(12);
11808 BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
11809 BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
11810 .addExternalSymbol("__morestack_allocate_stack_space");
11811 }
11812
11813 if (!Is64Bit)
11814 BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
11815 .addImm(16);
11816
11817 BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
11818 .addReg(Is64Bit ? X86::RAX : X86::EAX);
11819 BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
11820
11821 // Set up the CFG correctly.
11822 BB->addSuccessor(bumpMBB);
11823 BB->addSuccessor(mallocMBB);
11824 mallocMBB->addSuccessor(continueMBB);
11825 bumpMBB->addSuccessor(continueMBB);
11826
11827 // Take care of the PHI nodes.
11828 BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
11829 MI->getOperand(0).getReg())
11830 .addReg(mallocPtrVReg).addMBB(mallocMBB)
11831 .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
11832
11833 // Delete the original pseudo instruction.
11834 MI->eraseFromParent();
11835
11836 // And we're done.
11837 return continueMBB;
11838}
11839
11840MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011841X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011842 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011843 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11844 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011845
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011846 assert(!Subtarget->isTargetEnvMacho());
11847
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011848 // The lowering is pretty easy: we're just emitting the call to _alloca. The
11849 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011850
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011851 if (Subtarget->isTargetWin64()) {
11852 if (Subtarget->isTargetCygMing()) {
11853 // ___chkstk(Mingw64):
11854 // Clobbers R10, R11, RAX and EFLAGS.
11855 // Updates RSP.
11856 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11857 .addExternalSymbol("___chkstk")
11858 .addReg(X86::RAX, RegState::Implicit)
11859 .addReg(X86::RSP, RegState::Implicit)
11860 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
11861 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
11862 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11863 } else {
11864 // __chkstk(MSVCRT): does not update stack pointer.
11865 // Clobbers R10, R11 and EFLAGS.
11866 // FIXME: RAX(allocated size) might be reused and not killed.
11867 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11868 .addExternalSymbol("__chkstk")
11869 .addReg(X86::RAX, RegState::Implicit)
11870 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11871 // RAX has the offset to subtracted from RSP.
11872 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
11873 .addReg(X86::RSP)
11874 .addReg(X86::RAX);
11875 }
11876 } else {
11877 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011878 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
11879
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011880 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
11881 .addExternalSymbol(StackProbeSymbol)
11882 .addReg(X86::EAX, RegState::Implicit)
11883 .addReg(X86::ESP, RegState::Implicit)
11884 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
11885 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
11886 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11887 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011888
Dan Gohman14152b42010-07-06 20:24:04 +000011889 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011890 return BB;
11891}
Chris Lattner52600972009-09-02 05:57:00 +000011892
11893MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000011894X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
11895 MachineBasicBlock *BB) const {
11896 // This is pretty easy. We're taking the value that we received from
11897 // our load from the relocation, sticking it in either RDI (x86-64)
11898 // or EAX and doing an indirect call. The return value will then
11899 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000011900 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000011901 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000011902 DebugLoc DL = MI->getDebugLoc();
11903 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000011904
11905 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000011906 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000011907
Eric Christopher30ef0e52010-06-03 04:07:48 +000011908 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000011909 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11910 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000011911 .addReg(X86::RIP)
11912 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011913 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011914 MI->getOperand(3).getTargetFlags())
11915 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000011916 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000011917 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000011918 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000011919 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11920 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000011921 .addReg(0)
11922 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011923 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000011924 MI->getOperand(3).getTargetFlags())
11925 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011926 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011927 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011928 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000011929 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11930 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000011931 .addReg(TII->getGlobalBaseReg(F))
11932 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011933 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011934 MI->getOperand(3).getTargetFlags())
11935 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011936 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011937 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011938 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000011939
Dan Gohman14152b42010-07-06 20:24:04 +000011940 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000011941 return BB;
11942}
11943
11944MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000011945X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011946 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000011947 switch (MI->getOpcode()) {
11948 default: assert(false && "Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000011949 case X86::TAILJMPd64:
11950 case X86::TAILJMPr64:
11951 case X86::TAILJMPm64:
11952 assert(!"TAILJMP64 would not be touched here.");
11953 case X86::TCRETURNdi64:
11954 case X86::TCRETURNri64:
11955 case X86::TCRETURNmi64:
11956 // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
11957 // On AMD64, additional defs should be added before register allocation.
11958 if (!Subtarget->isTargetWin64()) {
11959 MI->addRegisterDefined(X86::RSI);
11960 MI->addRegisterDefined(X86::RDI);
11961 MI->addRegisterDefined(X86::XMM6);
11962 MI->addRegisterDefined(X86::XMM7);
11963 MI->addRegisterDefined(X86::XMM8);
11964 MI->addRegisterDefined(X86::XMM9);
11965 MI->addRegisterDefined(X86::XMM10);
11966 MI->addRegisterDefined(X86::XMM11);
11967 MI->addRegisterDefined(X86::XMM12);
11968 MI->addRegisterDefined(X86::XMM13);
11969 MI->addRegisterDefined(X86::XMM14);
11970 MI->addRegisterDefined(X86::XMM15);
11971 }
11972 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011973 case X86::WIN_ALLOCA:
11974 return EmitLoweredWinAlloca(MI, BB);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000011975 case X86::SEG_ALLOCA_32:
11976 return EmitLoweredSegAlloca(MI, BB, false);
11977 case X86::SEG_ALLOCA_64:
11978 return EmitLoweredSegAlloca(MI, BB, true);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011979 case X86::TLSCall_32:
11980 case X86::TLSCall_64:
11981 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000011982 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000011983 case X86::CMOV_FR32:
11984 case X86::CMOV_FR64:
11985 case X86::CMOV_V4F32:
11986 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000011987 case X86::CMOV_V2I64:
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +000011988 case X86::CMOV_V8F32:
11989 case X86::CMOV_V4F64:
11990 case X86::CMOV_V4I64:
Chris Lattner314a1132010-03-14 18:31:44 +000011991 case X86::CMOV_GR16:
11992 case X86::CMOV_GR32:
11993 case X86::CMOV_RFP32:
11994 case X86::CMOV_RFP64:
11995 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011996 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011997
Dale Johannesen849f2142007-07-03 00:53:03 +000011998 case X86::FP32_TO_INT16_IN_MEM:
11999 case X86::FP32_TO_INT32_IN_MEM:
12000 case X86::FP32_TO_INT64_IN_MEM:
12001 case X86::FP64_TO_INT16_IN_MEM:
12002 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000012003 case X86::FP64_TO_INT64_IN_MEM:
12004 case X86::FP80_TO_INT16_IN_MEM:
12005 case X86::FP80_TO_INT32_IN_MEM:
12006 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000012007 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12008 DebugLoc DL = MI->getDebugLoc();
12009
Evan Cheng60c07e12006-07-05 22:17:51 +000012010 // Change the floating point control register to use "round towards zero"
12011 // mode when truncating to an integer value.
12012 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000012013 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000012014 addFrameReference(BuildMI(*BB, MI, DL,
12015 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000012016
12017 // Load the old value of the high byte of the control word...
12018 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000012019 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000012020 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000012021 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000012022
12023 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000012024 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000012025 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000012026
12027 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000012028 addFrameReference(BuildMI(*BB, MI, DL,
12029 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000012030
12031 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000012032 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000012033 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000012034
12035 // Get the X86 opcode to use.
12036 unsigned Opc;
12037 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000012038 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000012039 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
12040 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
12041 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
12042 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
12043 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
12044 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000012045 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
12046 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
12047 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000012048 }
12049
12050 X86AddressMode AM;
12051 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000012052 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000012053 AM.BaseType = X86AddressMode::RegBase;
12054 AM.Base.Reg = Op.getReg();
12055 } else {
12056 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000012057 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000012058 }
12059 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000012060 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000012061 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000012062 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000012063 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000012064 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000012065 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000012066 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000012067 AM.GV = Op.getGlobal();
12068 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000012069 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000012070 }
Dan Gohman14152b42010-07-06 20:24:04 +000012071 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000012072 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000012073
12074 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000012075 addFrameReference(BuildMI(*BB, MI, DL,
12076 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000012077
Dan Gohman14152b42010-07-06 20:24:04 +000012078 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000012079 return BB;
12080 }
Eric Christopherb120ab42009-08-18 22:50:32 +000012081 // String/text processing lowering.
12082 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000012083 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000012084 return EmitPCMP(MI, BB, 3, false /* in-mem */);
12085 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000012086 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000012087 return EmitPCMP(MI, BB, 3, true /* in-mem */);
12088 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000012089 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000012090 return EmitPCMP(MI, BB, 5, false /* in mem */);
12091 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000012092 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000012093 return EmitPCMP(MI, BB, 5, true /* in mem */);
12094
Eric Christopher228232b2010-11-30 07:20:12 +000012095 // Thread synchronization.
12096 case X86::MONITOR:
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012097 return EmitMonitor(MI, BB);
Eric Christopher228232b2010-11-30 07:20:12 +000012098 case X86::MWAIT:
12099 return EmitMwait(MI, BB);
12100
Eric Christopherb120ab42009-08-18 22:50:32 +000012101 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000012102 case X86::ATOMAND32:
12103 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000012104 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012105 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012106 X86::NOT32r, X86::EAX,
12107 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000012108 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000012109 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
12110 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012111 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012112 X86::NOT32r, X86::EAX,
12113 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000012114 case X86::ATOMXOR32:
12115 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000012116 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012117 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012118 X86::NOT32r, X86::EAX,
12119 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000012120 case X86::ATOMNAND32:
12121 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012122 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012123 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012124 X86::NOT32r, X86::EAX,
12125 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000012126 case X86::ATOMMIN32:
12127 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
12128 case X86::ATOMMAX32:
12129 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
12130 case X86::ATOMUMIN32:
12131 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
12132 case X86::ATOMUMAX32:
12133 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000012134
12135 case X86::ATOMAND16:
12136 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
12137 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012138 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012139 X86::NOT16r, X86::AX,
12140 X86::GR16RegisterClass);
12141 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000012142 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012143 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012144 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012145 X86::NOT16r, X86::AX,
12146 X86::GR16RegisterClass);
12147 case X86::ATOMXOR16:
12148 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
12149 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012150 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012151 X86::NOT16r, X86::AX,
12152 X86::GR16RegisterClass);
12153 case X86::ATOMNAND16:
12154 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
12155 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012156 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012157 X86::NOT16r, X86::AX,
12158 X86::GR16RegisterClass, true);
12159 case X86::ATOMMIN16:
12160 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
12161 case X86::ATOMMAX16:
12162 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
12163 case X86::ATOMUMIN16:
12164 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
12165 case X86::ATOMUMAX16:
12166 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
12167
12168 case X86::ATOMAND8:
12169 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
12170 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012171 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012172 X86::NOT8r, X86::AL,
12173 X86::GR8RegisterClass);
12174 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000012175 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012176 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012177 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012178 X86::NOT8r, X86::AL,
12179 X86::GR8RegisterClass);
12180 case X86::ATOMXOR8:
12181 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
12182 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012183 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012184 X86::NOT8r, X86::AL,
12185 X86::GR8RegisterClass);
12186 case X86::ATOMNAND8:
12187 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
12188 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012189 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012190 X86::NOT8r, X86::AL,
12191 X86::GR8RegisterClass, true);
12192 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012193 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000012194 case X86::ATOMAND64:
12195 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000012196 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012197 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000012198 X86::NOT64r, X86::RAX,
12199 X86::GR64RegisterClass);
12200 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000012201 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
12202 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012203 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000012204 X86::NOT64r, X86::RAX,
12205 X86::GR64RegisterClass);
12206 case X86::ATOMXOR64:
12207 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000012208 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012209 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000012210 X86::NOT64r, X86::RAX,
12211 X86::GR64RegisterClass);
12212 case X86::ATOMNAND64:
12213 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
12214 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012215 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000012216 X86::NOT64r, X86::RAX,
12217 X86::GR64RegisterClass, true);
12218 case X86::ATOMMIN64:
12219 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
12220 case X86::ATOMMAX64:
12221 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
12222 case X86::ATOMUMIN64:
12223 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
12224 case X86::ATOMUMAX64:
12225 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012226
12227 // This group does 64-bit operations on a 32-bit host.
12228 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012229 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012230 X86::AND32rr, X86::AND32rr,
12231 X86::AND32ri, X86::AND32ri,
12232 false);
12233 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012234 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012235 X86::OR32rr, X86::OR32rr,
12236 X86::OR32ri, X86::OR32ri,
12237 false);
12238 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012239 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012240 X86::XOR32rr, X86::XOR32rr,
12241 X86::XOR32ri, X86::XOR32ri,
12242 false);
12243 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012244 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012245 X86::AND32rr, X86::AND32rr,
12246 X86::AND32ri, X86::AND32ri,
12247 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012248 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012249 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012250 X86::ADD32rr, X86::ADC32rr,
12251 X86::ADD32ri, X86::ADC32ri,
12252 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012253 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012254 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012255 X86::SUB32rr, X86::SBB32rr,
12256 X86::SUB32ri, X86::SBB32ri,
12257 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000012258 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012259 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000012260 X86::MOV32rr, X86::MOV32rr,
12261 X86::MOV32ri, X86::MOV32ri,
12262 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000012263 case X86::VASTART_SAVE_XMM_REGS:
12264 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000012265
12266 case X86::VAARG_64:
12267 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000012268 }
12269}
12270
12271//===----------------------------------------------------------------------===//
12272// X86 Optimization Hooks
12273//===----------------------------------------------------------------------===//
12274
Dan Gohman475871a2008-07-27 21:46:04 +000012275void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000012276 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000012277 APInt &KnownZero,
12278 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000012279 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000012280 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012281 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000012282 assert((Opc >= ISD::BUILTIN_OP_END ||
12283 Opc == ISD::INTRINSIC_WO_CHAIN ||
12284 Opc == ISD::INTRINSIC_W_CHAIN ||
12285 Opc == ISD::INTRINSIC_VOID) &&
12286 "Should use MaskedValueIsZero if you don't know whether Op"
12287 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012288
Dan Gohmanf4f92f52008-02-13 23:07:24 +000012289 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012290 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000012291 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000012292 case X86ISD::ADD:
12293 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000012294 case X86ISD::ADC:
12295 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000012296 case X86ISD::SMUL:
12297 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000012298 case X86ISD::INC:
12299 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000012300 case X86ISD::OR:
12301 case X86ISD::XOR:
12302 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000012303 // These nodes' second result is a boolean.
12304 if (Op.getResNo() == 0)
12305 break;
12306 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012307 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000012308 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
12309 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000012310 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012311 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012312}
Chris Lattner259e97c2006-01-31 19:43:35 +000012313
Owen Andersonbc146b02010-09-21 20:42:50 +000012314unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
12315 unsigned Depth) const {
12316 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
12317 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
12318 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000012319
Owen Andersonbc146b02010-09-21 20:42:50 +000012320 // Fallback case.
12321 return 1;
12322}
12323
Evan Cheng206ee9d2006-07-07 08:33:52 +000012324/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000012325/// node is a GlobalAddress + offset.
12326bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000012327 const GlobalValue* &GA,
12328 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000012329 if (N->getOpcode() == X86ISD::Wrapper) {
12330 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000012331 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000012332 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000012333 return true;
12334 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000012335 }
Evan Chengad4196b2008-05-12 19:56:52 +000012336 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000012337}
12338
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000012339/// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
12340/// same as extracting the high 128-bit part of 256-bit vector and then
12341/// inserting the result into the low part of a new 256-bit vector
12342static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
12343 EVT VT = SVOp->getValueType(0);
12344 int NumElems = VT.getVectorNumElements();
12345
12346 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
12347 for (int i = 0, j = NumElems/2; i < NumElems/2; ++i, ++j)
12348 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
12349 SVOp->getMaskElt(j) >= 0)
12350 return false;
12351
12352 return true;
12353}
12354
12355/// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
12356/// same as extracting the low 128-bit part of 256-bit vector and then
12357/// inserting the result into the high part of a new 256-bit vector
12358static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
12359 EVT VT = SVOp->getValueType(0);
12360 int NumElems = VT.getVectorNumElements();
12361
12362 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
12363 for (int i = NumElems/2, j = 0; i < NumElems; ++i, ++j)
12364 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
12365 SVOp->getMaskElt(j) >= 0)
12366 return false;
12367
12368 return true;
12369}
12370
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012371/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
12372static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
12373 TargetLowering::DAGCombinerInfo &DCI) {
12374 DebugLoc dl = N->getDebugLoc();
12375 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
12376 SDValue V1 = SVOp->getOperand(0);
12377 SDValue V2 = SVOp->getOperand(1);
12378 EVT VT = SVOp->getValueType(0);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000012379 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012380
12381 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
12382 V2.getOpcode() == ISD::CONCAT_VECTORS) {
12383 //
12384 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000012385 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012386 // V UNDEF BUILD_VECTOR UNDEF
12387 // \ / \ /
12388 // CONCAT_VECTOR CONCAT_VECTOR
12389 // \ /
12390 // \ /
12391 // RESULT: V + zero extended
12392 //
12393 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
12394 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
12395 V1.getOperand(1).getOpcode() != ISD::UNDEF)
12396 return SDValue();
12397
12398 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
12399 return SDValue();
12400
12401 // To match the shuffle mask, the first half of the mask should
12402 // be exactly the first vector, and all the rest a splat with the
12403 // first element of the second one.
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012404 for (int i = 0; i < NumElems/2; ++i)
12405 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
12406 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
12407 return SDValue();
12408
12409 // Emit a zeroed vector and insert the desired subvector on its
12410 // first half.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000012411 SDValue Zeros = getZeroVector(VT, true /* HasXMMInt */, DAG, dl);
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012412 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0),
12413 DAG.getConstant(0, MVT::i32), DAG, dl);
12414 return DCI.CombineTo(N, InsV);
12415 }
12416
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000012417 //===--------------------------------------------------------------------===//
12418 // Combine some shuffles into subvector extracts and inserts:
12419 //
12420
12421 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
12422 if (isShuffleHigh128VectorInsertLow(SVOp)) {
12423 SDValue V = Extract128BitVector(V1, DAG.getConstant(NumElems/2, MVT::i32),
12424 DAG, dl);
12425 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT),
12426 V, DAG.getConstant(0, MVT::i32), DAG, dl);
12427 return DCI.CombineTo(N, InsV);
12428 }
12429
12430 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
12431 if (isShuffleLow128VectorInsertHigh(SVOp)) {
12432 SDValue V = Extract128BitVector(V1, DAG.getConstant(0, MVT::i32), DAG, dl);
12433 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT),
12434 V, DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
12435 return DCI.CombineTo(N, InsV);
12436 }
12437
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012438 return SDValue();
12439}
12440
12441/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000012442static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000012443 TargetLowering::DAGCombinerInfo &DCI,
12444 const X86Subtarget *Subtarget) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000012445 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000012446 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000012447
Mon P Wanga0fd0d52010-12-19 23:55:53 +000012448 // Don't create instructions with illegal types after legalize types has run.
12449 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12450 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
12451 return SDValue();
12452
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000012453 // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
12454 if (Subtarget->hasAVX() && VT.getSizeInBits() == 256 &&
12455 N->getOpcode() == ISD::VECTOR_SHUFFLE)
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012456 return PerformShuffleCombine256(N, DAG, DCI);
12457
12458 // Only handle 128 wide vector from here on.
12459 if (VT.getSizeInBits() != 128)
12460 return SDValue();
12461
12462 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
12463 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
12464 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000012465 SmallVector<SDValue, 16> Elts;
12466 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012467 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000012468
Nate Begemanfdea31a2010-03-24 20:49:50 +000012469 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000012470}
Evan Chengd880b972008-05-09 21:53:03 +000012471
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000012472/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
12473/// generation and convert it from being a bunch of shuffles and extracts
12474/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012475static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
12476 const TargetLowering &TLI) {
12477 SDValue InputVector = N->getOperand(0);
12478
12479 // Only operate on vectors of 4 elements, where the alternative shuffling
12480 // gets to be more expensive.
12481 if (InputVector.getValueType() != MVT::v4i32)
12482 return SDValue();
12483
12484 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
12485 // single use which is a sign-extend or zero-extend, and all elements are
12486 // used.
12487 SmallVector<SDNode *, 4> Uses;
12488 unsigned ExtractedElements = 0;
12489 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
12490 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
12491 if (UI.getUse().getResNo() != InputVector.getResNo())
12492 return SDValue();
12493
12494 SDNode *Extract = *UI;
12495 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
12496 return SDValue();
12497
12498 if (Extract->getValueType(0) != MVT::i32)
12499 return SDValue();
12500 if (!Extract->hasOneUse())
12501 return SDValue();
12502 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
12503 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
12504 return SDValue();
12505 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
12506 return SDValue();
12507
12508 // Record which element was extracted.
12509 ExtractedElements |=
12510 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
12511
12512 Uses.push_back(Extract);
12513 }
12514
12515 // If not all the elements were used, this may not be worthwhile.
12516 if (ExtractedElements != 15)
12517 return SDValue();
12518
12519 // Ok, we've now decided to do the transformation.
12520 DebugLoc dl = InputVector.getDebugLoc();
12521
12522 // Store the value to a temporary stack slot.
12523 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000012524 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
12525 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012526
12527 // Replace each use (extract) with a load of the appropriate element.
12528 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
12529 UE = Uses.end(); UI != UE; ++UI) {
12530 SDNode *Extract = *UI;
12531
Nadav Rotem86694292011-05-17 08:31:57 +000012532 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012533 SDValue Idx = Extract->getOperand(1);
12534 unsigned EltSize =
12535 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
12536 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
12537 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
12538
Nadav Rotem86694292011-05-17 08:31:57 +000012539 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000012540 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012541
12542 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000012543 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000012544 ScalarAddr, MachinePointerInfo(),
12545 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012546
12547 // Replace the exact with the load.
12548 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
12549 }
12550
12551 // The replacement was made in place; don't return anything.
12552 return SDValue();
12553}
12554
Duncan Sands6bcd2192011-09-17 16:49:39 +000012555/// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
12556/// nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012557static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000012558 const X86Subtarget *Subtarget) {
12559 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000012560 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000012561 // Get the LHS/RHS of the select.
12562 SDValue LHS = N->getOperand(1);
12563 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000012564
Dan Gohman670e5392009-09-21 18:03:22 +000012565 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000012566 // instructions match the semantics of the common C idiom x<y?x:y but not
12567 // x<=y?x:y, because of how they handle negative zero (which can be
12568 // ignored in unsafe-math mode).
Duncan Sands6bcd2192011-09-17 16:49:39 +000012569 if (Subtarget->hasXMMInt() && Cond.getOpcode() == ISD::SETCC &&
12570 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64 ||
12571 LHS.getValueType() == MVT::v4f32 || LHS.getValueType() == MVT::v2f64)) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000012572 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012573
Chris Lattner47b4ce82009-03-11 05:48:52 +000012574 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000012575 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000012576 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
12577 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000012578 switch (CC) {
12579 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000012580 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000012581 // Converting this to a min would handle NaNs incorrectly, and swapping
12582 // the operands would cause it to handle comparisons between positive
12583 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012584 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000012585 if (!UnsafeFPMath &&
12586 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
12587 break;
12588 std::swap(LHS, RHS);
12589 }
Dan Gohman670e5392009-09-21 18:03:22 +000012590 Opcode = X86ISD::FMIN;
12591 break;
12592 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000012593 // Converting this to a min would handle comparisons between positive
12594 // and negative zero incorrectly.
12595 if (!UnsafeFPMath &&
12596 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
12597 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012598 Opcode = X86ISD::FMIN;
12599 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000012600 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000012601 // Converting this to a min would handle both negative zeros and NaNs
12602 // incorrectly, but we can swap the operands to fix both.
12603 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012604 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012605 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000012606 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012607 Opcode = X86ISD::FMIN;
12608 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012609
Dan Gohman670e5392009-09-21 18:03:22 +000012610 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012611 // Converting this to a max would handle comparisons between positive
12612 // and negative zero incorrectly.
12613 if (!UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000012614 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012615 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012616 Opcode = X86ISD::FMAX;
12617 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000012618 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000012619 // Converting this to a max would handle NaNs incorrectly, and swapping
12620 // the operands would cause it to handle comparisons between positive
12621 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012622 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000012623 if (!UnsafeFPMath &&
12624 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
12625 break;
12626 std::swap(LHS, RHS);
12627 }
Dan Gohman670e5392009-09-21 18:03:22 +000012628 Opcode = X86ISD::FMAX;
12629 break;
12630 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012631 // Converting this to a max would handle both negative zeros and NaNs
12632 // incorrectly, but we can swap the operands to fix both.
12633 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012634 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012635 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012636 case ISD::SETGE:
12637 Opcode = X86ISD::FMAX;
12638 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000012639 }
Dan Gohman670e5392009-09-21 18:03:22 +000012640 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000012641 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
12642 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000012643 switch (CC) {
12644 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000012645 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012646 // Converting this to a min would handle comparisons between positive
12647 // and negative zero incorrectly, and swapping the operands would
12648 // cause it to handle NaNs incorrectly.
12649 if (!UnsafeFPMath &&
12650 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000012651 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012652 break;
12653 std::swap(LHS, RHS);
12654 }
Dan Gohman670e5392009-09-21 18:03:22 +000012655 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000012656 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012657 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000012658 // Converting this to a min would handle NaNs incorrectly.
12659 if (!UnsafeFPMath &&
12660 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
12661 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012662 Opcode = X86ISD::FMIN;
12663 break;
12664 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012665 // Converting this to a min would handle both negative zeros and NaNs
12666 // incorrectly, but we can swap the operands to fix both.
12667 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012668 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012669 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012670 case ISD::SETGE:
12671 Opcode = X86ISD::FMIN;
12672 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012673
Dan Gohman670e5392009-09-21 18:03:22 +000012674 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000012675 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012676 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012677 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012678 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000012679 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012680 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000012681 // Converting this to a max would handle comparisons between positive
12682 // and negative zero incorrectly, and swapping the operands would
12683 // cause it to handle NaNs incorrectly.
12684 if (!UnsafeFPMath &&
12685 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000012686 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012687 break;
12688 std::swap(LHS, RHS);
12689 }
Dan Gohman670e5392009-09-21 18:03:22 +000012690 Opcode = X86ISD::FMAX;
12691 break;
12692 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000012693 // Converting this to a max would handle both negative zeros and NaNs
12694 // incorrectly, but we can swap the operands to fix both.
12695 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012696 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012697 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000012698 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012699 Opcode = X86ISD::FMAX;
12700 break;
12701 }
Chris Lattner83e6c992006-10-04 06:57:07 +000012702 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012703
Chris Lattner47b4ce82009-03-11 05:48:52 +000012704 if (Opcode)
12705 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000012706 }
Eric Christopherfd179292009-08-27 18:07:15 +000012707
Chris Lattnerd1980a52009-03-12 06:52:53 +000012708 // If this is a select between two integer constants, try to do some
12709 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000012710 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
12711 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000012712 // Don't do this for crazy integer types.
12713 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
12714 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000012715 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000012716 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000012717
Chris Lattnercee56e72009-03-13 05:53:31 +000012718 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000012719 // Efficiently invertible.
12720 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
12721 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
12722 isa<ConstantSDNode>(Cond.getOperand(1))))) {
12723 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000012724 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000012725 }
Eric Christopherfd179292009-08-27 18:07:15 +000012726
Chris Lattnerd1980a52009-03-12 06:52:53 +000012727 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000012728 if (FalseC->getAPIntValue() == 0 &&
12729 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000012730 if (NeedsCondInvert) // Invert the condition if needed.
12731 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12732 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012733
Chris Lattnerd1980a52009-03-12 06:52:53 +000012734 // Zero extend the condition if needed.
12735 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012736
Chris Lattnercee56e72009-03-13 05:53:31 +000012737 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000012738 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000012739 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000012740 }
Eric Christopherfd179292009-08-27 18:07:15 +000012741
Chris Lattner97a29a52009-03-13 05:22:11 +000012742 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000012743 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000012744 if (NeedsCondInvert) // Invert the condition if needed.
12745 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12746 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012747
Chris Lattner97a29a52009-03-13 05:22:11 +000012748 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000012749 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
12750 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000012751 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000012752 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000012753 }
Eric Christopherfd179292009-08-27 18:07:15 +000012754
Chris Lattnercee56e72009-03-13 05:53:31 +000012755 // Optimize cases that will turn into an LEA instruction. This requires
12756 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000012757 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000012758 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012759 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000012760
Chris Lattnercee56e72009-03-13 05:53:31 +000012761 bool isFastMultiplier = false;
12762 if (Diff < 10) {
12763 switch ((unsigned char)Diff) {
12764 default: break;
12765 case 1: // result = add base, cond
12766 case 2: // result = lea base( , cond*2)
12767 case 3: // result = lea base(cond, cond*2)
12768 case 4: // result = lea base( , cond*4)
12769 case 5: // result = lea base(cond, cond*4)
12770 case 8: // result = lea base( , cond*8)
12771 case 9: // result = lea base(cond, cond*8)
12772 isFastMultiplier = true;
12773 break;
12774 }
12775 }
Eric Christopherfd179292009-08-27 18:07:15 +000012776
Chris Lattnercee56e72009-03-13 05:53:31 +000012777 if (isFastMultiplier) {
12778 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
12779 if (NeedsCondInvert) // Invert the condition if needed.
12780 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12781 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012782
Chris Lattnercee56e72009-03-13 05:53:31 +000012783 // Zero extend the condition if needed.
12784 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
12785 Cond);
12786 // Scale the condition by the difference.
12787 if (Diff != 1)
12788 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
12789 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012790
Chris Lattnercee56e72009-03-13 05:53:31 +000012791 // Add the base if non-zero.
12792 if (FalseC->getAPIntValue() != 0)
12793 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12794 SDValue(FalseC, 0));
12795 return Cond;
12796 }
Eric Christopherfd179292009-08-27 18:07:15 +000012797 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000012798 }
12799 }
Eric Christopherfd179292009-08-27 18:07:15 +000012800
Dan Gohman475871a2008-07-27 21:46:04 +000012801 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000012802}
12803
Chris Lattnerd1980a52009-03-12 06:52:53 +000012804/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
12805static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
12806 TargetLowering::DAGCombinerInfo &DCI) {
12807 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000012808
Chris Lattnerd1980a52009-03-12 06:52:53 +000012809 // If the flag operand isn't dead, don't touch this CMOV.
12810 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
12811 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000012812
Evan Chengb5a55d92011-05-24 01:48:22 +000012813 SDValue FalseOp = N->getOperand(0);
12814 SDValue TrueOp = N->getOperand(1);
12815 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
12816 SDValue Cond = N->getOperand(3);
12817 if (CC == X86::COND_E || CC == X86::COND_NE) {
12818 switch (Cond.getOpcode()) {
12819 default: break;
12820 case X86ISD::BSR:
12821 case X86ISD::BSF:
12822 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
12823 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
12824 return (CC == X86::COND_E) ? FalseOp : TrueOp;
12825 }
12826 }
12827
Chris Lattnerd1980a52009-03-12 06:52:53 +000012828 // If this is a select between two integer constants, try to do some
12829 // optimizations. Note that the operands are ordered the opposite of SELECT
12830 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000012831 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
12832 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000012833 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
12834 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000012835 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
12836 CC = X86::GetOppositeBranchCondition(CC);
12837 std::swap(TrueC, FalseC);
12838 }
Eric Christopherfd179292009-08-27 18:07:15 +000012839
Chris Lattnerd1980a52009-03-12 06:52:53 +000012840 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000012841 // This is efficient for any integer data type (including i8/i16) and
12842 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000012843 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012844 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12845 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012846
Chris Lattnerd1980a52009-03-12 06:52:53 +000012847 // Zero extend the condition if needed.
12848 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012849
Chris Lattnerd1980a52009-03-12 06:52:53 +000012850 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
12851 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000012852 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000012853 if (N->getNumValues() == 2) // Dead flag value?
12854 return DCI.CombineTo(N, Cond, SDValue());
12855 return Cond;
12856 }
Eric Christopherfd179292009-08-27 18:07:15 +000012857
Chris Lattnercee56e72009-03-13 05:53:31 +000012858 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
12859 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000012860 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012861 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12862 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012863
Chris Lattner97a29a52009-03-13 05:22:11 +000012864 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000012865 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
12866 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000012867 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12868 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000012869
Chris Lattner97a29a52009-03-13 05:22:11 +000012870 if (N->getNumValues() == 2) // Dead flag value?
12871 return DCI.CombineTo(N, Cond, SDValue());
12872 return Cond;
12873 }
Eric Christopherfd179292009-08-27 18:07:15 +000012874
Chris Lattnercee56e72009-03-13 05:53:31 +000012875 // Optimize cases that will turn into an LEA instruction. This requires
12876 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000012877 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000012878 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012879 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000012880
Chris Lattnercee56e72009-03-13 05:53:31 +000012881 bool isFastMultiplier = false;
12882 if (Diff < 10) {
12883 switch ((unsigned char)Diff) {
12884 default: break;
12885 case 1: // result = add base, cond
12886 case 2: // result = lea base( , cond*2)
12887 case 3: // result = lea base(cond, cond*2)
12888 case 4: // result = lea base( , cond*4)
12889 case 5: // result = lea base(cond, cond*4)
12890 case 8: // result = lea base( , cond*8)
12891 case 9: // result = lea base(cond, cond*8)
12892 isFastMultiplier = true;
12893 break;
12894 }
12895 }
Eric Christopherfd179292009-08-27 18:07:15 +000012896
Chris Lattnercee56e72009-03-13 05:53:31 +000012897 if (isFastMultiplier) {
12898 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012899 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12900 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000012901 // Zero extend the condition if needed.
12902 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
12903 Cond);
12904 // Scale the condition by the difference.
12905 if (Diff != 1)
12906 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
12907 DAG.getConstant(Diff, Cond.getValueType()));
12908
12909 // Add the base if non-zero.
12910 if (FalseC->getAPIntValue() != 0)
12911 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12912 SDValue(FalseC, 0));
12913 if (N->getNumValues() == 2) // Dead flag value?
12914 return DCI.CombineTo(N, Cond, SDValue());
12915 return Cond;
12916 }
Eric Christopherfd179292009-08-27 18:07:15 +000012917 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000012918 }
12919 }
12920 return SDValue();
12921}
12922
12923
Evan Cheng0b0cd912009-03-28 05:57:29 +000012924/// PerformMulCombine - Optimize a single multiply with constant into two
12925/// in order to implement it with two cheaper instructions, e.g.
12926/// LEA + SHL, LEA + LEA.
12927static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
12928 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000012929 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
12930 return SDValue();
12931
Owen Andersone50ed302009-08-10 22:56:29 +000012932 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012933 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000012934 return SDValue();
12935
12936 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
12937 if (!C)
12938 return SDValue();
12939 uint64_t MulAmt = C->getZExtValue();
12940 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
12941 return SDValue();
12942
12943 uint64_t MulAmt1 = 0;
12944 uint64_t MulAmt2 = 0;
12945 if ((MulAmt % 9) == 0) {
12946 MulAmt1 = 9;
12947 MulAmt2 = MulAmt / 9;
12948 } else if ((MulAmt % 5) == 0) {
12949 MulAmt1 = 5;
12950 MulAmt2 = MulAmt / 5;
12951 } else if ((MulAmt % 3) == 0) {
12952 MulAmt1 = 3;
12953 MulAmt2 = MulAmt / 3;
12954 }
12955 if (MulAmt2 &&
12956 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
12957 DebugLoc DL = N->getDebugLoc();
12958
12959 if (isPowerOf2_64(MulAmt2) &&
12960 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
12961 // If second multiplifer is pow2, issue it first. We want the multiply by
12962 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
12963 // is an add.
12964 std::swap(MulAmt1, MulAmt2);
12965
12966 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000012967 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012968 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000012969 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000012970 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012971 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000012972 DAG.getConstant(MulAmt1, VT));
12973
Eric Christopherfd179292009-08-27 18:07:15 +000012974 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012975 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000012976 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000012977 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012978 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000012979 DAG.getConstant(MulAmt2, VT));
12980
12981 // Do not add new nodes to DAG combiner worklist.
12982 DCI.CombineTo(N, NewMul, false);
12983 }
12984 return SDValue();
12985}
12986
Evan Chengad9c0a32009-12-15 00:53:42 +000012987static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
12988 SDValue N0 = N->getOperand(0);
12989 SDValue N1 = N->getOperand(1);
12990 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
12991 EVT VT = N0.getValueType();
12992
12993 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
12994 // since the result of setcc_c is all zero's or all ones.
12995 if (N1C && N0.getOpcode() == ISD::AND &&
12996 N0.getOperand(1).getOpcode() == ISD::Constant) {
12997 SDValue N00 = N0.getOperand(0);
12998 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
12999 ((N00.getOpcode() == ISD::ANY_EXTEND ||
13000 N00.getOpcode() == ISD::ZERO_EXTEND) &&
13001 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
13002 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
13003 APInt ShAmt = N1C->getAPIntValue();
13004 Mask = Mask.shl(ShAmt);
13005 if (Mask != 0)
13006 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
13007 N00, DAG.getConstant(Mask, VT));
13008 }
13009 }
13010
13011 return SDValue();
13012}
Evan Cheng0b0cd912009-03-28 05:57:29 +000013013
Nate Begeman740ab032009-01-26 00:52:55 +000013014/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
13015/// when possible.
13016static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
13017 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000013018 EVT VT = N->getValueType(0);
13019 if (!VT.isVector() && VT.isInteger() &&
13020 N->getOpcode() == ISD::SHL)
13021 return PerformSHLCombine(N, DAG);
13022
Nate Begeman740ab032009-01-26 00:52:55 +000013023 // On X86 with SSE2 support, we can transform this to a vector shift if
13024 // all elements are shifted by the same amount. We can't do this in legalize
13025 // because the a constant vector is typically transformed to a constant pool
13026 // so we have no knowledge of the shift amount.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000013027 if (!Subtarget->hasXMMInt())
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013028 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000013029
Owen Anderson825b72b2009-08-11 20:47:22 +000013030 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013031 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000013032
Mon P Wang3becd092009-01-28 08:12:05 +000013033 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000013034 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000013035 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000013036 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000013037 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
13038 unsigned NumElts = VT.getVectorNumElements();
13039 unsigned i = 0;
13040 for (; i != NumElts; ++i) {
13041 SDValue Arg = ShAmtOp.getOperand(i);
13042 if (Arg.getOpcode() == ISD::UNDEF) continue;
13043 BaseShAmt = Arg;
13044 break;
13045 }
13046 for (; i != NumElts; ++i) {
13047 SDValue Arg = ShAmtOp.getOperand(i);
13048 if (Arg.getOpcode() == ISD::UNDEF) continue;
13049 if (Arg != BaseShAmt) {
13050 return SDValue();
13051 }
13052 }
13053 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000013054 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000013055 SDValue InVec = ShAmtOp.getOperand(0);
13056 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
13057 unsigned NumElts = InVec.getValueType().getVectorNumElements();
13058 unsigned i = 0;
13059 for (; i != NumElts; ++i) {
13060 SDValue Arg = InVec.getOperand(i);
13061 if (Arg.getOpcode() == ISD::UNDEF) continue;
13062 BaseShAmt = Arg;
13063 break;
13064 }
13065 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
13066 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000013067 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000013068 if (C->getZExtValue() == SplatIdx)
13069 BaseShAmt = InVec.getOperand(1);
13070 }
13071 }
13072 if (BaseShAmt.getNode() == 0)
13073 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
13074 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000013075 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013076 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000013077
Mon P Wangefa42202009-09-03 19:56:25 +000013078 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000013079 if (EltVT.bitsGT(MVT::i32))
13080 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
13081 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000013082 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000013083
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013084 // The shift amount is identical so we can do a vector shift.
13085 SDValue ValOp = N->getOperand(0);
13086 switch (N->getOpcode()) {
13087 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000013088 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013089 break;
13090 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000013091 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013092 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013093 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013094 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000013095 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013096 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013097 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013098 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000013099 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013100 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013101 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013102 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013103 break;
13104 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000013105 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013106 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013107 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013108 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000013109 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013110 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013111 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013112 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013113 break;
13114 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000013115 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013116 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013117 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013118 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000013119 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013120 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013121 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013122 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000013123 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013124 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013125 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013126 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013127 break;
Nate Begeman740ab032009-01-26 00:52:55 +000013128 }
13129 return SDValue();
13130}
13131
Nate Begemanb65c1752010-12-17 22:55:37 +000013132
Stuart Hastings865f0932011-06-03 23:53:54 +000013133// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
13134// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
13135// and friends. Likewise for OR -> CMPNEQSS.
13136static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
13137 TargetLowering::DAGCombinerInfo &DCI,
13138 const X86Subtarget *Subtarget) {
13139 unsigned opcode;
13140
13141 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
13142 // we're requiring SSE2 for both.
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000013143 if (Subtarget->hasXMMInt() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
Stuart Hastings865f0932011-06-03 23:53:54 +000013144 SDValue N0 = N->getOperand(0);
13145 SDValue N1 = N->getOperand(1);
13146 SDValue CMP0 = N0->getOperand(1);
13147 SDValue CMP1 = N1->getOperand(1);
13148 DebugLoc DL = N->getDebugLoc();
13149
13150 // The SETCCs should both refer to the same CMP.
13151 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
13152 return SDValue();
13153
13154 SDValue CMP00 = CMP0->getOperand(0);
13155 SDValue CMP01 = CMP0->getOperand(1);
13156 EVT VT = CMP00.getValueType();
13157
13158 if (VT == MVT::f32 || VT == MVT::f64) {
13159 bool ExpectingFlags = false;
13160 // Check for any users that want flags:
13161 for (SDNode::use_iterator UI = N->use_begin(),
13162 UE = N->use_end();
13163 !ExpectingFlags && UI != UE; ++UI)
13164 switch (UI->getOpcode()) {
13165 default:
13166 case ISD::BR_CC:
13167 case ISD::BRCOND:
13168 case ISD::SELECT:
13169 ExpectingFlags = true;
13170 break;
13171 case ISD::CopyToReg:
13172 case ISD::SIGN_EXTEND:
13173 case ISD::ZERO_EXTEND:
13174 case ISD::ANY_EXTEND:
13175 break;
13176 }
13177
13178 if (!ExpectingFlags) {
13179 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
13180 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
13181
13182 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
13183 X86::CondCode tmp = cc0;
13184 cc0 = cc1;
13185 cc1 = tmp;
13186 }
13187
13188 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
13189 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
13190 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
13191 X86ISD::NodeType NTOperator = is64BitFP ?
13192 X86ISD::FSETCCsd : X86ISD::FSETCCss;
13193 // FIXME: need symbolic constants for these magic numbers.
13194 // See X86ATTInstPrinter.cpp:printSSECC().
13195 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
13196 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
13197 DAG.getConstant(x86cc, MVT::i8));
13198 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
13199 OnesOrZeroesF);
13200 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
13201 DAG.getConstant(1, MVT::i32));
13202 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
13203 return OneBitOfTruth;
13204 }
13205 }
13206 }
13207 }
13208 return SDValue();
13209}
13210
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013211/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
13212/// so it can be folded inside ANDNP.
13213static bool CanFoldXORWithAllOnes(const SDNode *N) {
13214 EVT VT = N->getValueType(0);
13215
13216 // Match direct AllOnes for 128 and 256-bit vectors
13217 if (ISD::isBuildVectorAllOnes(N))
13218 return true;
13219
13220 // Look through a bit convert.
13221 if (N->getOpcode() == ISD::BITCAST)
13222 N = N->getOperand(0).getNode();
13223
13224 // Sometimes the operand may come from a insert_subvector building a 256-bit
13225 // allones vector
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013226 if (VT.getSizeInBits() == 256 &&
Bill Wendling456a9252011-08-04 00:32:58 +000013227 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
13228 SDValue V1 = N->getOperand(0);
13229 SDValue V2 = N->getOperand(1);
13230
13231 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
13232 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
13233 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
13234 ISD::isBuildVectorAllOnes(V2.getNode()))
13235 return true;
13236 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013237
13238 return false;
13239}
13240
Nate Begemanb65c1752010-12-17 22:55:37 +000013241static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
13242 TargetLowering::DAGCombinerInfo &DCI,
13243 const X86Subtarget *Subtarget) {
13244 if (DCI.isBeforeLegalizeOps())
13245 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013246
Stuart Hastings865f0932011-06-03 23:53:54 +000013247 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
13248 if (R.getNode())
13249 return R;
13250
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000013251 // Want to form ANDNP nodes:
13252 // 1) In the hopes of then easily combining them with OR and AND nodes
13253 // to form PBLEND/PSIGN.
13254 // 2) To match ANDN packed intrinsics
Nate Begemanb65c1752010-12-17 22:55:37 +000013255 EVT VT = N->getValueType(0);
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000013256 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000013257 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013258
Nate Begemanb65c1752010-12-17 22:55:37 +000013259 SDValue N0 = N->getOperand(0);
13260 SDValue N1 = N->getOperand(1);
13261 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013262
Nate Begemanb65c1752010-12-17 22:55:37 +000013263 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013264 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013265 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
13266 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013267 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000013268
13269 // Check RHS for vnot
13270 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013271 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
13272 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013273 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013274
Nate Begemanb65c1752010-12-17 22:55:37 +000013275 return SDValue();
13276}
13277
Evan Cheng760d1942010-01-04 21:22:48 +000013278static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000013279 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000013280 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000013281 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000013282 return SDValue();
13283
Stuart Hastings865f0932011-06-03 23:53:54 +000013284 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
13285 if (R.getNode())
13286 return R;
13287
Evan Cheng760d1942010-01-04 21:22:48 +000013288 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000013289 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64 && VT != MVT::v2i64)
Evan Cheng760d1942010-01-04 21:22:48 +000013290 return SDValue();
13291
Evan Cheng760d1942010-01-04 21:22:48 +000013292 SDValue N0 = N->getOperand(0);
13293 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013294
Nate Begemanb65c1752010-12-17 22:55:37 +000013295 // look for psign/blend
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000013296 if (Subtarget->hasSSSE3() || Subtarget->hasAVX()) {
Nate Begemanb65c1752010-12-17 22:55:37 +000013297 if (VT == MVT::v2i64) {
13298 // Canonicalize pandn to RHS
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013299 if (N0.getOpcode() == X86ISD::ANDNP)
Nate Begemanb65c1752010-12-17 22:55:37 +000013300 std::swap(N0, N1);
13301 // or (and (m, x), (pandn m, y))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013302 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
Nate Begemanb65c1752010-12-17 22:55:37 +000013303 SDValue Mask = N1.getOperand(0);
13304 SDValue X = N1.getOperand(1);
13305 SDValue Y;
13306 if (N0.getOperand(0) == Mask)
13307 Y = N0.getOperand(1);
13308 if (N0.getOperand(1) == Mask)
13309 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013310
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013311 // Check to see if the mask appeared in both the AND and ANDNP and
Nate Begemanb65c1752010-12-17 22:55:37 +000013312 if (!Y.getNode())
13313 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013314
Nate Begemanb65c1752010-12-17 22:55:37 +000013315 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
13316 if (Mask.getOpcode() != ISD::BITCAST ||
13317 X.getOpcode() != ISD::BITCAST ||
13318 Y.getOpcode() != ISD::BITCAST)
13319 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013320
Nate Begemanb65c1752010-12-17 22:55:37 +000013321 // Look through mask bitcast.
13322 Mask = Mask.getOperand(0);
13323 EVT MaskVT = Mask.getValueType();
13324
13325 // Validate that the Mask operand is a vector sra node. The sra node
13326 // will be an intrinsic.
13327 if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
13328 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013329
Nate Begemanb65c1752010-12-17 22:55:37 +000013330 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
13331 // there is no psrai.b
13332 switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
13333 case Intrinsic::x86_sse2_psrai_w:
13334 case Intrinsic::x86_sse2_psrai_d:
13335 break;
13336 default: return SDValue();
13337 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013338
Nate Begemanb65c1752010-12-17 22:55:37 +000013339 // Check that the SRA is all signbits.
13340 SDValue SraC = Mask.getOperand(2);
13341 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
13342 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
13343 if ((SraAmt + 1) != EltBits)
13344 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013345
Nate Begemanb65c1752010-12-17 22:55:37 +000013346 DebugLoc DL = N->getDebugLoc();
13347
13348 // Now we know we at least have a plendvb with the mask val. See if
13349 // we can form a psignb/w/d.
13350 // psign = x.type == y.type == mask.type && y = sub(0, x);
13351 X = X.getOperand(0);
13352 Y = Y.getOperand(0);
13353 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
13354 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
13355 X.getValueType() == MaskVT && X.getValueType() == Y.getValueType()){
13356 unsigned Opc = 0;
13357 switch (EltBits) {
13358 case 8: Opc = X86ISD::PSIGNB; break;
13359 case 16: Opc = X86ISD::PSIGNW; break;
13360 case 32: Opc = X86ISD::PSIGND; break;
13361 default: break;
13362 }
13363 if (Opc) {
13364 SDValue Sign = DAG.getNode(Opc, DL, MaskVT, X, Mask.getOperand(1));
13365 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Sign);
13366 }
13367 }
13368 // PBLENDVB only available on SSE 4.1
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000013369 if (!(Subtarget->hasSSE41() || Subtarget->hasAVX()))
Nate Begemanb65c1752010-12-17 22:55:37 +000013370 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013371
Nate Begemanb65c1752010-12-17 22:55:37 +000013372 X = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, X);
13373 Y = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Y);
13374 Mask = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Mask);
Nadav Rotemfbad25e2011-09-11 15:02:23 +000013375 Mask = DAG.getNode(ISD::VSELECT, DL, MVT::v16i8, Mask, X, Y);
Nate Begemanb65c1752010-12-17 22:55:37 +000013376 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Mask);
13377 }
13378 }
13379 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013380
Nate Begemanb65c1752010-12-17 22:55:37 +000013381 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000013382 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
13383 std::swap(N0, N1);
13384 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
13385 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000013386 if (!N0.hasOneUse() || !N1.hasOneUse())
13387 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000013388
13389 SDValue ShAmt0 = N0.getOperand(1);
13390 if (ShAmt0.getValueType() != MVT::i8)
13391 return SDValue();
13392 SDValue ShAmt1 = N1.getOperand(1);
13393 if (ShAmt1.getValueType() != MVT::i8)
13394 return SDValue();
13395 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
13396 ShAmt0 = ShAmt0.getOperand(0);
13397 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
13398 ShAmt1 = ShAmt1.getOperand(0);
13399
13400 DebugLoc DL = N->getDebugLoc();
13401 unsigned Opc = X86ISD::SHLD;
13402 SDValue Op0 = N0.getOperand(0);
13403 SDValue Op1 = N1.getOperand(0);
13404 if (ShAmt0.getOpcode() == ISD::SUB) {
13405 Opc = X86ISD::SHRD;
13406 std::swap(Op0, Op1);
13407 std::swap(ShAmt0, ShAmt1);
13408 }
13409
Evan Cheng8b1190a2010-04-28 01:18:01 +000013410 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000013411 if (ShAmt1.getOpcode() == ISD::SUB) {
13412 SDValue Sum = ShAmt1.getOperand(0);
13413 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000013414 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
13415 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
13416 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
13417 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000013418 return DAG.getNode(Opc, DL, VT,
13419 Op0, Op1,
13420 DAG.getNode(ISD::TRUNCATE, DL,
13421 MVT::i8, ShAmt0));
13422 }
13423 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
13424 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
13425 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000013426 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000013427 return DAG.getNode(Opc, DL, VT,
13428 N0.getOperand(0), N1.getOperand(0),
13429 DAG.getNode(ISD::TRUNCATE, DL,
13430 MVT::i8, ShAmt0));
13431 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013432
Evan Cheng760d1942010-01-04 21:22:48 +000013433 return SDValue();
13434}
13435
Chris Lattner149a4e52008-02-22 02:09:43 +000013436/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000013437static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000013438 const X86Subtarget *Subtarget) {
Nadav Rotem614061b2011-08-10 19:30:14 +000013439 StoreSDNode *St = cast<StoreSDNode>(N);
13440 EVT VT = St->getValue().getValueType();
13441 EVT StVT = St->getMemoryVT();
13442 DebugLoc dl = St->getDebugLoc();
Nadav Rotem5e742a32011-08-11 16:41:21 +000013443 SDValue StoredVal = St->getOperand(1);
13444 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13445
13446 // If we are saving a concatination of two XMM registers, perform two stores.
Nadav Rotem6236f7f2011-08-11 17:05:47 +000013447 // This is better in Sandy Bridge cause one 256-bit mem op is done via two
13448 // 128-bit ones. If in the future the cost becomes only one memory access the
13449 // first version would be better.
Nadav Rotem5e742a32011-08-11 16:41:21 +000013450 if (VT.getSizeInBits() == 256 &&
13451 StoredVal.getNode()->getOpcode() == ISD::CONCAT_VECTORS &&
13452 StoredVal.getNumOperands() == 2) {
13453
13454 SDValue Value0 = StoredVal.getOperand(0);
13455 SDValue Value1 = StoredVal.getOperand(1);
13456
13457 SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
13458 SDValue Ptr0 = St->getBasePtr();
13459 SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
13460
13461 SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
13462 St->getPointerInfo(), St->isVolatile(),
13463 St->isNonTemporal(), St->getAlignment());
13464 SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
13465 St->getPointerInfo(), St->isVolatile(),
13466 St->isNonTemporal(), St->getAlignment());
13467 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
13468 }
Nadav Rotem614061b2011-08-10 19:30:14 +000013469
13470 // Optimize trunc store (of multiple scalars) to shuffle and store.
13471 // First, pack all of the elements in one place. Next, store to memory
13472 // in fewer chunks.
13473 if (St->isTruncatingStore() && VT.isVector()) {
13474 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13475 unsigned NumElems = VT.getVectorNumElements();
13476 assert(StVT != VT && "Cannot truncate to the same type");
13477 unsigned FromSz = VT.getVectorElementType().getSizeInBits();
13478 unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
13479
13480 // From, To sizes and ElemCount must be pow of two
13481 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
13482 // We are going to use the original vector elt for storing.
13483 // accumulated smaller vector elements must be a multiple of bigger size.
13484 if (0 != (NumElems * ToSz) % FromSz) return SDValue();
13485 unsigned SizeRatio = FromSz / ToSz;
13486
13487 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
13488
13489 // Create a type on which we perform the shuffle
13490 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
13491 StVT.getScalarType(), NumElems*SizeRatio);
13492
13493 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
13494
13495 SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
13496 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
13497 for (unsigned i = 0; i < NumElems; i++ ) ShuffleVec[i] = i * SizeRatio;
13498
13499 // Can't shuffle using an illegal type
13500 if (!TLI.isTypeLegal(WideVecVT)) return SDValue();
13501
13502 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
13503 DAG.getUNDEF(WideVec.getValueType()),
13504 ShuffleVec.data());
13505 // At this point all of the data is stored at the bottom of the
13506 // register. We now need to save it to mem.
13507
13508 // Find the largest store unit
13509 MVT StoreType = MVT::i8;
13510 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
13511 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
13512 MVT Tp = (MVT::SimpleValueType)tp;
13513 if (TLI.isTypeLegal(Tp) && StoreType.getSizeInBits() < NumElems * ToSz)
13514 StoreType = Tp;
13515 }
13516
13517 // Bitcast the original vector into a vector of store-size units
13518 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
13519 StoreType, VT.getSizeInBits()/EVT(StoreType).getSizeInBits());
13520 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
13521 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
13522 SmallVector<SDValue, 8> Chains;
13523 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
13524 TLI.getPointerTy());
13525 SDValue Ptr = St->getBasePtr();
13526
13527 // Perform one or more big stores into memory.
13528 for (unsigned i = 0; i < (ToSz*NumElems)/StoreType.getSizeInBits() ; i++) {
13529 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
13530 StoreType, ShuffWide,
13531 DAG.getIntPtrConstant(i));
13532 SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
13533 St->getPointerInfo(), St->isVolatile(),
13534 St->isNonTemporal(), St->getAlignment());
13535 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
13536 Chains.push_back(Ch);
13537 }
13538
13539 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
13540 Chains.size());
13541 }
13542
13543
Chris Lattner149a4e52008-02-22 02:09:43 +000013544 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
13545 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000013546 // A preferable solution to the general problem is to figure out the right
13547 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000013548
13549 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng536e6672009-03-12 05:59:15 +000013550 if (VT.getSizeInBits() != 64)
13551 return SDValue();
13552
Devang Patel578efa92009-06-05 21:57:13 +000013553 const Function *F = DAG.getMachineFunction().getFunction();
13554 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000013555 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Bruno Cardoso Lopes0c4b9ff2011-09-15 18:27:36 +000013556 && Subtarget->hasXMMInt();
Evan Cheng536e6672009-03-12 05:59:15 +000013557 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000013558 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000013559 isa<LoadSDNode>(St->getValue()) &&
13560 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
13561 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000013562 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013563 LoadSDNode *Ld = 0;
13564 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000013565 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000013566 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013567 // Must be a store of a load. We currently handle two cases: the load
13568 // is a direct child, and it's under an intervening TokenFactor. It is
13569 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000013570 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000013571 Ld = cast<LoadSDNode>(St->getChain());
13572 else if (St->getValue().hasOneUse() &&
13573 ChainVal->getOpcode() == ISD::TokenFactor) {
13574 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000013575 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000013576 TokenFactorIndex = i;
13577 Ld = cast<LoadSDNode>(St->getValue());
13578 } else
13579 Ops.push_back(ChainVal->getOperand(i));
13580 }
13581 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000013582
Evan Cheng536e6672009-03-12 05:59:15 +000013583 if (!Ld || !ISD::isNormalLoad(Ld))
13584 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013585
Evan Cheng536e6672009-03-12 05:59:15 +000013586 // If this is not the MMX case, i.e. we are just turning i64 load/store
13587 // into f64 load/store, avoid the transformation if there are multiple
13588 // uses of the loaded value.
13589 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
13590 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013591
Evan Cheng536e6672009-03-12 05:59:15 +000013592 DebugLoc LdDL = Ld->getDebugLoc();
13593 DebugLoc StDL = N->getDebugLoc();
13594 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
13595 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
13596 // pair instead.
13597 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000013598 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000013599 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
13600 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000013601 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000013602 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000013603 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000013604 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000013605 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000013606 Ops.size());
13607 }
Evan Cheng536e6672009-03-12 05:59:15 +000013608 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000013609 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013610 St->isVolatile(), St->isNonTemporal(),
13611 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000013612 }
Evan Cheng536e6672009-03-12 05:59:15 +000013613
13614 // Otherwise, lower to two pairs of 32-bit loads / stores.
13615 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000013616 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
13617 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000013618
Owen Anderson825b72b2009-08-11 20:47:22 +000013619 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000013620 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013621 Ld->isVolatile(), Ld->isNonTemporal(),
13622 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000013623 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000013624 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000013625 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000013626 MinAlign(Ld->getAlignment(), 4));
13627
13628 SDValue NewChain = LoLd.getValue(1);
13629 if (TokenFactorIndex != -1) {
13630 Ops.push_back(LoLd);
13631 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000013632 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000013633 Ops.size());
13634 }
13635
13636 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000013637 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
13638 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000013639
13640 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000013641 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013642 St->isVolatile(), St->isNonTemporal(),
13643 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000013644 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000013645 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000013646 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000013647 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000013648 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000013649 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000013650 }
Dan Gohman475871a2008-07-27 21:46:04 +000013651 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000013652}
13653
Chris Lattner6cf73262008-01-25 06:14:17 +000013654/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
13655/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000013656static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000013657 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
13658 // F[X]OR(0.0, x) -> x
13659 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000013660 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
13661 if (C->getValueAPF().isPosZero())
13662 return N->getOperand(1);
13663 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
13664 if (C->getValueAPF().isPosZero())
13665 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000013666 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000013667}
13668
13669/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000013670static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000013671 // FAND(0.0, x) -> 0.0
13672 // FAND(x, 0.0) -> 0.0
13673 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
13674 if (C->getValueAPF().isPosZero())
13675 return N->getOperand(0);
13676 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
13677 if (C->getValueAPF().isPosZero())
13678 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000013679 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000013680}
13681
Dan Gohmane5af2d32009-01-29 01:59:02 +000013682static SDValue PerformBTCombine(SDNode *N,
13683 SelectionDAG &DAG,
13684 TargetLowering::DAGCombinerInfo &DCI) {
13685 // BT ignores high bits in the bit index operand.
13686 SDValue Op1 = N->getOperand(1);
13687 if (Op1.hasOneUse()) {
13688 unsigned BitWidth = Op1.getValueSizeInBits();
13689 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
13690 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013691 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
13692 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000013693 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000013694 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
13695 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
13696 DCI.CommitTargetLoweringOpt(TLO);
13697 }
13698 return SDValue();
13699}
Chris Lattner83e6c992006-10-04 06:57:07 +000013700
Eli Friedman7a5e5552009-06-07 06:52:44 +000013701static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
13702 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013703 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000013704 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000013705 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000013706 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000013707 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000013708 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013709 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000013710 }
13711 return SDValue();
13712}
13713
Evan Cheng2e489c42009-12-16 00:53:11 +000013714static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
13715 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
13716 // (and (i32 x86isd::setcc_carry), 1)
13717 // This eliminates the zext. This transformation is necessary because
13718 // ISD::SETCC is always legalized to i8.
13719 DebugLoc dl = N->getDebugLoc();
13720 SDValue N0 = N->getOperand(0);
13721 EVT VT = N->getValueType(0);
13722 if (N0.getOpcode() == ISD::AND &&
13723 N0.hasOneUse() &&
13724 N0.getOperand(0).hasOneUse()) {
13725 SDValue N00 = N0.getOperand(0);
13726 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
13727 return SDValue();
13728 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
13729 if (!C || C->getZExtValue() != 1)
13730 return SDValue();
13731 return DAG.getNode(ISD::AND, dl, VT,
13732 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
13733 N00.getOperand(0), N00.getOperand(1)),
13734 DAG.getConstant(1, VT));
13735 }
13736
13737 return SDValue();
13738}
13739
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013740// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
13741static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
13742 unsigned X86CC = N->getConstantOperandVal(0);
13743 SDValue EFLAG = N->getOperand(1);
13744 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013745
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013746 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
13747 // a zext and produces an all-ones bit which is more useful than 0/1 in some
13748 // cases.
13749 if (X86CC == X86::COND_B)
13750 return DAG.getNode(ISD::AND, DL, MVT::i8,
13751 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
13752 DAG.getConstant(X86CC, MVT::i8), EFLAG),
13753 DAG.getConstant(1, MVT::i8));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013754
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013755 return SDValue();
13756}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013757
Benjamin Kramer1396c402011-06-18 11:09:41 +000013758static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
13759 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013760 SDValue Op0 = N->getOperand(0);
13761 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
13762 // a 32-bit target where SSE doesn't support i64->FP operations.
13763 if (Op0.getOpcode() == ISD::LOAD) {
13764 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
13765 EVT VT = Ld->getValueType(0);
13766 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
13767 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
13768 !XTLI->getSubtarget()->is64Bit() &&
13769 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000013770 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
13771 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013772 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
13773 return FILDChain;
13774 }
13775 }
13776 return SDValue();
13777}
13778
Chris Lattner23a01992010-12-20 01:37:09 +000013779// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
13780static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
13781 X86TargetLowering::DAGCombinerInfo &DCI) {
13782 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
13783 // the result is either zero or one (depending on the input carry bit).
13784 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
13785 if (X86::isZeroNode(N->getOperand(0)) &&
13786 X86::isZeroNode(N->getOperand(1)) &&
13787 // We don't have a good way to replace an EFLAGS use, so only do this when
13788 // dead right now.
13789 SDValue(N, 1).use_empty()) {
13790 DebugLoc DL = N->getDebugLoc();
13791 EVT VT = N->getValueType(0);
13792 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
13793 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
13794 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
13795 DAG.getConstant(X86::COND_B,MVT::i8),
13796 N->getOperand(2)),
13797 DAG.getConstant(1, VT));
13798 return DCI.CombineTo(N, Res1, CarryOut);
13799 }
13800
13801 return SDValue();
13802}
13803
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013804// fold (add Y, (sete X, 0)) -> adc 0, Y
13805// (add Y, (setne X, 0)) -> sbb -1, Y
13806// (sub (sete X, 0), Y) -> sbb 0, Y
13807// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013808static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013809 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013810
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013811 // Look through ZExts.
13812 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
13813 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
13814 return SDValue();
13815
13816 SDValue SetCC = Ext.getOperand(0);
13817 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
13818 return SDValue();
13819
13820 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
13821 if (CC != X86::COND_E && CC != X86::COND_NE)
13822 return SDValue();
13823
13824 SDValue Cmp = SetCC.getOperand(1);
13825 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000013826 !X86::isZeroNode(Cmp.getOperand(1)) ||
13827 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013828 return SDValue();
13829
13830 SDValue CmpOp0 = Cmp.getOperand(0);
13831 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
13832 DAG.getConstant(1, CmpOp0.getValueType()));
13833
13834 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
13835 if (CC == X86::COND_NE)
13836 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
13837 DL, OtherVal.getValueType(), OtherVal,
13838 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
13839 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
13840 DL, OtherVal.getValueType(), OtherVal,
13841 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
13842}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013843
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013844static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG) {
13845 SDValue Op0 = N->getOperand(0);
13846 SDValue Op1 = N->getOperand(1);
13847
13848 // X86 can't encode an immediate LHS of a sub. See if we can push the
13849 // negation into a preceding instruction.
13850 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013851 // If the RHS of the sub is a XOR with one use and a constant, invert the
13852 // immediate. Then add one to the LHS of the sub so we can turn
13853 // X-Y -> X+~Y+1, saving one register.
13854 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
13855 isa<ConstantSDNode>(Op1.getOperand(1))) {
Nick Lewycky726ebd62011-08-23 19:01:24 +000013856 APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013857 EVT VT = Op0.getValueType();
13858 SDValue NewXor = DAG.getNode(ISD::XOR, Op1.getDebugLoc(), VT,
13859 Op1.getOperand(0),
13860 DAG.getConstant(~XorC, VT));
13861 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, NewXor,
Nick Lewycky726ebd62011-08-23 19:01:24 +000013862 DAG.getConstant(C->getAPIntValue()+1, VT));
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013863 }
13864 }
13865
13866 return OptimizeConditionalInDecrement(N, DAG);
13867}
13868
Dan Gohman475871a2008-07-27 21:46:04 +000013869SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000013870 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000013871 SelectionDAG &DAG = DCI.DAG;
13872 switch (N->getOpcode()) {
13873 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000013874 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013875 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Duncan Sands6bcd2192011-09-17 16:49:39 +000013876 case ISD::VSELECT:
Chris Lattneraf723b92008-01-25 05:46:26 +000013877 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000013878 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013879 case ISD::ADD: return OptimizeConditionalInDecrement(N, DAG);
13880 case ISD::SUB: return PerformSubCombine(N, DAG);
Chris Lattner23a01992010-12-20 01:37:09 +000013881 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000013882 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000013883 case ISD::SHL:
13884 case ISD::SRA:
13885 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000013886 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000013887 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000013888 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013889 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Chris Lattner6cf73262008-01-25 06:14:17 +000013890 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000013891 case X86ISD::FOR: return PerformFORCombine(N, DAG);
13892 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000013893 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000013894 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000013895 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013896 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013897 case X86ISD::SHUFPS: // Handle all target specific shuffles
13898 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000013899 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013900 case X86ISD::PUNPCKHBW:
13901 case X86ISD::PUNPCKHWD:
13902 case X86ISD::PUNPCKHDQ:
13903 case X86ISD::PUNPCKHQDQ:
13904 case X86ISD::UNPCKHPS:
13905 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +000013906 case X86ISD::VUNPCKHPSY:
13907 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013908 case X86ISD::PUNPCKLBW:
13909 case X86ISD::PUNPCKLWD:
13910 case X86ISD::PUNPCKLDQ:
13911 case X86ISD::PUNPCKLQDQ:
13912 case X86ISD::UNPCKLPS:
13913 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +000013914 case X86ISD::VUNPCKLPSY:
13915 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013916 case X86ISD::MOVHLPS:
13917 case X86ISD::MOVLHPS:
13918 case X86ISD::PSHUFD:
13919 case X86ISD::PSHUFHW:
13920 case X86ISD::PSHUFLW:
13921 case X86ISD::MOVSS:
13922 case X86ISD::MOVSD:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000013923 case X86ISD::VPERMILPS:
13924 case X86ISD::VPERMILPSY:
13925 case X86ISD::VPERMILPD:
13926 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +000013927 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000013928 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
Evan Cheng206ee9d2006-07-07 08:33:52 +000013929 }
13930
Dan Gohman475871a2008-07-27 21:46:04 +000013931 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000013932}
13933
Evan Chenge5b51ac2010-04-17 06:13:15 +000013934/// isTypeDesirableForOp - Return true if the target has native support for
13935/// the specified value type and it is 'desirable' to use the type for the
13936/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
13937/// instruction encodings are longer and some i16 instructions are slow.
13938bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
13939 if (!isTypeLegal(VT))
13940 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013941 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000013942 return true;
13943
13944 switch (Opc) {
13945 default:
13946 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000013947 case ISD::LOAD:
13948 case ISD::SIGN_EXTEND:
13949 case ISD::ZERO_EXTEND:
13950 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000013951 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000013952 case ISD::SRL:
13953 case ISD::SUB:
13954 case ISD::ADD:
13955 case ISD::MUL:
13956 case ISD::AND:
13957 case ISD::OR:
13958 case ISD::XOR:
13959 return false;
13960 }
13961}
13962
13963/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000013964/// beneficial for dag combiner to promote the specified node. If true, it
13965/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000013966bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000013967 EVT VT = Op.getValueType();
13968 if (VT != MVT::i16)
13969 return false;
13970
Evan Cheng4c26e932010-04-19 19:29:22 +000013971 bool Promote = false;
13972 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013973 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000013974 default: break;
13975 case ISD::LOAD: {
13976 LoadSDNode *LD = cast<LoadSDNode>(Op);
13977 // If the non-extending load has a single use and it's not live out, then it
13978 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013979 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
13980 Op.hasOneUse()*/) {
13981 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
13982 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
13983 // The only case where we'd want to promote LOAD (rather then it being
13984 // promoted as an operand is when it's only use is liveout.
13985 if (UI->getOpcode() != ISD::CopyToReg)
13986 return false;
13987 }
13988 }
Evan Cheng4c26e932010-04-19 19:29:22 +000013989 Promote = true;
13990 break;
13991 }
13992 case ISD::SIGN_EXTEND:
13993 case ISD::ZERO_EXTEND:
13994 case ISD::ANY_EXTEND:
13995 Promote = true;
13996 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013997 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013998 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000013999 SDValue N0 = Op.getOperand(0);
14000 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000014001 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000014002 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000014003 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000014004 break;
14005 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000014006 case ISD::ADD:
14007 case ISD::MUL:
14008 case ISD::AND:
14009 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000014010 case ISD::XOR:
14011 Commute = true;
14012 // fallthrough
14013 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000014014 SDValue N0 = Op.getOperand(0);
14015 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000014016 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000014017 return false;
14018 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000014019 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000014020 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000014021 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000014022 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000014023 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000014024 }
14025 }
14026
14027 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000014028 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000014029}
14030
Evan Cheng60c07e12006-07-05 22:17:51 +000014031//===----------------------------------------------------------------------===//
14032// X86 Inline Assembly Support
14033//===----------------------------------------------------------------------===//
14034
Chris Lattnerb8105652009-07-20 17:51:36 +000014035bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
14036 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000014037
14038 std::string AsmStr = IA->getAsmString();
14039
14040 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000014041 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000014042 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000014043
14044 switch (AsmPieces.size()) {
14045 default: return false;
14046 case 1:
14047 AsmStr = AsmPieces[0];
14048 AsmPieces.clear();
14049 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
14050
Chris Lattner7a2bdde2011-04-15 05:18:47 +000014051 // FIXME: this should verify that we are targeting a 486 or better. If not,
Evan Cheng55d42002011-01-08 01:24:27 +000014052 // we will turn this bswap into something that will be lowered to logical ops
14053 // instead of emitting the bswap asm. For now, we don't support 486 or lower
14054 // so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000014055 // bswap $0
14056 if (AsmPieces.size() == 2 &&
14057 (AsmPieces[0] == "bswap" ||
14058 AsmPieces[0] == "bswapq" ||
14059 AsmPieces[0] == "bswapl") &&
14060 (AsmPieces[1] == "$0" ||
14061 AsmPieces[1] == "${0:q}")) {
14062 // No need to check constraints, nothing other than the equivalent of
14063 // "=r,0" would be valid here.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000014064 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000014065 if (!Ty || Ty->getBitWidth() % 16 != 0)
14066 return false;
14067 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000014068 }
14069 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000014070 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000014071 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000014072 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000014073 AsmPieces[1] == "$$8," &&
14074 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000014075 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
14076 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000014077 const std::string &ConstraintsStr = IA->getConstraintString();
14078 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000014079 std::sort(AsmPieces.begin(), AsmPieces.end());
14080 if (AsmPieces.size() == 4 &&
14081 AsmPieces[0] == "~{cc}" &&
14082 AsmPieces[1] == "~{dirflag}" &&
14083 AsmPieces[2] == "~{flags}" &&
14084 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000014085 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000014086 if (!Ty || Ty->getBitWidth() % 16 != 0)
14087 return false;
14088 return IntrinsicLowering::LowerToByteSwap(CI);
Dan Gohman0ef701e2010-03-04 19:58:08 +000014089 }
Chris Lattnerb8105652009-07-20 17:51:36 +000014090 }
14091 break;
14092 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000014093 if (CI->getType()->isIntegerTy(32) &&
14094 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
14095 SmallVector<StringRef, 4> Words;
14096 SplitString(AsmPieces[0], Words, " \t,");
14097 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
14098 Words[2] == "${0:w}") {
14099 Words.clear();
14100 SplitString(AsmPieces[1], Words, " \t,");
14101 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
14102 Words[2] == "$0") {
14103 Words.clear();
14104 SplitString(AsmPieces[2], Words, " \t,");
14105 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
14106 Words[2] == "${0:w}") {
14107 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000014108 const std::string &ConstraintsStr = IA->getConstraintString();
14109 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Peter Collingbourne948cf022010-11-13 19:54:30 +000014110 std::sort(AsmPieces.begin(), AsmPieces.end());
14111 if (AsmPieces.size() == 4 &&
14112 AsmPieces[0] == "~{cc}" &&
14113 AsmPieces[1] == "~{dirflag}" &&
14114 AsmPieces[2] == "~{flags}" &&
14115 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000014116 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000014117 if (!Ty || Ty->getBitWidth() % 16 != 0)
14118 return false;
14119 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000014120 }
14121 }
14122 }
14123 }
14124 }
Evan Cheng55d42002011-01-08 01:24:27 +000014125
14126 if (CI->getType()->isIntegerTy(64)) {
14127 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
14128 if (Constraints.size() >= 2 &&
14129 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
14130 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
14131 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
14132 SmallVector<StringRef, 4> Words;
14133 SplitString(AsmPieces[0], Words, " \t");
14134 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
Chris Lattnerb8105652009-07-20 17:51:36 +000014135 Words.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000014136 SplitString(AsmPieces[1], Words, " \t");
14137 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
14138 Words.clear();
14139 SplitString(AsmPieces[2], Words, " \t,");
14140 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
14141 Words[2] == "%edx") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000014142 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000014143 if (!Ty || Ty->getBitWidth() % 16 != 0)
14144 return false;
14145 return IntrinsicLowering::LowerToByteSwap(CI);
14146 }
Chris Lattnerb8105652009-07-20 17:51:36 +000014147 }
14148 }
14149 }
14150 }
14151 break;
14152 }
14153 return false;
14154}
14155
14156
14157
Chris Lattnerf4dff842006-07-11 02:54:03 +000014158/// getConstraintType - Given a constraint letter, return the type of
14159/// constraint it is for this target.
14160X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000014161X86TargetLowering::getConstraintType(const std::string &Constraint) const {
14162 if (Constraint.size() == 1) {
14163 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000014164 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000014165 case 'q':
14166 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000014167 case 'f':
14168 case 't':
14169 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000014170 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000014171 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000014172 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000014173 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000014174 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000014175 case 'a':
14176 case 'b':
14177 case 'c':
14178 case 'd':
14179 case 'S':
14180 case 'D':
14181 case 'A':
14182 return C_Register;
14183 case 'I':
14184 case 'J':
14185 case 'K':
14186 case 'L':
14187 case 'M':
14188 case 'N':
14189 case 'G':
14190 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000014191 case 'e':
14192 case 'Z':
14193 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000014194 default:
14195 break;
14196 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000014197 }
Chris Lattner4234f572007-03-25 02:14:49 +000014198 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000014199}
14200
John Thompson44ab89e2010-10-29 17:29:13 +000014201/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000014202/// This object must already have been set up with the operand type
14203/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000014204TargetLowering::ConstraintWeight
14205 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000014206 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000014207 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000014208 Value *CallOperandVal = info.CallOperandVal;
14209 // If we don't have a value, we can't do a match,
14210 // but allow it at the lowest weight.
14211 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000014212 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000014213 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000014214 // Look at the constraint type.
14215 switch (*constraint) {
14216 default:
John Thompson44ab89e2010-10-29 17:29:13 +000014217 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
14218 case 'R':
14219 case 'q':
14220 case 'Q':
14221 case 'a':
14222 case 'b':
14223 case 'c':
14224 case 'd':
14225 case 'S':
14226 case 'D':
14227 case 'A':
14228 if (CallOperandVal->getType()->isIntegerTy())
14229 weight = CW_SpecificReg;
14230 break;
14231 case 'f':
14232 case 't':
14233 case 'u':
14234 if (type->isFloatingPointTy())
14235 weight = CW_SpecificReg;
14236 break;
14237 case 'y':
Chris Lattner2a786eb2010-12-19 20:19:20 +000014238 if (type->isX86_MMXTy() && Subtarget->hasMMX())
John Thompson44ab89e2010-10-29 17:29:13 +000014239 weight = CW_SpecificReg;
14240 break;
14241 case 'x':
14242 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014243 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000014244 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000014245 break;
14246 case 'I':
14247 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
14248 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000014249 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000014250 }
14251 break;
John Thompson44ab89e2010-10-29 17:29:13 +000014252 case 'J':
14253 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14254 if (C->getZExtValue() <= 63)
14255 weight = CW_Constant;
14256 }
14257 break;
14258 case 'K':
14259 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14260 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
14261 weight = CW_Constant;
14262 }
14263 break;
14264 case 'L':
14265 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14266 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
14267 weight = CW_Constant;
14268 }
14269 break;
14270 case 'M':
14271 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14272 if (C->getZExtValue() <= 3)
14273 weight = CW_Constant;
14274 }
14275 break;
14276 case 'N':
14277 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14278 if (C->getZExtValue() <= 0xff)
14279 weight = CW_Constant;
14280 }
14281 break;
14282 case 'G':
14283 case 'C':
14284 if (dyn_cast<ConstantFP>(CallOperandVal)) {
14285 weight = CW_Constant;
14286 }
14287 break;
14288 case 'e':
14289 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14290 if ((C->getSExtValue() >= -0x80000000LL) &&
14291 (C->getSExtValue() <= 0x7fffffffLL))
14292 weight = CW_Constant;
14293 }
14294 break;
14295 case 'Z':
14296 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14297 if (C->getZExtValue() <= 0xffffffff)
14298 weight = CW_Constant;
14299 }
14300 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000014301 }
14302 return weight;
14303}
14304
Dale Johannesenba2a0b92008-01-29 02:21:21 +000014305/// LowerXConstraint - try to replace an X constraint, which matches anything,
14306/// with another that has more specific requirements based on the type of the
14307/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000014308const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000014309LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000014310 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
14311 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000014312 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014313 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000014314 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014315 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000014316 return "x";
14317 }
Scott Michelfdc40a02009-02-17 22:15:04 +000014318
Chris Lattner5e764232008-04-26 23:02:14 +000014319 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000014320}
14321
Chris Lattner48884cd2007-08-25 00:47:38 +000014322/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
14323/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000014324void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000014325 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000014326 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000014327 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000014328 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000014329
Eric Christopher100c8332011-06-02 23:16:42 +000014330 // Only support length 1 constraints for now.
14331 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000014332
Eric Christopher100c8332011-06-02 23:16:42 +000014333 char ConstraintLetter = Constraint[0];
14334 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000014335 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000014336 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000014337 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000014338 if (C->getZExtValue() <= 31) {
14339 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000014340 break;
14341 }
Devang Patel84f7fd22007-03-17 00:13:28 +000014342 }
Chris Lattner48884cd2007-08-25 00:47:38 +000014343 return;
Evan Cheng364091e2008-09-22 23:57:37 +000014344 case 'J':
14345 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000014346 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000014347 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
14348 break;
14349 }
14350 }
14351 return;
14352 case 'K':
14353 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000014354 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000014355 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
14356 break;
14357 }
14358 }
14359 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000014360 case 'N':
14361 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000014362 if (C->getZExtValue() <= 255) {
14363 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000014364 break;
14365 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000014366 }
Chris Lattner48884cd2007-08-25 00:47:38 +000014367 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000014368 case 'e': {
14369 // 32-bit signed value
14370 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000014371 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
14372 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000014373 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000014374 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000014375 break;
14376 }
14377 // FIXME gcc accepts some relocatable values here too, but only in certain
14378 // memory models; it's complicated.
14379 }
14380 return;
14381 }
14382 case 'Z': {
14383 // 32-bit unsigned value
14384 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000014385 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
14386 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000014387 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
14388 break;
14389 }
14390 }
14391 // FIXME gcc accepts some relocatable values here too, but only in certain
14392 // memory models; it's complicated.
14393 return;
14394 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000014395 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000014396 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000014397 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000014398 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000014399 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000014400 break;
14401 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014402
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000014403 // In any sort of PIC mode addresses need to be computed at runtime by
14404 // adding in a register or some sort of table lookup. These can't
14405 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000014406 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000014407 return;
14408
Chris Lattnerdc43a882007-05-03 16:52:29 +000014409 // If we are in non-pic codegen mode, we allow the address of a global (with
14410 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000014411 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000014412 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000014413
Chris Lattner49921962009-05-08 18:23:14 +000014414 // Match either (GA), (GA+C), (GA+C1+C2), etc.
14415 while (1) {
14416 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
14417 Offset += GA->getOffset();
14418 break;
14419 } else if (Op.getOpcode() == ISD::ADD) {
14420 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
14421 Offset += C->getZExtValue();
14422 Op = Op.getOperand(0);
14423 continue;
14424 }
14425 } else if (Op.getOpcode() == ISD::SUB) {
14426 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
14427 Offset += -C->getZExtValue();
14428 Op = Op.getOperand(0);
14429 continue;
14430 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000014431 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000014432
Chris Lattner49921962009-05-08 18:23:14 +000014433 // Otherwise, this isn't something we can handle, reject it.
14434 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000014435 }
Eric Christopherfd179292009-08-27 18:07:15 +000014436
Dan Gohman46510a72010-04-15 01:51:59 +000014437 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000014438 // If we require an extra load to get this address, as in PIC mode, we
14439 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000014440 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
14441 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000014442 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000014443
Devang Patel0d881da2010-07-06 22:08:15 +000014444 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
14445 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000014446 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000014447 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000014448 }
Scott Michelfdc40a02009-02-17 22:15:04 +000014449
Gabor Greifba36cb52008-08-28 21:40:38 +000014450 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000014451 Ops.push_back(Result);
14452 return;
14453 }
Dale Johannesen1784d162010-06-25 21:55:36 +000014454 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000014455}
14456
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014457std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000014458X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000014459 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000014460 // First, see if this is a constraint that directly corresponds to an LLVM
14461 // register class.
14462 if (Constraint.size() == 1) {
14463 // GCC Constraint Letters
14464 switch (Constraint[0]) {
14465 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000014466 // TODO: Slight differences here in allocation order and leaving
14467 // RIP in the class. Do they matter any more here than they do
14468 // in the normal allocation?
14469 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
14470 if (Subtarget->is64Bit()) {
Nick Lewycky9bf45d02011-07-08 00:19:27 +000014471 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000014472 return std::make_pair(0U, X86::GR32RegisterClass);
14473 else if (VT == MVT::i16)
14474 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000014475 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000014476 return std::make_pair(0U, X86::GR8RegisterClass);
Nick Lewycky9bf45d02011-07-08 00:19:27 +000014477 else if (VT == MVT::i64 || VT == MVT::f64)
Eric Christopherd176af82011-06-29 17:23:50 +000014478 return std::make_pair(0U, X86::GR64RegisterClass);
14479 break;
14480 }
14481 // 32-bit fallthrough
14482 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000014483 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000014484 return std::make_pair(0U, X86::GR32_ABCDRegisterClass);
14485 else if (VT == MVT::i16)
14486 return std::make_pair(0U, X86::GR16_ABCDRegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000014487 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000014488 return std::make_pair(0U, X86::GR8_ABCD_LRegisterClass);
14489 else if (VT == MVT::i64)
14490 return std::make_pair(0U, X86::GR64_ABCDRegisterClass);
14491 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000014492 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000014493 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000014494 if (VT == MVT::i8 || VT == MVT::i1)
Chris Lattner0f65cad2007-04-09 05:49:22 +000014495 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000014496 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000014497 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000014498 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000014499 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000014500 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000014501 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000014502 if (VT == MVT::i8 || VT == MVT::i1)
Dale Johannesen5f3663e2009-10-07 22:47:20 +000014503 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
14504 if (VT == MVT::i16)
14505 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
14506 if (VT == MVT::i32 || !Subtarget->is64Bit())
14507 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
14508 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000014509 case 'f': // FP Stack registers.
14510 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
14511 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000014512 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000014513 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000014514 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000014515 return std::make_pair(0U, X86::RFP64RegisterClass);
14516 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000014517 case 'y': // MMX_REGS if MMX allowed.
14518 if (!Subtarget->hasMMX()) break;
14519 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000014520 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014521 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000014522 // FALL THROUGH.
14523 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014524 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000014525
Owen Anderson825b72b2009-08-11 20:47:22 +000014526 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000014527 default: break;
14528 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000014529 case MVT::f32:
14530 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000014531 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000014532 case MVT::f64:
14533 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000014534 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000014535 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000014536 case MVT::v16i8:
14537 case MVT::v8i16:
14538 case MVT::v4i32:
14539 case MVT::v2i64:
14540 case MVT::v4f32:
14541 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000014542 return std::make_pair(0U, X86::VR128RegisterClass);
14543 }
Chris Lattnerad043e82007-04-09 05:11:28 +000014544 break;
14545 }
14546 }
Scott Michelfdc40a02009-02-17 22:15:04 +000014547
Chris Lattnerf76d1802006-07-31 23:26:50 +000014548 // Use the default implementation in TargetLowering to convert the register
14549 // constraint into a member of a register class.
14550 std::pair<unsigned, const TargetRegisterClass*> Res;
14551 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000014552
14553 // Not found as a standard register?
14554 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000014555 // Map st(0) -> st(7) -> ST0
14556 if (Constraint.size() == 7 && Constraint[0] == '{' &&
14557 tolower(Constraint[1]) == 's' &&
14558 tolower(Constraint[2]) == 't' &&
14559 Constraint[3] == '(' &&
14560 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
14561 Constraint[5] == ')' &&
14562 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000014563
Chris Lattner56d77c72009-09-13 22:41:48 +000014564 Res.first = X86::ST0+Constraint[4]-'0';
14565 Res.second = X86::RFP80RegisterClass;
14566 return Res;
14567 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000014568
Chris Lattner56d77c72009-09-13 22:41:48 +000014569 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000014570 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000014571 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000014572 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000014573 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000014574 }
Chris Lattner56d77c72009-09-13 22:41:48 +000014575
14576 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000014577 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000014578 Res.first = X86::EFLAGS;
14579 Res.second = X86::CCRRegisterClass;
14580 return Res;
14581 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000014582
Dale Johannesen330169f2008-11-13 21:52:36 +000014583 // 'A' means EAX + EDX.
14584 if (Constraint == "A") {
14585 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000014586 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000014587 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000014588 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000014589 return Res;
14590 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014591
Chris Lattnerf76d1802006-07-31 23:26:50 +000014592 // Otherwise, check to see if this is a register class of the wrong value
14593 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
14594 // turn into {ax},{dx}.
14595 if (Res.second->hasType(VT))
14596 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014597
Chris Lattnerf76d1802006-07-31 23:26:50 +000014598 // All of the single-register GCC register classes map their values onto
14599 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
14600 // really want an 8-bit or 32-bit register, map to the appropriate register
14601 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000014602 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000014603 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014604 unsigned DestReg = 0;
14605 switch (Res.first) {
14606 default: break;
14607 case X86::AX: DestReg = X86::AL; break;
14608 case X86::DX: DestReg = X86::DL; break;
14609 case X86::CX: DestReg = X86::CL; break;
14610 case X86::BX: DestReg = X86::BL; break;
14611 }
14612 if (DestReg) {
14613 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014614 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014615 }
Owen Anderson825b72b2009-08-11 20:47:22 +000014616 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014617 unsigned DestReg = 0;
14618 switch (Res.first) {
14619 default: break;
14620 case X86::AX: DestReg = X86::EAX; break;
14621 case X86::DX: DestReg = X86::EDX; break;
14622 case X86::CX: DestReg = X86::ECX; break;
14623 case X86::BX: DestReg = X86::EBX; break;
14624 case X86::SI: DestReg = X86::ESI; break;
14625 case X86::DI: DestReg = X86::EDI; break;
14626 case X86::BP: DestReg = X86::EBP; break;
14627 case X86::SP: DestReg = X86::ESP; break;
14628 }
14629 if (DestReg) {
14630 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014631 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014632 }
Owen Anderson825b72b2009-08-11 20:47:22 +000014633 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014634 unsigned DestReg = 0;
14635 switch (Res.first) {
14636 default: break;
14637 case X86::AX: DestReg = X86::RAX; break;
14638 case X86::DX: DestReg = X86::RDX; break;
14639 case X86::CX: DestReg = X86::RCX; break;
14640 case X86::BX: DestReg = X86::RBX; break;
14641 case X86::SI: DestReg = X86::RSI; break;
14642 case X86::DI: DestReg = X86::RDI; break;
14643 case X86::BP: DestReg = X86::RBP; break;
14644 case X86::SP: DestReg = X86::RSP; break;
14645 }
14646 if (DestReg) {
14647 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014648 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014649 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000014650 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000014651 } else if (Res.second == X86::FR32RegisterClass ||
14652 Res.second == X86::FR64RegisterClass ||
14653 Res.second == X86::VR128RegisterClass) {
14654 // Handle references to XMM physical registers that got mapped into the
14655 // wrong class. This can happen with constraints like {xmm0} where the
14656 // target independent register mapper will just pick the first match it can
14657 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000014658 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000014659 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000014660 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000014661 Res.second = X86::FR64RegisterClass;
14662 else if (X86::VR128RegisterClass->hasType(VT))
14663 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000014664 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014665
Chris Lattnerf76d1802006-07-31 23:26:50 +000014666 return Res;
14667}