blob: 5c17d1d746ca9693f83499303c9348b4959570e7 [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 Lopesaed890b2011-08-01 21:54:05 +0000172 X86ScalarSSEf64 = Subtarget->hasXMMInt() || Subtarget->hasAVX();
173 X86ScalarSSEf32 = Subtarget->hasXMM() || Subtarget->hasAVX();
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) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000318 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000319 // Expand FP_TO_UINT into a select.
320 // FIXME: We would like to use a Custom expander here eventually to do
321 // the optimal thing for SSE vs. the default expansion in the legalizer.
Owen Anderson825b72b2009-08-11 20:47:22 +0000322 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000323 else
Eli Friedman948e95a2009-05-23 09:59:16 +0000324 // With SSE3 we can use fisttpll to convert to a signed i64; without
325 // SSE, we're stuck with a fistpll.
Owen Anderson825b72b2009-08-11 20:47:22 +0000326 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000327 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000328
Chris Lattner399610a2006-12-05 18:22:22 +0000329 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Michael J. Spencerec38de22010-10-10 22:04:20 +0000330 if (!X86ScalarSSEf64) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000331 setOperationAction(ISD::BITCAST , MVT::f32 , Expand);
332 setOperationAction(ISD::BITCAST , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000333 if (Subtarget->is64Bit()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000334 setOperationAction(ISD::BITCAST , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000335 // Without SSE, i64->f64 goes through memory.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000336 setOperationAction(ISD::BITCAST , MVT::i64 , Expand);
Dale Johannesen7d07b482010-05-21 00:52:33 +0000337 }
Chris Lattnerf3597a12006-12-05 18:45:06 +0000338 }
Chris Lattner21f66852005-12-23 05:15:23 +0000339
Dan Gohmanb00ee212008-02-18 19:34:53 +0000340 // Scalar integer divide and remainder are lowered to use operations that
341 // produce two results, to match the available instructions. This exposes
342 // the two-result form to trivial CSE, which is able to combine x/y and x%y
343 // into a single instruction.
344 //
345 // Scalar integer multiply-high is also lowered to use two-result
346 // operations, to match the available instructions. However, plain multiply
347 // (low) operations are left as Legal, as there are single-result
348 // instructions for this in x86. Using the two-result multiply instructions
349 // when both high and low results are needed must be arranged by dagcombine.
Chris Lattnere019ec12010-12-19 20:07:10 +0000350 for (unsigned i = 0, e = 4; i != e; ++i) {
351 MVT VT = IntVTs[i];
352 setOperationAction(ISD::MULHS, VT, Expand);
353 setOperationAction(ISD::MULHU, VT, Expand);
354 setOperationAction(ISD::SDIV, VT, Expand);
355 setOperationAction(ISD::UDIV, VT, Expand);
356 setOperationAction(ISD::SREM, VT, Expand);
357 setOperationAction(ISD::UREM, VT, Expand);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000358
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +0000359 // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
Chris Lattnerd8ff7ec2010-12-20 01:03:27 +0000360 setOperationAction(ISD::ADDC, VT, Custom);
361 setOperationAction(ISD::ADDE, VT, Custom);
362 setOperationAction(ISD::SUBC, VT, Custom);
363 setOperationAction(ISD::SUBE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000364 }
Dan Gohmana37c9f72007-09-25 18:23:27 +0000365
Owen Anderson825b72b2009-08-11 20:47:22 +0000366 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
367 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
368 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
369 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000370 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000371 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
372 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
373 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
374 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
375 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
376 setOperationAction(ISD::FREM , MVT::f32 , Expand);
377 setOperationAction(ISD::FREM , MVT::f64 , Expand);
378 setOperationAction(ISD::FREM , MVT::f80 , Expand);
379 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000380
Owen Anderson825b72b2009-08-11 20:47:22 +0000381 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
382 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000383 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
384 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000385 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
386 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000387 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000388 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
389 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000390 }
391
Benjamin Kramer1292c222010-12-04 20:32:23 +0000392 if (Subtarget->hasPOPCNT()) {
393 setOperationAction(ISD::CTPOP , MVT::i8 , Promote);
394 } else {
395 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
396 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
397 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
398 if (Subtarget->is64Bit())
399 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
400 }
401
Owen Anderson825b72b2009-08-11 20:47:22 +0000402 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
403 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000404
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000405 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000406 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000407 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000408 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000409 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000410 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
411 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
412 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
413 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
414 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000415 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000416 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
417 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
418 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
419 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000420 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000421 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
Andrew Trickf6c39412011-03-23 23:11:02 +0000422 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000423 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000424 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000425
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000426 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000427 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
428 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
429 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
430 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000431 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000432 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
433 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000434 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000435 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000436 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
437 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
438 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
439 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000440 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000441 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000442 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000443 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
444 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
445 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000446 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000447 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
448 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
449 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000450 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000451
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000452 if (Subtarget->hasXMM())
Owen Anderson825b72b2009-08-11 20:47:22 +0000453 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000454
Eric Christopher9a9d2752010-07-22 02:48:34 +0000455 setOperationAction(ISD::MEMBARRIER , MVT::Other, Custom);
Eli Friedman14648462011-07-27 22:21:52 +0000456 setOperationAction(ISD::ATOMIC_FENCE , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000457
Jim Grosbachf1ab49e2010-06-23 16:25:07 +0000458 // On X86 and X86-64, atomic operations are lowered to locked instructions.
459 // Locked instructions, in turn, have implicit fence semantics (all memory
460 // operations are flushed before issuing the locked instruction, and they
461 // are not buffered), so we can fold away the common pattern of
462 // fence-atomic-fence.
463 setShouldFoldAtomicFences(true);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000464
Mon P Wang63307c32008-05-05 19:05:59 +0000465 // Expand certain atomics
Chris Lattnere019ec12010-12-19 20:07:10 +0000466 for (unsigned i = 0, e = 4; i != e; ++i) {
467 MVT VT = IntVTs[i];
468 setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
469 setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
Eli Friedman327236c2011-08-24 20:50:09 +0000470 setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000471 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +0000472
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000473 if (!Subtarget->is64Bit()) {
Eli Friedmanf8f90f02011-08-24 22:33:28 +0000474 setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000475 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
476 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
477 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
478 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
479 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
480 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
481 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000482 }
483
Eli Friedman43f51ae2011-08-26 21:21:21 +0000484 if (Subtarget->hasCmpxchg16b()) {
485 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
486 }
487
Evan Cheng3c992d22006-03-07 02:02:57 +0000488 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000489 if (!Subtarget->isTargetDarwin() &&
490 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000491 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000492 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000493 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000494
Owen Anderson825b72b2009-08-11 20:47:22 +0000495 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
496 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
497 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
498 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000499 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000500 setExceptionPointerRegister(X86::RAX);
501 setExceptionSelectorRegister(X86::RDX);
502 } else {
503 setExceptionPointerRegister(X86::EAX);
504 setExceptionSelectorRegister(X86::EDX);
505 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000506 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
507 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000508
Duncan Sands4a544a72011-09-06 13:37:06 +0000509 setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
510 setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000511
Owen Anderson825b72b2009-08-11 20:47:22 +0000512 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000513
Nate Begemanacc398c2006-01-25 18:21:52 +0000514 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000515 setOperationAction(ISD::VASTART , MVT::Other, Custom);
516 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000517 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000518 setOperationAction(ISD::VAARG , MVT::Other, Custom);
519 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000520 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000521 setOperationAction(ISD::VAARG , MVT::Other, Expand);
522 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000523 }
Evan Chengae642192007-03-02 23:16:35 +0000524
Owen Anderson825b72b2009-08-11 20:47:22 +0000525 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
526 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Eric Christopherc967ad82011-08-31 04:17:21 +0000527
528 if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
529 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
530 MVT::i64 : MVT::i32, Custom);
531 else if (EnableSegmentedStacks)
532 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
533 MVT::i64 : MVT::i32, Custom);
534 else
535 setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
536 MVT::i64 : MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000537
Evan Chengc7ce29b2009-02-13 22:36:38 +0000538 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000539 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000540 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000541 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
542 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000543
Evan Cheng223547a2006-01-31 22:28:30 +0000544 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000545 setOperationAction(ISD::FABS , MVT::f64, Custom);
546 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000547
548 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000549 setOperationAction(ISD::FNEG , MVT::f64, Custom);
550 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000551
Evan Cheng68c47cb2007-01-05 07:55:56 +0000552 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000553 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
554 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000555
Stuart Hastings4fd0dee2011-06-01 04:39:42 +0000556 // Lower this to FGETSIGNx86 plus an AND.
557 setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
558 setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
559
Evan Chengd25e9e82006-02-02 00:28:23 +0000560 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000561 setOperationAction(ISD::FSIN , MVT::f64, Expand);
562 setOperationAction(ISD::FCOS , MVT::f64, Expand);
563 setOperationAction(ISD::FSIN , MVT::f32, Expand);
564 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000565
Chris Lattnera54aa942006-01-29 06:26:08 +0000566 // Expand FP immediates into loads from the stack, except for the special
567 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000568 addLegalFPImmediate(APFloat(+0.0)); // xorpd
569 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000570 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000571 // Use SSE for f32, x87 for f64.
572 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000573 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
574 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000575
576 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000577 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000578
579 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000580 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000581
Owen Anderson825b72b2009-08-11 20:47:22 +0000582 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000583
584 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000585 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
586 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000587
588 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000589 setOperationAction(ISD::FSIN , MVT::f32, Expand);
590 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000591
Nate Begemane1795842008-02-14 08:57:00 +0000592 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000593 addLegalFPImmediate(APFloat(+0.0f)); // xorps
594 addLegalFPImmediate(APFloat(+0.0)); // FLD0
595 addLegalFPImmediate(APFloat(+1.0)); // FLD1
596 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
597 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
598
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000599 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000600 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
601 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000602 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000603 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000604 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000605 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000606 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
607 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000608
Owen Anderson825b72b2009-08-11 20:47:22 +0000609 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
610 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
611 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
612 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000613
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000614 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000615 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
616 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000617 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000618 addLegalFPImmediate(APFloat(+0.0)); // FLD0
619 addLegalFPImmediate(APFloat(+1.0)); // FLD1
620 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
621 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000622 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
623 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
624 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
625 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000626 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000627
Cameron Zwarich33390842011-07-08 21:39:21 +0000628 // We don't support FMA.
629 setOperationAction(ISD::FMA, MVT::f64, Expand);
630 setOperationAction(ISD::FMA, MVT::f32, Expand);
631
Dale Johannesen59a58732007-08-05 18:49:15 +0000632 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000633 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000634 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
635 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
636 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000637 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000638 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000639 addLegalFPImmediate(TmpFlt); // FLD0
640 TmpFlt.changeSign();
641 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000642
643 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000644 APFloat TmpFlt2(+1.0);
645 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
646 &ignored);
647 addLegalFPImmediate(TmpFlt2); // FLD1
648 TmpFlt2.changeSign();
649 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
650 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000651
Evan Chengc7ce29b2009-02-13 22:36:38 +0000652 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000653 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
654 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000655 }
Cameron Zwarich33390842011-07-08 21:39:21 +0000656
657 setOperationAction(ISD::FMA, MVT::f80, Expand);
Dale Johannesen2f429012007-09-26 21:10:55 +0000658 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000659
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000660 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000661 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
662 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
663 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000664
Owen Anderson825b72b2009-08-11 20:47:22 +0000665 setOperationAction(ISD::FLOG, MVT::f80, Expand);
666 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
667 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
668 setOperationAction(ISD::FEXP, MVT::f80, Expand);
669 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000670
Mon P Wangf007a8b2008-11-06 05:31:54 +0000671 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000672 // (for widening) or expand (for scalarization). Then we will selectively
673 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000674 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
675 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
676 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
677 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
678 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
679 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
680 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
681 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
682 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
683 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
684 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
685 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
686 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
687 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
688 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
689 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
690 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000691 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
David Greenecfe33c42011-01-26 19:13:22 +0000692 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
693 setOperationAction(ISD::INSERT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000694 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
695 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
696 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
697 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
698 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
699 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
700 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
701 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
702 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
703 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
704 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
705 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
706 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
707 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
708 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
709 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
710 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
711 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
712 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
713 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
714 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
Duncan Sands28b77e92011-09-06 19:07:46 +0000715 setOperationAction(ISD::SETCC, (MVT::SimpleValueType)VT, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000716 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
717 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
718 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
719 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
720 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
721 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
722 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
723 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
724 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000725 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000726 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
727 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
728 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
729 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
Nadav Rotemaec58612011-09-13 19:17:42 +0000730 setOperationAction(ISD::VSELECT, (MVT::SimpleValueType)VT, Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000731 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
732 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
733 setTruncStoreAction((MVT::SimpleValueType)VT,
734 (MVT::SimpleValueType)InnerVT, Expand);
735 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
736 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
737 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000738 }
739
Evan Chengc7ce29b2009-02-13 22:36:38 +0000740 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
741 // with -msoft-float, disable use of MMX as well.
Chris Lattner2a786eb2010-12-19 20:19:20 +0000742 if (!UseSoftFloat && Subtarget->hasMMX()) {
Dale Johannesene93d99c2010-10-20 21:32:10 +0000743 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000744 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000745 }
746
Dale Johannesen0488fb62010-09-30 23:57:10 +0000747 // MMX-sized vectors (other than x86mmx) are expected to be expanded
748 // into smaller operations.
749 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
750 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
751 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
752 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
753 setOperationAction(ISD::AND, MVT::v8i8, Expand);
754 setOperationAction(ISD::AND, MVT::v4i16, Expand);
755 setOperationAction(ISD::AND, MVT::v2i32, Expand);
756 setOperationAction(ISD::AND, MVT::v1i64, Expand);
757 setOperationAction(ISD::OR, MVT::v8i8, Expand);
758 setOperationAction(ISD::OR, MVT::v4i16, Expand);
759 setOperationAction(ISD::OR, MVT::v2i32, Expand);
760 setOperationAction(ISD::OR, MVT::v1i64, Expand);
761 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
762 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
763 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
764 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
765 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
766 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
767 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
768 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
769 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
770 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
771 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
772 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
773 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000774 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
775 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
776 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
777 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000778
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000779 if (!UseSoftFloat && Subtarget->hasXMM()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000780 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000781
Owen Anderson825b72b2009-08-11 20:47:22 +0000782 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
783 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
784 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
785 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
786 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
787 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
788 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
789 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
790 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
791 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
792 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
Duncan Sands28b77e92011-09-06 19:07:46 +0000793 setOperationAction(ISD::SETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000794 }
795
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000796 if (!UseSoftFloat && Subtarget->hasXMMInt()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000797 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000798
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000799 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
800 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000801 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
802 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
803 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
804 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000805
Owen Anderson825b72b2009-08-11 20:47:22 +0000806 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
807 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
808 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
809 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
810 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
811 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
812 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
813 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
814 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
815 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
816 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
817 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
818 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
819 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
820 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
821 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000822
Duncan Sands28b77e92011-09-06 19:07:46 +0000823 setOperationAction(ISD::SETCC, MVT::v2f64, Custom);
824 setOperationAction(ISD::SETCC, MVT::v16i8, Custom);
825 setOperationAction(ISD::SETCC, MVT::v8i16, Custom);
826 setOperationAction(ISD::SETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000827
Owen Anderson825b72b2009-08-11 20:47:22 +0000828 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
829 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
830 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
831 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
832 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000833
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000834 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
835 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
836 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
837 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
838 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
839
Evan Cheng2c3ae372006-04-12 21:21:57 +0000840 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000841 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
842 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000843 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000844 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000845 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000846 // Do not attempt to custom lower non-128-bit vectors
847 if (!VT.is128BitVector())
848 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000849 setOperationAction(ISD::BUILD_VECTOR,
850 VT.getSimpleVT().SimpleTy, Custom);
851 setOperationAction(ISD::VECTOR_SHUFFLE,
852 VT.getSimpleVT().SimpleTy, Custom);
853 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
854 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000855 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000856
Owen Anderson825b72b2009-08-11 20:47:22 +0000857 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
858 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
859 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
860 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
861 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
862 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000863
Nate Begemancdd1eec2008-02-12 22:51:28 +0000864 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000865 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
866 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000867 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000868
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000869 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000870 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
871 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000872 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000873
874 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000875 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000876 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000877
Owen Andersond6662ad2009-08-10 20:46:15 +0000878 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000879 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000880 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000881 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000882 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000883 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000884 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000885 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000886 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000887 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000888 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000889
Owen Anderson825b72b2009-08-11 20:47:22 +0000890 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000891
Evan Cheng2c3ae372006-04-12 21:21:57 +0000892 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000893 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
894 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
895 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
896 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000897
Owen Anderson825b72b2009-08-11 20:47:22 +0000898 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
899 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000900 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000901
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000902 if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
Dale Johannesen54feef22010-05-27 20:12:41 +0000903 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
904 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
905 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
906 setOperationAction(ISD::FRINT, MVT::f32, Legal);
907 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
908 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
909 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
910 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
911 setOperationAction(ISD::FRINT, MVT::f64, Legal);
912 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
913
Nate Begeman14d12ca2008-02-11 04:19:36 +0000914 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000915 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000916
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000917 // Can turn SHL into an integer multiply.
918 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Nate Begeman51409212010-07-28 00:21:48 +0000919 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000920
Nadav Rotemfbad25e2011-09-11 15:02:23 +0000921 setOperationAction(ISD::VSELECT, MVT::v2f64, Legal);
922 setOperationAction(ISD::VSELECT, MVT::v2i64, Legal);
923 setOperationAction(ISD::VSELECT, MVT::v16i8, Legal);
924 setOperationAction(ISD::VSELECT, MVT::v4i32, Legal);
925 setOperationAction(ISD::VSELECT, MVT::v4f32, Legal);
Nadav Rotemffe3e7d2011-09-08 08:11:19 +0000926
Nate Begeman14d12ca2008-02-11 04:19:36 +0000927 // i8 and i16 vectors are custom , because the source register and source
928 // source memory operand types are not the same width. f32 vectors are
929 // custom since the immediate controlling the insert encodes additional
930 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000931 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
932 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
933 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
934 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000935
Owen Anderson825b72b2009-08-11 20:47:22 +0000936 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
937 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
938 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
939 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000940
941 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000942 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
943 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000944 }
945 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000946
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000947 if (Subtarget->hasSSE2() || Subtarget->hasAVX()) {
Nadav Rotem43012222011-05-11 08:12:09 +0000948 setOperationAction(ISD::SRL, MVT::v2i64, Custom);
949 setOperationAction(ISD::SRL, MVT::v4i32, Custom);
950 setOperationAction(ISD::SRL, MVT::v16i8, Custom);
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000951 setOperationAction(ISD::SRL, MVT::v8i16, Custom);
Nadav Rotem43012222011-05-11 08:12:09 +0000952
953 setOperationAction(ISD::SHL, MVT::v2i64, Custom);
954 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
955 setOperationAction(ISD::SHL, MVT::v8i16, Custom);
956
957 setOperationAction(ISD::SRA, MVT::v4i32, Custom);
958 setOperationAction(ISD::SRA, MVT::v8i16, Custom);
959 }
960
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +0000961 if (Subtarget->hasSSE42() || Subtarget->hasAVX())
Duncan Sands28b77e92011-09-06 19:07:46 +0000962 setOperationAction(ISD::SETCC, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000963
David Greene9b9838d2009-06-29 16:47:10 +0000964 if (!UseSoftFloat && Subtarget->hasAVX()) {
Bruno Cardoso Lopesdbd4fe22011-07-21 02:24:08 +0000965 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
966 addRegisterClass(MVT::v16i16, X86::VR256RegisterClass);
967 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
968 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
969 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
970 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000971
Owen Anderson825b72b2009-08-11 20:47:22 +0000972 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
Owen Anderson825b72b2009-08-11 20:47:22 +0000973 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
974 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
David Greene54d8eba2011-01-27 22:38:56 +0000975
Owen Anderson825b72b2009-08-11 20:47:22 +0000976 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
977 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
978 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
979 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
980 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
981 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000982
Owen Anderson825b72b2009-08-11 20:47:22 +0000983 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
984 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
985 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
986 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
987 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
988 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000989
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +0000990 setOperationAction(ISD::FP_TO_SINT, MVT::v8i32, Legal);
991 setOperationAction(ISD::SINT_TO_FP, MVT::v8i32, Legal);
Bruno Cardoso Lopes55244ce2011-08-01 21:54:09 +0000992 setOperationAction(ISD::FP_ROUND, MVT::v4f32, Legal);
Bruno Cardoso Lopes2e64ae42011-07-28 01:26:39 +0000993
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +0000994 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4f64, Custom);
995 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i64, Custom);
996 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8f32, Custom);
997 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i32, Custom);
998 setOperationAction(ISD::CONCAT_VECTORS, MVT::v32i8, Custom);
999 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i16, Custom);
1000
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00001001 setOperationAction(ISD::SRL, MVT::v4i64, Custom);
1002 setOperationAction(ISD::SRL, MVT::v8i32, Custom);
1003 setOperationAction(ISD::SRL, MVT::v16i16, Custom);
1004 setOperationAction(ISD::SRL, MVT::v32i8, Custom);
1005
1006 setOperationAction(ISD::SHL, MVT::v4i64, Custom);
1007 setOperationAction(ISD::SHL, MVT::v8i32, Custom);
1008 setOperationAction(ISD::SHL, MVT::v16i16, Custom);
1009 setOperationAction(ISD::SHL, MVT::v32i8, Custom);
1010
1011 setOperationAction(ISD::SRA, MVT::v8i32, Custom);
1012 setOperationAction(ISD::SRA, MVT::v16i16, Custom);
1013
Duncan Sands28b77e92011-09-06 19:07:46 +00001014 setOperationAction(ISD::SETCC, MVT::v32i8, Custom);
1015 setOperationAction(ISD::SETCC, MVT::v16i16, Custom);
1016 setOperationAction(ISD::SETCC, MVT::v8i32, Custom);
1017 setOperationAction(ISD::SETCC, MVT::v4i64, Custom);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00001018
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +00001019 setOperationAction(ISD::SELECT, MVT::v4f64, Custom);
1020 setOperationAction(ISD::SELECT, MVT::v4i64, Custom);
1021 setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
1022
Nadav Rotemfbad25e2011-09-11 15:02:23 +00001023 setOperationAction(ISD::VSELECT, MVT::v4f64, Legal);
1024 setOperationAction(ISD::VSELECT, MVT::v4i64, Legal);
1025 setOperationAction(ISD::VSELECT, MVT::v8i32, Legal);
1026 setOperationAction(ISD::VSELECT, MVT::v8f32, Legal);
Nadav Rotem8ffad562011-09-09 20:29:17 +00001027
Craig Topper13894fa2011-08-24 06:14:18 +00001028 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
1029 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
1030 setOperationAction(ISD::ADD, MVT::v16i16, Custom);
1031 setOperationAction(ISD::ADD, MVT::v32i8, Custom);
1032
1033 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
1034 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
1035 setOperationAction(ISD::SUB, MVT::v16i16, Custom);
1036 setOperationAction(ISD::SUB, MVT::v32i8, Custom);
1037
1038 setOperationAction(ISD::MUL, MVT::v4i64, Custom);
1039 setOperationAction(ISD::MUL, MVT::v8i32, Custom);
1040 setOperationAction(ISD::MUL, MVT::v16i16, Custom);
1041 // Don't lower v32i8 because there is no 128-bit byte mul
1042
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001043 // Custom lower several nodes for 256-bit types.
David Greene54d8eba2011-01-27 22:38:56 +00001044 for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001045 i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
1046 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1047 EVT VT = SVT;
1048
1049 // Extract subvector is special because the value type
1050 // (result) is 128-bit but the source is 256-bit wide.
1051 if (VT.is128BitVector())
1052 setOperationAction(ISD::EXTRACT_SUBVECTOR, SVT, Custom);
1053
1054 // Do not attempt to custom lower other non-256-bit vectors
1055 if (!VT.is256BitVector())
David Greene9b9838d2009-06-29 16:47:10 +00001056 continue;
David Greene54d8eba2011-01-27 22:38:56 +00001057
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001058 setOperationAction(ISD::BUILD_VECTOR, SVT, Custom);
1059 setOperationAction(ISD::VECTOR_SHUFFLE, SVT, Custom);
1060 setOperationAction(ISD::INSERT_VECTOR_ELT, SVT, Custom);
1061 setOperationAction(ISD::EXTRACT_VECTOR_ELT, SVT, Custom);
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00001062 setOperationAction(ISD::SCALAR_TO_VECTOR, SVT, Custom);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001063 setOperationAction(ISD::INSERT_SUBVECTOR, SVT, Custom);
David Greene9b9838d2009-06-29 16:47:10 +00001064 }
1065
David Greene54d8eba2011-01-27 22:38:56 +00001066 // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001067 for (unsigned i = (unsigned)MVT::v32i8; i != (unsigned)MVT::v4i64; ++i) {
1068 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1069 EVT VT = SVT;
David Greene54d8eba2011-01-27 22:38:56 +00001070
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001071 // Do not attempt to promote non-256-bit vectors
1072 if (!VT.is256BitVector())
David Greene54d8eba2011-01-27 22:38:56 +00001073 continue;
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00001074
1075 setOperationAction(ISD::AND, SVT, Promote);
1076 AddPromotedToType (ISD::AND, SVT, MVT::v4i64);
1077 setOperationAction(ISD::OR, SVT, Promote);
1078 AddPromotedToType (ISD::OR, SVT, MVT::v4i64);
1079 setOperationAction(ISD::XOR, SVT, Promote);
1080 AddPromotedToType (ISD::XOR, SVT, MVT::v4i64);
1081 setOperationAction(ISD::LOAD, SVT, Promote);
1082 AddPromotedToType (ISD::LOAD, SVT, MVT::v4i64);
1083 setOperationAction(ISD::SELECT, SVT, Promote);
1084 AddPromotedToType (ISD::SELECT, SVT, MVT::v4i64);
David Greene54d8eba2011-01-27 22:38:56 +00001085 }
David Greene9b9838d2009-06-29 16:47:10 +00001086 }
1087
Nadav Rotemd0f3ef82011-07-14 11:11:14 +00001088 // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1089 // of this type with custom code.
1090 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1091 VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE; VT++) {
1092 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT, Custom);
1093 }
1094
Evan Cheng6be2c582006-04-05 23:38:46 +00001095 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +00001096 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +00001097
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001098
Eli Friedman962f5492010-06-02 19:35:46 +00001099 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1100 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +00001101 //
Eli Friedman962f5492010-06-02 19:35:46 +00001102 // FIXME: We really should do custom legalization for addition and
1103 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
1104 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001105 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1106 // Add/Sub/Mul with overflow operations are custom lowered.
1107 MVT VT = IntVTs[i];
1108 setOperationAction(ISD::SADDO, VT, Custom);
1109 setOperationAction(ISD::UADDO, VT, Custom);
1110 setOperationAction(ISD::SSUBO, VT, Custom);
1111 setOperationAction(ISD::USUBO, VT, Custom);
1112 setOperationAction(ISD::SMULO, VT, Custom);
1113 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +00001114 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00001115
Chris Lattnera34b3cf2010-12-19 20:03:11 +00001116 // There are no 8-bit 3-address imul/mul instructions
1117 setOperationAction(ISD::SMULO, MVT::i8, Expand);
1118 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +00001119
Evan Chengd54f2d52009-03-31 19:38:51 +00001120 if (!Subtarget->is64Bit()) {
1121 // These libcalls are not available in 32-bit.
1122 setLibcallName(RTLIB::SHL_I128, 0);
1123 setLibcallName(RTLIB::SRL_I128, 0);
1124 setLibcallName(RTLIB::SRA_I128, 0);
1125 }
1126
Evan Cheng206ee9d2006-07-07 08:33:52 +00001127 // We have target-specific dag combine patterns for the following nodes:
1128 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +00001129 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +00001130 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +00001131 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +00001132 setTargetDAGCombine(ISD::SHL);
1133 setTargetDAGCombine(ISD::SRA);
1134 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +00001135 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +00001136 setTargetDAGCombine(ISD::AND);
Benjamin Kramer7d6fe132010-12-21 21:41:44 +00001137 setTargetDAGCombine(ISD::ADD);
1138 setTargetDAGCombine(ISD::SUB);
Chris Lattner149a4e52008-02-22 02:09:43 +00001139 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +00001140 setTargetDAGCombine(ISD::ZERO_EXTEND);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +00001141 setTargetDAGCombine(ISD::SINT_TO_FP);
Evan Cheng0b0cd912009-03-28 05:57:29 +00001142 if (Subtarget->is64Bit())
1143 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +00001144
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001145 computeRegisterProperties();
1146
Evan Cheng05219282011-01-06 06:52:41 +00001147 // On Darwin, -Os means optimize for size without hurting performance,
1148 // do not reduce the limit.
Dan Gohman87060f52008-06-30 21:00:56 +00001149 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001150 maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
Evan Cheng255f20f2010-04-01 06:04:33 +00001151 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Evan Cheng05219282011-01-06 06:52:41 +00001152 maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1153 maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1154 maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
Evan Chengfb8075d2008-02-28 00:43:03 +00001155 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +00001156 benefitFromCodePlacementOpt = true;
Eli Friedmanfc5d3052011-05-06 20:34:06 +00001157
1158 setPrefFunctionAlignment(4);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001159}
1160
Scott Michel5b8f82e2008-03-10 15:42:14 +00001161
Duncan Sands28b77e92011-09-06 19:07:46 +00001162EVT X86TargetLowering::getSetCCResultType(EVT VT) const {
1163 if (!VT.isVector()) return MVT::i8;
1164 return VT.changeVectorElementTypeToInteger();
Scott Michel5b8f82e2008-03-10 15:42:14 +00001165}
1166
1167
Evan Cheng29286502008-01-23 23:17:41 +00001168/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1169/// the desired ByVal argument alignment.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001170static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
Evan Cheng29286502008-01-23 23:17:41 +00001171 if (MaxAlign == 16)
1172 return;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001173 if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001174 if (VTy->getBitWidth() == 128)
1175 MaxAlign = 16;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001176 } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001177 unsigned EltAlign = 0;
1178 getMaxByValAlign(ATy->getElementType(), EltAlign);
1179 if (EltAlign > MaxAlign)
1180 MaxAlign = EltAlign;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001181 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
Evan Cheng29286502008-01-23 23:17:41 +00001182 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1183 unsigned EltAlign = 0;
1184 getMaxByValAlign(STy->getElementType(i), EltAlign);
1185 if (EltAlign > MaxAlign)
1186 MaxAlign = EltAlign;
1187 if (MaxAlign == 16)
1188 break;
1189 }
1190 }
1191 return;
1192}
1193
1194/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1195/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001196/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1197/// are at 4-byte boundaries.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001198unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001199 if (Subtarget->is64Bit()) {
1200 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001201 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001202 if (TyAlign > 8)
1203 return TyAlign;
1204 return 8;
1205 }
1206
Evan Cheng29286502008-01-23 23:17:41 +00001207 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001208 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001209 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001210 return Align;
1211}
Chris Lattner2b02a442007-02-25 08:29:00 +00001212
Evan Chengf0df0312008-05-15 08:39:06 +00001213/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001214/// and store operations as a result of memset, memcpy, and memmove
1215/// lowering. If DstAlign is zero that means it's safe to destination
1216/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1217/// means there isn't a need to check it against alignment requirement,
1218/// probably because the source does not need to be loaded. If
1219/// 'NonScalarIntSafe' is true, that means it's safe to return a
1220/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1221/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1222/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001223/// It returns EVT::Other if the type should be determined using generic
1224/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001225EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001226X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1227 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001228 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001229 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001230 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001231 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1232 // linux. This is because the stack realignment code can't handle certain
1233 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001234 const Function *F = MF.getFunction();
Evan Chenga5e13622011-01-07 19:35:30 +00001235 if (NonScalarIntSafe &&
1236 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001237 if (Size >= 16 &&
Evan Chenga5e13622011-01-07 19:35:30 +00001238 (Subtarget->isUnalignedMemAccessFast() ||
1239 ((DstAlign == 0 || DstAlign >= 16) &&
1240 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001241 Subtarget->getStackAlignment() >= 16) {
1242 if (Subtarget->hasSSE2())
1243 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001244 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001245 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001246 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001247 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001248 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001249 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001250 // Do not use f64 to lower memcpy if source is string constant. It's
1251 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001252 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001253 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001254 }
Evan Chengf0df0312008-05-15 08:39:06 +00001255 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001256 return MVT::i64;
1257 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001258}
1259
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001260/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1261/// current function. The returned value is a member of the
1262/// MachineJumpTableInfo::JTEntryKind enum.
1263unsigned X86TargetLowering::getJumpTableEncoding() const {
1264 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1265 // symbol.
1266 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1267 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001268 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001269
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001270 // Otherwise, use the normal jump table encoding heuristics.
1271 return TargetLowering::getJumpTableEncoding();
1272}
1273
Chris Lattnerc64daab2010-01-26 05:02:42 +00001274const MCExpr *
1275X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1276 const MachineBasicBlock *MBB,
1277 unsigned uid,MCContext &Ctx) const{
1278 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1279 Subtarget->isPICStyleGOT());
1280 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1281 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001282 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1283 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001284}
1285
Evan Chengcc415862007-11-09 01:32:10 +00001286/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1287/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001288SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001289 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001290 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001291 // This doesn't have DebugLoc associated with it, but is not really the
1292 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001293 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001294 return Table;
1295}
1296
Chris Lattner589c6f62010-01-26 06:28:43 +00001297/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1298/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1299/// MCExpr.
1300const MCExpr *X86TargetLowering::
1301getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1302 MCContext &Ctx) const {
1303 // X86-64 uses RIP relative addressing based on the jump table label.
1304 if (Subtarget->isPICStyleRIPRel())
1305 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1306
1307 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001308 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001309}
1310
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001311// FIXME: Why this routine is here? Move to RegInfo!
Evan Chengdee81012010-07-26 21:50:05 +00001312std::pair<const TargetRegisterClass*, uint8_t>
1313X86TargetLowering::findRepresentativeClass(EVT VT) const{
1314 const TargetRegisterClass *RRC = 0;
1315 uint8_t Cost = 1;
1316 switch (VT.getSimpleVT().SimpleTy) {
1317 default:
1318 return TargetLowering::findRepresentativeClass(VT);
1319 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1320 RRC = (Subtarget->is64Bit()
1321 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1322 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001323 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001324 RRC = X86::VR64RegisterClass;
1325 break;
1326 case MVT::f32: case MVT::f64:
1327 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1328 case MVT::v4f32: case MVT::v2f64:
1329 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1330 case MVT::v4f64:
1331 RRC = X86::VR128RegisterClass;
1332 break;
1333 }
1334 return std::make_pair(RRC, Cost);
1335}
1336
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001337bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1338 unsigned &Offset) const {
1339 if (!Subtarget->isTargetLinux())
1340 return false;
1341
1342 if (Subtarget->is64Bit()) {
1343 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1344 Offset = 0x28;
1345 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1346 AddressSpace = 256;
1347 else
1348 AddressSpace = 257;
1349 } else {
1350 // %gs:0x14 on i386
1351 Offset = 0x14;
1352 AddressSpace = 256;
1353 }
1354 return true;
1355}
1356
1357
Chris Lattner2b02a442007-02-25 08:29:00 +00001358//===----------------------------------------------------------------------===//
1359// Return Value Calling Convention Implementation
1360//===----------------------------------------------------------------------===//
1361
Chris Lattner59ed56b2007-02-28 04:55:35 +00001362#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001363
Michael J. Spencerec38de22010-10-10 22:04:20 +00001364bool
Eric Christopher471e4222011-06-08 23:55:35 +00001365X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1366 MachineFunction &MF, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001367 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001368 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001369 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001370 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001371 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001372 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001373}
1374
Dan Gohman98ca4f22009-08-05 01:29:28 +00001375SDValue
1376X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001377 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001378 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001379 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001380 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001381 MachineFunction &MF = DAG.getMachineFunction();
1382 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001383
Chris Lattner9774c912007-02-27 05:28:59 +00001384 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001385 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001386 RVLocs, *DAG.getContext());
1387 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001388
Evan Chengdcea1632010-02-04 02:40:39 +00001389 // Add the regs to the liveout set for the function.
1390 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1391 for (unsigned i = 0; i != RVLocs.size(); ++i)
1392 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1393 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001394
Dan Gohman475871a2008-07-27 21:46:04 +00001395 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001396
Dan Gohman475871a2008-07-27 21:46:04 +00001397 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001398 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1399 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001400 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1401 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001402
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001403 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001404 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1405 CCValAssign &VA = RVLocs[i];
1406 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001407 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001408 EVT ValVT = ValToCopy.getValueType();
1409
Dale Johannesenc4510512010-09-24 19:05:48 +00001410 // If this is x86-64, and we disabled SSE, we can't return FP values,
1411 // or SSE or MMX vectors.
1412 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1413 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001414 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001415 report_fatal_error("SSE register return with SSE disabled");
1416 }
1417 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1418 // llvm-gcc has never done it right and no one has noticed, so this
1419 // should be OK for now.
1420 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001421 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001422 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001423
Chris Lattner447ff682008-03-11 03:23:40 +00001424 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1425 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001426 if (VA.getLocReg() == X86::ST0 ||
1427 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001428 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1429 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001430 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001431 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001432 RetOps.push_back(ValToCopy);
1433 // Don't emit a copytoreg.
1434 continue;
1435 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001436
Evan Cheng242b38b2009-02-23 09:03:22 +00001437 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1438 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001439 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001440 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001441 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001442 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001443 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1444 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001445 // If we don't have SSE2 available, convert to v4f32 so the generated
1446 // register is legal.
1447 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001448 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001449 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001450 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001451 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001452
Dale Johannesendd64c412009-02-04 00:33:20 +00001453 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001454 Flag = Chain.getValue(1);
1455 }
Dan Gohman61a92132008-04-21 23:59:07 +00001456
1457 // The x86-64 ABI for returning structs by value requires that we copy
1458 // the sret argument into %rax for the return. We saved the argument into
1459 // a virtual register in the entry block, so now we copy the value out
1460 // and into %rax.
1461 if (Subtarget->is64Bit() &&
1462 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1463 MachineFunction &MF = DAG.getMachineFunction();
1464 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1465 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001466 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001467 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001468 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001469
Dale Johannesendd64c412009-02-04 00:33:20 +00001470 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001471 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001472
1473 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001474 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001475 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001476
Chris Lattner447ff682008-03-11 03:23:40 +00001477 RetOps[0] = Chain; // Update chain.
1478
1479 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001480 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001481 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001482
1483 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001484 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001485}
1486
Evan Cheng3d2125c2010-11-30 23:55:39 +00001487bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1488 if (N->getNumValues() != 1)
1489 return false;
1490 if (!N->hasNUsesOfValue(1, 0))
1491 return false;
1492
1493 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001494 if (Copy->getOpcode() != ISD::CopyToReg &&
1495 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001496 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001497
1498 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001499 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001500 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001501 if (UI->getOpcode() != X86ISD::RET_FLAG)
1502 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001503 HasRet = true;
1504 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001505
Evan Cheng1bf891a2010-12-01 22:59:46 +00001506 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001507}
1508
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001509EVT
1510X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
Cameron Zwarich44579682011-03-17 14:21:56 +00001511 ISD::NodeType ExtendKind) const {
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001512 MVT ReturnMVT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001513 // TODO: Is this also valid on 32-bit?
1514 if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
Cameron Zwarich7bbf0ee2011-03-17 14:53:37 +00001515 ReturnMVT = MVT::i8;
1516 else
1517 ReturnMVT = MVT::i32;
1518
1519 EVT MinVT = getRegisterType(Context, ReturnMVT);
1520 return VT.bitsLT(MinVT) ? MinVT : VT;
Cameron Zwarichebe81732011-03-16 22:20:18 +00001521}
1522
Dan Gohman98ca4f22009-08-05 01:29:28 +00001523/// LowerCallResult - Lower the result values of a call into the
1524/// appropriate copies out of appropriate physical registers.
1525///
1526SDValue
1527X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001528 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001529 const SmallVectorImpl<ISD::InputArg> &Ins,
1530 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001531 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001532
Chris Lattnere32bbf62007-02-28 07:09:55 +00001533 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001534 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001535 bool Is64Bit = Subtarget->is64Bit();
Eric Christopher471e4222011-06-08 23:55:35 +00001536 CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1537 getTargetMachine(), RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001538 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001539
Chris Lattner3085e152007-02-25 08:59:22 +00001540 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001541 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001542 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001543 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001544
Torok Edwin3f142c32009-02-01 18:15:56 +00001545 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001546 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001547 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001548 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001549 }
1550
Evan Cheng79fb3b42009-02-20 20:43:02 +00001551 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001552
1553 // If this is a call to a function that returns an fp value on the floating
1554 // point stack, we must guarantee the the value is popped from the stack, so
1555 // a CopyFromReg is not good enough - the copy instruction may be eliminated
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001556 // if the return value is not used. We use the FpPOP_RETVAL instruction
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001557 // instead.
1558 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1559 // If we prefer to use the value in xmm registers, copy it out as f80 and
1560 // use a truncate to move it from fp stack reg to xmm reg.
1561 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001562 SDValue Ops[] = { Chain, InFlag };
Jakob Stoklund Olesen9bbe4d62011-06-28 18:32:28 +00001563 Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1564 MVT::Other, MVT::Glue, Ops, 2), 1);
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001565 Val = Chain.getValue(0);
1566
1567 // Round the f80 to the right size, which also moves it to the appropriate
1568 // xmm register.
1569 if (CopyVT != VA.getValVT())
1570 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1571 // This truncation won't change the value.
1572 DAG.getIntPtrConstant(1));
Evan Cheng79fb3b42009-02-20 20:43:02 +00001573 } else {
1574 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1575 CopyVT, InFlag).getValue(1);
1576 Val = Chain.getValue(0);
1577 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001578 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001579 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001580 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001581
Dan Gohman98ca4f22009-08-05 01:29:28 +00001582 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001583}
1584
1585
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001586//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001587// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001588//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001589// StdCall calling convention seems to be standard for many Windows' API
1590// routines and around. It differs from C calling convention just a little:
1591// callee should clean up the stack, not caller. Symbols should be also
1592// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001593// For info on fast calling convention see Fast Calling Convention (tail call)
1594// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001595
Dan Gohman98ca4f22009-08-05 01:29:28 +00001596/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001597/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001598static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1599 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001600 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001601
Dan Gohman98ca4f22009-08-05 01:29:28 +00001602 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001603}
1604
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001605/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001606/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001607static bool
1608ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1609 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001610 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001611
Dan Gohman98ca4f22009-08-05 01:29:28 +00001612 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001613}
1614
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001615/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1616/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001617/// the specific parameter attribute. The copy will be passed as a byval
1618/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001619static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001620CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001621 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1622 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001623 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001624
Dale Johannesendd64c412009-02-04 00:33:20 +00001625 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Stuart Hastings03d58262011-03-10 00:25:53 +00001626 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001627 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001628}
1629
Chris Lattner29689432010-03-11 00:22:57 +00001630/// IsTailCallConvention - Return true if the calling convention is one that
1631/// supports tail call optimization.
1632static bool IsTailCallConvention(CallingConv::ID CC) {
1633 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1634}
1635
Evan Cheng485fafc2011-03-21 01:19:09 +00001636bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1637 if (!CI->isTailCall())
1638 return false;
1639
1640 CallSite CS(CI);
1641 CallingConv::ID CalleeCC = CS.getCallingConv();
1642 if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1643 return false;
1644
1645 return true;
1646}
1647
Evan Cheng0c439eb2010-01-27 00:07:07 +00001648/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1649/// a tailcall target by changing its ABI.
1650static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001651 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001652}
1653
Dan Gohman98ca4f22009-08-05 01:29:28 +00001654SDValue
1655X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001656 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001657 const SmallVectorImpl<ISD::InputArg> &Ins,
1658 DebugLoc dl, SelectionDAG &DAG,
1659 const CCValAssign &VA,
1660 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001661 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001662 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001663 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001664 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001665 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001666 EVT ValVT;
1667
1668 // If value is passed by pointer we have address passed instead of the value
1669 // itself.
1670 if (VA.getLocInfo() == CCValAssign::Indirect)
1671 ValVT = VA.getLocVT();
1672 else
1673 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001674
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001675 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001676 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001677 // In case of tail call optimization mark all arguments mutable. Since they
1678 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001679 if (Flags.isByVal()) {
Evan Chengee2e0e32011-03-30 23:44:13 +00001680 unsigned Bytes = Flags.getByValSize();
1681 if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1682 int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001683 return DAG.getFrameIndex(FI, getPointerTy());
1684 } else {
1685 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001686 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001687 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1688 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001689 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001690 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001691 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001692}
1693
Dan Gohman475871a2008-07-27 21:46:04 +00001694SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001695X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001696 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001697 bool isVarArg,
1698 const SmallVectorImpl<ISD::InputArg> &Ins,
1699 DebugLoc dl,
1700 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001701 SmallVectorImpl<SDValue> &InVals)
1702 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001703 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001704 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001705
Gordon Henriksen86737662008-01-05 16:56:59 +00001706 const Function* Fn = MF.getFunction();
1707 if (Fn->hasExternalLinkage() &&
1708 Subtarget->isTargetCygMing() &&
1709 Fn->getName() == "main")
1710 FuncInfo->setForceFramePointer(true);
1711
Evan Cheng1bc78042006-04-26 01:20:17 +00001712 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001713 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001714 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001715
Chris Lattner29689432010-03-11 00:22:57 +00001716 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1717 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001718
Chris Lattner638402b2007-02-28 07:00:42 +00001719 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001720 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00001721 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00001722 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001723
1724 // Allocate shadow area for Win64
1725 if (IsWin64) {
1726 CCInfo.AllocateStack(32, 8);
1727 }
1728
Duncan Sands45907662010-10-31 13:21:44 +00001729 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001730
Chris Lattnerf39f7712007-02-28 05:46:49 +00001731 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001732 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001733 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1734 CCValAssign &VA = ArgLocs[i];
1735 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1736 // places.
1737 assert(VA.getValNo() != LastVal &&
1738 "Don't support value assigned to multiple locs yet");
1739 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001740
Chris Lattnerf39f7712007-02-28 05:46:49 +00001741 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001742 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001743 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001744 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001745 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001746 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001747 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001748 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001749 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001750 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001751 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001752 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1753 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001754 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001755 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001756 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001757 RC = X86::VR64RegisterClass;
1758 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001759 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001760
Devang Patel68e6bee2011-02-21 23:21:26 +00001761 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001762 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001763
Chris Lattnerf39f7712007-02-28 05:46:49 +00001764 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1765 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1766 // right size.
1767 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001768 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001769 DAG.getValueType(VA.getValVT()));
1770 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001771 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001772 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001773 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001774 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001775
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001776 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001777 // Handle MMX values passed in XMM regs.
1778 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001779 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1780 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001781 } else
1782 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001783 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001784 } else {
1785 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001786 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001787 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001788
1789 // If value is passed via pointer - do a load.
1790 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001791 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1792 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001793
Dan Gohman98ca4f22009-08-05 01:29:28 +00001794 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001795 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001796
Dan Gohman61a92132008-04-21 23:59:07 +00001797 // The x86-64 ABI for returning structs by value requires that we copy
1798 // the sret argument into %rax for the return. Save the argument into
1799 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001800 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001801 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1802 unsigned Reg = FuncInfo->getSRetReturnReg();
1803 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001804 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001805 FuncInfo->setSRetReturnReg(Reg);
1806 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001807 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001808 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001809 }
1810
Chris Lattnerf39f7712007-02-28 05:46:49 +00001811 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001812 // Align stack specially for tail calls.
1813 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001814 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001815
Evan Cheng1bc78042006-04-26 01:20:17 +00001816 // If the function takes variable number of arguments, make a frame index for
1817 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001818 if (isVarArg) {
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001819 if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1820 CallConv != CallingConv::X86_ThisCall)) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001821 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001822 }
1823 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001824 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1825
1826 // FIXME: We should really autogenerate these arrays
1827 static const unsigned GPR64ArgRegsWin64[] = {
1828 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001829 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001830 static const unsigned GPR64ArgRegs64Bit[] = {
1831 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1832 };
1833 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001834 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1835 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1836 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001837 const unsigned *GPR64ArgRegs;
1838 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001839
1840 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001841 // The XMM registers which might contain var arg parameters are shadowed
1842 // in their paired GPR. So we only need to save the GPR to their home
1843 // slots.
1844 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001845 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001846 } else {
1847 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1848 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001849
1850 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001851 }
1852 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1853 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001854
Devang Patel578efa92009-06-05 21:57:13 +00001855 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001856 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001857 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001858 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001859 "SSE register cannot be used when SSE is disabled!");
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001860 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001861 // Kernel mode asks for SSE to be disabled, so don't push them
1862 // on the stack.
1863 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001864
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001865 if (IsWin64) {
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00001866 const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001867 // Get to the caller-allocated home save location. Add 8 to account
1868 // for the return address.
1869 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001870 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001871 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
NAKAMURA Takumi3ca99432011-03-09 11:33:15 +00001872 // Fixup to set vararg frame on shadow area (4 x i64).
1873 if (NumIntRegs < 4)
1874 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001875 } else {
1876 // For X86-64, if there are vararg parameters that are passed via
1877 // registers, then we must store them to their spots on the stack so they
1878 // may be loaded by deferencing the result of va_next.
1879 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1880 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1881 FuncInfo->setRegSaveFrameIndex(
1882 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001883 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001884 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001885
Gordon Henriksen86737662008-01-05 16:56:59 +00001886 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001887 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001888 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1889 getPointerTy());
1890 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001891 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001892 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1893 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001894 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001895 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001896 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001897 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001898 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001899 MachinePointerInfo::getFixedStack(
1900 FuncInfo->getRegSaveFrameIndex(), Offset),
1901 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001902 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001903 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001904 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001905
Dan Gohmanface41a2009-08-16 21:24:25 +00001906 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1907 // Now store the XMM (fp + vector) parameter registers.
1908 SmallVector<SDValue, 11> SaveXMMOps;
1909 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001910
Devang Patel68e6bee2011-02-21 23:21:26 +00001911 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001912 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1913 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001914
Dan Gohman1e93df62010-04-17 14:41:14 +00001915 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1916 FuncInfo->getRegSaveFrameIndex()));
1917 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1918 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001919
Dan Gohmanface41a2009-08-16 21:24:25 +00001920 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001921 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Devang Patel68e6bee2011-02-21 23:21:26 +00001922 X86::VR128RegisterClass);
Dan Gohmanface41a2009-08-16 21:24:25 +00001923 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1924 SaveXMMOps.push_back(Val);
1925 }
1926 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1927 MVT::Other,
1928 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001929 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001930
1931 if (!MemOps.empty())
1932 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1933 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001934 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001935 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001936
Gordon Henriksen86737662008-01-05 16:56:59 +00001937 // Some CCs need callee pop.
Evan Chengef41ff62011-06-23 17:54:54 +00001938 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001939 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001940 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001941 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001942 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001943 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001944 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001945 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001946
Gordon Henriksen86737662008-01-05 16:56:59 +00001947 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001948 // RegSaveFrameIndex is X86-64 only.
1949 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001950 if (CallConv == CallingConv::X86_FastCall ||
1951 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001952 // fastcc functions can't have varargs.
1953 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001954 }
Evan Cheng25caf632006-05-23 21:06:34 +00001955
Rafael Espindola76927d752011-08-30 19:39:58 +00001956 FuncInfo->setArgumentStackSize(StackSize);
1957
Dan Gohman98ca4f22009-08-05 01:29:28 +00001958 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001959}
1960
Dan Gohman475871a2008-07-27 21:46:04 +00001961SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001962X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1963 SDValue StackPtr, SDValue Arg,
1964 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001965 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001966 ISD::ArgFlagsTy Flags) const {
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00001967 unsigned LocMemOffset = VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001968 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001969 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001970 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001971 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001972
1973 return DAG.getStore(Chain, dl, Arg, PtrOff,
1974 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001975 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001976}
1977
Bill Wendling64e87322009-01-16 19:25:27 +00001978/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001979/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001980SDValue
1981X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001982 SDValue &OutRetAddr, SDValue Chain,
1983 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001984 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001985 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001986 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001987 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001988
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001989 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001990 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1991 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001992 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001993}
1994
Chris Lattner7a2bdde2011-04-15 05:18:47 +00001995/// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001996/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001997static SDValue
1998EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001999 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00002000 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002001 // Store the return address to the appropriate stack slot.
2002 if (!FPDiff) return Chain;
2003 // Calculate the new stack slot for the return address.
2004 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00002005 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00002006 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00002007 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00002008 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00002009 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00002010 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00002011 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002012 return Chain;
2013}
2014
Dan Gohman98ca4f22009-08-05 01:29:28 +00002015SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00002016X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002017 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00002018 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002019 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002020 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002021 const SmallVectorImpl<ISD::InputArg> &Ins,
2022 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00002023 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00002024 MachineFunction &MF = DAG.getMachineFunction();
2025 bool Is64Bit = Subtarget->is64Bit();
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002026 bool IsWin64 = Subtarget->isTargetWin64();
Dan Gohman98ca4f22009-08-05 01:29:28 +00002027 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00002028 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00002029
Evan Cheng5f941932010-02-05 02:21:12 +00002030 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00002031 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00002032 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2033 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00002034 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00002035
2036 // Sibcalls are automatically detected tailcalls which do not require
2037 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00002038 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00002039 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00002040
2041 if (isTailCall)
2042 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00002043 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00002044
Chris Lattner29689432010-03-11 00:22:57 +00002045 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2046 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00002047
Chris Lattner638402b2007-02-28 07:00:42 +00002048 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00002049 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002050 CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
Dan Gohman98ca4f22009-08-05 01:29:28 +00002051 ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002052
2053 // Allocate shadow area for Win64
2054 if (IsWin64) {
2055 CCInfo.AllocateStack(32, 8);
2056 }
2057
Duncan Sands45907662010-10-31 13:21:44 +00002058 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00002059
Chris Lattner423c5f42007-02-28 05:31:48 +00002060 // Get a count of how many bytes are to be pushed on the stack.
2061 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00002062 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00002063 // This is a sibcall. The memory operands are available in caller's
2064 // own caller's stack.
2065 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00002066 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00002067 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002068
Gordon Henriksen86737662008-01-05 16:56:59 +00002069 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00002070 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002071 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00002072 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00002073 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
2074 FPDiff = NumBytesCallerPushed - NumBytes;
2075
2076 // Set the delta of movement of the returnaddr stackslot.
2077 // But only set if delta is greater than previous delta.
2078 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2079 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2080 }
2081
Evan Chengf22f9b32010-02-06 03:28:46 +00002082 if (!IsSibcall)
2083 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002084
Dan Gohman475871a2008-07-27 21:46:04 +00002085 SDValue RetAddrFrIdx;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002086 // Load return address for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00002087 if (isTailCall && FPDiff)
2088 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2089 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002090
Dan Gohman475871a2008-07-27 21:46:04 +00002091 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2092 SmallVector<SDValue, 8> MemOpChains;
2093 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00002094
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002095 // Walk the register/memloc assignments, inserting copies/loads. In the case
2096 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00002097 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2098 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00002099 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00002100 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002101 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00002102 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00002103
Chris Lattner423c5f42007-02-28 05:31:48 +00002104 // Promote the value if needed.
2105 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002106 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00002107 case CCValAssign::Full: break;
2108 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002109 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002110 break;
2111 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002112 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002113 break;
2114 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002115 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2116 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002117 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00002118 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2119 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00002120 } else
2121 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2122 break;
2123 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00002124 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00002125 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002126 case CCValAssign::Indirect: {
2127 // Store the argument.
2128 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00002129 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002130 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00002131 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002132 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00002133 Arg = SpillSlot;
2134 break;
2135 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00002136 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002137
Chris Lattner423c5f42007-02-28 05:31:48 +00002138 if (VA.isRegLoc()) {
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002139 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2140 if (isVarArg && IsWin64) {
2141 // Win64 ABI requires argument XMM reg to be copied to the corresponding
2142 // shadow reg if callee is a varargs function.
2143 unsigned ShadowReg = 0;
2144 switch (VA.getLocReg()) {
2145 case X86::XMM0: ShadowReg = X86::RCX; break;
2146 case X86::XMM1: ShadowReg = X86::RDX; break;
2147 case X86::XMM2: ShadowReg = X86::R8; break;
2148 case X86::XMM3: ShadowReg = X86::R9; break;
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002149 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002150 if (ShadowReg)
2151 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00002152 }
Evan Chengf22f9b32010-02-06 03:28:46 +00002153 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00002154 assert(VA.isMemLoc());
2155 if (StackPtr.getNode() == 0)
2156 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2157 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2158 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002159 }
Stuart Hastings2aa0f232011-05-26 04:09:49 +00002160 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002161
Evan Cheng32fe1032006-05-25 00:59:30 +00002162 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002163 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002164 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002165
Evan Cheng347d5f72006-04-28 21:29:37 +00002166 // Build a sequence of copy-to-reg nodes chained together with token chain
2167 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002168 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002169 // Tail call byval lowering might overwrite argument registers so in case of
2170 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002171 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002172 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002173 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002174 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002175 InFlag = Chain.getValue(1);
2176 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002177
Chris Lattner88e1fd52009-07-09 04:24:46 +00002178 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002179 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2180 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002181 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002182 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2183 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002184 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002185 InFlag);
2186 InFlag = Chain.getValue(1);
2187 } else {
2188 // If we are tail calling and generating PIC/GOT style code load the
2189 // address of the callee into ECX. The value in ecx is used as target of
2190 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2191 // for tail calls on PIC/GOT architectures. Normally we would just put the
2192 // address of GOT into ebx and then call target@PLT. But for tail calls
2193 // ebx would be restored (since ebx is callee saved) before jumping to the
2194 // target@PLT.
2195
2196 // Note: The actual moving to ECX is done further down.
2197 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2198 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2199 !G->getGlobal()->hasProtectedVisibility())
2200 Callee = LowerGlobalAddress(Callee, DAG);
2201 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002202 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002203 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002204 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002205
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002206 if (Is64Bit && isVarArg && !IsWin64) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002207 // From AMD64 ABI document:
2208 // For calls that may call functions that use varargs or stdargs
2209 // (prototype-less calls or calls to functions containing ellipsis (...) in
2210 // the declaration) %al is used as hidden argument to specify the number
2211 // of SSE registers used. The contents of %al do not need to match exactly
2212 // the number of registers, but must be an ubound on the number of SSE
2213 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002214
Gordon Henriksen86737662008-01-05 16:56:59 +00002215 // Count the number of XMM registers allocated.
2216 static const unsigned XMMArgRegs[] = {
2217 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2218 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2219 };
2220 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002221 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002222 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002223
Dale Johannesendd64c412009-02-04 00:33:20 +00002224 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002225 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002226 InFlag = Chain.getValue(1);
2227 }
2228
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002229
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002230 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002231 if (isTailCall) {
2232 // Force all the incoming stack arguments to be loaded from the stack
2233 // before any new outgoing arguments are stored to the stack, because the
2234 // outgoing stack slots may alias the incoming argument stack slots, and
2235 // the alias isn't otherwise explicit. This is slightly more conservative
2236 // than necessary, because it means that each store effectively depends
2237 // on every argument instead of just those arguments it would clobber.
2238 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2239
Dan Gohman475871a2008-07-27 21:46:04 +00002240 SmallVector<SDValue, 8> MemOpChains2;
2241 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002242 int FI = 0;
Chris Lattner7a2bdde2011-04-15 05:18:47 +00002243 // Do not flag preceding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002244 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002245 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002246 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2247 CCValAssign &VA = ArgLocs[i];
2248 if (VA.isRegLoc())
2249 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002250 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002251 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002252 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002253 // Create frame index.
2254 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002255 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002256 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002257 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002258
Duncan Sands276dcbd2008-03-21 09:14:45 +00002259 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002260 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002261 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002262 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002263 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002264 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002265 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002266
Dan Gohman98ca4f22009-08-05 01:29:28 +00002267 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2268 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002269 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002270 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002271 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002272 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002273 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002274 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002275 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002276 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002277 }
2278 }
2279
2280 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002281 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002282 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002283
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002284 // Copy arguments to their registers.
2285 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002286 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002287 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002288 InFlag = Chain.getValue(1);
2289 }
Dan Gohman475871a2008-07-27 21:46:04 +00002290 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002291
Gordon Henriksen86737662008-01-05 16:56:59 +00002292 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002293 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002294 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002295 }
2296
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002297 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2298 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2299 // In the 64-bit large code model, we have to make all calls
2300 // through a register, since the call instruction's 32-bit
2301 // pc-relative offset may not be large enough to hold the whole
2302 // address.
2303 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002304 // If the callee is a GlobalAddress node (quite common, every direct call
2305 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2306 // it.
2307
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002308 // We should use extra load for direct calls to dllimported functions in
2309 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002310 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002311 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002312 unsigned char OpFlags = 0;
John McCall3a3465b2011-06-15 20:36:13 +00002313 bool ExtraLoad = false;
2314 unsigned WrapperKind = ISD::DELETED_NODE;
Eric Christopherfd179292009-08-27 18:07:15 +00002315
Chris Lattner48a7d022009-07-09 05:02:21 +00002316 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2317 // external symbols most go through the PLT in PIC mode. If the symbol
2318 // has hidden or protected visibility, or if it is static or local, then
2319 // we don't need to use the PLT - we can directly call it.
2320 if (Subtarget->isTargetELF() &&
2321 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002322 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002323 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002324 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002325 (GV->isDeclaration() || GV->isWeakForLinker()) &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002326 (!Subtarget->getTargetTriple().isMacOSX() ||
2327 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002328 // PC-relative references to external symbols should go through $stub,
2329 // unless we're building with the leopard linker or later, which
2330 // automatically synthesizes these stubs.
2331 OpFlags = X86II::MO_DARWIN_STUB;
John McCall3a3465b2011-06-15 20:36:13 +00002332 } else if (Subtarget->isPICStyleRIPRel() &&
2333 isa<Function>(GV) &&
2334 cast<Function>(GV)->hasFnAttr(Attribute::NonLazyBind)) {
2335 // If the function is marked as non-lazy, generate an indirect call
2336 // which loads from the GOT directly. This avoids runtime overhead
2337 // at the cost of eager binding (and one extra byte of encoding).
2338 OpFlags = X86II::MO_GOTPCREL;
2339 WrapperKind = X86ISD::WrapperRIP;
2340 ExtraLoad = true;
Chris Lattner74e726e2009-07-09 05:27:35 +00002341 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002342
Devang Patel0d881da2010-07-06 22:08:15 +00002343 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002344 G->getOffset(), OpFlags);
John McCall3a3465b2011-06-15 20:36:13 +00002345
2346 // Add a wrapper if needed.
2347 if (WrapperKind != ISD::DELETED_NODE)
2348 Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2349 // Add extra indirection if needed.
2350 if (ExtraLoad)
2351 Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2352 MachinePointerInfo::getGOT(),
2353 false, false, 0);
Chris Lattner48a7d022009-07-09 05:02:21 +00002354 }
Bill Wendling056292f2008-09-16 21:48:12 +00002355 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002356 unsigned char OpFlags = 0;
2357
Evan Cheng1bf891a2010-12-01 22:59:46 +00002358 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2359 // external symbols should go through the PLT.
2360 if (Subtarget->isTargetELF() &&
2361 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2362 OpFlags = X86II::MO_PLT;
2363 } else if (Subtarget->isPICStyleStubAny() &&
Daniel Dunbar558692f2011-04-20 00:14:25 +00002364 (!Subtarget->getTargetTriple().isMacOSX() ||
2365 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
Evan Cheng1bf891a2010-12-01 22:59:46 +00002366 // PC-relative references to external symbols should go through $stub,
2367 // unless we're building with the leopard linker or later, which
2368 // automatically synthesizes these stubs.
2369 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002370 }
Eric Christopherfd179292009-08-27 18:07:15 +00002371
Chris Lattner48a7d022009-07-09 05:02:21 +00002372 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2373 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002374 }
2375
Chris Lattnerd96d0722007-02-25 06:40:16 +00002376 // Returns a chain & a flag for retval copy to use.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002377 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Dan Gohman475871a2008-07-27 21:46:04 +00002378 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002379
Evan Chengf22f9b32010-02-06 03:28:46 +00002380 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002381 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2382 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002383 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002384 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002385
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002386 Ops.push_back(Chain);
2387 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002388
Dan Gohman98ca4f22009-08-05 01:29:28 +00002389 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002390 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002391
Gordon Henriksen86737662008-01-05 16:56:59 +00002392 // Add argument registers to the end of the list so that they are known live
2393 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002394 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2395 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2396 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002397
Evan Cheng586ccac2008-03-18 23:36:35 +00002398 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002399 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002400 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2401
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002402 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
NAKAMURA Takumifb840c92011-02-05 15:11:13 +00002403 if (Is64Bit && isVarArg && !IsWin64)
Owen Anderson825b72b2009-08-11 20:47:22 +00002404 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002405
Gabor Greifba36cb52008-08-28 21:40:38 +00002406 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002407 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002408
Dan Gohman98ca4f22009-08-05 01:29:28 +00002409 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002410 // We used to do:
2411 //// If this is the first return lowered for this function, add the regs
2412 //// to the liveout set for the function.
2413 // This isn't right, although it's probably harmless on x86; liveouts
2414 // should be computed from returns not tail calls. Consider a void
2415 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002416 return DAG.getNode(X86ISD::TC_RETURN, dl,
2417 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002418 }
2419
Dale Johannesenace16102009-02-03 19:33:06 +00002420 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002421 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002422
Chris Lattner2d297092006-05-23 18:50:38 +00002423 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002424 unsigned NumBytesForCalleeToPush;
Evan Chengef41ff62011-06-23 17:54:54 +00002425 if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt))
Gordon Henriksen86737662008-01-05 16:56:59 +00002426 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002427 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002428 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002429 // pops the hidden struct pointer, so we have to push it back.
2430 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002431 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002432 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002433 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002434
Gordon Henriksenae636f82008-01-03 16:47:34 +00002435 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002436 if (!IsSibcall) {
2437 Chain = DAG.getCALLSEQ_END(Chain,
2438 DAG.getIntPtrConstant(NumBytes, true),
2439 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2440 true),
2441 InFlag);
2442 InFlag = Chain.getValue(1);
2443 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002444
Chris Lattner3085e152007-02-25 08:59:22 +00002445 // Handle result values, copying them out of physregs into vregs that we
2446 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002447 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2448 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002449}
2450
Evan Cheng25ab6902006-09-08 06:48:29 +00002451
2452//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002453// Fast Calling Convention (tail call) implementation
2454//===----------------------------------------------------------------------===//
2455
2456// Like std call, callee cleans arguments, convention except that ECX is
2457// reserved for storing the tail called function address. Only 2 registers are
2458// free for argument passing (inreg). Tail call optimization is performed
2459// provided:
2460// * tailcallopt is enabled
2461// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002462// On X86_64 architecture with GOT-style position independent code only local
2463// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002464// To keep the stack aligned according to platform abi the function
2465// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2466// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002467// If a tail called function callee has more arguments than the caller the
2468// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002469// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002470// original REtADDR, but before the saved framepointer or the spilled registers
2471// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2472// stack layout:
2473// arg1
2474// arg2
2475// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002476// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002477// move area ]
2478// (possible EBP)
2479// ESI
2480// EDI
2481// local1 ..
2482
2483/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2484/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002485unsigned
2486X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2487 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002488 MachineFunction &MF = DAG.getMachineFunction();
2489 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00002490 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002491 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002492 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002493 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002494 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002495 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2496 // Number smaller than 12 so just add the difference.
2497 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2498 } else {
2499 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002500 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002501 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002502 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002503 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002504}
2505
Evan Cheng5f941932010-02-05 02:21:12 +00002506/// MatchingStackOffset - Return true if the given stack call argument is
2507/// already available in the same position (relatively) of the caller's
2508/// incoming argument stack.
2509static
2510bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2511 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2512 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002513 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2514 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002515 if (Arg.getOpcode() == ISD::CopyFromReg) {
2516 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
Jakob Stoklund Olesenc9df0252011-01-10 02:58:51 +00002517 if (!TargetRegisterInfo::isVirtualRegister(VR))
Evan Cheng5f941932010-02-05 02:21:12 +00002518 return false;
2519 MachineInstr *Def = MRI->getVRegDef(VR);
2520 if (!Def)
2521 return false;
2522 if (!Flags.isByVal()) {
2523 if (!TII->isLoadFromStackSlot(Def, FI))
2524 return false;
2525 } else {
2526 unsigned Opcode = Def->getOpcode();
2527 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2528 Def->getOperand(1).isFI()) {
2529 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002530 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002531 } else
2532 return false;
2533 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002534 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2535 if (Flags.isByVal())
2536 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002537 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002538 // define @foo(%struct.X* %A) {
2539 // tail call @bar(%struct.X* byval %A)
2540 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002541 return false;
2542 SDValue Ptr = Ld->getBasePtr();
2543 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2544 if (!FINode)
2545 return false;
2546 FI = FINode->getIndex();
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002547 } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
Chad Rosier14d71aa2011-06-25 18:51:28 +00002548 FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
Chad Rosierdf78fcd2011-06-25 02:04:56 +00002549 FI = FINode->getIndex();
2550 Bytes = Flags.getByValSize();
Evan Cheng4cae1332010-03-05 08:38:04 +00002551 } else
2552 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002553
Evan Cheng4cae1332010-03-05 08:38:04 +00002554 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002555 if (!MFI->isFixedObjectIndex(FI))
2556 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002557 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002558}
2559
Dan Gohman98ca4f22009-08-05 01:29:28 +00002560/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2561/// for tail call optimization. Targets which want to do tail call
2562/// optimization should implement this function.
2563bool
2564X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002565 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002566 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002567 bool isCalleeStructRet,
2568 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002569 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002570 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002571 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002572 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002573 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002574 CalleeCC != CallingConv::C)
2575 return false;
2576
Evan Cheng7096ae42010-01-29 06:45:59 +00002577 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002578 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002579 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002580 CallingConv::ID CallerCC = CallerF->getCallingConv();
2581 bool CCMatch = CallerCC == CalleeCC;
2582
Dan Gohman1797ed52010-02-08 20:27:50 +00002583 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002584 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002585 return true;
2586 return false;
2587 }
2588
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002589 // Look for obvious safe cases to perform tail call optimization that do not
2590 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002591
Evan Cheng2c12cb42010-03-26 16:26:03 +00002592 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2593 // emit a special epilogue.
2594 if (RegInfo->needsStackRealignment(MF))
2595 return false;
2596
Evan Chenga375d472010-03-15 18:54:48 +00002597 // Also avoid sibcall optimization if either caller or callee uses struct
2598 // return semantics.
2599 if (isCalleeStructRet || isCallerStructRet)
2600 return false;
2601
Chad Rosier2416da32011-06-24 21:15:36 +00002602 // An stdcall caller is expected to clean up its arguments; the callee
2603 // isn't going to do that.
2604 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2605 return false;
2606
Chad Rosier871f6642011-05-18 19:59:50 +00002607 // Do not sibcall optimize vararg calls unless all arguments are passed via
Chad Rosiera1660892011-05-20 00:59:28 +00002608 // registers.
Chad Rosier871f6642011-05-18 19:59:50 +00002609 if (isVarArg && !Outs.empty()) {
Chad Rosiera1660892011-05-20 00:59:28 +00002610
2611 // Optimizing for varargs on Win64 is unlikely to be safe without
2612 // additional testing.
2613 if (Subtarget->isTargetWin64())
2614 return false;
2615
Chad Rosier871f6642011-05-18 19:59:50 +00002616 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002617 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2618 getTargetMachine(), ArgLocs, *DAG.getContext());
Chad Rosier871f6642011-05-18 19:59:50 +00002619
Chad Rosier871f6642011-05-18 19:59:50 +00002620 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2621 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2622 if (!ArgLocs[i].isRegLoc())
2623 return false;
2624 }
2625
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002626 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2627 // Therefore if it's not used by the call it is not safe to optimize this into
2628 // a sibcall.
2629 bool Unused = false;
2630 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2631 if (!Ins[i].Used) {
2632 Unused = true;
2633 break;
2634 }
2635 }
2636 if (Unused) {
2637 SmallVector<CCValAssign, 16> RVLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002638 CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
2639 getTargetMachine(), RVLocs, *DAG.getContext());
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002640 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002641 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002642 CCValAssign &VA = RVLocs[i];
2643 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2644 return false;
2645 }
2646 }
2647
Evan Cheng13617962010-04-30 01:12:32 +00002648 // If the calling conventions do not match, then we'd better make sure the
2649 // results are returned in the same way as what the caller expects.
2650 if (!CCMatch) {
2651 SmallVector<CCValAssign, 16> RVLocs1;
Eric Christopher471e4222011-06-08 23:55:35 +00002652 CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2653 getTargetMachine(), RVLocs1, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002654 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2655
2656 SmallVector<CCValAssign, 16> RVLocs2;
Eric Christopher471e4222011-06-08 23:55:35 +00002657 CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2658 getTargetMachine(), RVLocs2, *DAG.getContext());
Evan Cheng13617962010-04-30 01:12:32 +00002659 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2660
2661 if (RVLocs1.size() != RVLocs2.size())
2662 return false;
2663 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2664 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2665 return false;
2666 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2667 return false;
2668 if (RVLocs1[i].isRegLoc()) {
2669 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2670 return false;
2671 } else {
2672 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2673 return false;
2674 }
2675 }
2676 }
2677
Evan Chenga6bff982010-01-30 01:22:00 +00002678 // If the callee takes no arguments then go on to check the results of the
2679 // call.
2680 if (!Outs.empty()) {
2681 // Check if stack adjustment is needed. For now, do not do this if any
2682 // argument is passed on the stack.
2683 SmallVector<CCValAssign, 16> ArgLocs;
Eric Christopher471e4222011-06-08 23:55:35 +00002684 CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2685 getTargetMachine(), ArgLocs, *DAG.getContext());
NAKAMURA Takumi3f4be4f2011-02-05 15:11:32 +00002686
2687 // Allocate shadow area for Win64
2688 if (Subtarget->isTargetWin64()) {
2689 CCInfo.AllocateStack(32, 8);
2690 }
2691
Duncan Sands45907662010-10-31 13:21:44 +00002692 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Stuart Hastings6db2c2f2011-05-17 16:59:46 +00002693 if (CCInfo.getNextStackOffset()) {
Evan Chengb2c92902010-02-02 02:22:50 +00002694 MachineFunction &MF = DAG.getMachineFunction();
2695 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2696 return false;
Evan Chengb2c92902010-02-02 02:22:50 +00002697
2698 // Check if the arguments are already laid out in the right way as
2699 // the caller's fixed stack objects.
2700 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002701 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2702 const X86InstrInfo *TII =
2703 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002704 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2705 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002706 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002707 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002708 if (VA.getLocInfo() == CCValAssign::Indirect)
2709 return false;
2710 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002711 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2712 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002713 return false;
2714 }
2715 }
2716 }
Evan Cheng9c044672010-05-29 01:35:22 +00002717
2718 // If the tailcall address may be in a register, then make sure it's
2719 // possible to register allocate for it. In 32-bit, the call address can
2720 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002721 // callee-saved registers are restored. These happen to be the same
2722 // registers used to pass 'inreg' arguments so watch out for those.
2723 if (!Subtarget->is64Bit() &&
2724 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002725 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002726 unsigned NumInRegs = 0;
2727 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2728 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002729 if (!VA.isRegLoc())
2730 continue;
2731 unsigned Reg = VA.getLocReg();
2732 switch (Reg) {
2733 default: break;
2734 case X86::EAX: case X86::EDX: case X86::ECX:
2735 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002736 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002737 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002738 }
2739 }
2740 }
Evan Chenga6bff982010-01-30 01:22:00 +00002741 }
Evan Chengb1712452010-01-27 06:25:16 +00002742
Evan Cheng86809cc2010-02-03 03:28:02 +00002743 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002744}
2745
Dan Gohman3df24e62008-09-03 23:12:08 +00002746FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002747X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2748 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002749}
2750
2751
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002752//===----------------------------------------------------------------------===//
2753// Other Lowering Hooks
2754//===----------------------------------------------------------------------===//
2755
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002756static bool MayFoldLoad(SDValue Op) {
2757 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2758}
2759
2760static bool MayFoldIntoStore(SDValue Op) {
2761 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2762}
2763
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002764static bool isTargetShuffle(unsigned Opcode) {
2765 switch(Opcode) {
2766 default: return false;
2767 case X86ISD::PSHUFD:
2768 case X86ISD::PSHUFHW:
2769 case X86ISD::PSHUFLW:
2770 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002771 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002772 case X86ISD::SHUFPS:
2773 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002774 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002775 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002776 case X86ISD::MOVLPS:
2777 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002778 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002779 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002780 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002781 case X86ISD::MOVSS:
2782 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002783 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002784 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002785 case X86ISD::VUNPCKLPSY:
2786 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002787 case X86ISD::PUNPCKLWD:
2788 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002789 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002790 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002791 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002792 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002793 case X86ISD::VUNPCKHPSY:
2794 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002795 case X86ISD::PUNPCKHWD:
2796 case X86ISD::PUNPCKHBW:
2797 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002798 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002799 case X86ISD::VPERMILPS:
2800 case X86ISD::VPERMILPSY:
2801 case X86ISD::VPERMILPD:
2802 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00002803 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002804 return true;
2805 }
2806 return false;
2807}
2808
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002809static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002810 SDValue V1, SelectionDAG &DAG) {
2811 switch(Opc) {
2812 default: llvm_unreachable("Unknown x86 shuffle node");
2813 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002814 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002815 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002816 return DAG.getNode(Opc, dl, VT, V1);
2817 }
2818
2819 return SDValue();
2820}
2821
2822static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002823 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002824 switch(Opc) {
2825 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002826 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002827 case X86ISD::PSHUFHW:
2828 case X86ISD::PSHUFLW:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00002829 case X86ISD::VPERMILPS:
2830 case X86ISD::VPERMILPSY:
2831 case X86ISD::VPERMILPD:
2832 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002833 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2834 }
2835
2836 return SDValue();
2837}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002838
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002839static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2840 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2841 switch(Opc) {
2842 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002843 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002844 case X86ISD::SHUFPD:
2845 case X86ISD::SHUFPS:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00002846 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002847 return DAG.getNode(Opc, dl, VT, V1, V2,
2848 DAG.getConstant(TargetMask, MVT::i8));
2849 }
2850 return SDValue();
2851}
2852
2853static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2854 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2855 switch(Opc) {
2856 default: llvm_unreachable("Unknown x86 shuffle node");
2857 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002858 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002859 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002860 case X86ISD::MOVLPS:
2861 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002862 case X86ISD::MOVSS:
2863 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002864 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002865 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +00002866 case X86ISD::VUNPCKLPSY:
2867 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002868 case X86ISD::PUNPCKLWD:
2869 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002870 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002871 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002872 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002873 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00002874 case X86ISD::VUNPCKHPSY:
2875 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002876 case X86ISD::PUNPCKHWD:
2877 case X86ISD::PUNPCKHBW:
2878 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002879 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002880 return DAG.getNode(Opc, dl, VT, V1, V2);
2881 }
2882 return SDValue();
2883}
2884
Dan Gohmand858e902010-04-17 15:26:15 +00002885SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002886 MachineFunction &MF = DAG.getMachineFunction();
2887 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2888 int ReturnAddrIndex = FuncInfo->getRAIndex();
2889
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002890 if (ReturnAddrIndex == 0) {
2891 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002892 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002893 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002894 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002895 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002896 }
2897
Evan Cheng25ab6902006-09-08 06:48:29 +00002898 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002899}
2900
2901
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002902bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2903 bool hasSymbolicDisplacement) {
2904 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002905 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002906 return false;
2907
2908 // If we don't have a symbolic displacement - we don't have any extra
2909 // restrictions.
2910 if (!hasSymbolicDisplacement)
2911 return true;
2912
2913 // FIXME: Some tweaks might be needed for medium code model.
2914 if (M != CodeModel::Small && M != CodeModel::Kernel)
2915 return false;
2916
2917 // For small code model we assume that latest object is 16MB before end of 31
2918 // bits boundary. We may also accept pretty large negative constants knowing
2919 // that all objects are in the positive half of address space.
2920 if (M == CodeModel::Small && Offset < 16*1024*1024)
2921 return true;
2922
2923 // For kernel code model we know that all object resist in the negative half
2924 // of 32bits address space. We may not accept negative offsets, since they may
2925 // be just off and we may accept pretty large positive ones.
2926 if (M == CodeModel::Kernel && Offset > 0)
2927 return true;
2928
2929 return false;
2930}
2931
Evan Chengef41ff62011-06-23 17:54:54 +00002932/// isCalleePop - Determines whether the callee is required to pop its
2933/// own arguments. Callee pop is necessary to support tail calls.
2934bool X86::isCalleePop(CallingConv::ID CallingConv,
2935 bool is64Bit, bool IsVarArg, bool TailCallOpt) {
2936 if (IsVarArg)
2937 return false;
2938
2939 switch (CallingConv) {
2940 default:
2941 return false;
2942 case CallingConv::X86_StdCall:
2943 return !is64Bit;
2944 case CallingConv::X86_FastCall:
2945 return !is64Bit;
2946 case CallingConv::X86_ThisCall:
2947 return !is64Bit;
2948 case CallingConv::Fast:
2949 return TailCallOpt;
2950 case CallingConv::GHC:
2951 return TailCallOpt;
2952 }
2953}
2954
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002955/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2956/// specific condition code, returning the condition code and the LHS/RHS of the
2957/// comparison to make.
2958static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2959 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002960 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002961 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2962 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2963 // X > -1 -> X == 0, jump !sign.
2964 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002965 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002966 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2967 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002968 return X86::COND_S;
Andrew Trickf6c39412011-03-23 23:11:02 +00002969 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002970 // X < 1 -> X <= 0
2971 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002972 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002973 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002974 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002975
Evan Chengd9558e02006-01-06 00:43:03 +00002976 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002977 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002978 case ISD::SETEQ: return X86::COND_E;
2979 case ISD::SETGT: return X86::COND_G;
2980 case ISD::SETGE: return X86::COND_GE;
2981 case ISD::SETLT: return X86::COND_L;
2982 case ISD::SETLE: return X86::COND_LE;
2983 case ISD::SETNE: return X86::COND_NE;
2984 case ISD::SETULT: return X86::COND_B;
2985 case ISD::SETUGT: return X86::COND_A;
2986 case ISD::SETULE: return X86::COND_BE;
2987 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002988 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002989 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002990
Chris Lattner4c78e022008-12-23 23:42:27 +00002991 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002992
Chris Lattner4c78e022008-12-23 23:42:27 +00002993 // If LHS is a foldable load, but RHS is not, flip the condition.
Rafael Espindolaf297c932011-02-03 03:58:05 +00002994 if (ISD::isNON_EXTLoad(LHS.getNode()) &&
2995 !ISD::isNON_EXTLoad(RHS.getNode())) {
Chris Lattner4c78e022008-12-23 23:42:27 +00002996 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2997 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002998 }
2999
Chris Lattner4c78e022008-12-23 23:42:27 +00003000 switch (SetCCOpcode) {
3001 default: break;
3002 case ISD::SETOLT:
3003 case ISD::SETOLE:
3004 case ISD::SETUGT:
3005 case ISD::SETUGE:
3006 std::swap(LHS, RHS);
3007 break;
3008 }
3009
3010 // On a floating point condition, the flags are set as follows:
3011 // ZF PF CF op
3012 // 0 | 0 | 0 | X > Y
3013 // 0 | 0 | 1 | X < Y
3014 // 1 | 0 | 0 | X == Y
3015 // 1 | 1 | 1 | unordered
3016 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003017 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00003018 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003019 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00003020 case ISD::SETOLT: // flipped
3021 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003022 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00003023 case ISD::SETOLE: // flipped
3024 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003025 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003026 case ISD::SETUGT: // flipped
3027 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003028 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00003029 case ISD::SETUGE: // flipped
3030 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003031 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00003032 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00003033 case ISD::SETNE: return X86::COND_NE;
3034 case ISD::SETUO: return X86::COND_P;
3035 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00003036 case ISD::SETOEQ:
3037 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00003038 }
Evan Chengd9558e02006-01-06 00:43:03 +00003039}
3040
Evan Cheng4a460802006-01-11 00:33:36 +00003041/// hasFPCMov - is there a floating point cmov for the specific X86 condition
3042/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00003043/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00003044static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00003045 switch (X86CC) {
3046 default:
3047 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00003048 case X86::COND_B:
3049 case X86::COND_BE:
3050 case X86::COND_E:
3051 case X86::COND_P:
3052 case X86::COND_A:
3053 case X86::COND_AE:
3054 case X86::COND_NE:
3055 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00003056 return true;
3057 }
3058}
3059
Evan Chengeb2f9692009-10-27 19:56:55 +00003060/// isFPImmLegal - Returns true if the target can instruction select the
3061/// specified FP immediate natively. If false, the legalizer will
3062/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00003063bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00003064 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3065 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3066 return true;
3067 }
3068 return false;
3069}
3070
Nate Begeman9008ca62009-04-27 18:41:29 +00003071/// isUndefOrInRange - Return true if Val is undef or if its value falls within
3072/// the specified range (L, H].
3073static bool isUndefOrInRange(int Val, int Low, int Hi) {
3074 return (Val < 0) || (Val >= Low && Val < Hi);
3075}
3076
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00003077/// isUndefOrInRange - Return true if every element in Mask, begining
3078/// from position Pos and ending in Pos+Size, falls within the specified
3079/// range (L, L+Pos]. or is undef.
3080static bool isUndefOrInRange(const SmallVectorImpl<int> &Mask,
3081 int Pos, int Size, int Low, int Hi) {
3082 for (int i = Pos, e = Pos+Size; i != e; ++i)
3083 if (!isUndefOrInRange(Mask[i], Low, Hi))
3084 return false;
3085 return true;
3086}
3087
Nate Begeman9008ca62009-04-27 18:41:29 +00003088/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3089/// specified value.
3090static bool isUndefOrEqual(int Val, int CmpVal) {
3091 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003092 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00003093 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00003094}
3095
Bruno Cardoso Lopes4002d7e2011-08-12 21:54:42 +00003096/// isSequentialOrUndefInRange - Return true if every element in Mask, begining
3097/// from position Pos and ending in Pos+Size, falls within the specified
3098/// sequential range (L, L+Pos]. or is undef.
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003099static bool isSequentialOrUndefInRange(const SmallVectorImpl<int> &Mask,
3100 int Pos, int Size, int Low) {
3101 for (int i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3102 if (!isUndefOrEqual(Mask[i], Low))
3103 return false;
3104 return true;
3105}
3106
Nate Begeman9008ca62009-04-27 18:41:29 +00003107/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3108/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
3109/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00003110static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003111 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00003112 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00003113 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00003114 return (Mask[0] < 2 && Mask[1] < 2);
3115 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003116}
3117
Nate Begeman9008ca62009-04-27 18:41:29 +00003118bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003119 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003120 N->getMask(M);
3121 return ::isPSHUFDMask(M, N->getValueType(0));
3122}
Evan Cheng0188ecb2006-03-22 18:59:22 +00003123
Nate Begeman9008ca62009-04-27 18:41:29 +00003124/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3125/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00003126static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003127 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00003128 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003129
Nate Begeman9008ca62009-04-27 18:41:29 +00003130 // Lower quadword copied in order or undef.
3131 for (int i = 0; i != 4; ++i)
3132 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00003133 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003134
Evan Cheng506d3df2006-03-29 23:07:14 +00003135 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003136 for (int i = 4; i != 8; ++i)
3137 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
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 return true;
3141}
3142
Nate Begeman9008ca62009-04-27 18:41:29 +00003143bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003144 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003145 N->getMask(M);
3146 return ::isPSHUFHWMask(M, N->getValueType(0));
3147}
Evan Cheng506d3df2006-03-29 23:07:14 +00003148
Nate Begeman9008ca62009-04-27 18:41:29 +00003149/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3150/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00003151static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003152 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00003153 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003154
Rafael Espindola15684b22009-04-24 12:40:33 +00003155 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00003156 for (int i = 4; i != 8; ++i)
3157 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00003158 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003159
Rafael Espindola15684b22009-04-24 12:40:33 +00003160 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00003161 for (int i = 0; i != 4; ++i)
3162 if (Mask[i] >= 4)
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 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003166}
3167
Nate Begeman9008ca62009-04-27 18:41:29 +00003168bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00003169 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00003170 N->getMask(M);
3171 return ::isPSHUFLWMask(M, N->getValueType(0));
3172}
3173
Nate Begemana09008b2009-10-19 02:17:23 +00003174/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3175/// is suitable for input to PALIGNR.
3176static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
3177 bool hasSSSE3) {
3178 int i, e = VT.getVectorNumElements();
Bruno Cardoso Lopes9065d4b2011-07-29 01:30:59 +00003179 if (VT.getSizeInBits() != 128 && VT.getSizeInBits() != 64)
3180 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003181
Nate Begemana09008b2009-10-19 02:17:23 +00003182 // Do not handle v2i64 / v2f64 shuffles with palignr.
3183 if (e < 4 || !hasSSSE3)
3184 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003185
Nate Begemana09008b2009-10-19 02:17:23 +00003186 for (i = 0; i != e; ++i)
3187 if (Mask[i] >= 0)
3188 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003189
Nate Begemana09008b2009-10-19 02:17:23 +00003190 // All undef, not a palignr.
3191 if (i == e)
3192 return false;
3193
Eli Friedman63f8dde2011-07-25 21:36:45 +00003194 // Make sure we're shifting in the right direction.
3195 if (Mask[i] <= i)
3196 return false;
Nate Begemana09008b2009-10-19 02:17:23 +00003197
3198 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003199
Nate Begemana09008b2009-10-19 02:17:23 +00003200 // Check the rest of the elements to see if they are consecutive.
3201 for (++i; i != e; ++i) {
3202 int m = Mask[i];
Eli Friedman63f8dde2011-07-25 21:36:45 +00003203 if (m >= 0 && m != s+i)
Nate Begemana09008b2009-10-19 02:17:23 +00003204 return false;
3205 }
3206 return true;
3207}
3208
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00003209/// isVSHUFPSYMask - Return true if the specified VECTOR_SHUFFLE operand
3210/// specifies a shuffle of elements that is suitable for input to 256-bit
3211/// VSHUFPSY.
3212static bool isVSHUFPSYMask(const SmallVectorImpl<int> &Mask, EVT VT,
3213 const X86Subtarget *Subtarget) {
3214 int NumElems = VT.getVectorNumElements();
3215
3216 if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256)
3217 return false;
3218
3219 if (NumElems != 8)
3220 return false;
3221
3222 // VSHUFPSY divides the resulting vector into 4 chunks.
3223 // The sources are also splitted into 4 chunks, and each destination
3224 // chunk must come from a different source chunk.
3225 //
3226 // SRC1 => X7 X6 X5 X4 X3 X2 X1 X0
3227 // SRC2 => Y7 Y6 Y5 Y4 Y3 Y2 Y1 Y9
3228 //
3229 // DST => Y7..Y4, Y7..Y4, X7..X4, X7..X4,
3230 // Y3..Y0, Y3..Y0, X3..X0, X3..X0
3231 //
3232 int QuarterSize = NumElems/4;
3233 int HalfSize = QuarterSize*2;
3234 for (int i = 0; i < QuarterSize; ++i)
3235 if (!isUndefOrInRange(Mask[i], 0, HalfSize))
3236 return false;
3237 for (int i = QuarterSize; i < QuarterSize*2; ++i)
3238 if (!isUndefOrInRange(Mask[i], NumElems, NumElems+HalfSize))
3239 return false;
3240
3241 // The mask of the second half must be the same as the first but with
3242 // the appropriate offsets. This works in the same way as VPERMILPS
3243 // works with masks.
3244 for (int i = QuarterSize*2; i < QuarterSize*3; ++i) {
3245 if (!isUndefOrInRange(Mask[i], HalfSize, NumElems))
3246 return false;
3247 int FstHalfIdx = i-HalfSize;
3248 if (Mask[FstHalfIdx] < 0)
3249 continue;
3250 if (!isUndefOrEqual(Mask[i], Mask[FstHalfIdx]+HalfSize))
3251 return false;
3252 }
3253 for (int i = QuarterSize*3; i < NumElems; ++i) {
3254 if (!isUndefOrInRange(Mask[i], NumElems+HalfSize, NumElems*2))
3255 return false;
3256 int FstHalfIdx = i-HalfSize;
3257 if (Mask[FstHalfIdx] < 0)
3258 continue;
3259 if (!isUndefOrEqual(Mask[i], Mask[FstHalfIdx]+HalfSize))
3260 return false;
3261
3262 }
3263
3264 return true;
3265}
3266
3267/// getShuffleVSHUFPSYImmediate - Return the appropriate immediate to shuffle
3268/// the specified VECTOR_MASK mask with VSHUFPSY instruction.
3269static unsigned getShuffleVSHUFPSYImmediate(SDNode *N) {
3270 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3271 EVT VT = SVOp->getValueType(0);
3272 int NumElems = VT.getVectorNumElements();
3273
3274 assert(NumElems == 8 && VT.getSizeInBits() == 256 &&
3275 "Only supports v8i32 and v8f32 types");
3276
3277 int HalfSize = NumElems/2;
3278 unsigned Mask = 0;
3279 for (int i = 0; i != NumElems ; ++i) {
3280 if (SVOp->getMaskElt(i) < 0)
3281 continue;
3282 // The mask of the first half must be equal to the second one.
3283 unsigned Shamt = (i%HalfSize)*2;
3284 unsigned Elt = SVOp->getMaskElt(i) % HalfSize;
3285 Mask |= Elt << Shamt;
3286 }
3287
3288 return Mask;
3289}
3290
3291/// isVSHUFPDYMask - Return true if the specified VECTOR_SHUFFLE operand
3292/// specifies a shuffle of elements that is suitable for input to 256-bit
3293/// VSHUFPDY. This shuffle doesn't have the same restriction as the PS
3294/// version and the mask of the second half isn't binded with the first
3295/// one.
3296static bool isVSHUFPDYMask(const SmallVectorImpl<int> &Mask, EVT VT,
3297 const X86Subtarget *Subtarget) {
3298 int NumElems = VT.getVectorNumElements();
3299
3300 if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256)
3301 return false;
3302
3303 if (NumElems != 4)
3304 return false;
3305
3306 // VSHUFPSY divides the resulting vector into 4 chunks.
3307 // The sources are also splitted into 4 chunks, and each destination
3308 // chunk must come from a different source chunk.
3309 //
3310 // SRC1 => X3 X2 X1 X0
3311 // SRC2 => Y3 Y2 Y1 Y0
3312 //
3313 // DST => Y2..Y3, X2..X3, Y1..Y0, X1..X0
3314 //
3315 int QuarterSize = NumElems/4;
3316 int HalfSize = QuarterSize*2;
3317 for (int i = 0; i < QuarterSize; ++i)
3318 if (!isUndefOrInRange(Mask[i], 0, HalfSize))
3319 return false;
3320 for (int i = QuarterSize; i < QuarterSize*2; ++i)
3321 if (!isUndefOrInRange(Mask[i], NumElems, NumElems+HalfSize))
3322 return false;
3323 for (int i = QuarterSize*2; i < QuarterSize*3; ++i)
3324 if (!isUndefOrInRange(Mask[i], HalfSize, NumElems))
3325 return false;
3326 for (int i = QuarterSize*3; i < NumElems; ++i)
3327 if (!isUndefOrInRange(Mask[i], NumElems+HalfSize, NumElems*2))
3328 return false;
3329
3330 return true;
3331}
3332
3333/// getShuffleVSHUFPDYImmediate - Return the appropriate immediate to shuffle
3334/// the specified VECTOR_MASK mask with VSHUFPDY instruction.
3335static unsigned getShuffleVSHUFPDYImmediate(SDNode *N) {
3336 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3337 EVT VT = SVOp->getValueType(0);
3338 int NumElems = VT.getVectorNumElements();
3339
3340 assert(NumElems == 4 && VT.getSizeInBits() == 256 &&
3341 "Only supports v4i64 and v4f64 types");
3342
3343 int HalfSize = NumElems/2;
3344 unsigned Mask = 0;
3345 for (int i = 0; i != NumElems ; ++i) {
3346 if (SVOp->getMaskElt(i) < 0)
3347 continue;
3348 int Elt = SVOp->getMaskElt(i) % HalfSize;
3349 Mask |= Elt << i;
3350 }
3351
3352 return Mask;
3353}
3354
Evan Cheng14aed5e2006-03-24 01:18:28 +00003355/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopesaf002d82011-08-24 23:17:55 +00003356/// specifies a shuffle of elements that is suitable for input to 128-bit
3357/// SHUFPS and SHUFPD.
Owen Andersone50ed302009-08-10 22:56:29 +00003358static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003359 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopesaf002d82011-08-24 23:17:55 +00003360
3361 if (VT.getSizeInBits() != 128)
3362 return false;
3363
Nate Begeman9008ca62009-04-27 18:41:29 +00003364 if (NumElems != 2 && NumElems != 4)
3365 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003366
Nate Begeman9008ca62009-04-27 18:41:29 +00003367 int Half = NumElems / 2;
3368 for (int i = 0; i < Half; ++i)
3369 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003370 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003371 for (int i = Half; i < NumElems; ++i)
3372 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003373 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003374
Evan Cheng14aed5e2006-03-24 01:18:28 +00003375 return true;
3376}
3377
Nate Begeman9008ca62009-04-27 18:41:29 +00003378bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3379 SmallVector<int, 8> M;
3380 N->getMask(M);
3381 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003382}
3383
Evan Cheng213d2cf2007-05-17 18:45:50 +00003384/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00003385/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
3386/// half elements to come from vector 1 (which would equal the dest.) and
3387/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00003388static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003389 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003390
3391 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00003392 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003393
Nate Begeman9008ca62009-04-27 18:41:29 +00003394 int Half = NumElems / 2;
3395 for (int i = 0; i < Half; ++i)
3396 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00003397 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003398 for (int i = Half; i < NumElems; ++i)
3399 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00003400 return false;
3401 return true;
3402}
3403
Nate Begeman9008ca62009-04-27 18:41:29 +00003404static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3405 SmallVector<int, 8> M;
3406 N->getMask(M);
3407 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003408}
3409
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003410/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3411/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003412bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003413 EVT VT = N->getValueType(0);
3414 unsigned NumElems = VT.getVectorNumElements();
3415
3416 if (VT.getSizeInBits() != 128)
3417 return false;
3418
3419 if (NumElems != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003420 return false;
3421
Evan Cheng2064a2b2006-03-28 06:50:32 +00003422 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003423 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3424 isUndefOrEqual(N->getMaskElt(1), 7) &&
3425 isUndefOrEqual(N->getMaskElt(2), 2) &&
3426 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003427}
3428
Nate Begeman0b10b912009-11-07 23:17:15 +00003429/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3430/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3431/// <2, 3, 2, 3>
3432bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003433 EVT VT = N->getValueType(0);
3434 unsigned NumElems = VT.getVectorNumElements();
3435
3436 if (VT.getSizeInBits() != 128)
3437 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003438
Nate Begeman0b10b912009-11-07 23:17:15 +00003439 if (NumElems != 4)
3440 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003441
Nate Begeman0b10b912009-11-07 23:17:15 +00003442 return isUndefOrEqual(N->getMaskElt(0), 2) &&
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003443 isUndefOrEqual(N->getMaskElt(1), 3) &&
3444 isUndefOrEqual(N->getMaskElt(2), 2) &&
3445 isUndefOrEqual(N->getMaskElt(3), 3);
Nate Begeman0b10b912009-11-07 23:17:15 +00003446}
3447
Evan Cheng5ced1d82006-04-06 23:23:56 +00003448/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3449/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003450bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3451 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003452
Evan Cheng5ced1d82006-04-06 23:23:56 +00003453 if (NumElems != 2 && NumElems != 4)
3454 return false;
3455
Evan Chengc5cdff22006-04-07 21:53:05 +00003456 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003457 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003458 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003459
Evan Chengc5cdff22006-04-07 21:53:05 +00003460 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003461 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003462 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003463
3464 return true;
3465}
3466
Nate Begeman0b10b912009-11-07 23:17:15 +00003467/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3468/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3469bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003470 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003471
David Greenea20244d2011-03-02 17:23:43 +00003472 if ((NumElems != 2 && NumElems != 4)
3473 || N->getValueType(0).getSizeInBits() > 128)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003474 return false;
3475
Evan Chengc5cdff22006-04-07 21:53:05 +00003476 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003477 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003478 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003479
Nate Begeman9008ca62009-04-27 18:41:29 +00003480 for (unsigned i = 0; i < NumElems/2; ++i)
3481 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003482 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003483
3484 return true;
3485}
3486
Evan Cheng0038e592006-03-28 00:39:58 +00003487/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3488/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003489static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003490 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003491 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003492
3493 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3494 "Unsupported vector type for unpckh");
3495
3496 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng0038e592006-03-28 00:39:58 +00003497 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003498
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003499 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3500 // independently on 128-bit lanes.
3501 unsigned NumLanes = VT.getSizeInBits()/128;
3502 unsigned NumLaneElts = NumElts/NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003503
3504 unsigned Start = 0;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003505 unsigned End = NumLaneElts;
3506 for (unsigned s = 0; s < NumLanes; ++s) {
3507 for (unsigned i = Start, j = s * NumLaneElts;
David Greenea20244d2011-03-02 17:23:43 +00003508 i != End;
3509 i += 2, ++j) {
3510 int BitI = Mask[i];
3511 int BitI1 = Mask[i+1];
3512 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003513 return false;
David Greenea20244d2011-03-02 17:23:43 +00003514 if (V2IsSplat) {
3515 if (!isUndefOrEqual(BitI1, NumElts))
3516 return false;
3517 } else {
3518 if (!isUndefOrEqual(BitI1, j + NumElts))
3519 return false;
3520 }
Evan Cheng39623da2006-04-20 08:58:49 +00003521 }
David Greenea20244d2011-03-02 17:23:43 +00003522 // Process the next 128 bits.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003523 Start += NumLaneElts;
3524 End += NumLaneElts;
Evan Cheng0038e592006-03-28 00:39:58 +00003525 }
David Greenea20244d2011-03-02 17:23:43 +00003526
Evan Cheng0038e592006-03-28 00:39:58 +00003527 return true;
3528}
3529
Nate Begeman9008ca62009-04-27 18:41:29 +00003530bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3531 SmallVector<int, 8> M;
3532 N->getMask(M);
3533 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003534}
3535
Evan Cheng4fcb9222006-03-28 02:43:26 +00003536/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3537/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003538static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003539 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003540 int NumElts = VT.getVectorNumElements();
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003541
3542 assert((VT.is128BitVector() || VT.is256BitVector()) &&
3543 "Unsupported vector type for unpckh");
3544
3545 if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003546 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003547
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003548 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3549 // independently on 128-bit lanes.
3550 unsigned NumLanes = VT.getSizeInBits()/128;
3551 unsigned NumLaneElts = NumElts/NumLanes;
3552
3553 unsigned Start = 0;
3554 unsigned End = NumLaneElts;
3555 for (unsigned l = 0; l != NumLanes; ++l) {
3556 for (unsigned i = Start, j = (l*NumLaneElts)+NumLaneElts/2;
3557 i != End; i += 2, ++j) {
3558 int BitI = Mask[i];
3559 int BitI1 = Mask[i+1];
3560 if (!isUndefOrEqual(BitI, j))
Evan Cheng39623da2006-04-20 08:58:49 +00003561 return false;
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003562 if (V2IsSplat) {
3563 if (isUndefOrEqual(BitI1, NumElts))
3564 return false;
3565 } else {
3566 if (!isUndefOrEqual(BitI1, j+NumElts))
3567 return false;
3568 }
Evan Cheng39623da2006-04-20 08:58:49 +00003569 }
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003570 // Process the next 128 bits.
3571 Start += NumLaneElts;
3572 End += NumLaneElts;
Evan Cheng4fcb9222006-03-28 02:43:26 +00003573 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003574 return true;
3575}
3576
Nate Begeman9008ca62009-04-27 18:41:29 +00003577bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3578 SmallVector<int, 8> M;
3579 N->getMask(M);
3580 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003581}
3582
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003583/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3584/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3585/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003586static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003587 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003588 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003589 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003590
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003591 // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3592 // FIXME: Need a better way to get rid of this, there's no latency difference
3593 // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3594 // the former later. We should also remove the "_undef" special mask.
3595 if (NumElems == 4 && VT.getSizeInBits() == 256)
3596 return false;
3597
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003598 // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3599 // independently on 128-bit lanes.
3600 unsigned NumLanes = VT.getSizeInBits() / 128;
3601 unsigned NumLaneElts = NumElems / NumLanes;
David Greenea20244d2011-03-02 17:23:43 +00003602
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00003603 for (unsigned s = 0; s < NumLanes; ++s) {
3604 for (unsigned i = s * NumLaneElts, j = s * NumLaneElts;
3605 i != NumLaneElts * (s + 1);
David Greenea20244d2011-03-02 17:23:43 +00003606 i += 2, ++j) {
3607 int BitI = Mask[i];
3608 int BitI1 = Mask[i+1];
3609
3610 if (!isUndefOrEqual(BitI, j))
3611 return false;
3612 if (!isUndefOrEqual(BitI1, j))
3613 return false;
3614 }
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003615 }
David Greenea20244d2011-03-02 17:23:43 +00003616
Rafael Espindola15684b22009-04-24 12:40:33 +00003617 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003618}
3619
Nate Begeman9008ca62009-04-27 18:41:29 +00003620bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3621 SmallVector<int, 8> M;
3622 N->getMask(M);
3623 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3624}
3625
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003626/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3627/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3628/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003629static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003630 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003631 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3632 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003633
Nate Begeman9008ca62009-04-27 18:41:29 +00003634 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3635 int BitI = Mask[i];
3636 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003637 if (!isUndefOrEqual(BitI, j))
3638 return false;
3639 if (!isUndefOrEqual(BitI1, j))
3640 return false;
3641 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003642 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003643}
3644
Nate Begeman9008ca62009-04-27 18:41:29 +00003645bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3646 SmallVector<int, 8> M;
3647 N->getMask(M);
3648 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3649}
3650
Evan Cheng017dcc62006-04-21 01:05:10 +00003651/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3652/// specifies a shuffle of elements that is suitable for input to MOVSS,
3653/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003654static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003655 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003656 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003657
3658 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003659
Nate Begeman9008ca62009-04-27 18:41:29 +00003660 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003661 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003662
Nate Begeman9008ca62009-04-27 18:41:29 +00003663 for (int i = 1; i < NumElts; ++i)
3664 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003665 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003666
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003667 return true;
3668}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003669
Nate Begeman9008ca62009-04-27 18:41:29 +00003670bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3671 SmallVector<int, 8> M;
3672 N->getMask(M);
3673 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003674}
3675
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00003676/// isVPERM2F128Mask - Match 256-bit shuffles where the elements are considered
3677/// as permutations between 128-bit chunks or halves. As an example: this
3678/// shuffle bellow:
3679/// vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
3680/// The first half comes from the second half of V1 and the second half from the
3681/// the second half of V2.
3682static bool isVPERM2F128Mask(const SmallVectorImpl<int> &Mask, EVT VT,
3683 const X86Subtarget *Subtarget) {
3684 if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256)
3685 return false;
3686
3687 // The shuffle result is divided into half A and half B. In total the two
3688 // sources have 4 halves, namely: C, D, E, F. The final values of A and
3689 // B must come from C, D, E or F.
3690 int HalfSize = VT.getVectorNumElements()/2;
3691 bool MatchA = false, MatchB = false;
3692
3693 // Check if A comes from one of C, D, E, F.
3694 for (int Half = 0; Half < 4; ++Half) {
3695 if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
3696 MatchA = true;
3697 break;
3698 }
3699 }
3700
3701 // Check if B comes from one of C, D, E, F.
3702 for (int Half = 0; Half < 4; ++Half) {
3703 if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
3704 MatchB = true;
3705 break;
3706 }
3707 }
3708
3709 return MatchA && MatchB;
3710}
3711
3712/// getShuffleVPERM2F128Immediate - Return the appropriate immediate to shuffle
3713/// the specified VECTOR_MASK mask with VPERM2F128 instructions.
3714static unsigned getShuffleVPERM2F128Immediate(SDNode *N) {
3715 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3716 EVT VT = SVOp->getValueType(0);
3717
3718 int HalfSize = VT.getVectorNumElements()/2;
3719
3720 int FstHalf = 0, SndHalf = 0;
3721 for (int i = 0; i < HalfSize; ++i) {
3722 if (SVOp->getMaskElt(i) > 0) {
3723 FstHalf = SVOp->getMaskElt(i)/HalfSize;
3724 break;
3725 }
3726 }
3727 for (int i = HalfSize; i < HalfSize*2; ++i) {
3728 if (SVOp->getMaskElt(i) > 0) {
3729 SndHalf = SVOp->getMaskElt(i)/HalfSize;
3730 break;
3731 }
3732 }
3733
3734 return (FstHalf | (SndHalf << 4));
3735}
3736
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003737/// isVPERMILPDMask - Return true if the specified VECTOR_SHUFFLE operand
3738/// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
3739/// Note that VPERMIL mask matching is different depending whether theunderlying
3740/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3741/// to the same elements of the low, but to the higher half of the source.
3742/// In VPERMILPD the two lanes could be shuffled independently of each other
3743/// with the same restriction that lanes can't be crossed.
3744static bool isVPERMILPDMask(const SmallVectorImpl<int> &Mask, EVT VT,
3745 const X86Subtarget *Subtarget) {
3746 int NumElts = VT.getVectorNumElements();
3747 int NumLanes = VT.getSizeInBits()/128;
3748
3749 if (!Subtarget->hasAVX())
3750 return false;
3751
3752 // Match any permutation of 128-bit vector with 64-bit types
3753 if (NumLanes == 1 && NumElts != 2)
3754 return false;
3755
3756 // Only match 256-bit with 32 types
3757 if (VT.getSizeInBits() == 256 && NumElts != 4)
3758 return false;
3759
3760 // The mask on the high lane is independent of the low. Both can match
3761 // any element in inside its own lane, but can't cross.
3762 int LaneSize = NumElts/NumLanes;
3763 for (int l = 0; l < NumLanes; ++l)
3764 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3765 int LaneStart = l*LaneSize;
3766 if (!isUndefOrInRange(Mask[i], LaneStart, LaneStart+LaneSize))
3767 return false;
3768 }
3769
3770 return true;
3771}
3772
3773/// isVPERMILPSMask - Return true if the specified VECTOR_SHUFFLE operand
3774/// specifies a shuffle of elements that is suitable for input to VPERMILPS*.
3775/// Note that VPERMIL mask matching is different depending whether theunderlying
3776/// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3777/// to the same elements of the low, but to the higher half of the source.
3778/// In VPERMILPD the two lanes could be shuffled independently of each other
3779/// with the same restriction that lanes can't be crossed.
3780static bool isVPERMILPSMask(const SmallVectorImpl<int> &Mask, EVT VT,
3781 const X86Subtarget *Subtarget) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003782 unsigned NumElts = VT.getVectorNumElements();
3783 unsigned NumLanes = VT.getSizeInBits()/128;
3784
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003785 if (!Subtarget->hasAVX())
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003786 return false;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003787
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003788 // Match any permutation of 128-bit vector with 32-bit types
3789 if (NumLanes == 1 && NumElts != 4)
3790 return false;
3791
3792 // Only match 256-bit with 32 types
3793 if (VT.getSizeInBits() == 256 && NumElts != 8)
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003794 return false;
3795
3796 // The mask on the high lane should be the same as the low. Actually,
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003797 // they can differ if any of the corresponding index in a lane is undef
3798 // and the other stays in range.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003799 int LaneSize = NumElts/NumLanes;
3800 for (int i = 0; i < LaneSize; ++i) {
3801 int HighElt = i+LaneSize;
Bruno Cardoso Lopes155a92a2011-08-10 01:54:17 +00003802 bool HighValid = isUndefOrInRange(Mask[HighElt], LaneSize, NumElts);
3803 bool LowValid = isUndefOrInRange(Mask[i], 0, LaneSize);
3804
3805 if (!HighValid || !LowValid)
3806 return false;
3807 if (Mask[i] < 0 || Mask[HighElt] < 0)
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003808 continue;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003809 if (Mask[HighElt]-Mask[i] != LaneSize)
3810 return false;
3811 }
3812
3813 return true;
3814}
3815
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003816/// getShuffleVPERMILPSImmediate - Return the appropriate immediate to shuffle
3817/// the specified VECTOR_MASK mask with VPERMILPS* instructions.
3818static unsigned getShuffleVPERMILPSImmediate(SDNode *N) {
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003819 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3820 EVT VT = SVOp->getValueType(0);
3821
3822 int NumElts = VT.getVectorNumElements();
3823 int NumLanes = VT.getSizeInBits()/128;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003824 int LaneSize = NumElts/NumLanes;
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003825
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003826 // Although the mask is equal for both lanes do it twice to get the cases
3827 // where a mask will match because the same mask element is undef on the
3828 // first half but valid on the second. This would get pathological cases
3829 // such as: shuffle <u, 0, 1, 2, 4, 4, 5, 6>, which is completely valid.
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003830 unsigned Mask = 0;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003831 for (int l = 0; l < NumLanes; ++l) {
3832 for (int i = 0; i < LaneSize; ++i) {
3833 int MaskElt = SVOp->getMaskElt(i+(l*LaneSize));
3834 if (MaskElt < 0)
3835 continue;
Bruno Cardoso Lopes61260052011-07-29 02:05:28 +00003836 if (MaskElt >= LaneSize)
3837 MaskElt -= LaneSize;
Bruno Cardoso Lopesdd635302011-07-29 01:31:15 +00003838 Mask |= MaskElt << (i*2);
3839 }
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003840 }
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00003841
3842 return Mask;
3843}
3844
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003845/// getShuffleVPERMILPDImmediate - Return the appropriate immediate to shuffle
3846/// the specified VECTOR_MASK mask with VPERMILPD* instructions.
3847static unsigned getShuffleVPERMILPDImmediate(SDNode *N) {
3848 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3849 EVT VT = SVOp->getValueType(0);
3850
3851 int NumElts = VT.getVectorNumElements();
3852 int NumLanes = VT.getSizeInBits()/128;
3853
3854 unsigned Mask = 0;
3855 int LaneSize = NumElts/NumLanes;
3856 for (int l = 0; l < NumLanes; ++l)
Bruno Cardoso Lopes377baa52011-07-29 01:31:04 +00003857 for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3858 int MaskElt = SVOp->getMaskElt(i);
3859 if (MaskElt < 0)
3860 continue;
3861 Mask |= (MaskElt-l*LaneSize) << i;
3862 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00003863
3864 return Mask;
3865}
3866
Evan Cheng017dcc62006-04-21 01:05:10 +00003867/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3868/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003869/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003870static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003871 bool V2IsSplat = false, bool V2IsUndef = false) {
3872 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003873 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003874 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003875
Nate Begeman9008ca62009-04-27 18:41:29 +00003876 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003877 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003878
Nate Begeman9008ca62009-04-27 18:41:29 +00003879 for (int i = 1; i < NumOps; ++i)
3880 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3881 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3882 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003883 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003884
Evan Cheng39623da2006-04-20 08:58:49 +00003885 return true;
3886}
3887
Nate Begeman9008ca62009-04-27 18:41:29 +00003888static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003889 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003890 SmallVector<int, 8> M;
3891 N->getMask(M);
3892 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003893}
3894
Evan Chengd9539472006-04-14 21:59:03 +00003895/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3896/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003897/// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
3898bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N,
3899 const X86Subtarget *Subtarget) {
3900 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003901 return false;
3902
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003903 // The second vector must be undef
3904 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3905 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003906
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003907 EVT VT = N->getValueType(0);
3908 unsigned NumElems = VT.getVectorNumElements();
3909
3910 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3911 (VT.getSizeInBits() == 256 && NumElems != 8))
3912 return false;
3913
3914 // "i+1" is the value the indexed mask element must have
3915 for (unsigned i = 0; i < NumElems; i += 2)
3916 if (!isUndefOrEqual(N->getMaskElt(i), i+1) ||
3917 !isUndefOrEqual(N->getMaskElt(i+1), i+1))
Nate Begeman9008ca62009-04-27 18:41:29 +00003918 return false;
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003919
3920 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003921}
3922
3923/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3924/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003925/// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
3926bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N,
3927 const X86Subtarget *Subtarget) {
3928 if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
Evan Chengd9539472006-04-14 21:59:03 +00003929 return false;
3930
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003931 // The second vector must be undef
3932 if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3933 return false;
3934
3935 EVT VT = N->getValueType(0);
3936 unsigned NumElems = VT.getVectorNumElements();
3937
3938 if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3939 (VT.getSizeInBits() == 256 && NumElems != 8))
3940 return false;
3941
3942 // "i" is the value the indexed mask element must have
3943 for (unsigned i = 0; i < NumElems; i += 2)
3944 if (!isUndefOrEqual(N->getMaskElt(i), i) ||
3945 !isUndefOrEqual(N->getMaskElt(i+1), i))
Nate Begeman9008ca62009-04-27 18:41:29 +00003946 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003947
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00003948 return true;
Evan Chengd9539472006-04-14 21:59:03 +00003949}
3950
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00003951/// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
3952/// specifies a shuffle of elements that is suitable for input to 256-bit
3953/// version of MOVDDUP.
3954static bool isMOVDDUPYMask(ShuffleVectorSDNode *N,
3955 const X86Subtarget *Subtarget) {
3956 EVT VT = N->getValueType(0);
3957 int NumElts = VT.getVectorNumElements();
3958 bool V2IsUndef = N->getOperand(1).getOpcode() == ISD::UNDEF;
3959
3960 if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256 ||
3961 !V2IsUndef || NumElts != 4)
3962 return false;
3963
3964 for (int i = 0; i != NumElts/2; ++i)
3965 if (!isUndefOrEqual(N->getMaskElt(i), 0))
3966 return false;
3967 for (int i = NumElts/2; i != NumElts; ++i)
3968 if (!isUndefOrEqual(N->getMaskElt(i), NumElts/2))
3969 return false;
3970 return true;
3971}
3972
Evan Cheng0b457f02008-09-25 20:50:48 +00003973/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00003974/// specifies a shuffle of elements that is suitable for input to 128-bit
3975/// version of MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003976bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00003977 EVT VT = N->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00003978
Bruno Cardoso Lopes06ef9232011-08-25 21:40:34 +00003979 if (VT.getSizeInBits() != 128)
3980 return false;
3981
3982 int e = VT.getVectorNumElements() / 2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003983 for (int i = 0; i < e; ++i)
3984 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003985 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003986 for (int i = 0; i < e; ++i)
3987 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003988 return false;
3989 return true;
3990}
3991
David Greenec38a03e2011-02-03 15:50:00 +00003992/// isVEXTRACTF128Index - Return true if the specified
3993/// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3994/// suitable for input to VEXTRACTF128.
3995bool X86::isVEXTRACTF128Index(SDNode *N) {
3996 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3997 return false;
3998
3999 // The index should be aligned on a 128-bit boundary.
4000 uint64_t Index =
4001 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4002
4003 unsigned VL = N->getValueType(0).getVectorNumElements();
4004 unsigned VBits = N->getValueType(0).getSizeInBits();
4005 unsigned ElSize = VBits / VL;
4006 bool Result = (Index * ElSize) % 128 == 0;
4007
4008 return Result;
4009}
4010
David Greeneccacdc12011-02-04 16:08:29 +00004011/// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
4012/// operand specifies a subvector insert that is suitable for input to
4013/// VINSERTF128.
4014bool X86::isVINSERTF128Index(SDNode *N) {
4015 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4016 return false;
4017
4018 // The index should be aligned on a 128-bit boundary.
4019 uint64_t Index =
4020 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4021
4022 unsigned VL = N->getValueType(0).getVectorNumElements();
4023 unsigned VBits = N->getValueType(0).getSizeInBits();
4024 unsigned ElSize = VBits / VL;
4025 bool Result = (Index * ElSize) % 128 == 0;
4026
4027 return Result;
4028}
4029
Evan Cheng63d33002006-03-22 08:01:21 +00004030/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004031/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00004032unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004033 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
4034 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
4035
Evan Chengb9df0ca2006-03-22 02:53:00 +00004036 unsigned Shift = (NumOperands == 4) ? 2 : 1;
4037 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00004038 for (int i = 0; i < NumOperands; ++i) {
4039 int Val = SVOp->getMaskElt(NumOperands-i-1);
4040 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00004041 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00004042 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00004043 if (i != NumOperands - 1)
4044 Mask <<= Shift;
4045 }
Evan Cheng63d33002006-03-22 08:01:21 +00004046 return Mask;
4047}
4048
Evan Cheng506d3df2006-03-29 23:07:14 +00004049/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004050/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00004051unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004052 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00004053 unsigned Mask = 0;
4054 // 8 nodes, but we only care about the last 4.
4055 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004056 int Val = SVOp->getMaskElt(i);
4057 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00004058 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00004059 if (i != 4)
4060 Mask <<= 2;
4061 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004062 return Mask;
4063}
4064
4065/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00004066/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00004067unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004068 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00004069 unsigned Mask = 0;
4070 // 8 nodes, but we only care about the first 4.
4071 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004072 int Val = SVOp->getMaskElt(i);
4073 if (Val >= 0)
4074 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00004075 if (i != 0)
4076 Mask <<= 2;
4077 }
Evan Cheng506d3df2006-03-29 23:07:14 +00004078 return Mask;
4079}
4080
Nate Begemana09008b2009-10-19 02:17:23 +00004081/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4082/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4083unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
4084 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
4085 EVT VVT = N->getValueType(0);
4086 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
4087 int Val = 0;
4088
4089 unsigned i, e;
4090 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
4091 Val = SVOp->getMaskElt(i);
4092 if (Val >= 0)
4093 break;
4094 }
Eli Friedman63f8dde2011-07-25 21:36:45 +00004095 assert(Val - i > 0 && "PALIGNR imm should be positive");
Nate Begemana09008b2009-10-19 02:17:23 +00004096 return (Val - i) * EltSize;
4097}
4098
David Greenec38a03e2011-02-03 15:50:00 +00004099/// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
4100/// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4101/// instructions.
4102unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
4103 if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4104 llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
4105
4106 uint64_t Index =
4107 cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4108
4109 EVT VecVT = N->getOperand(0).getValueType();
4110 EVT ElVT = VecVT.getVectorElementType();
4111
4112 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greenec38a03e2011-02-03 15:50:00 +00004113 return Index / NumElemsPerChunk;
4114}
4115
David Greeneccacdc12011-02-04 16:08:29 +00004116/// getInsertVINSERTF128Immediate - Return the appropriate immediate
4117/// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4118/// instructions.
4119unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
4120 if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4121 llvm_unreachable("Illegal insert subvector for VINSERTF128");
4122
4123 uint64_t Index =
NAKAMURA Takumi27635382011-02-05 15:10:54 +00004124 cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
David Greeneccacdc12011-02-04 16:08:29 +00004125
4126 EVT VecVT = N->getValueType(0);
4127 EVT ElVT = VecVT.getVectorElementType();
4128
4129 unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
David Greeneccacdc12011-02-04 16:08:29 +00004130 return Index / NumElemsPerChunk;
4131}
4132
Evan Cheng37b73872009-07-30 08:33:02 +00004133/// isZeroNode - Returns true if Elt is a constant zero or a floating point
4134/// constant +0.0.
4135bool X86::isZeroNode(SDValue Elt) {
4136 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00004137 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00004138 (isa<ConstantFPSDNode>(Elt) &&
4139 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
4140}
4141
Nate Begeman9008ca62009-04-27 18:41:29 +00004142/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4143/// their permute mask.
4144static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4145 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004146 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004147 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00004148 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00004149
Nate Begeman5a5ca152009-04-29 05:20:52 +00004150 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004151 int idx = SVOp->getMaskElt(i);
4152 if (idx < 0)
4153 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004154 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00004155 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004156 else
Nate Begeman9008ca62009-04-27 18:41:29 +00004157 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004158 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004159 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
4160 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00004161}
4162
Evan Cheng779ccea2007-12-07 21:30:01 +00004163/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
4164/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00004165static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00004166 unsigned NumElems = VT.getVectorNumElements();
4167 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004168 int idx = Mask[i];
4169 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004170 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004171 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00004172 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004173 else
Nate Begeman9008ca62009-04-27 18:41:29 +00004174 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004175 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004176}
4177
Evan Cheng533a0aa2006-04-19 20:35:22 +00004178/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4179/// match movhlps. The lower half elements should come from upper half of
4180/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00004181/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00004182static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004183 EVT VT = Op->getValueType(0);
4184 if (VT.getSizeInBits() != 128)
4185 return false;
4186 if (VT.getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00004187 return false;
4188 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004189 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004190 return false;
4191 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004192 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004193 return false;
4194 return true;
4195}
4196
Evan Cheng5ced1d82006-04-06 23:23:56 +00004197/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00004198/// is promoted to a vector. It also returns the LoadSDNode by reference if
4199/// required.
4200static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00004201 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4202 return false;
4203 N = N->getOperand(0).getNode();
4204 if (!ISD::isNON_EXTLoad(N))
4205 return false;
4206 if (LD)
4207 *LD = cast<LoadSDNode>(N);
4208 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004209}
4210
Evan Cheng533a0aa2006-04-19 20:35:22 +00004211/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4212/// match movlp{s|d}. The lower half elements should come from lower half of
4213/// V1 (and in order), and the upper half elements should come from the upper
4214/// half of V2 (and in order). And since V1 will become the source of the
4215/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004216static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4217 ShuffleVectorSDNode *Op) {
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004218 EVT VT = Op->getValueType(0);
4219 if (VT.getSizeInBits() != 128)
4220 return false;
4221
Evan Cheng466685d2006-10-09 20:57:25 +00004222 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004223 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00004224 // Is V2 is a vector load, don't do this transformation. We will try to use
4225 // load folding shufps op.
4226 if (ISD::isNON_EXTLoad(V2))
4227 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004228
Bruno Cardoso Lopes59353b42011-08-11 18:59:13 +00004229 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004230
Evan Cheng533a0aa2006-04-19 20:35:22 +00004231 if (NumElems != 2 && NumElems != 4)
4232 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004233 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004234 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004235 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00004236 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004237 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00004238 return false;
4239 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004240}
4241
Evan Cheng39623da2006-04-20 08:58:49 +00004242/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4243/// all the same.
4244static bool isSplatVector(SDNode *N) {
4245 if (N->getOpcode() != ISD::BUILD_VECTOR)
4246 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00004247
Dan Gohman475871a2008-07-27 21:46:04 +00004248 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00004249 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4250 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00004251 return false;
4252 return true;
4253}
4254
Evan Cheng213d2cf2007-05-17 18:45:50 +00004255/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00004256/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00004257/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00004258static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00004259 SDValue V1 = N->getOperand(0);
4260 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004261 unsigned NumElems = N->getValueType(0).getVectorNumElements();
4262 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004263 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004264 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004265 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00004266 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4267 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004268 if (Opc != ISD::BUILD_VECTOR ||
4269 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00004270 return false;
4271 } else if (Idx >= 0) {
4272 unsigned Opc = V1.getOpcode();
4273 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4274 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00004275 if (Opc != ISD::BUILD_VECTOR ||
4276 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00004277 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00004278 }
4279 }
4280 return true;
4281}
4282
4283/// getZeroVector - Returns a vector of specified type with all zero elements.
4284///
Owen Andersone50ed302009-08-10 22:56:29 +00004285static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00004286 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004287 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004288
Dale Johannesen0488fb62010-09-30 23:57:10 +00004289 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004290 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00004291 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00004292 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004293 if (HasSSE2) { // SSE2
4294 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4295 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4296 } else { // SSE1
4297 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4298 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4299 }
4300 } else if (VT.getSizeInBits() == 256) { // AVX
4301 // 256-bit logic and arithmetic instructions in AVX are
4302 // all floating-point, no support for integer ops. Default
4303 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00004304 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004305 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4306 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00004307 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004308 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00004309}
4310
Chris Lattner8a594482007-11-25 00:24:49 +00004311/// getOnesVector - Returns a vector of specified type with all bits set.
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004312/// Always build ones vectors as <4 x i32>. For 256-bit types, use two
4313/// <4 x i32> inserted in a <8 x i32> appropriately. Then bitcast to their
4314/// original type, ensuring they get CSE'd.
Owen Andersone50ed302009-08-10 22:56:29 +00004315static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004316 assert(VT.isVector() && "Expected a vector type");
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004317 assert((VT.is128BitVector() || VT.is256BitVector())
4318 && "Expected a 128-bit or 256-bit vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00004319
Owen Anderson825b72b2009-08-11 20:47:22 +00004320 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004321 SDValue Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
4322 Cst, Cst, Cst, Cst);
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004323
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00004324 if (VT.is256BitVector()) {
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +00004325 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, MVT::v8i32),
4326 Vec, DAG.getConstant(0, MVT::i32), DAG, dl);
4327 Vec = Insert128BitVector(InsV, Vec,
4328 DAG.getConstant(4 /* NumElems/2 */, MVT::i32), DAG, dl);
4329 }
4330
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004331 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00004332}
4333
Evan Cheng39623da2006-04-20 08:58:49 +00004334/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4335/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00004336static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004337 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00004338 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00004339
Evan Cheng39623da2006-04-20 08:58:49 +00004340 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00004341 SmallVector<int, 8> MaskVec;
4342 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00004343
Nate Begeman5a5ca152009-04-29 05:20:52 +00004344 for (unsigned i = 0; i != NumElems; ++i) {
4345 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004346 MaskVec[i] = NumElems;
4347 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00004348 }
Evan Cheng39623da2006-04-20 08:58:49 +00004349 }
Evan Cheng39623da2006-04-20 08:58:49 +00004350 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00004351 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
4352 SVOp->getOperand(1), &MaskVec[0]);
4353 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00004354}
4355
Evan Cheng017dcc62006-04-21 01:05:10 +00004356/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4357/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00004358static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004359 SDValue V2) {
4360 unsigned NumElems = VT.getVectorNumElements();
4361 SmallVector<int, 8> Mask;
4362 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00004363 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004364 Mask.push_back(i);
4365 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00004366}
4367
Nate Begeman9008ca62009-04-27 18:41:29 +00004368/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004369static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004370 SDValue V2) {
4371 unsigned NumElems = VT.getVectorNumElements();
4372 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00004373 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004374 Mask.push_back(i);
4375 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00004376 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004377 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00004378}
4379
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004380/// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00004381static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00004382 SDValue V2) {
4383 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00004384 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00004385 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00004386 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004387 Mask.push_back(i + Half);
4388 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00004389 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004390 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004391}
4392
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004393// PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004394// a generic shuffle instruction because the target has no such instructions.
4395// Generate shuffles which repeat i16 and i8 several times until they can be
4396// represented by v4f32 and then be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004397static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004398 EVT VT = V.getValueType();
Nate Begeman9008ca62009-04-27 18:41:29 +00004399 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004400 DebugLoc dl = V.getDebugLoc();
Rafael Espindola15684b22009-04-24 12:40:33 +00004401
Nate Begeman9008ca62009-04-27 18:41:29 +00004402 while (NumElems > 4) {
4403 if (EltNo < NumElems/2) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004404 V = getUnpackl(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004405 } else {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004406 V = getUnpackh(DAG, dl, VT, V, V);
Nate Begeman9008ca62009-04-27 18:41:29 +00004407 EltNo -= NumElems/2;
4408 }
4409 NumElems >>= 1;
4410 }
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004411 return V;
4412}
Eric Christopherfd179292009-08-27 18:07:15 +00004413
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004414/// getLegalSplat - Generate a legal splat with supported x86 shuffles
4415static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4416 EVT VT = V.getValueType();
4417 DebugLoc dl = V.getDebugLoc();
4418 assert((VT.getSizeInBits() == 128 || VT.getSizeInBits() == 256)
4419 && "Vector size not supported");
4420
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004421 if (VT.getSizeInBits() == 128) {
4422 V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004423 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004424 V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4425 &SplatMask[0]);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004426 } else {
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004427 // To use VPERMILPS to splat scalars, the second half of indicies must
4428 // refer to the higher part, which is a duplication of the lower one,
4429 // because VPERMILPS can only handle in-lane permutations.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004430 int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4431 EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004432
4433 V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4434 V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4435 &SplatMask[0]);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004436 }
4437
4438 return DAG.getNode(ISD::BITCAST, dl, VT, V);
4439}
4440
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004441/// PromoteSplat - Splat is promoted to target supported vector shuffles.
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004442static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4443 EVT SrcVT = SV->getValueType(0);
4444 SDValue V1 = SV->getOperand(0);
4445 DebugLoc dl = SV->getDebugLoc();
4446
4447 int EltNo = SV->getSplatIndex();
4448 int NumElems = SrcVT.getVectorNumElements();
4449 unsigned Size = SrcVT.getSizeInBits();
4450
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004451 assert(((Size == 128 && NumElems > 4) || Size == 256) &&
4452 "Unknown how to promote splat for type");
4453
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004454 // Extract the 128-bit part containing the splat element and update
4455 // the splat element index when it refers to the higher register.
4456 if (Size == 256) {
4457 unsigned Idx = (EltNo > NumElems/2) ? NumElems/2 : 0;
4458 V1 = Extract128BitVector(V1, DAG.getConstant(Idx, MVT::i32), DAG, dl);
4459 if (Idx > 0)
4460 EltNo -= NumElems/2;
4461 }
4462
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00004463 // All i16 and i8 vector types can't be used directly by a generic shuffle
4464 // instruction because the target has no such instruction. Generate shuffles
4465 // which repeat i16 and i8 several times until they fit in i32, and then can
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004466 // be manipulated by target suported shuffles.
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004467 EVT EltVT = SrcVT.getVectorElementType();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004468 if (EltVT == MVT::i8 || EltVT == MVT::i16)
Bruno Cardoso Lopes5f1d8ab2011-08-11 02:49:44 +00004469 V1 = PromoteSplati8i16(V1, DAG, EltNo);
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004470
4471 // Recreate the 256-bit vector and place the same 128-bit vector
4472 // into the low and high part. This is necessary because we want
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00004473 // to use VPERM* to shuffle the vectors
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00004474 if (Size == 256) {
4475 SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), V1,
4476 DAG.getConstant(0, MVT::i32), DAG, dl);
4477 V1 = Insert128BitVector(InsV, V1,
4478 DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4479 }
4480
4481 return getLegalSplat(DAG, V1, EltNo);
Evan Chengc575ca22006-04-17 20:43:08 +00004482}
4483
Evan Chengba05f722006-04-21 23:03:30 +00004484/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00004485/// vector of zero or undef vector. This produces a shuffle where the low
4486/// element of V2 is swizzled into the zero/undef vector, landing at element
4487/// 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 +00004488static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00004489 bool isZero, bool HasSSE2,
4490 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00004491 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00004492 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00004493 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
4494 unsigned NumElems = VT.getVectorNumElements();
4495 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00004496 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004497 // If this is the insertion idx, put the low elt of V2 here.
4498 MaskVec.push_back(i == Idx ? NumElems : i);
4499 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00004500}
4501
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004502/// getShuffleScalarElt - Returns the scalar element that will make up the ith
4503/// element of the result of the vector shuffle.
Benjamin Kramer050db522011-03-26 12:38:19 +00004504static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
4505 unsigned Depth) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004506 if (Depth == 6)
4507 return SDValue(); // Limit search depth.
4508
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004509 SDValue V = SDValue(N, 0);
4510 EVT VT = V.getValueType();
4511 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004512
4513 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4514 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4515 Index = SV->getMaskElt(Index);
4516
4517 if (Index < 0)
4518 return DAG.getUNDEF(VT.getVectorElementType());
4519
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004520 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004521 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004522 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00004523 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004524
4525 // Recurse into target specific vector shuffles to find scalars.
4526 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004527 int NumElems = VT.getVectorNumElements();
4528 SmallVector<unsigned, 16> ShuffleMask;
4529 SDValue ImmN;
4530
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004531 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004532 case X86ISD::SHUFPS:
4533 case X86ISD::SHUFPD:
4534 ImmN = N->getOperand(N->getNumOperands()-1);
4535 DecodeSHUFPSMask(NumElems,
4536 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4537 ShuffleMask);
4538 break;
4539 case X86ISD::PUNPCKHBW:
4540 case X86ISD::PUNPCKHWD:
4541 case X86ISD::PUNPCKHDQ:
4542 case X86ISD::PUNPCKHQDQ:
4543 DecodePUNPCKHMask(NumElems, ShuffleMask);
4544 break;
4545 case X86ISD::UNPCKHPS:
4546 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00004547 case X86ISD::VUNPCKHPSY:
4548 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004549 DecodeUNPCKHPMask(NumElems, ShuffleMask);
4550 break;
4551 case X86ISD::PUNPCKLBW:
4552 case X86ISD::PUNPCKLWD:
4553 case X86ISD::PUNPCKLDQ:
4554 case X86ISD::PUNPCKLQDQ:
David Greenec4db4e52011-02-28 19:06:56 +00004555 DecodePUNPCKLMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004556 break;
4557 case X86ISD::UNPCKLPS:
4558 case X86ISD::UNPCKLPD:
David Greenec4db4e52011-02-28 19:06:56 +00004559 case X86ISD::VUNPCKLPSY:
4560 case X86ISD::VUNPCKLPDY:
4561 DecodeUNPCKLPMask(VT, ShuffleMask);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004562 break;
4563 case X86ISD::MOVHLPS:
4564 DecodeMOVHLPSMask(NumElems, ShuffleMask);
4565 break;
4566 case X86ISD::MOVLHPS:
4567 DecodeMOVLHPSMask(NumElems, ShuffleMask);
4568 break;
4569 case X86ISD::PSHUFD:
4570 ImmN = N->getOperand(N->getNumOperands()-1);
4571 DecodePSHUFMask(NumElems,
4572 cast<ConstantSDNode>(ImmN)->getZExtValue(),
4573 ShuffleMask);
4574 break;
4575 case X86ISD::PSHUFHW:
4576 ImmN = N->getOperand(N->getNumOperands()-1);
4577 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4578 ShuffleMask);
4579 break;
4580 case X86ISD::PSHUFLW:
4581 ImmN = N->getOperand(N->getNumOperands()-1);
4582 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4583 ShuffleMask);
4584 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004585 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004586 case X86ISD::MOVSD: {
4587 // The index 0 always comes from the first element of the second source,
4588 // this is why MOVSS and MOVSD are used in the first place. The other
4589 // elements come from the other positions of the first source vector.
4590 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004591 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
4592 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00004593 }
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00004594 case X86ISD::VPERMILPS:
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004595 ImmN = N->getOperand(N->getNumOperands()-1);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004596 DecodeVPERMILPSMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00004597 ShuffleMask);
Bruno Cardoso Lopes2eb4c2b2011-07-29 01:31:11 +00004598 break;
4599 case X86ISD::VPERMILPSY:
4600 ImmN = N->getOperand(N->getNumOperands()-1);
4601 DecodeVPERMILPSMask(8, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4602 ShuffleMask);
4603 break;
4604 case X86ISD::VPERMILPD:
4605 ImmN = N->getOperand(N->getNumOperands()-1);
4606 DecodeVPERMILPDMask(2, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4607 ShuffleMask);
4608 break;
4609 case X86ISD::VPERMILPDY:
4610 ImmN = N->getOperand(N->getNumOperands()-1);
4611 DecodeVPERMILPDMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4612 ShuffleMask);
4613 break;
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00004614 case X86ISD::VPERM2F128:
4615 ImmN = N->getOperand(N->getNumOperands()-1);
4616 DecodeVPERM2F128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4617 ShuffleMask);
4618 break;
Eli Friedman106f6e72011-09-10 02:01:42 +00004619 case X86ISD::MOVDDUP:
4620 case X86ISD::MOVLHPD:
4621 case X86ISD::MOVLPD:
4622 case X86ISD::MOVLPS:
4623 case X86ISD::MOVSHDUP:
4624 case X86ISD::MOVSLDUP:
4625 case X86ISD::PALIGN:
4626 return SDValue(); // Not yet implemented.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004627 default:
Eli Friedman106f6e72011-09-10 02:01:42 +00004628 assert(0 && "unknown target shuffle node");
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004629 return SDValue();
4630 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004631
4632 Index = ShuffleMask[Index];
4633 if (Index < 0)
4634 return DAG.getUNDEF(VT.getVectorElementType());
4635
4636 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
4637 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
4638 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004639 }
4640
4641 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004642 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004643 V = V.getOperand(0);
4644 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004645 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004646
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00004647 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004648 return SDValue();
4649 }
4650
4651 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4652 return (Index == 0) ? V.getOperand(0)
4653 : DAG.getUNDEF(VT.getVectorElementType());
4654
4655 if (V.getOpcode() == ISD::BUILD_VECTOR)
4656 return V.getOperand(Index);
4657
4658 return SDValue();
4659}
4660
4661/// getNumOfConsecutiveZeros - Return the number of elements of a vector
4662/// shuffle operation which come from a consecutively from a zero. The
Chris Lattner7a2bdde2011-04-15 05:18:47 +00004663/// search can start in two different directions, from left or right.
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004664static
4665unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
4666 bool ZerosFromLeft, SelectionDAG &DAG) {
4667 int i = 0;
4668
4669 while (i < NumElems) {
4670 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00004671 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004672 if (!(Elt.getNode() &&
4673 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4674 break;
4675 ++i;
4676 }
4677
4678 return i;
4679}
4680
4681/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
4682/// MaskE correspond consecutively to elements from one of the vector operands,
4683/// starting from its index OpIdx. Also tell OpNum which source vector operand.
4684static
4685bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
4686 int OpIdx, int NumElems, unsigned &OpNum) {
4687 bool SeenV1 = false;
4688 bool SeenV2 = false;
4689
4690 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
4691 int Idx = SVOp->getMaskElt(i);
4692 // Ignore undef indicies
4693 if (Idx < 0)
4694 continue;
4695
4696 if (Idx < NumElems)
4697 SeenV1 = true;
4698 else
4699 SeenV2 = true;
4700
4701 // Only accept consecutive elements from the same vector
4702 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4703 return false;
4704 }
4705
4706 OpNum = SeenV1 ? 0 : 1;
4707 return true;
4708}
4709
4710/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4711/// logical left shift of a vector.
4712static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4713 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4714 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4715 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4716 false /* check zeros from right */, DAG);
4717 unsigned OpSrc;
4718
4719 if (!NumZeros)
4720 return false;
4721
4722 // Considering the elements in the mask that are not consecutive zeros,
4723 // check if they consecutively come from only one of the source vectors.
4724 //
4725 // V1 = {X, A, B, C} 0
4726 // \ \ \ /
4727 // vector_shuffle V1, V2 <1, 2, 3, X>
4728 //
4729 if (!isShuffleMaskConsecutive(SVOp,
4730 0, // Mask Start Index
4731 NumElems-NumZeros-1, // Mask End Index
4732 NumZeros, // Where to start looking in the src vector
4733 NumElems, // Number of elements in vector
4734 OpSrc)) // Which source operand ?
4735 return false;
4736
4737 isLeft = false;
4738 ShAmt = NumZeros;
4739 ShVal = SVOp->getOperand(OpSrc);
4740 return true;
4741}
4742
4743/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4744/// logical left shift of a vector.
4745static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4746 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4747 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4748 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4749 true /* check zeros from left */, DAG);
4750 unsigned OpSrc;
4751
4752 if (!NumZeros)
4753 return false;
4754
4755 // Considering the elements in the mask that are not consecutive zeros,
4756 // check if they consecutively come from only one of the source vectors.
4757 //
4758 // 0 { A, B, X, X } = V2
4759 // / \ / /
4760 // vector_shuffle V1, V2 <X, X, 4, 5>
4761 //
4762 if (!isShuffleMaskConsecutive(SVOp,
4763 NumZeros, // Mask Start Index
4764 NumElems-1, // Mask End Index
4765 0, // Where to start looking in the src vector
4766 NumElems, // Number of elements in vector
4767 OpSrc)) // Which source operand ?
4768 return false;
4769
4770 isLeft = true;
4771 ShAmt = NumZeros;
4772 ShVal = SVOp->getOperand(OpSrc);
4773 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004774}
4775
4776/// isVectorShift - Returns true if the shuffle can be implemented as a
4777/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00004778static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00004779 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004780 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4781 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4782 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00004783
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00004784 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00004785}
4786
Evan Chengc78d3b42006-04-24 18:01:45 +00004787/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4788///
Dan Gohman475871a2008-07-27 21:46:04 +00004789static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00004790 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00004791 SelectionDAG &DAG,
4792 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004793 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00004794 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004795
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004796 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004797 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004798 bool First = true;
4799 for (unsigned i = 0; i < 16; ++i) {
4800 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4801 if (ThisIsNonZero && First) {
4802 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004803 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004804 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004805 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004806 First = false;
4807 }
4808
4809 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00004810 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004811 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4812 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004813 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004814 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00004815 }
4816 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004817 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4818 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4819 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00004820 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004821 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00004822 } else
4823 ThisElt = LastElt;
4824
Gabor Greifba36cb52008-08-28 21:40:38 +00004825 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00004826 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00004827 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00004828 }
4829 }
4830
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004831 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00004832}
4833
Bill Wendlinga348c562007-03-22 18:42:45 +00004834/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00004835///
Dan Gohman475871a2008-07-27 21:46:04 +00004836static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00004837 unsigned NumNonZero, unsigned NumZero,
4838 SelectionDAG &DAG,
4839 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00004840 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00004841 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00004842
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004843 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00004844 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00004845 bool First = true;
4846 for (unsigned i = 0; i < 8; ++i) {
4847 bool isNonZero = (NonZeros & (1 << i)) != 0;
4848 if (isNonZero) {
4849 if (First) {
4850 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00004851 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00004852 else
Owen Anderson825b72b2009-08-11 20:47:22 +00004853 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00004854 First = false;
4855 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004856 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004857 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00004858 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00004859 }
4860 }
4861
4862 return V;
4863}
4864
Evan Chengf26ffe92008-05-29 08:22:04 +00004865/// getVShift - Return a vector logical shift node.
4866///
Owen Andersone50ed302009-08-10 22:56:29 +00004867static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00004868 unsigned NumBits, SelectionDAG &DAG,
4869 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004870 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00004871 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004872 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4873 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004874 DAG.getNode(Opc, dl, ShVT, SrcOp,
Owen Anderson95771af2011-02-25 21:41:48 +00004875 DAG.getConstant(NumBits,
4876 TLI.getShiftAmountTy(SrcOp.getValueType()))));
Evan Chengf26ffe92008-05-29 08:22:04 +00004877}
4878
Dan Gohman475871a2008-07-27 21:46:04 +00004879SDValue
Evan Chengc3630942009-12-09 21:00:30 +00004880X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00004881 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00004882
Evan Chengc3630942009-12-09 21:00:30 +00004883 // Check if the scalar load can be widened into a vector load. And if
4884 // the address is "base + cst" see if the cst can be "absorbed" into
4885 // the shuffle mask.
4886 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4887 SDValue Ptr = LD->getBasePtr();
4888 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4889 return SDValue();
4890 EVT PVT = LD->getValueType(0);
4891 if (PVT != MVT::i32 && PVT != MVT::f32)
4892 return SDValue();
4893
4894 int FI = -1;
4895 int64_t Offset = 0;
4896 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4897 FI = FINode->getIndex();
4898 Offset = 0;
Chris Lattner0a9481f2011-02-13 22:25:43 +00004899 } else if (DAG.isBaseWithConstantOffset(Ptr) &&
Evan Chengc3630942009-12-09 21:00:30 +00004900 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4901 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4902 Offset = Ptr.getConstantOperandVal(1);
4903 Ptr = Ptr.getOperand(0);
4904 } else {
4905 return SDValue();
4906 }
4907
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004908 // FIXME: 256-bit vector instructions don't require a strict alignment,
4909 // improve this code to support it better.
4910 unsigned RequiredAlign = VT.getSizeInBits()/8;
Evan Chengc3630942009-12-09 21:00:30 +00004911 SDValue Chain = LD->getChain();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004912 // Make sure the stack object alignment is at least 16 or 32.
Evan Chengc3630942009-12-09 21:00:30 +00004913 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004914 if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
Evan Chengc3630942009-12-09 21:00:30 +00004915 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004916 // Can't change the alignment. FIXME: It's possible to compute
4917 // the exact stack offset and reference FI + adjust offset instead.
4918 // If someone *really* cares about this. That's the way to implement it.
4919 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004920 } else {
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004921 MFI->setObjectAlignment(FI, RequiredAlign);
Evan Chengc3630942009-12-09 21:00:30 +00004922 }
4923 }
4924
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004925 // (Offset % 16 or 32) must be multiple of 4. Then address is then
Evan Chengc3630942009-12-09 21:00:30 +00004926 // Ptr + (Offset & ~15).
4927 if (Offset < 0)
4928 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004929 if ((Offset % RequiredAlign) & 3)
Evan Chengc3630942009-12-09 21:00:30 +00004930 return SDValue();
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004931 int64_t StartOffset = Offset & ~(RequiredAlign-1);
Evan Chengc3630942009-12-09 21:00:30 +00004932 if (StartOffset)
4933 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4934 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4935
4936 int EltNo = (Offset - StartOffset) >> 2;
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004937 int NumElems = VT.getVectorNumElements();
4938
4939 EVT CanonVT = VT.getSizeInBits() == 128 ? MVT::v4i32 : MVT::v8i32;
4940 EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
4941 SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
Chris Lattner51abfe42010-09-21 06:02:19 +00004942 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004943 false, false, 0);
Bruno Cardoso Lopesac5f13f2011-08-02 16:06:18 +00004944
4945 // Canonicalize it to a v4i32 or v8i32 shuffle.
4946 SmallVector<int, 8> Mask;
4947 for (int i = 0; i < NumElems; ++i)
4948 Mask.push_back(EltNo);
4949
4950 V1 = DAG.getNode(ISD::BITCAST, dl, CanonVT, V1);
4951 return DAG.getNode(ISD::BITCAST, dl, NVT,
4952 DAG.getVectorShuffle(CanonVT, dl, V1,
4953 DAG.getUNDEF(CanonVT),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004954 }
4955
4956 return SDValue();
4957}
4958
Michael J. Spencerec38de22010-10-10 22:04:20 +00004959/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4960/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004961/// load which has the same value as a build_vector whose operands are 'elts'.
4962///
4963/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004964///
Nate Begeman1449f292010-03-24 22:19:06 +00004965/// FIXME: we'd also like to handle the case where the last elements are zero
4966/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4967/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004968static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004969 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004970 EVT EltVT = VT.getVectorElementType();
4971 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004972
Nate Begemanfdea31a2010-03-24 20:49:50 +00004973 LoadSDNode *LDBase = NULL;
4974 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004975
Nate Begeman1449f292010-03-24 22:19:06 +00004976 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004977 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004978 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004979 for (unsigned i = 0; i < NumElems; ++i) {
4980 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004981
Nate Begemanfdea31a2010-03-24 20:49:50 +00004982 if (!Elt.getNode() ||
4983 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4984 return SDValue();
4985 if (!LDBase) {
4986 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4987 return SDValue();
4988 LDBase = cast<LoadSDNode>(Elt.getNode());
4989 LastLoadedElt = i;
4990 continue;
4991 }
4992 if (Elt.getOpcode() == ISD::UNDEF)
4993 continue;
4994
4995 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4996 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4997 return SDValue();
4998 LastLoadedElt = i;
4999 }
Nate Begeman1449f292010-03-24 22:19:06 +00005000
5001 // If we have found an entire vector of loads and undefs, then return a large
5002 // load of the entire vector width starting at the base pointer. If we found
5003 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005004 if (LastLoadedElt == NumElems - 1) {
5005 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00005006 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00005007 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00005008 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00005009 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00005010 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00005011 LDBase->isVolatile(), LDBase->isNonTemporal(),
5012 LDBase->getAlignment());
Eli Friedman61cc47e2011-07-26 21:02:58 +00005013 } else if (NumElems == 4 && LastLoadedElt == 1 &&
5014 DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00005015 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5016 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Eli Friedman322ea082011-09-14 23:42:45 +00005017 SDValue ResNode =
5018 DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops, 2, MVT::i64,
5019 LDBase->getPointerInfo(),
5020 LDBase->getAlignment(),
5021 false/*isVolatile*/, true/*ReadMem*/,
5022 false/*WriteMem*/);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005023 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00005024 }
5025 return SDValue();
5026}
5027
Evan Chengc3630942009-12-09 21:00:30 +00005028SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005029X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005030 DebugLoc dl = Op.getDebugLoc();
David Greenea5f26012011-02-07 19:36:54 +00005031
David Greenef125a292011-02-08 19:04:41 +00005032 EVT VT = Op.getValueType();
5033 EVT ExtVT = VT.getVectorElementType();
David Greenef125a292011-02-08 19:04:41 +00005034 unsigned NumElems = Op.getNumOperands();
5035
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005036 // Vectors containing all zeros can be matched by pxor and xorps later
5037 if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5038 // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5039 // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
Bruno Cardoso Lopes5bc37dd2011-07-15 22:24:33 +00005040 if (Op.getValueType() == MVT::v4i32 ||
5041 Op.getValueType() == MVT::v8i32)
Chris Lattner8a594482007-11-25 00:24:49 +00005042 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005043
Dale Johannesenace16102009-02-03 19:33:06 +00005044 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00005045 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005046
Bruno Cardoso Lopes531f19f2011-08-01 19:51:53 +00005047 // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
5048 // vectors or broken into v4i32 operations on 256-bit vectors.
5049 if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5050 if (Op.getValueType() == MVT::v4i32)
5051 return Op;
5052
5053 return getOnesVector(Op.getValueType(), DAG, dl);
5054 }
5055
Owen Andersone50ed302009-08-10 22:56:29 +00005056 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005057
Evan Cheng0db9fe62006-04-25 20:13:52 +00005058 unsigned NumZero = 0;
5059 unsigned NumNonZero = 0;
5060 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005061 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00005062 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005063 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005064 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00005065 if (Elt.getOpcode() == ISD::UNDEF)
5066 continue;
5067 Values.insert(Elt);
5068 if (Elt.getOpcode() != ISD::Constant &&
5069 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005070 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00005071 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00005072 NumZero++;
5073 else {
5074 NonZeros |= (1 << i);
5075 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005076 }
5077 }
5078
Chris Lattner97a2a562010-08-26 05:24:29 +00005079 // All undef vector. Return an UNDEF. All zero vectors were handled above.
5080 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00005081 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005082
Chris Lattner67f453a2008-03-09 05:42:06 +00005083 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00005084 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005085 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00005086 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005087
Chris Lattner62098042008-03-09 01:05:04 +00005088 // If this is an insertion of an i64 value on x86-32, and if the top bits of
5089 // the value are obviously zero, truncate the value to i32 and do the
5090 // insertion that way. Only do this if the value is non-constant or if the
5091 // value is a constant being inserted into element 0. It is cheaper to do
5092 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00005093 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00005094 (!IsAllConstants || Idx == 0)) {
5095 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00005096 // Handle SSE only.
5097 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5098 EVT VecVT = MVT::v4i32;
5099 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00005100
Chris Lattner62098042008-03-09 01:05:04 +00005101 // Truncate the value (which may itself be a constant) to i32, and
5102 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00005103 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00005104 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00005105 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
5106 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00005107
Chris Lattner62098042008-03-09 01:05:04 +00005108 // Now we have our 32-bit value zero extended in the low element of
5109 // a vector. If Idx != 0, swizzle it into place.
5110 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005111 SmallVector<int, 4> Mask;
5112 Mask.push_back(Idx);
5113 for (unsigned i = 1; i != VecElts; ++i)
5114 Mask.push_back(i);
5115 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00005116 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00005117 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00005118 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005119 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00005120 }
5121 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005122
Chris Lattner19f79692008-03-08 22:59:52 +00005123 // If we have a constant or non-constant insertion into the low element of
5124 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5125 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00005126 // depending on what the source datatype is.
5127 if (Idx == 0) {
5128 if (NumZero == 0) {
5129 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00005130 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5131 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00005132 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5133 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
5134 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
5135 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00005136 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
5137 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00005138 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
5139 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00005140 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
5141 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
5142 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005143 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00005144 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005145 }
Evan Chengf26ffe92008-05-29 08:22:04 +00005146
5147 // Is it a vector logical left shift?
5148 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00005149 X86::isZeroNode(Op.getOperand(0)) &&
5150 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005151 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00005152 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00005153 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005154 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00005155 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005156 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005157
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005158 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00005159 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005160
Chris Lattner19f79692008-03-08 22:59:52 +00005161 // Otherwise, if this is a vector with i32 or f32 elements, and the element
5162 // is a non-constant being inserted into an element other than the low one,
5163 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
5164 // movd/movss) to move this into the low element, then shuffle it into
5165 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00005166 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00005167 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00005168
Evan Cheng0db9fe62006-04-25 20:13:52 +00005169 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00005170 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
5171 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00005172 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005173 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00005174 MaskVec.push_back(i == Idx ? 0 : 1);
5175 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005176 }
5177 }
5178
Chris Lattner67f453a2008-03-09 05:42:06 +00005179 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00005180 if (Values.size() == 1) {
5181 if (EVTBits == 32) {
5182 // Instead of a shuffle like this:
5183 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5184 // Check if it's possible to issue this instead.
5185 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
5186 unsigned Idx = CountTrailingZeros_32(NonZeros);
5187 SDValue Item = Op.getOperand(Idx);
5188 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5189 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5190 }
Dan Gohman475871a2008-07-27 21:46:04 +00005191 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00005192 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005193
Dan Gohmana3941172007-07-24 22:55:08 +00005194 // A vector full of immediates; various special cases are already
5195 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00005196 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00005197 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00005198
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005199 // For AVX-length vectors, build the individual 128-bit pieces and use
5200 // shuffles to put them in place.
5201 if (VT.getSizeInBits() == 256 && !ISD::isBuildVectorAllZeros(Op.getNode())) {
5202 SmallVector<SDValue, 32> V;
5203 for (unsigned i = 0; i < NumElems; ++i)
5204 V.push_back(Op.getOperand(i));
5205
5206 EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5207
5208 // Build both the lower and upper subvector.
5209 SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5210 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5211 NumElems/2);
5212
5213 // Recreate the wider vector with the lower and upper part.
Bruno Cardoso Lopes15d03fb2011-07-28 01:26:53 +00005214 SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Lower,
5215 DAG.getConstant(0, MVT::i32), DAG, dl);
5216 return Insert128BitVector(Vec, Upper, DAG.getConstant(NumElems/2, MVT::i32),
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00005217 DAG, dl);
5218 }
5219
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00005220 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005221 if (EVTBits == 64) {
5222 if (NumNonZero == 1) {
5223 // One half is zero or undef.
5224 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00005225 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00005226 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00005227 return getShuffleVectorZeroOrUndef(V2, Idx, true,
5228 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00005229 }
Dan Gohman475871a2008-07-27 21:46:04 +00005230 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00005231 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005232
5233 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00005234 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005235 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00005236 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00005237 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005238 }
5239
Bill Wendling826f36f2007-03-28 00:57:11 +00005240 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00005241 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00005242 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00005243 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005244 }
5245
5246 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00005247 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00005248 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005249 if (NumElems == 4 && NumZero > 0) {
5250 for (unsigned i = 0; i < 4; ++i) {
5251 bool isZero = !(NonZeros & (1 << i));
5252 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00005253 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005254 else
Dale Johannesenace16102009-02-03 19:33:06 +00005255 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005256 }
5257
5258 for (unsigned i = 0; i < 2; ++i) {
5259 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
5260 default: break;
5261 case 0:
5262 V[i] = V[i*2]; // Must be a zero vector.
5263 break;
5264 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00005265 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005266 break;
5267 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00005268 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005269 break;
5270 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00005271 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005272 break;
5273 }
5274 }
5275
Nate Begeman9008ca62009-04-27 18:41:29 +00005276 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005277 bool Reverse = (NonZeros & 0x3) == 2;
5278 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005279 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005280 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
5281 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005282 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
5283 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005284 }
5285
Nate Begemanfdea31a2010-03-24 20:49:50 +00005286 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
5287 // Check for a build vector of consecutive loads.
5288 for (unsigned i = 0; i < NumElems; ++i)
5289 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005290
Nate Begemanfdea31a2010-03-24 20:49:50 +00005291 // Check for elements which are consecutive loads.
5292 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
5293 if (LD.getNode())
5294 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005295
5296 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00005297 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00005298 SDValue Result;
5299 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
5300 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
5301 else
5302 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00005303
Chris Lattner24faf612010-08-28 17:59:08 +00005304 for (unsigned i = 1; i < NumElems; ++i) {
5305 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
5306 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00005307 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00005308 }
5309 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00005310 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00005311
Chris Lattner6e80e442010-08-28 17:15:43 +00005312 // Otherwise, expand into a number of unpckl*, start by extending each of
5313 // our (non-undef) elements to the full vector width with the element in the
5314 // bottom slot of the vector (which generates no code for SSE).
5315 for (unsigned i = 0; i < NumElems; ++i) {
5316 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
5317 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
5318 else
5319 V[i] = DAG.getUNDEF(VT);
5320 }
5321
5322 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00005323 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
5324 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
5325 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00005326 unsigned EltStride = NumElems >> 1;
5327 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00005328 for (unsigned i = 0; i < EltStride; ++i) {
5329 // If V[i+EltStride] is undef and this is the first round of mixing,
5330 // then it is safe to just drop this shuffle: V[i] is already in the
5331 // right place, the one element (since it's the first round) being
5332 // inserted as undef can be dropped. This isn't safe for successive
5333 // rounds because they will permute elements within both vectors.
5334 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
5335 EltStride == NumElems/2)
5336 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00005337
Chris Lattner6e80e442010-08-28 17:15:43 +00005338 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00005339 }
Chris Lattner6e80e442010-08-28 17:15:43 +00005340 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005341 }
5342 return V[0];
5343 }
Dan Gohman475871a2008-07-27 21:46:04 +00005344 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005345}
5346
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005347// LowerMMXCONCAT_VECTORS - We support concatenate two MMX registers and place
5348// them in a MMX register. This is better than doing a stack convert.
5349static SDValue LowerMMXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005350 DebugLoc dl = Op.getDebugLoc();
5351 EVT ResVT = Op.getValueType();
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005352
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005353 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
5354 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
5355 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005356 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005357 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5358 InVec = Op.getOperand(1);
5359 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
5360 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005361 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005362 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
5363 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
5364 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005365 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005366 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5367 Mask[0] = 0; Mask[1] = 2;
5368 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
5369 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005370 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00005371}
5372
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005373// LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
5374// to create 256-bit vectors from two other 128-bit ones.
5375static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5376 DebugLoc dl = Op.getDebugLoc();
5377 EVT ResVT = Op.getValueType();
5378
5379 assert(ResVT.getSizeInBits() == 256 && "Value type must be 256-bit wide");
5380
5381 SDValue V1 = Op.getOperand(0);
5382 SDValue V2 = Op.getOperand(1);
5383 unsigned NumElems = ResVT.getVectorNumElements();
5384
5385 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, ResVT), V1,
5386 DAG.getConstant(0, MVT::i32), DAG, dl);
5387 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5388 DAG, dl);
5389}
5390
5391SDValue
5392X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes8af24512011-08-01 21:54:02 +00005393 EVT ResVT = Op.getValueType();
5394
5395 assert(Op.getNumOperands() == 2);
5396 assert((ResVT.getSizeInBits() == 128 || ResVT.getSizeInBits() == 256) &&
5397 "Unsupported CONCAT_VECTORS for value type");
5398
5399 // We support concatenate two MMX registers and place them in a MMX register.
5400 // This is better than doing a stack convert.
5401 if (ResVT.is128BitVector())
5402 return LowerMMXCONCAT_VECTORS(Op, DAG);
5403
5404 // 256-bit AVX can use the vinsertf128 instruction to create 256-bit vectors
5405 // from two other 128-bit ones.
5406 return LowerAVXCONCAT_VECTORS(Op, DAG);
5407}
5408
Nate Begemanb9a47b82009-02-23 08:49:38 +00005409// v8i16 shuffles - Prefer shuffles in the following order:
5410// 1. [all] pshuflw, pshufhw, optional move
5411// 2. [ssse3] 1 x pshufb
5412// 3. [ssse3] 2 x pshufb + 1 x por
5413// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005414SDValue
5415X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
5416 SelectionDAG &DAG) const {
5417 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00005418 SDValue V1 = SVOp->getOperand(0);
5419 SDValue V2 = SVOp->getOperand(1);
5420 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005421 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00005422
Nate Begemanb9a47b82009-02-23 08:49:38 +00005423 // Determine if more than 1 of the words in each of the low and high quadwords
5424 // of the result come from the same quadword of one of the two inputs. Undef
5425 // mask values count as coming from any quadword, for better codegen.
5426 SmallVector<unsigned, 4> LoQuad(4);
5427 SmallVector<unsigned, 4> HiQuad(4);
5428 BitVector InputQuads(4);
5429 for (unsigned i = 0; i < 8; ++i) {
5430 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00005431 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005432 MaskVals.push_back(EltIdx);
5433 if (EltIdx < 0) {
5434 ++Quad[0];
5435 ++Quad[1];
5436 ++Quad[2];
5437 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00005438 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005439 }
5440 ++Quad[EltIdx / 4];
5441 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00005442 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005443
Nate Begemanb9a47b82009-02-23 08:49:38 +00005444 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005445 unsigned MaxQuad = 1;
5446 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005447 if (LoQuad[i] > MaxQuad) {
5448 BestLoQuad = i;
5449 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005450 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005451 }
5452
Nate Begemanb9a47b82009-02-23 08:49:38 +00005453 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00005454 MaxQuad = 1;
5455 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005456 if (HiQuad[i] > MaxQuad) {
5457 BestHiQuad = i;
5458 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00005459 }
5460 }
5461
Nate Begemanb9a47b82009-02-23 08:49:38 +00005462 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00005463 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00005464 // single pshufb instruction is necessary. If There are more than 2 input
5465 // quads, disable the next transformation since it does not help SSSE3.
5466 bool V1Used = InputQuads[0] || InputQuads[1];
5467 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005468 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005469 if (InputQuads.count() == 2 && V1Used && V2Used) {
5470 BestLoQuad = InputQuads.find_first();
5471 BestHiQuad = InputQuads.find_next(BestLoQuad);
5472 }
5473 if (InputQuads.count() > 2) {
5474 BestLoQuad = -1;
5475 BestHiQuad = -1;
5476 }
5477 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005478
Nate Begemanb9a47b82009-02-23 08:49:38 +00005479 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
5480 // the shuffle mask. If a quad is scored as -1, that means that it contains
5481 // words from all 4 input quadwords.
5482 SDValue NewV;
5483 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005484 SmallVector<int, 8> MaskV;
5485 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
5486 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00005487 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005488 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
5489 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
5490 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005491
Nate Begemanb9a47b82009-02-23 08:49:38 +00005492 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
5493 // source words for the shuffle, to aid later transformations.
5494 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00005495 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00005496 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005497 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00005498 if (idx != (int)i)
5499 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005500 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00005501 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005502 AllWordsInNewV = false;
5503 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00005504 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00005505
Nate Begemanb9a47b82009-02-23 08:49:38 +00005506 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
5507 if (AllWordsInNewV) {
5508 for (int i = 0; i != 8; ++i) {
5509 int idx = MaskVals[i];
5510 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005511 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005512 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005513 if ((idx != i) && idx < 4)
5514 pshufhw = false;
5515 if ((idx != i) && idx > 3)
5516 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00005517 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00005518 V1 = NewV;
5519 V2Used = false;
5520 BestLoQuad = 0;
5521 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005522 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005523
Nate Begemanb9a47b82009-02-23 08:49:38 +00005524 // If we've eliminated the use of V2, and the new mask is a pshuflw or
5525 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00005526 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005527 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
5528 unsigned TargetMask = 0;
5529 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00005530 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00005531 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
5532 X86::getShufflePSHUFLWImmediate(NewV.getNode());
5533 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005534 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00005535 }
Evan Cheng14b32e12007-12-11 01:46:18 +00005536 }
Eric Christopherfd179292009-08-27 18:07:15 +00005537
Nate Begemanb9a47b82009-02-23 08:49:38 +00005538 // If we have SSSE3, and all words of the result are from 1 input vector,
5539 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
5540 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005541 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00005542 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005543
Nate Begemanb9a47b82009-02-23 08:49:38 +00005544 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00005545 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00005546 // mask, and elements that come from V1 in the V2 mask, so that the two
5547 // results can be OR'd together.
5548 bool TwoInputs = V1Used && V2Used;
5549 for (unsigned i = 0; i != 8; ++i) {
5550 int EltIdx = MaskVals[i] * 2;
5551 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005552 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5553 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005554 continue;
5555 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005556 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5557 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005558 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005559 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005560 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005561 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005562 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005563 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005564 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00005565
Nate Begemanb9a47b82009-02-23 08:49:38 +00005566 // Calculate the shuffle mask for the second input, shuffle it, and
5567 // OR it with the first shuffled input.
5568 pshufbMask.clear();
5569 for (unsigned i = 0; i != 8; ++i) {
5570 int EltIdx = MaskVals[i] * 2;
5571 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005572 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5573 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005574 continue;
5575 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005576 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
5577 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005578 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005579 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00005580 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005581 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005582 MVT::v16i8, &pshufbMask[0], 16));
5583 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005584 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005585 }
5586
5587 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5588 // and update MaskVals with new element order.
5589 BitVector InOrder(8);
5590 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005591 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005592 for (int i = 0; i != 4; ++i) {
5593 int idx = MaskVals[i];
5594 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005595 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005596 InOrder.set(i);
5597 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005598 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005599 InOrder.set(i);
5600 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005601 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005602 }
5603 }
5604 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005605 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00005606 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005607 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005608
5609 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5610 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
5611 NewV.getOperand(0),
5612 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
5613 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005614 }
Eric Christopherfd179292009-08-27 18:07:15 +00005615
Nate Begemanb9a47b82009-02-23 08:49:38 +00005616 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5617 // and update MaskVals with the new element order.
5618 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005619 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00005620 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005621 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005622 for (unsigned i = 4; i != 8; ++i) {
5623 int idx = MaskVals[i];
5624 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005625 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005626 InOrder.set(i);
5627 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005628 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005629 InOrder.set(i);
5630 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005631 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005632 }
5633 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005634 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00005635 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00005636
5637 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5638 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5639 NewV.getOperand(0),
5640 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
5641 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005642 }
Eric Christopherfd179292009-08-27 18:07:15 +00005643
Nate Begemanb9a47b82009-02-23 08:49:38 +00005644 // In case BestHi & BestLo were both -1, which means each quadword has a word
5645 // from each of the four input quadwords, calculate the InOrder bitvector now
5646 // before falling through to the insert/extract cleanup.
5647 if (BestLoQuad == -1 && BestHiQuad == -1) {
5648 NewV = V1;
5649 for (int i = 0; i != 8; ++i)
5650 if (MaskVals[i] < 0 || MaskVals[i] == i)
5651 InOrder.set(i);
5652 }
Eric Christopherfd179292009-08-27 18:07:15 +00005653
Nate Begemanb9a47b82009-02-23 08:49:38 +00005654 // The other elements are put in the right place using pextrw and pinsrw.
5655 for (unsigned i = 0; i != 8; ++i) {
5656 if (InOrder[i])
5657 continue;
5658 int EltIdx = MaskVals[i];
5659 if (EltIdx < 0)
5660 continue;
5661 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00005662 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005663 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00005664 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005665 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00005666 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005667 DAG.getIntPtrConstant(i));
5668 }
5669 return NewV;
5670}
5671
5672// v16i8 shuffles - Prefer shuffles in the following order:
5673// 1. [ssse3] 1 x pshufb
5674// 2. [ssse3] 2 x pshufb + 1 x por
5675// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
5676static
Nate Begeman9008ca62009-04-27 18:41:29 +00005677SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00005678 SelectionDAG &DAG,
5679 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005680 SDValue V1 = SVOp->getOperand(0);
5681 SDValue V2 = SVOp->getOperand(1);
5682 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00005683 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00005684 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00005685
Nate Begemanb9a47b82009-02-23 08:49:38 +00005686 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00005687 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00005688 // present, fall back to case 3.
5689 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
5690 bool V1Only = true;
5691 bool V2Only = true;
5692 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005693 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00005694 if (EltIdx < 0)
5695 continue;
5696 if (EltIdx < 16)
5697 V2Only = false;
5698 else
5699 V1Only = false;
5700 }
Eric Christopherfd179292009-08-27 18:07:15 +00005701
Nate Begemanb9a47b82009-02-23 08:49:38 +00005702 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
5703 if (TLI.getSubtarget()->hasSSSE3()) {
5704 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00005705
Nate Begemanb9a47b82009-02-23 08:49:38 +00005706 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00005707 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005708 //
5709 // Otherwise, we have elements from both input vectors, and must zero out
5710 // elements that come from V2 in the first mask, and V1 in the second mask
5711 // so that we can OR them together.
5712 bool TwoInputs = !(V1Only || V2Only);
5713 for (unsigned i = 0; i != 16; ++i) {
5714 int EltIdx = MaskVals[i];
5715 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005716 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005717 continue;
5718 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005719 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005720 }
5721 // If all the elements are from V2, assign it to V1 and return after
5722 // building the first pshufb.
5723 if (V2Only)
5724 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00005725 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00005726 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005727 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005728 if (!TwoInputs)
5729 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00005730
Nate Begemanb9a47b82009-02-23 08:49:38 +00005731 // Calculate the shuffle mask for the second input, shuffle it, and
5732 // OR it with the first shuffled input.
5733 pshufbMask.clear();
5734 for (unsigned i = 0; i != 16; ++i) {
5735 int EltIdx = MaskVals[i];
5736 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005737 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005738 continue;
5739 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005740 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005741 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005742 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00005743 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005744 MVT::v16i8, &pshufbMask[0], 16));
5745 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005746 }
Eric Christopherfd179292009-08-27 18:07:15 +00005747
Nate Begemanb9a47b82009-02-23 08:49:38 +00005748 // No SSSE3 - Calculate in place words and then fix all out of place words
5749 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
5750 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005751 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5752 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005753 SDValue NewV = V2Only ? V2 : V1;
5754 for (int i = 0; i != 8; ++i) {
5755 int Elt0 = MaskVals[i*2];
5756 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00005757
Nate Begemanb9a47b82009-02-23 08:49:38 +00005758 // This word of the result is all undef, skip it.
5759 if (Elt0 < 0 && Elt1 < 0)
5760 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005761
Nate Begemanb9a47b82009-02-23 08:49:38 +00005762 // This word of the result is already in the correct place, skip it.
5763 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5764 continue;
5765 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
5766 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00005767
Nate Begemanb9a47b82009-02-23 08:49:38 +00005768 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5769 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5770 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00005771
5772 // If Elt0 and Elt1 are defined, are consecutive, and can be load
5773 // using a single extract together, load it and store it.
5774 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005775 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005776 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00005777 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00005778 DAG.getIntPtrConstant(i));
5779 continue;
5780 }
5781
Nate Begemanb9a47b82009-02-23 08:49:38 +00005782 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00005783 // source byte is not also odd, shift the extracted word left 8 bits
5784 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00005785 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005786 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005787 DAG.getIntPtrConstant(Elt1 / 2));
5788 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005789 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Owen Anderson95771af2011-02-25 21:41:48 +00005790 DAG.getConstant(8,
5791 TLI.getShiftAmountTy(InsElt.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005792 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005793 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5794 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00005795 }
5796 // If Elt0 is defined, extract it from the appropriate source. If the
5797 // source byte is not also even, shift the extracted word right 8 bits. If
5798 // Elt1 was also defined, OR the extracted values together before
5799 // inserting them in the result.
5800 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005801 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005802 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5803 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005804 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Owen Anderson95771af2011-02-25 21:41:48 +00005805 DAG.getConstant(8,
5806 TLI.getShiftAmountTy(InsElt0.getValueType())));
Mon P Wang6b3ef692009-03-11 18:47:57 +00005807 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005808 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5809 DAG.getConstant(0x00FF, MVT::i16));
5810 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00005811 : InsElt0;
5812 }
Owen Anderson825b72b2009-08-11 20:47:22 +00005813 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00005814 DAG.getIntPtrConstant(i));
5815 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005816 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00005817}
5818
Evan Cheng7a831ce2007-12-15 03:00:47 +00005819/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005820/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00005821/// done when every pair / quad of shuffle mask elements point to elements in
5822/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005823/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00005824static
Nate Begeman9008ca62009-04-27 18:41:29 +00005825SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005826 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00005827 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00005828 SDValue V1 = SVOp->getOperand(0);
5829 SDValue V2 = SVOp->getOperand(1);
5830 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00005831 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00005832 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00005833 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005834 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00005835 case MVT::v4f32: NewVT = MVT::v2f64; break;
5836 case MVT::v4i32: NewVT = MVT::v2i64; break;
5837 case MVT::v8i16: NewVT = MVT::v4i32; break;
5838 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00005839 }
5840
Nate Begeman9008ca62009-04-27 18:41:29 +00005841 int Scale = NumElems / NewWidth;
5842 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00005843 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005844 int StartIdx = -1;
5845 for (int j = 0; j < Scale; ++j) {
5846 int EltIdx = SVOp->getMaskElt(i+j);
5847 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00005848 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00005849 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00005850 StartIdx = EltIdx - (EltIdx % Scale);
5851 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00005852 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005853 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005854 if (StartIdx == -1)
5855 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00005856 else
Nate Begeman9008ca62009-04-27 18:41:29 +00005857 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005858 }
5859
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005860 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
5861 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005862 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00005863}
5864
Evan Chengd880b972008-05-09 21:53:03 +00005865/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00005866///
Owen Andersone50ed302009-08-10 22:56:29 +00005867static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00005868 SDValue SrcOp, SelectionDAG &DAG,
5869 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005870 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005871 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00005872 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00005873 LD = dyn_cast<LoadSDNode>(SrcOp);
5874 if (!LD) {
5875 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
5876 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00005877 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00005878 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00005879 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005880 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00005881 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005882 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00005883 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005884 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005885 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5886 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5887 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00005888 SrcOp.getOperand(0)
5889 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005890 }
5891 }
5892 }
5893
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005894 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00005895 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005896 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00005897 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00005898}
5899
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00005900/// areShuffleHalvesWithinDisjointLanes - Check whether each half of a vector
5901/// shuffle node referes to only one lane in the sources.
5902static bool areShuffleHalvesWithinDisjointLanes(ShuffleVectorSDNode *SVOp) {
5903 EVT VT = SVOp->getValueType(0);
5904 int NumElems = VT.getVectorNumElements();
5905 int HalfSize = NumElems/2;
5906 SmallVector<int, 16> M;
5907 SVOp->getMask(M);
5908 bool MatchA = false, MatchB = false;
5909
5910 for (int l = 0; l < NumElems*2; l += HalfSize) {
5911 if (isUndefOrInRange(M, 0, HalfSize, l, l+HalfSize)) {
5912 MatchA = true;
5913 break;
5914 }
5915 }
5916
5917 for (int l = 0; l < NumElems*2; l += HalfSize) {
5918 if (isUndefOrInRange(M, HalfSize, HalfSize, l, l+HalfSize)) {
5919 MatchB = true;
5920 break;
5921 }
5922 }
5923
5924 return MatchA && MatchB;
5925}
5926
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005927/// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
5928/// which could not be matched by any known target speficic shuffle
5929static SDValue
5930LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Bruno Cardoso Lopes3b865982011-08-16 18:21:54 +00005931 if (areShuffleHalvesWithinDisjointLanes(SVOp)) {
5932 // If each half of a vector shuffle node referes to only one lane in the
5933 // source vectors, extract each used 128-bit lane and shuffle them using
5934 // 128-bit shuffles. Then, concatenate the results. Otherwise leave
5935 // the work to the legalizer.
5936 DebugLoc dl = SVOp->getDebugLoc();
5937 EVT VT = SVOp->getValueType(0);
5938 int NumElems = VT.getVectorNumElements();
5939 int HalfSize = NumElems/2;
5940
5941 // Extract the reference for each half
5942 int FstVecExtractIdx = 0, SndVecExtractIdx = 0;
5943 int FstVecOpNum = 0, SndVecOpNum = 0;
5944 for (int i = 0; i < HalfSize; ++i) {
5945 int Elt = SVOp->getMaskElt(i);
5946 if (SVOp->getMaskElt(i) < 0)
5947 continue;
5948 FstVecOpNum = Elt/NumElems;
5949 FstVecExtractIdx = Elt % NumElems < HalfSize ? 0 : HalfSize;
5950 break;
5951 }
5952 for (int i = HalfSize; i < NumElems; ++i) {
5953 int Elt = SVOp->getMaskElt(i);
5954 if (SVOp->getMaskElt(i) < 0)
5955 continue;
5956 SndVecOpNum = Elt/NumElems;
5957 SndVecExtractIdx = Elt % NumElems < HalfSize ? 0 : HalfSize;
5958 break;
5959 }
5960
5961 // Extract the subvectors
5962 SDValue V1 = Extract128BitVector(SVOp->getOperand(FstVecOpNum),
5963 DAG.getConstant(FstVecExtractIdx, MVT::i32), DAG, dl);
5964 SDValue V2 = Extract128BitVector(SVOp->getOperand(SndVecOpNum),
5965 DAG.getConstant(SndVecExtractIdx, MVT::i32), DAG, dl);
5966
5967 // Generate 128-bit shuffles
5968 SmallVector<int, 16> MaskV1, MaskV2;
5969 for (int i = 0; i < HalfSize; ++i) {
5970 int Elt = SVOp->getMaskElt(i);
5971 MaskV1.push_back(Elt < 0 ? Elt : Elt % HalfSize);
5972 }
5973 for (int i = HalfSize; i < NumElems; ++i) {
5974 int Elt = SVOp->getMaskElt(i);
5975 MaskV2.push_back(Elt < 0 ? Elt : Elt % HalfSize);
5976 }
5977
5978 EVT NVT = V1.getValueType();
5979 V1 = DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &MaskV1[0]);
5980 V2 = DAG.getVectorShuffle(NVT, dl, V2, DAG.getUNDEF(NVT), &MaskV2[0]);
5981
5982 // Concatenate the result back
5983 SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), V1,
5984 DAG.getConstant(0, MVT::i32), DAG, dl);
5985 return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5986 DAG, dl);
5987 }
5988
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00005989 return SDValue();
5990}
5991
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005992/// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
5993/// 4 elements, and match them with several different shuffle types.
Dan Gohman475871a2008-07-27 21:46:04 +00005994static SDValue
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00005995LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005996 SDValue V1 = SVOp->getOperand(0);
5997 SDValue V2 = SVOp->getOperand(1);
5998 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00005999 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00006000
Bruno Cardoso Lopes589b8972011-07-22 00:14:53 +00006001 assert(VT.getSizeInBits() == 128 && "Unsupported vector size");
6002
Evan Chengace3c172008-07-22 21:13:36 +00006003 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00006004 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00006005 SmallVector<int, 8> Mask1(4U, -1);
6006 SmallVector<int, 8> PermMask;
6007 SVOp->getMask(PermMask);
6008
Evan Chengace3c172008-07-22 21:13:36 +00006009 unsigned NumHi = 0;
6010 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00006011 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006012 int Idx = PermMask[i];
6013 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006014 Locs[i] = std::make_pair(-1, -1);
6015 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00006016 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6017 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006018 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00006019 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006020 NumLo++;
6021 } else {
6022 Locs[i] = std::make_pair(1, NumHi);
6023 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00006024 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006025 NumHi++;
6026 }
6027 }
6028 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006029
Evan Chengace3c172008-07-22 21:13:36 +00006030 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006031 // If no more than two elements come from either vector. This can be
6032 // implemented with two shuffles. First shuffle gather the elements.
6033 // The second shuffle, which takes the first shuffle as both of its
6034 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00006035 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006036
Nate Begeman9008ca62009-04-27 18:41:29 +00006037 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00006038
Evan Chengace3c172008-07-22 21:13:36 +00006039 for (unsigned i = 0; i != 4; ++i) {
6040 if (Locs[i].first == -1)
6041 continue;
6042 else {
6043 unsigned Idx = (i < 2) ? 0 : 4;
6044 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006045 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006046 }
6047 }
6048
Nate Begeman9008ca62009-04-27 18:41:29 +00006049 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006050 } else if (NumLo == 3 || NumHi == 3) {
6051 // Otherwise, we must have three elements from one vector, call it X, and
6052 // one element from the other, call it Y. First, use a shufps to build an
6053 // intermediate vector with the one element from Y and the element from X
6054 // that will be in the same half in the final destination (the indexes don't
6055 // matter). Then, use a shufps to build the final vector, taking the half
6056 // containing the element from Y from the intermediate, and the other half
6057 // from X.
6058 if (NumHi == 3) {
6059 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00006060 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006061 std::swap(V1, V2);
6062 }
6063
6064 // Find the element from V2.
6065 unsigned HiIndex;
6066 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006067 int Val = PermMask[HiIndex];
6068 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006069 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006070 if (Val >= 4)
6071 break;
6072 }
6073
Nate Begeman9008ca62009-04-27 18:41:29 +00006074 Mask1[0] = PermMask[HiIndex];
6075 Mask1[1] = -1;
6076 Mask1[2] = PermMask[HiIndex^1];
6077 Mask1[3] = -1;
6078 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006079
6080 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006081 Mask1[0] = PermMask[0];
6082 Mask1[1] = PermMask[1];
6083 Mask1[2] = HiIndex & 1 ? 6 : 4;
6084 Mask1[3] = HiIndex & 1 ? 4 : 6;
6085 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006086 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00006087 Mask1[0] = HiIndex & 1 ? 2 : 0;
6088 Mask1[1] = HiIndex & 1 ? 0 : 2;
6089 Mask1[2] = PermMask[2];
6090 Mask1[3] = PermMask[3];
6091 if (Mask1[2] >= 0)
6092 Mask1[2] += 4;
6093 if (Mask1[3] >= 0)
6094 Mask1[3] += 4;
6095 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00006096 }
Evan Chengace3c172008-07-22 21:13:36 +00006097 }
6098
6099 // Break it into (shuffle shuffle_hi, shuffle_lo).
6100 Locs.clear();
David Greenec4db4e52011-02-28 19:06:56 +00006101 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00006102 SmallVector<int,8> LoMask(4U, -1);
6103 SmallVector<int,8> HiMask(4U, -1);
6104
6105 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00006106 unsigned MaskIdx = 0;
6107 unsigned LoIdx = 0;
6108 unsigned HiIdx = 2;
6109 for (unsigned i = 0; i != 4; ++i) {
6110 if (i == 2) {
6111 MaskPtr = &HiMask;
6112 MaskIdx = 1;
6113 LoIdx = 0;
6114 HiIdx = 2;
6115 }
Nate Begeman9008ca62009-04-27 18:41:29 +00006116 int Idx = PermMask[i];
6117 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00006118 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00006119 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00006120 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00006121 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006122 LoIdx++;
6123 } else {
6124 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00006125 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00006126 HiIdx++;
6127 }
6128 }
6129
Nate Begeman9008ca62009-04-27 18:41:29 +00006130 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6131 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
6132 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00006133 for (unsigned i = 0; i != 4; ++i) {
6134 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006135 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00006136 } else {
6137 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00006138 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00006139 }
6140 }
Nate Begeman9008ca62009-04-27 18:41:29 +00006141 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00006142}
6143
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006144static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006145 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006146 V = V.getOperand(0);
6147 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6148 V = V.getOperand(0);
6149 if (MayFoldLoad(V))
6150 return true;
6151 return false;
6152}
6153
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006154// FIXME: the version above should always be used. Since there's
6155// a bug where several vector shuffles can't be folded because the
6156// DAG is not updated during lowering and a node claims to have two
6157// uses while it only has one, use this version, and let isel match
6158// another instruction if the load really happens to have more than
6159// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00006160// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006161static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006162 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006163 V = V.getOperand(0);
6164 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6165 V = V.getOperand(0);
6166 if (ISD::isNormalLoad(V.getNode()))
6167 return true;
6168 return false;
6169}
6170
6171/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
6172/// a vector extract, and if both can be later optimized into a single load.
6173/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
6174/// here because otherwise a target specific shuffle node is going to be
6175/// emitted for this shuffle, and the optimization not done.
6176/// FIXME: This is probably not the best approach, but fix the problem
6177/// until the right path is decided.
6178static
6179bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
6180 const TargetLowering &TLI) {
6181 EVT VT = V.getValueType();
6182 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
6183
6184 // Be sure that the vector shuffle is present in a pattern like this:
6185 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
6186 if (!V.hasOneUse())
6187 return false;
6188
6189 SDNode *N = *V.getNode()->use_begin();
6190 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
6191 return false;
6192
6193 SDValue EltNo = N->getOperand(1);
6194 if (!isa<ConstantSDNode>(EltNo))
6195 return false;
6196
6197 // If the bit convert changed the number of elements, it is unsafe
6198 // to examine the mask.
6199 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006200 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006201 EVT SrcVT = V.getOperand(0).getValueType();
6202 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
6203 return false;
6204 V = V.getOperand(0);
6205 HasShuffleIntoBitcast = true;
6206 }
6207
6208 // Select the input vector, guarding against out of range extract vector.
6209 unsigned NumElems = VT.getVectorNumElements();
6210 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
6211 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
6212 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
6213
6214 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006215 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006216 V = V.getOperand(0);
6217
6218 if (ISD::isNormalLoad(V.getNode())) {
6219 // Is the original load suitable?
6220 LoadSDNode *LN0 = cast<LoadSDNode>(V);
6221
6222 // FIXME: avoid the multi-use bug that is preventing lots of
6223 // of foldings to be detected, this is still wrong of course, but
6224 // give the temporary desired behavior, and if it happens that
6225 // the load has real more uses, during isel it will not fold, and
6226 // will generate poor code.
6227 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
6228 return false;
6229
6230 if (!HasShuffleIntoBitcast)
6231 return true;
6232
6233 // If there's a bitcast before the shuffle, check if the load type and
6234 // alignment is valid.
6235 unsigned Align = LN0->getAlignment();
6236 unsigned NewAlign =
6237 TLI.getTargetData()->getABITypeAlignment(
6238 VT.getTypeForEVT(*DAG.getContext()));
6239
6240 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
6241 return false;
6242 }
6243
6244 return true;
6245}
6246
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006247static
Evan Cheng835580f2010-10-07 20:50:20 +00006248SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
6249 EVT VT = Op.getValueType();
6250
6251 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006252 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6253 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00006254 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6255 V1, DAG));
6256}
6257
6258static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006259SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
6260 bool HasSSE2) {
6261 SDValue V1 = Op.getOperand(0);
6262 SDValue V2 = Op.getOperand(1);
6263 EVT VT = Op.getValueType();
6264
6265 assert(VT != MVT::v2i64 && "unsupported shuffle type");
6266
6267 if (HasSSE2 && VT == MVT::v2f64)
6268 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
6269
Evan Cheng0899f5c2011-08-31 02:05:24 +00006270 // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
6271 return DAG.getNode(ISD::BITCAST, dl, VT,
6272 getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
6273 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
6274 DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006275}
6276
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006277static
6278SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
6279 SDValue V1 = Op.getOperand(0);
6280 SDValue V2 = Op.getOperand(1);
6281 EVT VT = Op.getValueType();
6282
6283 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
6284 "unsupported shuffle type");
6285
6286 if (V2.getOpcode() == ISD::UNDEF)
6287 V2 = V1;
6288
6289 // v4i32 or v4f32
6290 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
6291}
6292
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006293static inline unsigned getSHUFPOpcode(EVT VT) {
6294 switch(VT.getSimpleVT().SimpleTy) {
6295 case MVT::v8i32: // Use fp unit for int unpack.
6296 case MVT::v8f32:
6297 case MVT::v4i32: // Use fp unit for int unpack.
6298 case MVT::v4f32: return X86ISD::SHUFPS;
6299 case MVT::v4i64: // Use fp unit for int unpack.
6300 case MVT::v4f64:
6301 case MVT::v2i64: // Use fp unit for int unpack.
6302 case MVT::v2f64: return X86ISD::SHUFPD;
6303 default:
6304 llvm_unreachable("Unknown type for shufp*");
6305 }
6306 return 0;
6307}
6308
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006309static
6310SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
6311 SDValue V1 = Op.getOperand(0);
6312 SDValue V2 = Op.getOperand(1);
6313 EVT VT = Op.getValueType();
6314 unsigned NumElems = VT.getVectorNumElements();
6315
6316 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
6317 // operand of these instructions is only memory, so check if there's a
6318 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
6319 // same masks.
6320 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006321
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00006322 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006323 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006324 CanFoldLoad = true;
6325
6326 // When V1 is a load, it can be folded later into a store in isel, example:
6327 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
6328 // turns into:
6329 // (MOVLPSmr addr:$src1, VR128:$src2)
6330 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00006331 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006332 CanFoldLoad = true;
6333
Eric Christopher893a8822011-02-20 05:04:42 +00006334 // Both of them can't be memory operations though.
6335 if (MayFoldVectorLoad(V1) && MayFoldVectorLoad(V2))
6336 CanFoldLoad = false;
Owen Anderson95771af2011-02-25 21:41:48 +00006337
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006338 if (CanFoldLoad) {
6339 if (HasSSE2 && NumElems == 2)
6340 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
6341
6342 if (NumElems == 4)
6343 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
6344 }
6345
6346 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6347 // movl and movlp will both match v2i64, but v2i64 is never matched by
6348 // movl earlier because we make it strict to avoid messing with the movlp load
6349 // folding logic (see the code above getMOVLP call). Match it here then,
6350 // this is horrible, but will stay like this until we move all shuffle
6351 // matching to x86 specific nodes. Note that for the 1st condition all
6352 // types are matched with movsd.
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00006353 if (HasSSE2) {
Bruno Cardoso Lopes5ca0d142011-09-14 02:36:14 +00006354 // FIXME: isMOVLMask should be checked and matched before getMOVLP,
6355 // as to remove this logic from here, as much as possible
6356 if (NumElems == 2 || !X86::isMOVLMask(SVOp))
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00006357 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006358 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
Bruno Cardoso Lopes57d6a5e2011-08-31 03:04:20 +00006359 }
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006360
6361 assert(VT != MVT::v4i32 && "unsupported shuffle type");
6362
6363 // Invert the operand order and use SHUFPS to match it.
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006364 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V2, V1,
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00006365 X86::getShuffleSHUFImmediate(SVOp), DAG);
6366}
6367
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006368static inline unsigned getUNPCKLOpcode(EVT VT) {
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006369 switch(VT.getSimpleVT().SimpleTy) {
6370 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
6371 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006372 case MVT::v4f32: return X86ISD::UNPCKLPS;
6373 case MVT::v2f64: return X86ISD::UNPCKLPD;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006374 case MVT::v8i32: // Use fp unit for int unpack.
David Greenec4db4e52011-02-28 19:06:56 +00006375 case MVT::v8f32: return X86ISD::VUNPCKLPSY;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006376 case MVT::v4i64: // Use fp unit for int unpack.
David Greenec4db4e52011-02-28 19:06:56 +00006377 case MVT::v4f64: return X86ISD::VUNPCKLPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006378 case MVT::v16i8: return X86ISD::PUNPCKLBW;
6379 case MVT::v8i16: return X86ISD::PUNPCKLWD;
6380 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00006381 llvm_unreachable("Unknown type for unpckl");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006382 }
6383 return 0;
6384}
6385
6386static inline unsigned getUNPCKHOpcode(EVT VT) {
6387 switch(VT.getSimpleVT().SimpleTy) {
6388 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
6389 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
6390 case MVT::v4f32: return X86ISD::UNPCKHPS;
6391 case MVT::v2f64: return X86ISD::UNPCKHPD;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006392 case MVT::v8i32: // Use fp unit for int unpack.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00006393 case MVT::v8f32: return X86ISD::VUNPCKHPSY;
Bruno Cardoso Lopescde4a1a2011-08-09 22:18:37 +00006394 case MVT::v4i64: // Use fp unit for int unpack.
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +00006395 case MVT::v4f64: return X86ISD::VUNPCKHPDY;
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006396 case MVT::v16i8: return X86ISD::PUNPCKHBW;
6397 case MVT::v8i16: return X86ISD::PUNPCKHWD;
6398 default:
Eric Christopherdd6e40a2011-02-19 03:19:09 +00006399 llvm_unreachable("Unknown type for unpckh");
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00006400 }
6401 return 0;
6402}
6403
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006404static inline unsigned getVPERMILOpcode(EVT VT) {
6405 switch(VT.getSimpleVT().SimpleTy) {
6406 case MVT::v4i32:
6407 case MVT::v4f32: return X86ISD::VPERMILPS;
6408 case MVT::v2i64:
6409 case MVT::v2f64: return X86ISD::VPERMILPD;
6410 case MVT::v8i32:
6411 case MVT::v8f32: return X86ISD::VPERMILPSY;
6412 case MVT::v4i64:
6413 case MVT::v4f64: return X86ISD::VPERMILPDY;
6414 default:
6415 llvm_unreachable("Unknown type for vpermil");
6416 }
6417 return 0;
6418}
6419
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006420/// isVectorBroadcast - Check if the node chain is suitable to be xformed to
6421/// a vbroadcast node. The nodes are suitable whenever we can fold a load coming
6422/// from a 32 or 64 bit scalar. Update Op to the desired load to be folded.
6423static bool isVectorBroadcast(SDValue &Op) {
6424 EVT VT = Op.getValueType();
6425 bool Is256 = VT.getSizeInBits() == 256;
6426
6427 assert((VT.getSizeInBits() == 128 || Is256) &&
6428 "Unsupported type for vbroadcast node");
6429
6430 SDValue V = Op;
6431 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6432 V = V.getOperand(0);
6433
6434 if (Is256 && !(V.hasOneUse() &&
6435 V.getOpcode() == ISD::INSERT_SUBVECTOR &&
6436 V.getOperand(0).getOpcode() == ISD::UNDEF))
6437 return false;
6438
6439 if (Is256)
6440 V = V.getOperand(1);
Bruno Cardoso Lopesa39ccdb2011-09-01 18:15:06 +00006441
6442 if (!V.hasOneUse())
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006443 return false;
6444
6445 // Check the source scalar_to_vector type. 256-bit broadcasts are
6446 // supported for 32/64-bit sizes, while 128-bit ones are only supported
6447 // for 32-bit scalars.
Bruno Cardoso Lopesa39ccdb2011-09-01 18:15:06 +00006448 if (V.getOpcode() != ISD::SCALAR_TO_VECTOR)
6449 return false;
6450
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006451 unsigned ScalarSize = V.getOperand(0).getValueType().getSizeInBits();
6452 if (ScalarSize != 32 && ScalarSize != 64)
6453 return false;
6454 if (!Is256 && ScalarSize == 64)
6455 return false;
6456
6457 V = V.getOperand(0);
6458 if (!MayFoldLoad(V))
6459 return false;
6460
6461 // Return the load node
6462 Op = V;
6463 return true;
6464}
6465
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006466static
6467SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006468 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006469 const X86Subtarget *Subtarget) {
6470 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6471 EVT VT = Op.getValueType();
6472 DebugLoc dl = Op.getDebugLoc();
6473 SDValue V1 = Op.getOperand(0);
6474 SDValue V2 = Op.getOperand(1);
6475
6476 if (isZeroShuffle(SVOp))
6477 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
6478
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006479 // Handle splat operations
6480 if (SVOp->isSplat()) {
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006481 unsigned NumElem = VT.getVectorNumElements();
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00006482 int Size = VT.getSizeInBits();
Bruno Cardoso Lopes9283b662011-07-21 01:55:42 +00006483 // Special case, this is the only place now where it's allowed to return
6484 // a vector_shuffle operation without using a target specific node, because
6485 // *hopefully* it will be optimized away by the dag combiner. FIXME: should
6486 // this be moved to DAGCombine instead?
6487 if (NumElem <= 4 && CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006488 return Op;
6489
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +00006490 // Use vbroadcast whenever the splat comes from a foldable load
6491 if (Subtarget->hasAVX() && isVectorBroadcast(V1))
6492 return DAG.getNode(X86ISD::VBROADCAST, dl, VT, V1);
6493
Bruno Cardoso Lopes6a32adc2011-07-25 23:05:25 +00006494 // Handle splats by matching through known shuffle masks
Bruno Cardoso Lopesd8b7dd52011-08-23 22:06:37 +00006495 if ((Size == 128 && NumElem <= 4) ||
6496 (Size == 256 && NumElem < 8))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006497 return SDValue();
6498
Bruno Cardoso Lopes8a5b2622011-08-17 02:29:13 +00006499 // All remaning splats are promoted to target supported vector shuffles.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006500 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006501 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006502
6503 // If the shuffle can be profitably rewritten as a narrower shuffle, then
6504 // do it!
6505 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
6506 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6507 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006508 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006509 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
6510 // FIXME: Figure out a cleaner way to do this.
6511 // Try to make use of movq to zero out the top part.
6512 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
6513 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6514 if (NewOp.getNode()) {
6515 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
6516 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
6517 DAG, Subtarget, dl);
6518 }
6519 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
6520 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6521 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
6522 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
6523 DAG, Subtarget, dl);
6524 }
6525 }
6526 return SDValue();
6527}
6528
Dan Gohman475871a2008-07-27 21:46:04 +00006529SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006530X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00006531 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00006532 SDValue V1 = Op.getOperand(0);
6533 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00006534 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006535 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00006536 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006537 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006538 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
6539 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00006540 bool V1IsSplat = false;
6541 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006542 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006543 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006544 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006545 MachineFunction &MF = DAG.getMachineFunction();
6546 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006547
Dale Johannesen0488fb62010-09-30 23:57:10 +00006548 // Shuffle operations on MMX not supported.
6549 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00006550 return Op;
6551
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006552 // Vector shuffle lowering takes 3 steps:
6553 //
6554 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
6555 // narrowing and commutation of operands should be handled.
6556 // 2) Matching of shuffles with known shuffle masks to x86 target specific
6557 // shuffle nodes.
6558 // 3) Rewriting of unmatched masks into new generic shuffle operations,
6559 // so the shuffle can be broken into other shuffles and the legalizer can
6560 // try the lowering again.
6561 //
6562 // The general ideia is that no vector_shuffle operation should be left to
6563 // be matched during isel, all of them must be converted to a target specific
6564 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00006565
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006566 // Normalize the input vectors. Here splats, zeroed vectors, profitable
6567 // narrowing and commutation of operands should be handled. The actual code
6568 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006569 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00006570 if (NewOp.getNode())
6571 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00006572
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006573 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
6574 // unpckh_undef). Only use pshufd if speed is more important than size.
6575 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006576 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006577 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006578 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00006579
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006580 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00006581 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00006582 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006583
Dale Johannesen0488fb62010-09-30 23:57:10 +00006584 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00006585 return getMOVHighToLow(Op, dl, DAG);
6586
6587 // Use to match splats
6588 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
6589 (VT == MVT::v2f64 || VT == MVT::v2i64))
6590 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
6591
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006592 if (X86::isPSHUFDMask(SVOp)) {
6593 // The actual implementation will match the mask in the if above and then
6594 // during isel it can match several different instructions, not only pshufd
6595 // as its name says, sad but true, emulate the behavior for now...
6596 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
6597 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
6598
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006599 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6600
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006601 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006602 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
6603
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006604 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V1,
6605 TargetMask, DAG);
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00006606 }
Eric Christopherfd179292009-08-27 18:07:15 +00006607
Evan Chengf26ffe92008-05-29 08:22:04 +00006608 // Check if this can be converted into a logical shift.
6609 bool isLeft = false;
6610 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00006611 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00006612 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00006613 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00006614 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006615 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00006616 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006617 EVT EltVT = VT.getVectorElementType();
6618 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006619 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006620 }
Eric Christopherfd179292009-08-27 18:07:15 +00006621
Nate Begeman9008ca62009-04-27 18:41:29 +00006622 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00006623 if (V1IsUndef)
6624 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00006625 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00006626 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00006627 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006628 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006629 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6630
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00006631 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00006632 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6633 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00006634 }
Eric Christopherfd179292009-08-27 18:07:15 +00006635
Nate Begeman9008ca62009-04-27 18:41:29 +00006636 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00006637 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
6638 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00006639
Dale Johannesen0488fb62010-09-30 23:57:10 +00006640 if (X86::isMOVHLPSMask(SVOp))
6641 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00006642
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006643 if (X86::isMOVSHDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006644 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00006645
Bruno Cardoso Lopes9123c6f2011-07-26 02:39:28 +00006646 if (X86::isMOVSLDUPMask(SVOp, Subtarget))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006647 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00006648
Dale Johannesen0488fb62010-09-30 23:57:10 +00006649 if (X86::isMOVLPMask(SVOp))
6650 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006651
Nate Begeman9008ca62009-04-27 18:41:29 +00006652 if (ShouldXformToMOVHLPS(SVOp) ||
6653 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
6654 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006655
Evan Chengf26ffe92008-05-29 08:22:04 +00006656 if (isShift) {
6657 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00006658 EVT EltVT = VT.getVectorElementType();
6659 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00006660 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00006661 }
Eric Christopherfd179292009-08-27 18:07:15 +00006662
Evan Cheng9eca5e82006-10-25 21:49:50 +00006663 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00006664 // FIXME: This should also accept a bitcast of a splat? Be careful, not
6665 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00006666 V1IsSplat = isSplatVector(V1.getNode());
6667 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00006668
Chris Lattner8a594482007-11-25 00:24:49 +00006669 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00006670 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00006671 Op = CommuteVectorShuffle(SVOp, DAG);
6672 SVOp = cast<ShuffleVectorSDNode>(Op);
6673 V1 = SVOp->getOperand(0);
6674 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00006675 std::swap(V1IsSplat, V2IsSplat);
6676 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006677 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00006678 }
6679
Nate Begeman9008ca62009-04-27 18:41:29 +00006680 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
6681 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00006682 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00006683 return V1;
6684 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
6685 // the instruction selector will not match, so get a canonical MOVL with
6686 // swapped operands to undo the commute.
6687 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00006688 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006689
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006690 if (X86::isUNPCKLMask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006691 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006692
6693 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006694 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00006695
Evan Cheng9bbbb982006-10-25 20:48:19 +00006696 if (V2IsSplat) {
6697 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00006698 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00006699 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00006700 SDValue NewMask = NormalizeMask(SVOp, DAG);
6701 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
6702 if (NSVOp != SVOp) {
6703 if (X86::isUNPCKLMask(NSVOp, true)) {
6704 return NewMask;
6705 } else if (X86::isUNPCKHMask(NSVOp, true)) {
6706 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006707 }
6708 }
6709 }
6710
Evan Cheng9eca5e82006-10-25 21:49:50 +00006711 if (Commuted) {
6712 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00006713 // FIXME: this seems wrong.
6714 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
6715 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006716
6717 if (X86::isUNPCKLMask(NewSVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006718 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00006719
6720 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00006721 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00006722 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006723
Nate Begeman9008ca62009-04-27 18:41:29 +00006724 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00006725 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00006726 return CommuteVectorShuffle(SVOp, DAG);
6727
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00006728 // The checks below are all present in isShuffleMaskLegal, but they are
6729 // inlined here right now to enable us to directly emit target specific
6730 // nodes, and remove one by one until they don't return Op anymore.
6731 SmallVector<int, 16> M;
6732 SVOp->getMask(M);
6733
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00006734 if (isPALIGNRMask(M, VT, HasSSSE3))
6735 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
6736 X86::getShufflePALIGNRImmediate(SVOp),
6737 DAG);
6738
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006739 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6740 SVOp->getSplatIndex() == 0 && V2IsUndef) {
Bruno Cardoso Lopes6683efb2011-07-22 00:15:07 +00006741 if (VT == MVT::v2f64)
6742 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00006743 if (VT == MVT::v2i64)
6744 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
6745 }
6746
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00006747 if (isPSHUFHWMask(M, VT))
6748 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
6749 X86::getShufflePSHUFHWImmediate(SVOp),
6750 DAG);
6751
6752 if (isPSHUFLWMask(M, VT))
6753 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
6754 X86::getShufflePSHUFLWImmediate(SVOp),
6755 DAG);
6756
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006757 if (isSHUFPMask(M, VT))
6758 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V2,
6759 X86::getShuffleSHUFImmediate(SVOp), DAG);
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00006760
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006761 if (X86::isUNPCKL_v_undef_Mask(SVOp))
Bruno Cardoso Lopes5f6c4402011-07-26 02:39:25 +00006762 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006763 if (X86::isUNPCKH_v_undef_Mask(SVOp))
Rafael Espindola23e31012011-07-22 18:56:05 +00006764 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00006765
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006766 //===--------------------------------------------------------------------===//
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006767 // Generate target specific nodes for 128 or 256-bit shuffles only
6768 // supported in the AVX instruction set.
6769 //
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006770
Bruno Cardoso Lopes6292ece2011-08-25 21:40:37 +00006771 // Handle VMOVDDUPY permutations
6772 if (isMOVDDUPYMask(SVOp, Subtarget))
6773 return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
6774
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006775 // Handle VPERMILPS* permutations
6776 if (isVPERMILPSMask(M, VT, Subtarget))
6777 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6778 getShuffleVPERMILPSImmediate(SVOp), DAG);
6779
6780 // Handle VPERMILPD* permutations
6781 if (isVPERMILPDMask(M, VT, Subtarget))
6782 return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6783 getShuffleVPERMILPDImmediate(SVOp), DAG);
6784
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +00006785 // Handle VPERM2F128 permutations
6786 if (isVPERM2F128Mask(M, VT, Subtarget))
6787 return getTargetShuffleNode(X86ISD::VPERM2F128, dl, VT, V1, V2,
6788 getShuffleVPERM2F128Immediate(SVOp), DAG);
6789
Bruno Cardoso Lopes07b7f672011-08-25 02:58:26 +00006790 // Handle VSHUFPSY permutations
6791 if (isVSHUFPSYMask(M, VT, Subtarget))
6792 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V2,
6793 getShuffleVSHUFPSYImmediate(SVOp), DAG);
6794
6795 // Handle VSHUFPDY permutations
6796 if (isVSHUFPDYMask(M, VT, Subtarget))
6797 return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V2,
6798 getShuffleVSHUFPDYImmediate(SVOp), DAG);
6799
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +00006800 //===--------------------------------------------------------------------===//
6801 // Since no target specific shuffle was selected for this generic one,
6802 // lower it into other known shuffles. FIXME: this isn't true yet, but
6803 // this is the plan.
6804 //
Bruno Cardoso Lopes65b74e12011-07-21 01:55:47 +00006805
Bruno Cardoso Lopes9b4ad122011-07-27 00:56:37 +00006806 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
6807 if (VT == MVT::v8i16) {
6808 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
6809 if (NewOp.getNode())
6810 return NewOp;
6811 }
6812
6813 if (VT == MVT::v16i8) {
6814 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
6815 if (NewOp.getNode())
6816 return NewOp;
6817 }
6818
6819 // Handle all 128-bit wide vectors with 4 elements, and match them with
6820 // several different shuffle types.
6821 if (NumElems == 4 && VT.getSizeInBits() == 128)
6822 return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
6823
Bruno Cardoso Lopesd0888342011-07-22 00:14:56 +00006824 // Handle general 256-bit shuffles
6825 if (VT.is256BitVector())
6826 return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
6827
Dan Gohman475871a2008-07-27 21:46:04 +00006828 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006829}
6830
Dan Gohman475871a2008-07-27 21:46:04 +00006831SDValue
6832X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00006833 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006834 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006835 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006836
6837 if (Op.getOperand(0).getValueType().getSizeInBits() != 128)
6838 return SDValue();
6839
Duncan Sands83ec4b62008-06-06 12:08:01 +00006840 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006841 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006842 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006843 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006844 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006845 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006846 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00006847 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6848 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
6849 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006850 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6851 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006852 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006853 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00006854 Op.getOperand(0)),
6855 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006856 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006857 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00006858 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00006859 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006860 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00006861 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00006862 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
6863 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006864 // result has a single use which is a store or a bitcast to i32. And in
6865 // the case of a store, it's not worth it if the index is a constant 0,
6866 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00006867 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00006868 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00006869 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00006870 if ((User->getOpcode() != ISD::STORE ||
6871 (isa<ConstantSDNode>(Op.getOperand(1)) &&
6872 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006873 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00006874 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00006875 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00006876 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006877 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00006878 Op.getOperand(0)),
6879 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006880 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00006881 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00006882 // ExtractPS works with constant index.
6883 if (isa<ConstantSDNode>(Op.getOperand(1)))
6884 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00006885 }
Dan Gohman475871a2008-07-27 21:46:04 +00006886 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006887}
6888
6889
Dan Gohman475871a2008-07-27 21:46:04 +00006890SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006891X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6892 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006893 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00006894 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006895
David Greene74a579d2011-02-10 16:57:36 +00006896 SDValue Vec = Op.getOperand(0);
6897 EVT VecVT = Vec.getValueType();
6898
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006899 // If this is a 256-bit vector result, first extract the 128-bit vector and
6900 // then extract the element from the 128-bit vector.
6901 if (VecVT.getSizeInBits() == 256) {
David Greene74a579d2011-02-10 16:57:36 +00006902 DebugLoc dl = Op.getNode()->getDebugLoc();
6903 unsigned NumElems = VecVT.getVectorNumElements();
6904 SDValue Idx = Op.getOperand(1);
David Greene74a579d2011-02-10 16:57:36 +00006905 unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
6906
6907 // Get the 128-bit vector.
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006908 bool Upper = IdxVal >= NumElems/2;
6909 Vec = Extract128BitVector(Vec,
6910 DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32), DAG, dl);
David Greene74a579d2011-02-10 16:57:36 +00006911
David Greene74a579d2011-02-10 16:57:36 +00006912 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006913 Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : Idx);
David Greene74a579d2011-02-10 16:57:36 +00006914 }
6915
6916 assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
6917
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006918 if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
Dan Gohman475871a2008-07-27 21:46:04 +00006919 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006920 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00006921 return Res;
6922 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00006923
Owen Andersone50ed302009-08-10 22:56:29 +00006924 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006925 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006926 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006927 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00006928 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006929 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00006930 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00006931 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6932 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006933 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006934 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00006935 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006936 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00006937 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00006938 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006939 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00006940 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00006941 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00006942 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006943 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006944 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006945 if (Idx == 0)
6946 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00006947
Evan Cheng0db9fe62006-04-25 20:13:52 +00006948 // SHUFPS the element to the lowest double word, then movss.
Jeffrey Yasskina44defe2011-07-27 06:22:51 +00006949 int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006950 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006951 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006952 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006953 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006954 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00006955 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00006956 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
6957 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
6958 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006959 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006960 if (Idx == 0)
6961 return Op;
6962
6963 // UNPCKHPD the element to the lowest double word, then movsd.
6964 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6965 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00006966 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00006967 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00006968 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00006969 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00006970 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00006971 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00006972 }
6973
Dan Gohman475871a2008-07-27 21:46:04 +00006974 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006975}
6976
Dan Gohman475871a2008-07-27 21:46:04 +00006977SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006978X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6979 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006980 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00006981 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006982 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00006983
Dan Gohman475871a2008-07-27 21:46:04 +00006984 SDValue N0 = Op.getOperand(0);
6985 SDValue N1 = Op.getOperand(1);
6986 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00006987
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00006988 if (VT.getSizeInBits() == 256)
6989 return SDValue();
6990
Dan Gohman8a55ce42009-09-23 21:02:20 +00006991 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00006992 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006993 unsigned Opc;
6994 if (VT == MVT::v8i16)
6995 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00006996 else if (VT == MVT::v16i8)
6997 Opc = X86ISD::PINSRB;
6998 else
6999 Opc = X86ISD::PINSRB;
7000
Nate Begeman14d12ca2008-02-11 04:19:36 +00007001 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7002 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007003 if (N1.getValueType() != MVT::i32)
7004 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7005 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007006 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00007007 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00007008 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00007009 // Bits [7:6] of the constant are the source select. This will always be
7010 // zero here. The DAG Combiner may combine an extract_elt index into these
7011 // bits. For example (insert (extract, 3), 2) could be matched by putting
7012 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00007013 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00007014 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00007015 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00007016 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007017 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00007018 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00007019 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00007020 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00007021 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00007022 // PINSR* works with constant index.
7023 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00007024 }
Dan Gohman475871a2008-07-27 21:46:04 +00007025 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007026}
7027
Dan Gohman475871a2008-07-27 21:46:04 +00007028SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007029X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00007030 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00007031 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00007032
David Greene6b381262011-02-09 15:32:06 +00007033 DebugLoc dl = Op.getDebugLoc();
7034 SDValue N0 = Op.getOperand(0);
7035 SDValue N1 = Op.getOperand(1);
7036 SDValue N2 = Op.getOperand(2);
7037
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007038 // If this is a 256-bit vector result, first extract the 128-bit vector,
7039 // insert the element into the extracted half and then place it back.
7040 if (VT.getSizeInBits() == 256) {
David Greene6b381262011-02-09 15:32:06 +00007041 if (!isa<ConstantSDNode>(N2))
7042 return SDValue();
7043
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007044 // Get the desired 128-bit vector half.
David Greene6b381262011-02-09 15:32:06 +00007045 unsigned NumElems = VT.getVectorNumElements();
7046 unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007047 bool Upper = IdxVal >= NumElems/2;
7048 SDValue Ins128Idx = DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32);
7049 SDValue V = Extract128BitVector(N0, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007050
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007051 // Insert the element into the desired half.
7052 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V,
7053 N1, Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : N2);
David Greene6b381262011-02-09 15:32:06 +00007054
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007055 // Insert the changed part back to the 256-bit vector
7056 return Insert128BitVector(N0, V, Ins128Idx, DAG, dl);
David Greene6b381262011-02-09 15:32:06 +00007057 }
7058
Bruno Cardoso Lopes0b0a09f2011-07-29 01:31:02 +00007059 if (Subtarget->hasSSE41() || Subtarget->hasAVX())
Nate Begeman14d12ca2008-02-11 04:19:36 +00007060 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7061
Dan Gohman8a55ce42009-09-23 21:02:20 +00007062 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00007063 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00007064
Dan Gohman8a55ce42009-09-23 21:02:20 +00007065 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00007066 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7067 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00007068 if (N1.getValueType() != MVT::i32)
7069 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7070 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007071 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00007072 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007073 }
Dan Gohman475871a2008-07-27 21:46:04 +00007074 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007075}
7076
Dan Gohman475871a2008-07-27 21:46:04 +00007077SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007078X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007079 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007080 DebugLoc dl = Op.getDebugLoc();
David Greene2fcdfb42011-02-10 23:11:29 +00007081 EVT OpVT = Op.getValueType();
7082
Bruno Cardoso Lopes233fa392011-07-25 23:05:16 +00007083 // If this is a 256-bit vector result, first insert into a 128-bit
7084 // vector and then insert into the 256-bit vector.
7085 if (OpVT.getSizeInBits() > 128) {
7086 // Insert into a 128-bit vector.
7087 EVT VT128 = EVT::getVectorVT(*Context,
7088 OpVT.getVectorElementType(),
7089 OpVT.getVectorNumElements() / 2);
7090
7091 Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7092
7093 // Insert the 128-bit vector.
7094 return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op,
7095 DAG.getConstant(0, MVT::i32),
7096 DAG, dl);
7097 }
7098
Chris Lattnerf172ecd2010-07-04 23:07:25 +00007099 if (Op.getValueType() == MVT::v1i64 &&
7100 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00007101 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00007102
Owen Anderson825b72b2009-08-11 20:47:22 +00007103 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00007104 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
7105 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007106 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00007107 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00007108}
7109
David Greene91585092011-01-26 15:38:49 +00007110// Lower a node with an EXTRACT_SUBVECTOR opcode. This may result in
7111// a simple subregister reference or explicit instructions to grab
7112// upper bits of a vector.
7113SDValue
7114X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
7115 if (Subtarget->hasAVX()) {
David Greenea5f26012011-02-07 19:36:54 +00007116 DebugLoc dl = Op.getNode()->getDebugLoc();
7117 SDValue Vec = Op.getNode()->getOperand(0);
7118 SDValue Idx = Op.getNode()->getOperand(1);
7119
7120 if (Op.getNode()->getValueType(0).getSizeInBits() == 128
7121 && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
7122 return Extract128BitVector(Vec, Idx, DAG, dl);
7123 }
David Greene91585092011-01-26 15:38:49 +00007124 }
7125 return SDValue();
7126}
7127
David Greenecfe33c42011-01-26 19:13:22 +00007128// Lower a node with an INSERT_SUBVECTOR opcode. This may result in a
7129// simple superregister reference or explicit instructions to insert
7130// the upper bits of a vector.
7131SDValue
7132X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
7133 if (Subtarget->hasAVX()) {
7134 DebugLoc dl = Op.getNode()->getDebugLoc();
7135 SDValue Vec = Op.getNode()->getOperand(0);
7136 SDValue SubVec = Op.getNode()->getOperand(1);
7137 SDValue Idx = Op.getNode()->getOperand(2);
7138
7139 if (Op.getNode()->getValueType(0).getSizeInBits() == 256
7140 && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
David Greenea5f26012011-02-07 19:36:54 +00007141 return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
David Greenecfe33c42011-01-26 19:13:22 +00007142 }
7143 }
7144 return SDValue();
7145}
7146
Bill Wendling056292f2008-09-16 21:48:12 +00007147// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7148// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7149// one of the above mentioned nodes. It has to be wrapped because otherwise
7150// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7151// be used to form addressing mode. These wrapped nodes will be selected
7152// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00007153SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007154X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007155 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007156
Chris Lattner41621a22009-06-26 19:22:52 +00007157 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7158 // global base reg.
7159 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007160 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007161 CodeModel::Model M = getTargetMachine().getCodeModel();
7162
Chris Lattner4f066492009-07-11 20:29:19 +00007163 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007164 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007165 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007166 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007167 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007168 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007169 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007170
Evan Cheng1606e8e2009-03-13 07:51:59 +00007171 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00007172 CP->getAlignment(),
7173 CP->getOffset(), OpFlag);
7174 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00007175 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007176 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00007177 if (OpFlag) {
7178 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00007179 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007180 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007181 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007182 }
7183
7184 return Result;
7185}
7186
Dan Gohmand858e902010-04-17 15:26:15 +00007187SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007188 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00007189
Chris Lattner18c59872009-06-27 04:16:01 +00007190 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7191 // global base reg.
7192 unsigned char OpFlag = 0;
7193 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007194 CodeModel::Model M = getTargetMachine().getCodeModel();
7195
Chris Lattner4f066492009-07-11 20:29:19 +00007196 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007197 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00007198 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00007199 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007200 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00007201 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00007202 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00007203
Chris Lattner18c59872009-06-27 04:16:01 +00007204 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7205 OpFlag);
7206 DebugLoc DL = JT->getDebugLoc();
7207 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007208
Chris Lattner18c59872009-06-27 04:16:01 +00007209 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00007210 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00007211 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7212 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007213 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007214 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007215
Chris Lattner18c59872009-06-27 04:16:01 +00007216 return Result;
7217}
7218
7219SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007220X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00007221 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00007222
Chris Lattner18c59872009-06-27 04:16:01 +00007223 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7224 // global base reg.
7225 unsigned char OpFlag = 0;
7226 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007227 CodeModel::Model M = getTargetMachine().getCodeModel();
7228
Chris Lattner4f066492009-07-11 20:29:19 +00007229 if (Subtarget->isPICStyleRIPRel() &&
Eli Friedman586272d2011-08-11 01:48:05 +00007230 (M == CodeModel::Small || M == CodeModel::Kernel)) {
7231 if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7232 OpFlag = X86II::MO_GOTPCREL;
Chris Lattnere4df7562009-07-09 03:15:51 +00007233 WrapperKind = X86ISD::WrapperRIP;
Eli Friedman586272d2011-08-11 01:48:05 +00007234 } else if (Subtarget->isPICStyleGOT()) {
7235 OpFlag = X86II::MO_GOT;
7236 } else if (Subtarget->isPICStyleStubPIC()) {
7237 OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
7238 } else if (Subtarget->isPICStyleStubNoDynamic()) {
7239 OpFlag = X86II::MO_DARWIN_NONLAZY;
7240 }
Eric Christopherfd179292009-08-27 18:07:15 +00007241
Chris Lattner18c59872009-06-27 04:16:01 +00007242 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00007243
Chris Lattner18c59872009-06-27 04:16:01 +00007244 DebugLoc DL = Op.getDebugLoc();
7245 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00007246
7247
Chris Lattner18c59872009-06-27 04:16:01 +00007248 // With PIC, the address is actually $g + Offset.
7249 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00007250 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00007251 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7252 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007253 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00007254 Result);
7255 }
Eric Christopherfd179292009-08-27 18:07:15 +00007256
Eli Friedman586272d2011-08-11 01:48:05 +00007257 // For symbols that require a load from a stub to get the address, emit the
7258 // load.
7259 if (isGlobalStubReference(OpFlag))
7260 Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
7261 MachinePointerInfo::getGOT(), false, false, 0);
7262
Chris Lattner18c59872009-06-27 04:16:01 +00007263 return Result;
7264}
7265
Dan Gohman475871a2008-07-27 21:46:04 +00007266SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007267X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00007268 // Create the TargetBlockAddressAddress node.
7269 unsigned char OpFlags =
7270 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00007271 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00007272 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00007273 DebugLoc dl = Op.getDebugLoc();
7274 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
7275 /*isTarget=*/true, OpFlags);
7276
Dan Gohmanf705adb2009-10-30 01:28:02 +00007277 if (Subtarget->isPICStyleRIPRel() &&
7278 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00007279 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7280 else
7281 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00007282
Dan Gohman29cbade2009-11-20 23:18:13 +00007283 // With PIC, the address is actually $g + Offset.
7284 if (isGlobalRelativeToPICBase(OpFlags)) {
7285 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7286 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
7287 Result);
7288 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00007289
7290 return Result;
7291}
7292
7293SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00007294X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00007295 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00007296 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00007297 // Create the TargetGlobalAddress node, folding in the constant
7298 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00007299 unsigned char OpFlags =
7300 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007301 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00007302 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007303 if (OpFlags == X86II::MO_NO_FLAG &&
7304 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00007305 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00007306 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00007307 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007308 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00007309 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00007310 }
Eric Christopherfd179292009-08-27 18:07:15 +00007311
Chris Lattner4f066492009-07-11 20:29:19 +00007312 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00007313 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00007314 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7315 else
7316 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00007317
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007318 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00007319 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00007320 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7321 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00007322 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007323 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007324
Chris Lattner36c25012009-07-10 07:34:39 +00007325 // For globals that require a load from a stub to get the address, emit the
7326 // load.
7327 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00007328 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00007329 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007330
Dan Gohman6520e202008-10-18 02:06:02 +00007331 // If there was a non-zero offset that we didn't fold, create an explicit
7332 // addition for it.
7333 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00007334 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00007335 DAG.getConstant(Offset, getPointerTy()));
7336
Evan Cheng0db9fe62006-04-25 20:13:52 +00007337 return Result;
7338}
7339
Evan Chengda43bcf2008-09-24 00:05:32 +00007340SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007341X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00007342 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00007343 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007344 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00007345}
7346
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007347static SDValue
7348GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00007349 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00007350 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007351 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007352 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007353 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00007354 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007355 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00007356 GA->getOffset(),
7357 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007358 if (InFlag) {
7359 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00007360 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007361 } else {
7362 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00007363 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007364 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007365
7366 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00007367 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00007368
Rafael Espindola15f1b662009-04-24 12:59:40 +00007369 SDValue Flag = Chain.getValue(1);
7370 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00007371}
7372
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007373// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00007374static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007375LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007376 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00007377 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00007378 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
7379 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007380 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00007381 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007382 InFlag = Chain.getValue(1);
7383
Chris Lattnerb903bed2009-06-26 21:20:29 +00007384 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007385}
7386
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007387// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00007388static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007389LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007390 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00007391 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
7392 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007393}
7394
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007395// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
7396// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00007397static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00007398 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00007399 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00007400 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00007401
Chris Lattnerf93b90c2010-09-22 04:39:11 +00007402 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
7403 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
7404 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00007405
Michael J. Spencerec38de22010-10-10 22:04:20 +00007406 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00007407 DAG.getIntPtrConstant(0),
7408 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00007409
Chris Lattnerb903bed2009-06-26 21:20:29 +00007410 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00007411 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
7412 // initialexec.
7413 unsigned WrapperKind = X86ISD::Wrapper;
7414 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00007415 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00007416 } else if (is64Bit) {
7417 assert(model == TLSModel::InitialExec);
7418 OperandFlags = X86II::MO_GOTTPOFF;
7419 WrapperKind = X86ISD::WrapperRIP;
7420 } else {
7421 assert(model == TLSModel::InitialExec);
7422 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00007423 }
Eric Christopherfd179292009-08-27 18:07:15 +00007424
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007425 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
7426 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00007427 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00007428 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00007429 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00007430 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00007431
Rafael Espindola9a580232009-02-27 13:37:18 +00007432 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00007433 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00007434 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00007435
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007436 // The address of the thread local variable is the add of the thread
7437 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00007438 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007439}
7440
Dan Gohman475871a2008-07-27 21:46:04 +00007441SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007442X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00007443
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007444 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00007445 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00007446
Eric Christopher30ef0e52010-06-03 04:07:48 +00007447 if (Subtarget->isTargetELF()) {
7448 // TODO: implement the "local dynamic" model
7449 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00007450
Eric Christopher30ef0e52010-06-03 04:07:48 +00007451 // If GV is an alias then use the aliasee for determining
7452 // thread-localness.
7453 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
7454 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007455
7456 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00007457 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00007458
Eric Christopher30ef0e52010-06-03 04:07:48 +00007459 switch (model) {
7460 case TLSModel::GeneralDynamic:
7461 case TLSModel::LocalDynamic: // not implemented
7462 if (Subtarget->is64Bit())
7463 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
7464 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00007465
Eric Christopher30ef0e52010-06-03 04:07:48 +00007466 case TLSModel::InitialExec:
7467 case TLSModel::LocalExec:
7468 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
7469 Subtarget->is64Bit());
7470 }
7471 } else if (Subtarget->isTargetDarwin()) {
7472 // Darwin only has one model of TLS. Lower to that.
7473 unsigned char OpFlag = 0;
7474 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
7475 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007476
Eric Christopher30ef0e52010-06-03 04:07:48 +00007477 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7478 // global base reg.
7479 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
7480 !Subtarget->is64Bit();
7481 if (PIC32)
7482 OpFlag = X86II::MO_TLVP_PIC_BASE;
7483 else
7484 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007485 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00007486 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00007487 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00007488 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00007489 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007490
Eric Christopher30ef0e52010-06-03 04:07:48 +00007491 // With PIC32, the address is actually $g + Offset.
7492 if (PIC32)
7493 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7494 DAG.getNode(X86ISD::GlobalBaseReg,
7495 DebugLoc(), getPointerTy()),
7496 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007497
Eric Christopher30ef0e52010-06-03 04:07:48 +00007498 // Lowering the machine isd will make sure everything is in the right
7499 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007500 SDValue Chain = DAG.getEntryNode();
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007501 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Eric Christopherd8c05362010-12-09 06:25:53 +00007502 SDValue Args[] = { Chain, Offset };
7503 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007504
Eric Christopher30ef0e52010-06-03 04:07:48 +00007505 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
7506 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7507 MFI->setAdjustsStack(true);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00007508
Eric Christopher30ef0e52010-06-03 04:07:48 +00007509 // And our return value (tls address) is in the standard call return value
7510 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00007511 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
7512 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00007513 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007514
Eric Christopher30ef0e52010-06-03 04:07:48 +00007515 assert(false &&
7516 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00007517
Torok Edwinc23197a2009-07-14 16:55:14 +00007518 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00007519 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00007520}
7521
Evan Cheng0db9fe62006-04-25 20:13:52 +00007522
Nadav Rotem43012222011-05-11 08:12:09 +00007523/// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00007524/// take a 2 x i32 value to shift plus a shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00007525SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00007526 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00007527 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007528 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007529 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007530 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00007531 SDValue ShOpLo = Op.getOperand(0);
7532 SDValue ShOpHi = Op.getOperand(1);
7533 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00007534 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00007535 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00007536 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00007537
Dan Gohman475871a2008-07-27 21:46:04 +00007538 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007539 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007540 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
7541 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007542 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007543 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
7544 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007545 }
Evan Chenge3413162006-01-09 18:33:28 +00007546
Owen Anderson825b72b2009-08-11 20:47:22 +00007547 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
7548 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00007549 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00007550 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00007551
Dan Gohman475871a2008-07-27 21:46:04 +00007552 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00007553 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00007554 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
7555 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00007556
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007557 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00007558 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7559 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007560 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00007561 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7562 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00007563 }
7564
Dan Gohman475871a2008-07-27 21:46:04 +00007565 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00007566 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007567}
Evan Chenga3195e82006-01-12 22:54:21 +00007568
Dan Gohmand858e902010-04-17 15:26:15 +00007569SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
7570 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00007571 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00007572
Dale Johannesen0488fb62010-09-30 23:57:10 +00007573 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007574 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007575
Owen Anderson825b72b2009-08-11 20:47:22 +00007576 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00007577 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00007578
Eli Friedman36df4992009-05-27 00:47:34 +00007579 // These are really Legal; return the operand so the caller accepts it as
7580 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007581 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00007582 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00007583 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00007584 Subtarget->is64Bit()) {
7585 return Op;
7586 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007587
Bruno Cardoso Lopesa511b8e2011-08-09 17:39:01 +00007588 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007589 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007590 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00007591 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007592 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00007593 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00007594 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007595 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007596 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007597 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
7598}
Evan Cheng0db9fe62006-04-25 20:13:52 +00007599
Owen Andersone50ed302009-08-10 22:56:29 +00007600SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007601 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00007602 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007603 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00007604 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00007605 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00007606 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007607 if (useSSE)
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00007608 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
Chris Lattner5a88b832007-02-25 07:10:00 +00007609 else
Owen Anderson825b72b2009-08-11 20:47:22 +00007610 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007611
Chris Lattner492a43e2010-09-22 01:28:21 +00007612 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00007613
Stuart Hastings84be9582011-06-02 15:57:11 +00007614 FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
7615 MachineMemOperand *MMO;
7616 if (FI) {
7617 int SSFI = FI->getIndex();
7618 MMO =
7619 DAG.getMachineFunction()
7620 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7621 MachineMemOperand::MOLoad, ByteSize, ByteSize);
7622 } else {
7623 MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
7624 StackSlot = StackSlot.getOperand(1);
7625 }
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007626 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007627 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
7628 X86ISD::FILD, DL,
7629 Tys, Ops, array_lengthof(Ops),
7630 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007631
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007632 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00007633 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00007634 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007635
7636 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
7637 // shouldn't be necessary except that RFP cannot be live across
7638 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007639 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007640 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
7641 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007642 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00007643 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007644 SDValue Ops[] = {
7645 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
7646 };
Chris Lattner492a43e2010-09-22 01:28:21 +00007647 MachineMemOperand *MMO =
7648 DAG.getMachineFunction()
7649 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00007650 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007651
Chris Lattner492a43e2010-09-22 01:28:21 +00007652 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
7653 Ops, array_lengthof(Ops),
7654 Op.getValueType(), MMO);
7655 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007656 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007657 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007658 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007659
Evan Cheng0db9fe62006-04-25 20:13:52 +00007660 return Result;
7661}
7662
Bill Wendling8b8a6362009-01-17 03:56:04 +00007663// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007664SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
7665 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00007666 // This algorithm is not obvious. Here it is in C code, more or less:
7667 /*
7668 double uint64_to_double( uint32_t hi, uint32_t lo ) {
7669 static const __m128i exp = { 0x4330000045300000ULL, 0 };
7670 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00007671
Bill Wendling8b8a6362009-01-17 03:56:04 +00007672 // Copy ints to xmm registers.
7673 __m128i xh = _mm_cvtsi32_si128( hi );
7674 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00007675
Bill Wendling8b8a6362009-01-17 03:56:04 +00007676 // Combine into low half of a single xmm register.
7677 __m128i x = _mm_unpacklo_epi32( xh, xl );
7678 __m128d d;
7679 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00007680
Bill Wendling8b8a6362009-01-17 03:56:04 +00007681 // Merge in appropriate exponents to give the integer bits the right
7682 // magnitude.
7683 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00007684
Bill Wendling8b8a6362009-01-17 03:56:04 +00007685 // Subtract away the biases to deal with the IEEE-754 double precision
7686 // implicit 1.
7687 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00007688
Bill Wendling8b8a6362009-01-17 03:56:04 +00007689 // All conversions up to here are exact. The correctly rounded result is
7690 // calculated using the current rounding mode using the following
7691 // horizontal add.
7692 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
7693 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
7694 // store doesn't really need to be here (except
7695 // maybe to zero the other double)
7696 return sd;
7697 }
7698 */
Dale Johannesen040225f2008-10-21 23:07:49 +00007699
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007700 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00007701 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00007702
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007703 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00007704 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00007705 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
7706 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
7707 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
7708 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007709 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007710 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007711
Bill Wendling8b8a6362009-01-17 03:56:04 +00007712 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00007713 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007714 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00007715 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007716 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00007717 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00007718 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007719
Owen Anderson825b72b2009-08-11 20:47:22 +00007720 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7721 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007722 Op.getOperand(0),
7723 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007724 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7725 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00007726 Op.getOperand(0),
7727 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00007728 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
7729 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00007730 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007731 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007732 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007733 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00007734 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00007735 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00007736 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00007737 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007738
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007739 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00007740 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00007741 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
7742 DAG.getUNDEF(MVT::v2f64), ShufMask);
7743 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
7744 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00007745 DAG.getIntPtrConstant(0));
7746}
7747
Bill Wendling8b8a6362009-01-17 03:56:04 +00007748// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00007749SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
7750 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007751 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007752 // FP constant to bias correct the final result.
7753 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00007754 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007755
7756 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00007757 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
Eli Friedman6cdc1f42011-08-02 18:38:35 +00007758 Op.getOperand(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007759
Eli Friedmanf3704762011-08-29 21:15:46 +00007760 // Zero out the upper parts of the register.
7761 Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget->hasSSE2(), DAG);
7762
Owen Anderson825b72b2009-08-11 20:47:22 +00007763 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007764 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007765 DAG.getIntPtrConstant(0));
7766
7767 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007768 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007769 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007770 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007771 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007772 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00007773 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007774 MVT::v2f64, Bias)));
7775 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007776 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00007777 DAG.getIntPtrConstant(0));
7778
7779 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00007780 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00007781
7782 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00007783 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00007784
Owen Anderson825b72b2009-08-11 20:47:22 +00007785 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007786 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00007787 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00007788 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00007789 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00007790 }
7791
7792 // Handle final rounding.
7793 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00007794}
7795
Dan Gohmand858e902010-04-17 15:26:15 +00007796SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
7797 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00007798 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007799 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00007800
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007801 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00007802 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
7803 // the optimization here.
7804 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00007805 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00007806
Owen Andersone50ed302009-08-10 22:56:29 +00007807 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007808 EVT DstVT = Op.getValueType();
7809 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007810 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007811 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00007812 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00007813
7814 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00007815 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007816 if (SrcVT == MVT::i32) {
7817 SDValue WordOff = DAG.getConstant(4, getPointerTy());
7818 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
7819 getPointerTy(), StackSlot, WordOff);
7820 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007821 StackSlot, MachinePointerInfo(),
7822 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007823 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007824 OffsetSlot, MachinePointerInfo(),
7825 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007826 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
7827 return Fild;
7828 }
7829
7830 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
7831 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007832 StackSlot, MachinePointerInfo(),
7833 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007834 // For i64 source, we need to add the appropriate power of 2 if the input
7835 // was negative. This is the same as the optimization in
7836 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
7837 // we must be careful to do the computation in x87 extended precision, not
7838 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00007839 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
7840 MachineMemOperand *MMO =
7841 DAG.getMachineFunction()
7842 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7843 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00007844
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007845 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
7846 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00007847 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
7848 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007849
7850 APInt FF(32, 0x5F800000ULL);
7851
7852 // Check whether the sign bit is set.
7853 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
7854 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
7855 ISD::SETLT);
7856
7857 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
7858 SDValue FudgePtr = DAG.getConstantPool(
7859 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
7860 getPointerTy());
7861
7862 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
7863 SDValue Zero = DAG.getIntPtrConstant(0);
7864 SDValue Four = DAG.getIntPtrConstant(4);
7865 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
7866 Zero, Four);
7867 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
7868
7869 // Load the value out, extending it from f32 to f80.
7870 // FIXME: Avoid the extend by constructing the right constant pool?
Stuart Hastingsa9011292011-02-16 16:23:55 +00007871 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00007872 FudgePtr, MachinePointerInfo::getConstantPool(),
7873 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00007874 // Extend everything to 80 bits to force it to be done on x87.
7875 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
7876 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00007877}
7878
Dan Gohman475871a2008-07-27 21:46:04 +00007879std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00007880FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00007881 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00007882
Owen Andersone50ed302009-08-10 22:56:29 +00007883 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00007884
7885 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007886 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
7887 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00007888 }
7889
Owen Anderson825b72b2009-08-11 20:47:22 +00007890 assert(DstTy.getSimpleVT() <= MVT::i64 &&
7891 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00007892 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00007893
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007894 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00007895 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00007896 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007897 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00007898 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00007899 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00007900 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00007901 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00007902
Evan Cheng87c89352007-10-15 20:11:21 +00007903 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
7904 // stack slot.
7905 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00007906 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00007907 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00007908 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00007909
Michael J. Spencerec38de22010-10-10 22:04:20 +00007910
7911
Evan Cheng0db9fe62006-04-25 20:13:52 +00007912 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00007913 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00007914 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007915 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
7916 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
7917 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00007918 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007919
Dan Gohman475871a2008-07-27 21:46:04 +00007920 SDValue Chain = DAG.getEntryNode();
7921 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00007922 EVT TheVT = Op.getOperand(0).getValueType();
7923 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007924 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00007925 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00007926 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00007927 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00007928 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00007929 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00007930 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00007931 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00007932
Chris Lattner492a43e2010-09-22 01:28:21 +00007933 MachineMemOperand *MMO =
7934 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7935 MachineMemOperand::MOLoad, MemSize, MemSize);
7936 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
7937 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007938 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00007939 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007940 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7941 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00007942
Chris Lattner07290932010-09-22 01:05:16 +00007943 MachineMemOperand *MMO =
7944 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7945 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007946
Evan Cheng0db9fe62006-04-25 20:13:52 +00007947 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00007948 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00007949 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
7950 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00007951
Chris Lattner27a6c732007-11-24 07:07:01 +00007952 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007953}
7954
Dan Gohmand858e902010-04-17 15:26:15 +00007955SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
7956 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00007957 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00007958 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00007959
Eli Friedman948e95a2009-05-23 09:59:16 +00007960 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00007961 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00007962 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
7963 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00007964
Chris Lattner27a6c732007-11-24 07:07:01 +00007965 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007966 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007967 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00007968}
7969
Dan Gohmand858e902010-04-17 15:26:15 +00007970SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
7971 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00007972 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
7973 SDValue FIST = Vals.first, StackSlot = Vals.second;
7974 assert(FIST.getNode() && "Unexpected failure");
7975
7976 // Load the result.
7977 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007978 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00007979}
7980
Dan Gohmand858e902010-04-17 15:26:15 +00007981SDValue X86TargetLowering::LowerFABS(SDValue Op,
7982 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00007983 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007984 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00007985 EVT VT = Op.getValueType();
7986 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007987 if (VT.isVector())
7988 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007989 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00007990 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007991 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00007992 CV.push_back(C);
7993 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007994 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00007995 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00007996 CV.push_back(C);
7997 CV.push_back(C);
7998 CV.push_back(C);
7999 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008000 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00008001 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008002 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008003 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008004 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00008005 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008006 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008007}
8008
Dan Gohmand858e902010-04-17 15:26:15 +00008009SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00008010 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008011 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008012 EVT VT = Op.getValueType();
8013 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00008014 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00008015 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00008016 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00008017 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008018 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00008019 CV.push_back(C);
8020 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008021 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008022 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00008023 CV.push_back(C);
8024 CV.push_back(C);
8025 CV.push_back(C);
8026 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008027 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00008028 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008029 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008030 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008031 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00008032 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00008033 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008034 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008035 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008036 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00008037 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008038 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00008039 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00008040 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00008041 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008042}
8043
Dan Gohmand858e902010-04-17 15:26:15 +00008044SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00008045 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00008046 SDValue Op0 = Op.getOperand(0);
8047 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008048 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008049 EVT VT = Op.getValueType();
8050 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00008051
8052 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00008053 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00008054 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00008055 SrcVT = VT;
8056 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00008057 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00008058 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00008059 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00008060 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00008061 }
8062
8063 // At this point the operands and the result should have the same
8064 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00008065
Evan Cheng68c47cb2007-01-05 07:55:56 +00008066 // First get the sign bit of second operand.
8067 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00008068 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008069 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
8070 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00008071 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008072 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
8073 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8074 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8075 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00008076 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00008077 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008078 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008079 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008080 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00008081 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008082 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008083
8084 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00008085 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008086 // Op0 is MVT::f32, Op1 is MVT::f64.
8087 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
8088 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
8089 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008090 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00008091 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00008092 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00008093 }
8094
Evan Cheng73d6cf12007-01-05 21:37:56 +00008095 // Clear first operand sign bit.
8096 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00008097 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008098 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
8099 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00008100 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00008101 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
8102 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8103 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8104 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00008105 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00008106 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00008107 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008108 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008109 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00008110 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00008111 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00008112
8113 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00008114 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008115}
8116
Stuart Hastings4fd0dee2011-06-01 04:39:42 +00008117SDValue X86TargetLowering::LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) const {
8118 SDValue N0 = Op.getOperand(0);
8119 DebugLoc dl = Op.getDebugLoc();
8120 EVT VT = Op.getValueType();
8121
8122 // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
8123 SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
8124 DAG.getConstant(1, VT));
8125 return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
8126}
8127
Dan Gohman076aee32009-03-04 19:44:21 +00008128/// Emit nodes that will be selected as "test Op0,Op0", or something
8129/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00008130SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00008131 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00008132 DebugLoc dl = Op.getDebugLoc();
8133
Dan Gohman31125812009-03-07 01:58:32 +00008134 // CF and OF aren't always set the way we want. Determine which
8135 // of these we need.
8136 bool NeedCF = false;
8137 bool NeedOF = false;
8138 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008139 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00008140 case X86::COND_A: case X86::COND_AE:
8141 case X86::COND_B: case X86::COND_BE:
8142 NeedCF = true;
8143 break;
8144 case X86::COND_G: case X86::COND_GE:
8145 case X86::COND_L: case X86::COND_LE:
8146 case X86::COND_O: case X86::COND_NO:
8147 NeedOF = true;
8148 break;
Dan Gohman31125812009-03-07 01:58:32 +00008149 }
8150
Dan Gohman076aee32009-03-04 19:44:21 +00008151 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00008152 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
8153 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008154 if (Op.getResNo() != 0 || NeedOF || NeedCF)
8155 // Emit a CMP with 0, which is the TEST pattern.
8156 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
8157 DAG.getConstant(0, Op.getValueType()));
8158
8159 unsigned Opcode = 0;
8160 unsigned NumOperands = 0;
8161 switch (Op.getNode()->getOpcode()) {
8162 case ISD::ADD:
8163 // Due to an isel shortcoming, be conservative if this add is likely to be
8164 // selected as part of a load-modify-store instruction. When the root node
8165 // in a match is a store, isel doesn't know how to remap non-chain non-flag
8166 // uses of other nodes in the match, such as the ADD in this case. This
8167 // leads to the ADD being left around and reselected, with the result being
8168 // two adds in the output. Alas, even if none our users are stores, that
8169 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
8170 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
8171 // climbing the DAG back to the root, and it doesn't seem to be worth the
8172 // effort.
8173 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00008174 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008175 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
8176 goto default_case;
8177
8178 if (ConstantSDNode *C =
8179 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
8180 // An add of one will be selected as an INC.
8181 if (C->getAPIntValue() == 1) {
8182 Opcode = X86ISD::INC;
8183 NumOperands = 1;
8184 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00008185 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008186
8187 // An add of negative one (subtract of one) will be selected as a DEC.
8188 if (C->getAPIntValue().isAllOnesValue()) {
8189 Opcode = X86ISD::DEC;
8190 NumOperands = 1;
8191 break;
8192 }
Dan Gohman076aee32009-03-04 19:44:21 +00008193 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008194
8195 // Otherwise use a regular EFLAGS-setting add.
8196 Opcode = X86ISD::ADD;
8197 NumOperands = 2;
8198 break;
8199 case ISD::AND: {
8200 // If the primary and result isn't used, don't bother using X86ISD::AND,
8201 // because a TEST instruction will be better.
8202 bool NonFlagUse = false;
8203 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8204 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
8205 SDNode *User = *UI;
8206 unsigned UOpNo = UI.getOperandNo();
8207 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
8208 // Look pass truncate.
8209 UOpNo = User->use_begin().getOperandNo();
8210 User = *User->use_begin();
8211 }
8212
8213 if (User->getOpcode() != ISD::BRCOND &&
8214 User->getOpcode() != ISD::SETCC &&
8215 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
8216 NonFlagUse = true;
8217 break;
8218 }
Dan Gohman076aee32009-03-04 19:44:21 +00008219 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008220
8221 if (!NonFlagUse)
8222 break;
8223 }
8224 // FALL THROUGH
8225 case ISD::SUB:
8226 case ISD::OR:
8227 case ISD::XOR:
8228 // Due to the ISEL shortcoming noted above, be conservative if this op is
8229 // likely to be selected as part of a load-modify-store instruction.
8230 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8231 UE = Op.getNode()->use_end(); UI != UE; ++UI)
8232 if (UI->getOpcode() == ISD::STORE)
8233 goto default_case;
8234
8235 // Otherwise use a regular EFLAGS-setting instruction.
8236 switch (Op.getNode()->getOpcode()) {
8237 default: llvm_unreachable("unexpected operator!");
8238 case ISD::SUB: Opcode = X86ISD::SUB; break;
8239 case ISD::OR: Opcode = X86ISD::OR; break;
8240 case ISD::XOR: Opcode = X86ISD::XOR; break;
8241 case ISD::AND: Opcode = X86ISD::AND; break;
8242 }
8243
8244 NumOperands = 2;
8245 break;
8246 case X86ISD::ADD:
8247 case X86ISD::SUB:
8248 case X86ISD::INC:
8249 case X86ISD::DEC:
8250 case X86ISD::OR:
8251 case X86ISD::XOR:
8252 case X86ISD::AND:
8253 return SDValue(Op.getNode(), 1);
8254 default:
8255 default_case:
8256 break;
Dan Gohman076aee32009-03-04 19:44:21 +00008257 }
8258
Bill Wendlingc25ccf82010-06-28 21:08:32 +00008259 if (Opcode == 0)
8260 // Emit a CMP with 0, which is the TEST pattern.
8261 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
8262 DAG.getConstant(0, Op.getValueType()));
8263
8264 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
8265 SmallVector<SDValue, 4> Ops;
8266 for (unsigned i = 0; i != NumOperands; ++i)
8267 Ops.push_back(Op.getOperand(i));
8268
8269 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
8270 DAG.ReplaceAllUsesWith(Op, New);
8271 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00008272}
8273
8274/// Emit nodes that will be selected as "cmp Op0,Op1", or something
8275/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00008276SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00008277 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00008278 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
8279 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00008280 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00008281
8282 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00008283 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00008284}
8285
Evan Chengd40d03e2010-01-06 19:38:29 +00008286/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
8287/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00008288SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
8289 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00008290 SDValue Op0 = And.getOperand(0);
8291 SDValue Op1 = And.getOperand(1);
8292 if (Op0.getOpcode() == ISD::TRUNCATE)
8293 Op0 = Op0.getOperand(0);
8294 if (Op1.getOpcode() == ISD::TRUNCATE)
8295 Op1 = Op1.getOperand(0);
8296
Evan Chengd40d03e2010-01-06 19:38:29 +00008297 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00008298 if (Op1.getOpcode() == ISD::SHL)
8299 std::swap(Op0, Op1);
8300 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00008301 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
8302 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00008303 // If we looked past a truncate, check that it's only truncating away
8304 // known zeros.
8305 unsigned BitWidth = Op0.getValueSizeInBits();
8306 unsigned AndBitWidth = And.getValueSizeInBits();
8307 if (BitWidth > AndBitWidth) {
8308 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
8309 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
8310 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
8311 return SDValue();
8312 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008313 LHS = Op1;
8314 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00008315 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008316 } else if (Op1.getOpcode() == ISD::Constant) {
8317 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
8318 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00008319 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
8320 LHS = AndLHS.getOperand(0);
8321 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008322 }
Evan Chengd40d03e2010-01-06 19:38:29 +00008323 }
Evan Cheng0488db92007-09-25 01:57:46 +00008324
Evan Chengd40d03e2010-01-06 19:38:29 +00008325 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00008326 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00008327 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00008328 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00008329 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00008330 // Also promote i16 to i32 for performance / code size reason.
8331 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00008332 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00008333 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00008334
Evan Chengd40d03e2010-01-06 19:38:29 +00008335 // If the operand types disagree, extend the shift amount to match. Since
8336 // BT ignores high bits (like shifts) we can use anyextend.
8337 if (LHS.getValueType() != RHS.getValueType())
8338 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00008339
Evan Chengd40d03e2010-01-06 19:38:29 +00008340 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
8341 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
8342 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8343 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00008344 }
8345
Evan Cheng54de3ea2010-01-05 06:52:31 +00008346 return SDValue();
8347}
8348
Dan Gohmand858e902010-04-17 15:26:15 +00008349SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Duncan Sands28b77e92011-09-06 19:07:46 +00008350
8351 if (Op.getValueType().isVector()) return LowerVSETCC(Op, DAG);
8352
Evan Cheng54de3ea2010-01-05 06:52:31 +00008353 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
8354 SDValue Op0 = Op.getOperand(0);
8355 SDValue Op1 = Op.getOperand(1);
8356 DebugLoc dl = Op.getDebugLoc();
8357 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
8358
8359 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00008360 // Lower (X & (1 << N)) == 0 to BT(X, N).
8361 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
8362 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Andrew Trickf6c39412011-03-23 23:11:02 +00008363 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00008364 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00008365 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00008366 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
8367 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
8368 if (NewSetCC.getNode())
8369 return NewSetCC;
8370 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00008371
Chris Lattner481eebc2010-12-19 21:23:48 +00008372 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
8373 // these.
8374 if (Op1.getOpcode() == ISD::Constant &&
Andrew Trickf6c39412011-03-23 23:11:02 +00008375 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
Evan Cheng2c755ba2010-02-27 07:36:59 +00008376 cast<ConstantSDNode>(Op1)->isNullValue()) &&
8377 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008378
Chris Lattner481eebc2010-12-19 21:23:48 +00008379 // If the input is a setcc, then reuse the input setcc or use a new one with
8380 // the inverted condition.
8381 if (Op0.getOpcode() == X86ISD::SETCC) {
8382 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
8383 bool Invert = (CC == ISD::SETNE) ^
8384 cast<ConstantSDNode>(Op1)->isNullValue();
8385 if (!Invert) return Op0;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008386
Evan Cheng2c755ba2010-02-27 07:36:59 +00008387 CCode = X86::GetOppositeBranchCondition(CCode);
Chris Lattner481eebc2010-12-19 21:23:48 +00008388 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8389 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
8390 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00008391 }
8392
Evan Chenge5b51ac2010-04-17 06:13:15 +00008393 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00008394 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00008395 if (X86CC == X86::COND_INVALID)
8396 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00008397
Chris Lattnerc19d1c32010-12-19 22:08:31 +00008398 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00008399 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnerc19d1c32010-12-19 22:08:31 +00008400 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
Evan Cheng0488db92007-09-25 01:57:46 +00008401}
8402
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008403// Lower256IntVETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
8404// ones, and then concatenate the result back.
8405static SDValue Lower256IntVETCC(SDValue Op, SelectionDAG &DAG) {
8406 EVT VT = Op.getValueType();
8407
Duncan Sands28b77e92011-09-06 19:07:46 +00008408 assert(VT.getSizeInBits() == 256 && Op.getOpcode() == ISD::SETCC &&
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008409 "Unsupported value type for operation");
8410
8411 int NumElems = VT.getVectorNumElements();
8412 DebugLoc dl = Op.getDebugLoc();
8413 SDValue CC = Op.getOperand(2);
8414 SDValue Idx0 = DAG.getConstant(0, MVT::i32);
8415 SDValue Idx1 = DAG.getConstant(NumElems/2, MVT::i32);
8416
8417 // Extract the LHS vectors
8418 SDValue LHS = Op.getOperand(0);
8419 SDValue LHS1 = Extract128BitVector(LHS, Idx0, DAG, dl);
8420 SDValue LHS2 = Extract128BitVector(LHS, Idx1, DAG, dl);
8421
8422 // Extract the RHS vectors
8423 SDValue RHS = Op.getOperand(1);
8424 SDValue RHS1 = Extract128BitVector(RHS, Idx0, DAG, dl);
8425 SDValue RHS2 = Extract128BitVector(RHS, Idx1, DAG, dl);
8426
8427 // Issue the operation on the smaller types and concatenate the result back
8428 MVT EltVT = VT.getVectorElementType().getSimpleVT();
8429 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
8430 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
8431 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
8432 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
8433}
8434
8435
Dan Gohmand858e902010-04-17 15:26:15 +00008436SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008437 SDValue Cond;
8438 SDValue Op0 = Op.getOperand(0);
8439 SDValue Op1 = Op.getOperand(1);
8440 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00008441 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00008442 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
8443 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008444 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00008445
8446 if (isFP) {
8447 unsigned SSECC = 8;
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008448 EVT EltVT = Op0.getValueType().getVectorElementType();
8449 assert(EltVT == MVT::f32 || EltVT == MVT::f64);
8450
8451 unsigned Opc = EltVT == MVT::f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00008452 bool Swap = false;
8453
Bruno Cardoso Lopes8e03a822011-09-12 19:30:40 +00008454 // SSE Condition code mapping:
8455 // 0 - EQ
8456 // 1 - LT
8457 // 2 - LE
8458 // 3 - UNORD
8459 // 4 - NEQ
8460 // 5 - NLT
8461 // 6 - NLE
8462 // 7 - ORD
Nate Begeman30a0de92008-07-17 16:51:19 +00008463 switch (SetCCOpcode) {
8464 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00008465 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00008466 case ISD::SETEQ: SSECC = 0; break;
Bruno Cardoso Lopes8e03a822011-09-12 19:30:40 +00008467 case ISD::SETOGT:
8468 case ISD::SETGT: Swap = true; // Fallthrough
Bruno Cardoso Lopes457d53d2011-09-12 21:24:07 +00008469 case ISD::SETLT:
8470 case ISD::SETOLT: SSECC = 1; break;
8471 case ISD::SETOGE:
8472 case ISD::SETGE: Swap = true; // Fallthrough
Nate Begeman30a0de92008-07-17 16:51:19 +00008473 case ISD::SETLE:
8474 case ISD::SETOLE: SSECC = 2; break;
8475 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00008476 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00008477 case ISD::SETNE: SSECC = 4; break;
8478 case ISD::SETULE: Swap = true;
8479 case ISD::SETUGE: SSECC = 5; break;
8480 case ISD::SETULT: Swap = true;
8481 case ISD::SETUGT: SSECC = 6; break;
8482 case ISD::SETO: SSECC = 7; break;
8483 }
8484 if (Swap)
8485 std::swap(Op0, Op1);
8486
Nate Begemanfb8ead02008-07-25 19:05:58 +00008487 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00008488 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00008489 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00008490 SDValue UNORD, EQ;
Bruno Cardoso Lopes809f17f2011-09-13 19:33:00 +00008491 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
8492 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00008493 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00008494 }
8495 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00008496 SDValue ORD, NEQ;
Bruno Cardoso Lopes809f17f2011-09-13 19:33:00 +00008497 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
8498 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00008499 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00008500 }
Torok Edwinc23197a2009-07-14 16:55:14 +00008501 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00008502 }
8503 // Handle all other FP comparisons here.
Bruno Cardoso Lopes809f17f2011-09-13 19:33:00 +00008504 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00008505 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008506
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008507 // Break 256-bit integer vector compare into smaller ones.
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008508 if (!isFP && VT.getSizeInBits() == 256)
Bruno Cardoso Lopes2ac81112011-08-22 20:31:04 +00008509 return Lower256IntVETCC(Op, DAG);
Bruno Cardoso Lopes0f0e0a02011-08-09 00:46:57 +00008510
Nate Begeman30a0de92008-07-17 16:51:19 +00008511 // We are handling one of the integer comparisons here. Since SSE only has
8512 // GT and EQ comparisons for integer, swapping operands and multiple
8513 // operations may be required for some comparisons.
8514 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
8515 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00008516
Owen Anderson825b72b2009-08-11 20:47:22 +00008517 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00008518 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008519 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008520 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00008521 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
8522 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00008523 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008524
Nate Begeman30a0de92008-07-17 16:51:19 +00008525 switch (SetCCOpcode) {
8526 default: break;
8527 case ISD::SETNE: Invert = true;
8528 case ISD::SETEQ: Opc = EQOpc; break;
8529 case ISD::SETLT: Swap = true;
8530 case ISD::SETGT: Opc = GTOpc; break;
8531 case ISD::SETGE: Swap = true;
8532 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
8533 case ISD::SETULT: Swap = true;
8534 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
8535 case ISD::SETUGE: Swap = true;
8536 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
8537 }
8538 if (Swap)
8539 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008540
Nate Begeman30a0de92008-07-17 16:51:19 +00008541 // Since SSE has no unsigned integer comparisons, we need to flip the sign
8542 // bits of the inputs before performing those operations.
8543 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00008544 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00008545 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
8546 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00008547 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00008548 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
8549 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00008550 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
8551 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00008552 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008553
Dale Johannesenace16102009-02-03 19:33:06 +00008554 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00008555
8556 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00008557 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00008558 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00008559
Nate Begeman30a0de92008-07-17 16:51:19 +00008560 return Result;
8561}
Evan Cheng0488db92007-09-25 01:57:46 +00008562
Evan Cheng370e5342008-12-03 08:38:43 +00008563// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00008564static bool isX86LogicalCmp(SDValue Op) {
8565 unsigned Opc = Op.getNode()->getOpcode();
8566 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
8567 return true;
8568 if (Op.getResNo() == 1 &&
8569 (Opc == X86ISD::ADD ||
8570 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00008571 Opc == X86ISD::ADC ||
8572 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00008573 Opc == X86ISD::SMUL ||
8574 Opc == X86ISD::UMUL ||
8575 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00008576 Opc == X86ISD::DEC ||
8577 Opc == X86ISD::OR ||
8578 Opc == X86ISD::XOR ||
8579 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00008580 return true;
8581
Chris Lattner9637d5b2010-12-05 07:49:54 +00008582 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
8583 return true;
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008584
Dan Gohman076aee32009-03-04 19:44:21 +00008585 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00008586}
8587
Chris Lattnera2b56002010-12-05 01:23:24 +00008588static bool isZero(SDValue V) {
8589 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8590 return C && C->isNullValue();
8591}
8592
Chris Lattner96908b12010-12-05 02:00:51 +00008593static bool isAllOnes(SDValue V) {
8594 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8595 return C && C->isAllOnesValue();
8596}
8597
Dan Gohmand858e902010-04-17 15:26:15 +00008598SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008599 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008600 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00008601 SDValue Op1 = Op.getOperand(1);
8602 SDValue Op2 = Op.getOperand(2);
8603 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008604 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00008605
Dan Gohman1a492952009-10-20 16:22:37 +00008606 if (Cond.getOpcode() == ISD::SETCC) {
8607 SDValue NewCond = LowerSETCC(Cond, DAG);
8608 if (NewCond.getNode())
8609 Cond = NewCond;
8610 }
Evan Cheng734503b2006-09-11 02:19:56 +00008611
Chris Lattnera2b56002010-12-05 01:23:24 +00008612 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008613 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00008614 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00008615 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008616 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00008617 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
8618 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008619 SDValue Cmp = Cond.getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008620
Chris Lattnera2b56002010-12-05 01:23:24 +00008621 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008622
8623 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
Chris Lattner96908b12010-12-05 02:00:51 +00008624 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
8625 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00008626
8627 SDValue CmpOp0 = Cmp.getOperand(0);
8628 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
8629 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008630
Chris Lattner96908b12010-12-05 02:00:51 +00008631 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00008632 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8633 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008634
Chris Lattner96908b12010-12-05 02:00:51 +00008635 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
8636 Res = DAG.getNOT(DL, Res, Res.getValueType());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +00008637
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008638 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00008639 if (N2C == 0 || !N2C->isNullValue())
8640 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
8641 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008642 }
8643 }
8644
Chris Lattnera2b56002010-12-05 01:23:24 +00008645 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00008646 if (Cond.getOpcode() == ISD::AND &&
8647 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8648 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008649 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008650 Cond = Cond.getOperand(0);
8651 }
8652
Evan Cheng3f41d662007-10-08 22:16:29 +00008653 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8654 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008655 if (Cond.getOpcode() == X86ISD::SETCC ||
8656 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008657 CC = Cond.getOperand(0);
8658
Dan Gohman475871a2008-07-27 21:46:04 +00008659 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008660 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00008661 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008662
Evan Cheng3f41d662007-10-08 22:16:29 +00008663 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008664 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00008665 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00008666 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00008667
Chris Lattnerd1980a52009-03-12 06:52:53 +00008668 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
8669 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00008670 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008671 addTest = false;
8672 }
8673 }
8674
8675 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008676 // Look pass the truncate.
8677 if (Cond.getOpcode() == ISD::TRUNCATE)
8678 Cond = Cond.getOperand(0);
8679
8680 // We know the result of AND is compared against zero. Try to match
8681 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008682 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00008683 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00008684 if (NewSetCC.getNode()) {
8685 CC = NewSetCC.getOperand(0);
8686 Cond = NewSetCC.getOperand(1);
8687 addTest = false;
8688 }
8689 }
8690 }
8691
8692 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008693 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008694 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008695 }
8696
Benjamin Kramere915ff32010-12-22 23:09:28 +00008697 // a < b ? -1 : 0 -> RES = ~setcc_carry
8698 // a < b ? 0 : -1 -> RES = setcc_carry
8699 // a >= b ? -1 : 0 -> RES = setcc_carry
8700 // a >= b ? 0 : -1 -> RES = ~setcc_carry
8701 if (Cond.getOpcode() == X86ISD::CMP) {
8702 unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
8703
8704 if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
8705 (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
8706 SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8707 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
8708 if (isAllOnes(Op1) != (CondCode == X86::COND_B))
8709 return DAG.getNOT(DL, Res, Res.getValueType());
8710 return Res;
8711 }
8712 }
8713
Evan Cheng0488db92007-09-25 01:57:46 +00008714 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
8715 // condition is true.
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00008716 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00008717 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00008718 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00008719}
8720
Evan Cheng370e5342008-12-03 08:38:43 +00008721// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
8722// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
8723// from the AND / OR.
8724static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
8725 Opc = Op.getOpcode();
8726 if (Opc != ISD::OR && Opc != ISD::AND)
8727 return false;
8728 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8729 Op.getOperand(0).hasOneUse() &&
8730 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
8731 Op.getOperand(1).hasOneUse());
8732}
8733
Evan Cheng961d6d42009-02-02 08:19:07 +00008734// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
8735// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00008736static bool isXor1OfSetCC(SDValue Op) {
8737 if (Op.getOpcode() != ISD::XOR)
8738 return false;
8739 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8740 if (N1C && N1C->getAPIntValue() == 1) {
8741 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8742 Op.getOperand(0).hasOneUse();
8743 }
8744 return false;
8745}
8746
Dan Gohmand858e902010-04-17 15:26:15 +00008747SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00008748 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00008749 SDValue Chain = Op.getOperand(0);
8750 SDValue Cond = Op.getOperand(1);
8751 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008752 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00008753 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00008754
Dan Gohman1a492952009-10-20 16:22:37 +00008755 if (Cond.getOpcode() == ISD::SETCC) {
8756 SDValue NewCond = LowerSETCC(Cond, DAG);
8757 if (NewCond.getNode())
8758 Cond = NewCond;
8759 }
Chris Lattnere55484e2008-12-25 05:34:37 +00008760#if 0
8761 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00008762 else if (Cond.getOpcode() == X86ISD::ADD ||
8763 Cond.getOpcode() == X86ISD::SUB ||
8764 Cond.getOpcode() == X86ISD::SMUL ||
8765 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00008766 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00008767#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00008768
Evan Chengad9c0a32009-12-15 00:53:42 +00008769 // Look pass (and (setcc_carry (cmp ...)), 1).
8770 if (Cond.getOpcode() == ISD::AND &&
8771 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8772 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008773 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00008774 Cond = Cond.getOperand(0);
8775 }
8776
Evan Cheng3f41d662007-10-08 22:16:29 +00008777 // If condition flag is set by a X86ISD::CMP, then use it as the condition
8778 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00008779 if (Cond.getOpcode() == X86ISD::SETCC ||
8780 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00008781 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008782
Dan Gohman475871a2008-07-27 21:46:04 +00008783 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00008784 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00008785 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00008786 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00008787 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00008788 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00008789 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00008790 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008791 default: break;
8792 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00008793 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00008794 // These can only come from an arithmetic instruction with overflow,
8795 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00008796 Cond = Cond.getNode()->getOperand(1);
8797 addTest = false;
8798 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008799 }
Evan Cheng0488db92007-09-25 01:57:46 +00008800 }
Evan Cheng370e5342008-12-03 08:38:43 +00008801 } else {
8802 unsigned CondOpc;
8803 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
8804 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00008805 if (CondOpc == ISD::OR) {
8806 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
8807 // two branches instead of an explicit OR instruction with a
8808 // separate test.
8809 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008810 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00008811 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008812 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008813 Chain, Dest, CC, Cmp);
8814 CC = Cond.getOperand(1).getOperand(0);
8815 Cond = Cmp;
8816 addTest = false;
8817 }
8818 } else { // ISD::AND
8819 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
8820 // two branches instead of an explicit AND instruction with a
8821 // separate test. However, we only do this if this block doesn't
8822 // have a fall-through edge, because this requires an explicit
8823 // jmp when the condition is false.
8824 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00008825 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00008826 Op.getNode()->hasOneUse()) {
8827 X86::CondCode CCode =
8828 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8829 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008830 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00008831 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00008832 // Look for an unconditional branch following this conditional branch.
8833 // We need this because we need to reverse the successors in order
8834 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00008835 if (User->getOpcode() == ISD::BR) {
8836 SDValue FalseBB = User->getOperand(1);
8837 SDNode *NewBR =
8838 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00008839 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00008840 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00008841 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00008842
Dale Johannesene4d209d2009-02-03 20:21:25 +00008843 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00008844 Chain, Dest, CC, Cmp);
8845 X86::CondCode CCode =
8846 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
8847 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008848 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00008849 Cond = Cmp;
8850 addTest = false;
8851 }
8852 }
Dan Gohman279c22e2008-10-21 03:29:32 +00008853 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00008854 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
8855 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
8856 // It should be transformed during dag combiner except when the condition
8857 // is set by a arithmetics with overflow node.
8858 X86::CondCode CCode =
8859 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8860 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00008861 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00008862 Cond = Cond.getOperand(0).getOperand(1);
8863 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00008864 }
Evan Cheng0488db92007-09-25 01:57:46 +00008865 }
8866
8867 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008868 // Look pass the truncate.
8869 if (Cond.getOpcode() == ISD::TRUNCATE)
8870 Cond = Cond.getOperand(0);
8871
8872 // We know the result of AND is compared against zero. Try to match
8873 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00008874 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00008875 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
8876 if (NewSetCC.getNode()) {
8877 CC = NewSetCC.getOperand(0);
8878 Cond = NewSetCC.getOperand(1);
8879 addTest = false;
8880 }
8881 }
8882 }
8883
8884 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00008885 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00008886 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00008887 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00008888 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00008889 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00008890}
8891
Anton Korobeynikove060b532007-04-17 19:34:00 +00008892
8893// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
8894// Calls to _alloca is needed to probe the stack when allocating more than 4k
8895// bytes in one go. Touching the stack at 4K increments is necessary to ensure
8896// that the guard pages used by the OS virtual memory manager are allocated in
8897// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00008898SDValue
8899X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008900 SelectionDAG &DAG) const {
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008901 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
8902 EnableSegmentedStacks) &&
8903 "This should be used only on Windows targets or when segmented stacks "
Rafael Espindola96428ce2011-09-06 18:43:08 +00008904 "are being used");
8905 assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008906 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008907
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008908 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00008909 SDValue Chain = Op.getOperand(0);
8910 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008911 // FIXME: Ensure alignment here
8912
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008913 bool Is64Bit = Subtarget->is64Bit();
8914 EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008915
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008916 if (EnableSegmentedStacks) {
8917 MachineFunction &MF = DAG.getMachineFunction();
8918 MachineRegisterInfo &MRI = MF.getRegInfo();
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008919
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008920 if (Is64Bit) {
8921 // The 64 bit implementation of segmented stacks needs to clobber both r10
Rafael Espindola96428ce2011-09-06 18:43:08 +00008922 // r11. This makes it impossible to use it along with nested parameters.
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008923 const Function *F = MF.getFunction();
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008924
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008925 for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
8926 I != E; I++)
8927 if (I->hasNestAttr())
8928 report_fatal_error("Cannot use segmented stacks with functions that "
8929 "have nested arguments.");
8930 }
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00008931
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008932 const TargetRegisterClass *AddrRegClass =
8933 getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
8934 unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
8935 Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
8936 SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
8937 DAG.getRegister(Vreg, SPTy));
8938 SDValue Ops1[2] = { Value, Chain };
8939 return DAG.getMergeValues(Ops1, 2, dl);
8940 } else {
8941 SDValue Flag;
8942 unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008943
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008944 Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
8945 Flag = Chain.getValue(1);
8946 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00008947
Rafael Espindola151ab3e2011-08-30 19:47:04 +00008948 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
8949 Flag = Chain.getValue(1);
8950
8951 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
8952
8953 SDValue Ops1[2] = { Chain.getValue(0), Chain };
8954 return DAG.getMergeValues(Ops1, 2, dl);
8955 }
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008956}
8957
Dan Gohmand858e902010-04-17 15:26:15 +00008958SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00008959 MachineFunction &MF = DAG.getMachineFunction();
8960 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
8961
Dan Gohman69de1932008-02-06 22:27:42 +00008962 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00008963 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00008964
Anton Korobeynikove7beda12010-10-03 22:52:07 +00008965 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00008966 // vastart just stores the address of the VarArgsFrameIndex slot into the
8967 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00008968 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8969 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00008970 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
8971 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008972 }
8973
8974 // __va_list_tag:
8975 // gp_offset (0 - 6 * 8)
8976 // fp_offset (48 - 48 + 8 * 16)
8977 // overflow_arg_area (point to parameters coming in memory).
8978 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00008979 SmallVector<SDValue, 8> MemOps;
8980 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00008981 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008982 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008983 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
8984 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008985 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008986 MemOps.push_back(Store);
8987
8988 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00008989 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008990 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008991 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00008992 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
8993 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008994 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00008995 MemOps.push_back(Store);
8996
8997 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00008998 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00008999 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00009000 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
9001 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00009002 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
9003 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00009004 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00009005 MemOps.push_back(Store);
9006
9007 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00009008 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009009 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00009010 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
9011 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00009012 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
9013 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00009014 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00009015 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00009016 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00009017}
9018
Dan Gohmand858e902010-04-17 15:26:15 +00009019SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00009020 assert(Subtarget->is64Bit() &&
9021 "LowerVAARG only handles 64-bit va_arg!");
9022 assert((Subtarget->isTargetLinux() ||
9023 Subtarget->isTargetDarwin()) &&
9024 "Unhandled target in LowerVAARG");
9025 assert(Op.getNode()->getNumOperands() == 4);
9026 SDValue Chain = Op.getOperand(0);
9027 SDValue SrcPtr = Op.getOperand(1);
9028 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
9029 unsigned Align = Op.getConstantOperandVal(3);
9030 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00009031
Dan Gohman320afb82010-10-12 18:00:49 +00009032 EVT ArgVT = Op.getNode()->getValueType(0);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009033 Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
Dan Gohman320afb82010-10-12 18:00:49 +00009034 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
9035 uint8_t ArgMode;
9036
9037 // Decide which area this value should be read from.
9038 // TODO: Implement the AMD64 ABI in its entirety. This simple
9039 // selection mechanism works only for the basic types.
9040 if (ArgVT == MVT::f80) {
9041 llvm_unreachable("va_arg for f80 not yet implemented");
9042 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
9043 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
9044 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
9045 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
9046 } else {
9047 llvm_unreachable("Unhandled argument type in LowerVAARG");
9048 }
9049
9050 if (ArgMode == 2) {
9051 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00009052 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00009053 !(DAG.getMachineFunction()
9054 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00009055 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00009056 }
9057
9058 // Insert VAARG_64 node into the DAG
9059 // VAARG_64 returns two values: Variable Argument Address, Chain
9060 SmallVector<SDValue, 11> InstOps;
9061 InstOps.push_back(Chain);
9062 InstOps.push_back(SrcPtr);
9063 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
9064 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
9065 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
9066 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
9067 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
9068 VTs, &InstOps[0], InstOps.size(),
9069 MVT::i64,
9070 MachinePointerInfo(SV),
9071 /*Align=*/0,
9072 /*Volatile=*/false,
9073 /*ReadMem=*/true,
9074 /*WriteMem=*/true);
9075 Chain = VAARG.getValue(1);
9076
9077 // Load the next argument and return it
9078 return DAG.getLoad(ArgVT, dl,
9079 Chain,
9080 VAARG,
9081 MachinePointerInfo(),
9082 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00009083}
9084
Dan Gohmand858e902010-04-17 15:26:15 +00009085SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00009086 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00009087 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00009088 SDValue Chain = Op.getOperand(0);
9089 SDValue DstPtr = Op.getOperand(1);
9090 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00009091 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
9092 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00009093 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00009094
Chris Lattnere72f2022010-09-21 05:40:29 +00009095 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00009096 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00009097 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00009098 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00009099}
9100
Dan Gohman475871a2008-07-27 21:46:04 +00009101SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00009102X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009103 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00009104 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00009105 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00009106 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00009107 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00009108 case Intrinsic::x86_sse_comieq_ss:
9109 case Intrinsic::x86_sse_comilt_ss:
9110 case Intrinsic::x86_sse_comile_ss:
9111 case Intrinsic::x86_sse_comigt_ss:
9112 case Intrinsic::x86_sse_comige_ss:
9113 case Intrinsic::x86_sse_comineq_ss:
9114 case Intrinsic::x86_sse_ucomieq_ss:
9115 case Intrinsic::x86_sse_ucomilt_ss:
9116 case Intrinsic::x86_sse_ucomile_ss:
9117 case Intrinsic::x86_sse_ucomigt_ss:
9118 case Intrinsic::x86_sse_ucomige_ss:
9119 case Intrinsic::x86_sse_ucomineq_ss:
9120 case Intrinsic::x86_sse2_comieq_sd:
9121 case Intrinsic::x86_sse2_comilt_sd:
9122 case Intrinsic::x86_sse2_comile_sd:
9123 case Intrinsic::x86_sse2_comigt_sd:
9124 case Intrinsic::x86_sse2_comige_sd:
9125 case Intrinsic::x86_sse2_comineq_sd:
9126 case Intrinsic::x86_sse2_ucomieq_sd:
9127 case Intrinsic::x86_sse2_ucomilt_sd:
9128 case Intrinsic::x86_sse2_ucomile_sd:
9129 case Intrinsic::x86_sse2_ucomigt_sd:
9130 case Intrinsic::x86_sse2_ucomige_sd:
9131 case Intrinsic::x86_sse2_ucomineq_sd: {
9132 unsigned Opc = 0;
9133 ISD::CondCode CC = ISD::SETCC_INVALID;
9134 switch (IntNo) {
9135 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00009136 case Intrinsic::x86_sse_comieq_ss:
9137 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009138 Opc = X86ISD::COMI;
9139 CC = ISD::SETEQ;
9140 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00009141 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009142 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009143 Opc = X86ISD::COMI;
9144 CC = ISD::SETLT;
9145 break;
9146 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009147 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009148 Opc = X86ISD::COMI;
9149 CC = ISD::SETLE;
9150 break;
9151 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009152 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009153 Opc = X86ISD::COMI;
9154 CC = ISD::SETGT;
9155 break;
9156 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009157 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009158 Opc = X86ISD::COMI;
9159 CC = ISD::SETGE;
9160 break;
9161 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009162 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009163 Opc = X86ISD::COMI;
9164 CC = ISD::SETNE;
9165 break;
9166 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009167 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009168 Opc = X86ISD::UCOMI;
9169 CC = ISD::SETEQ;
9170 break;
9171 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009172 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009173 Opc = X86ISD::UCOMI;
9174 CC = ISD::SETLT;
9175 break;
9176 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009177 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009178 Opc = X86ISD::UCOMI;
9179 CC = ISD::SETLE;
9180 break;
9181 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009182 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009183 Opc = X86ISD::UCOMI;
9184 CC = ISD::SETGT;
9185 break;
9186 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00009187 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00009188 Opc = X86ISD::UCOMI;
9189 CC = ISD::SETGE;
9190 break;
9191 case Intrinsic::x86_sse_ucomineq_ss:
9192 case Intrinsic::x86_sse2_ucomineq_sd:
9193 Opc = X86ISD::UCOMI;
9194 CC = ISD::SETNE;
9195 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00009196 }
Evan Cheng734503b2006-09-11 02:19:56 +00009197
Dan Gohman475871a2008-07-27 21:46:04 +00009198 SDValue LHS = Op.getOperand(1);
9199 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00009200 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00009201 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00009202 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
9203 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9204 DAG.getConstant(X86CC, MVT::i8), Cond);
9205 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00009206 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009207 // ptest and testp intrinsics. The intrinsic these come from are designed to
9208 // return an integer value, not just an instruction so lower it to the ptest
9209 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00009210 case Intrinsic::x86_sse41_ptestz:
9211 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009212 case Intrinsic::x86_sse41_ptestnzc:
9213 case Intrinsic::x86_avx_ptestz_256:
9214 case Intrinsic::x86_avx_ptestc_256:
9215 case Intrinsic::x86_avx_ptestnzc_256:
9216 case Intrinsic::x86_avx_vtestz_ps:
9217 case Intrinsic::x86_avx_vtestc_ps:
9218 case Intrinsic::x86_avx_vtestnzc_ps:
9219 case Intrinsic::x86_avx_vtestz_pd:
9220 case Intrinsic::x86_avx_vtestc_pd:
9221 case Intrinsic::x86_avx_vtestnzc_pd:
9222 case Intrinsic::x86_avx_vtestz_ps_256:
9223 case Intrinsic::x86_avx_vtestc_ps_256:
9224 case Intrinsic::x86_avx_vtestnzc_ps_256:
9225 case Intrinsic::x86_avx_vtestz_pd_256:
9226 case Intrinsic::x86_avx_vtestc_pd_256:
9227 case Intrinsic::x86_avx_vtestnzc_pd_256: {
9228 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00009229 unsigned X86CC = 0;
9230 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00009231 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009232 case Intrinsic::x86_avx_vtestz_ps:
9233 case Intrinsic::x86_avx_vtestz_pd:
9234 case Intrinsic::x86_avx_vtestz_ps_256:
9235 case Intrinsic::x86_avx_vtestz_pd_256:
9236 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00009237 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009238 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00009239 // ZF = 1
9240 X86CC = X86::COND_E;
9241 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009242 case Intrinsic::x86_avx_vtestc_ps:
9243 case Intrinsic::x86_avx_vtestc_pd:
9244 case Intrinsic::x86_avx_vtestc_ps_256:
9245 case Intrinsic::x86_avx_vtestc_pd_256:
9246 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00009247 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009248 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00009249 // CF = 1
9250 X86CC = X86::COND_B;
9251 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009252 case Intrinsic::x86_avx_vtestnzc_ps:
9253 case Intrinsic::x86_avx_vtestnzc_pd:
9254 case Intrinsic::x86_avx_vtestnzc_ps_256:
9255 case Intrinsic::x86_avx_vtestnzc_pd_256:
9256 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00009257 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009258 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00009259 // ZF and CF = 0
9260 X86CC = X86::COND_A;
9261 break;
9262 }
Eric Christopherfd179292009-08-27 18:07:15 +00009263
Eric Christopher71c67532009-07-29 00:28:05 +00009264 SDValue LHS = Op.getOperand(1);
9265 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00009266 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
9267 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00009268 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
9269 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
9270 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00009271 }
Evan Cheng5759f972008-05-04 09:15:50 +00009272
9273 // Fix vector shift instructions where the last operand is a non-immediate
9274 // i32 value.
9275 case Intrinsic::x86_sse2_pslli_w:
9276 case Intrinsic::x86_sse2_pslli_d:
9277 case Intrinsic::x86_sse2_pslli_q:
9278 case Intrinsic::x86_sse2_psrli_w:
9279 case Intrinsic::x86_sse2_psrli_d:
9280 case Intrinsic::x86_sse2_psrli_q:
9281 case Intrinsic::x86_sse2_psrai_w:
9282 case Intrinsic::x86_sse2_psrai_d:
9283 case Intrinsic::x86_mmx_pslli_w:
9284 case Intrinsic::x86_mmx_pslli_d:
9285 case Intrinsic::x86_mmx_pslli_q:
9286 case Intrinsic::x86_mmx_psrli_w:
9287 case Intrinsic::x86_mmx_psrli_d:
9288 case Intrinsic::x86_mmx_psrli_q:
9289 case Intrinsic::x86_mmx_psrai_w:
9290 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00009291 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00009292 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00009293 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00009294
9295 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00009296 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00009297 switch (IntNo) {
9298 case Intrinsic::x86_sse2_pslli_w:
9299 NewIntNo = Intrinsic::x86_sse2_psll_w;
9300 break;
9301 case Intrinsic::x86_sse2_pslli_d:
9302 NewIntNo = Intrinsic::x86_sse2_psll_d;
9303 break;
9304 case Intrinsic::x86_sse2_pslli_q:
9305 NewIntNo = Intrinsic::x86_sse2_psll_q;
9306 break;
9307 case Intrinsic::x86_sse2_psrli_w:
9308 NewIntNo = Intrinsic::x86_sse2_psrl_w;
9309 break;
9310 case Intrinsic::x86_sse2_psrli_d:
9311 NewIntNo = Intrinsic::x86_sse2_psrl_d;
9312 break;
9313 case Intrinsic::x86_sse2_psrli_q:
9314 NewIntNo = Intrinsic::x86_sse2_psrl_q;
9315 break;
9316 case Intrinsic::x86_sse2_psrai_w:
9317 NewIntNo = Intrinsic::x86_sse2_psra_w;
9318 break;
9319 case Intrinsic::x86_sse2_psrai_d:
9320 NewIntNo = Intrinsic::x86_sse2_psra_d;
9321 break;
9322 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00009323 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00009324 switch (IntNo) {
9325 case Intrinsic::x86_mmx_pslli_w:
9326 NewIntNo = Intrinsic::x86_mmx_psll_w;
9327 break;
9328 case Intrinsic::x86_mmx_pslli_d:
9329 NewIntNo = Intrinsic::x86_mmx_psll_d;
9330 break;
9331 case Intrinsic::x86_mmx_pslli_q:
9332 NewIntNo = Intrinsic::x86_mmx_psll_q;
9333 break;
9334 case Intrinsic::x86_mmx_psrli_w:
9335 NewIntNo = Intrinsic::x86_mmx_psrl_w;
9336 break;
9337 case Intrinsic::x86_mmx_psrli_d:
9338 NewIntNo = Intrinsic::x86_mmx_psrl_d;
9339 break;
9340 case Intrinsic::x86_mmx_psrli_q:
9341 NewIntNo = Intrinsic::x86_mmx_psrl_q;
9342 break;
9343 case Intrinsic::x86_mmx_psrai_w:
9344 NewIntNo = Intrinsic::x86_mmx_psra_w;
9345 break;
9346 case Intrinsic::x86_mmx_psrai_d:
9347 NewIntNo = Intrinsic::x86_mmx_psra_d;
9348 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00009349 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00009350 }
9351 break;
9352 }
9353 }
Mon P Wangefa42202009-09-03 19:56:25 +00009354
9355 // The vector shift intrinsics with scalars uses 32b shift amounts but
9356 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
9357 // to be zero.
9358 SDValue ShOps[4];
9359 ShOps[0] = ShAmt;
9360 ShOps[1] = DAG.getConstant(0, MVT::i32);
9361 if (ShAmtVT == MVT::v4i32) {
9362 ShOps[2] = DAG.getUNDEF(MVT::i32);
9363 ShOps[3] = DAG.getUNDEF(MVT::i32);
9364 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
9365 } else {
9366 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00009367// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00009368 }
9369
Owen Andersone50ed302009-08-10 22:56:29 +00009370 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009371 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009372 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009373 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00009374 Op.getOperand(1), ShAmt);
9375 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00009376 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00009377}
Evan Cheng72261582005-12-20 06:22:03 +00009378
Dan Gohmand858e902010-04-17 15:26:15 +00009379SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
9380 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00009381 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9382 MFI->setReturnAddressIsTaken(true);
9383
Bill Wendling64e87322009-01-16 19:25:27 +00009384 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009385 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00009386
9387 if (Depth > 0) {
9388 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
9389 SDValue Offset =
9390 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00009391 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009392 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00009393 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009394 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00009395 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00009396 }
9397
9398 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00009399 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00009400 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009401 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00009402}
9403
Dan Gohmand858e902010-04-17 15:26:15 +00009404SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00009405 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9406 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00009407
Owen Andersone50ed302009-08-10 22:56:29 +00009408 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009409 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00009410 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9411 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00009412 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00009413 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00009414 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
9415 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00009416 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00009417 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00009418}
9419
Dan Gohman475871a2008-07-27 21:46:04 +00009420SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00009421 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00009422 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009423}
9424
Dan Gohmand858e902010-04-17 15:26:15 +00009425SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009426 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00009427 SDValue Chain = Op.getOperand(0);
9428 SDValue Offset = Op.getOperand(1);
9429 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009430 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009431
Dan Gohmand8816272010-08-11 18:14:00 +00009432 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
9433 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
9434 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009435 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009436
Dan Gohmand8816272010-08-11 18:14:00 +00009437 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
9438 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009439 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00009440 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
9441 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00009442 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009443 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009444
Dale Johannesene4d209d2009-02-03 20:21:25 +00009445 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00009446 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00009447 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00009448}
9449
Duncan Sands4a544a72011-09-06 13:37:06 +00009450SDValue X86TargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op,
9451 SelectionDAG &DAG) const {
9452 return Op.getOperand(0);
9453}
9454
9455SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
9456 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00009457 SDValue Root = Op.getOperand(0);
9458 SDValue Trmp = Op.getOperand(1); // trampoline
9459 SDValue FPtr = Op.getOperand(2); // nested function
9460 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009461 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009462
Dan Gohman69de1932008-02-06 22:27:42 +00009463 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009464
9465 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00009466 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00009467
9468 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00009469 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
9470 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00009471
Evan Cheng0e6a0522011-07-18 20:57:22 +00009472 const unsigned char N86R10 = X86_MC::getX86RegNum(X86::R10);
9473 const unsigned char N86R11 = X86_MC::getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00009474
9475 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
9476
9477 // Load the pointer to the nested function into R11.
9478 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00009479 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00009480 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009481 Addr, MachinePointerInfo(TrmpAddr),
9482 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009483
Owen Anderson825b72b2009-08-11 20:47:22 +00009484 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9485 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009486 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
9487 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00009488 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00009489
9490 // Load the 'nest' parameter value into R10.
9491 // R10 is specified in X86CallingConv.td
9492 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00009493 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9494 DAG.getConstant(10, MVT::i64));
9495 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009496 Addr, MachinePointerInfo(TrmpAddr, 10),
9497 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009498
Owen Anderson825b72b2009-08-11 20:47:22 +00009499 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9500 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009501 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
9502 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00009503 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00009504
9505 // Jump to the nested function.
9506 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00009507 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9508 DAG.getConstant(20, MVT::i64));
9509 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009510 Addr, MachinePointerInfo(TrmpAddr, 20),
9511 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009512
9513 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00009514 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9515 DAG.getConstant(22, MVT::i64));
9516 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00009517 MachinePointerInfo(TrmpAddr, 22),
9518 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00009519
Duncan Sands4a544a72011-09-06 13:37:06 +00009520 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009521 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00009522 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00009523 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00009524 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00009525 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009526
9527 switch (CC) {
9528 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00009529 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00009530 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00009531 case CallingConv::X86_StdCall: {
9532 // Pass 'nest' parameter in ECX.
9533 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00009534 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009535
9536 // Check that ECX wasn't needed by an 'inreg' parameter.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00009537 FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00009538 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00009539
Chris Lattner58d74912008-03-12 17:45:29 +00009540 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00009541 unsigned InRegCount = 0;
9542 unsigned Idx = 1;
9543
9544 for (FunctionType::param_iterator I = FTy->param_begin(),
9545 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00009546 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00009547 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00009548 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009549
9550 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00009551 report_fatal_error("Nest register in use - reduce number of inreg"
9552 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00009553 }
9554 }
9555 break;
9556 }
9557 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00009558 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00009559 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00009560 // Pass 'nest' parameter in EAX.
9561 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00009562 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009563 break;
9564 }
9565
Dan Gohman475871a2008-07-27 21:46:04 +00009566 SDValue OutChains[4];
9567 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00009568
Owen Anderson825b72b2009-08-11 20:47:22 +00009569 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9570 DAG.getConstant(10, MVT::i32));
9571 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009572
Chris Lattnera62fe662010-02-05 19:20:30 +00009573 // This is storing the opcode for MOV32ri.
9574 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Evan Cheng0e6a0522011-07-18 20:57:22 +00009575 const unsigned char N86Reg = X86_MC::getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009576 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00009577 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00009578 Trmp, MachinePointerInfo(TrmpAddr),
9579 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009580
Owen Anderson825b72b2009-08-11 20:47:22 +00009581 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9582 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009583 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
9584 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00009585 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009586
Chris Lattnera62fe662010-02-05 19:20:30 +00009587 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00009588 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9589 DAG.getConstant(5, MVT::i32));
9590 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00009591 MachinePointerInfo(TrmpAddr, 5),
9592 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009593
Owen Anderson825b72b2009-08-11 20:47:22 +00009594 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
9595 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00009596 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
9597 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00009598 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009599
Duncan Sands4a544a72011-09-06 13:37:06 +00009600 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
Duncan Sandsb116fac2007-07-27 20:02:49 +00009601 }
9602}
9603
Dan Gohmand858e902010-04-17 15:26:15 +00009604SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
9605 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009606 /*
9607 The rounding mode is in bits 11:10 of FPSR, and has the following
9608 settings:
9609 00 Round to nearest
9610 01 Round to -inf
9611 10 Round to +inf
9612 11 Round to 0
9613
9614 FLT_ROUNDS, on the other hand, expects the following:
9615 -1 Undefined
9616 0 Round to 0
9617 1 Round to nearest
9618 2 Round to +inf
9619 3 Round to -inf
9620
9621 To perform the conversion, we do:
9622 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
9623 */
9624
9625 MachineFunction &MF = DAG.getMachineFunction();
9626 const TargetMachine &TM = MF.getTarget();
Anton Korobeynikov16c29b52011-01-10 12:39:04 +00009627 const TargetFrameLowering &TFI = *TM.getFrameLowering();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009628 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00009629 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00009630 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009631
9632 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00009633 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00009634 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009635
Michael J. Spencerec38de22010-10-10 22:04:20 +00009636
Chris Lattner2156b792010-09-22 01:11:26 +00009637 MachineMemOperand *MMO =
9638 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
9639 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009640
Chris Lattner2156b792010-09-22 01:11:26 +00009641 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
9642 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
9643 DAG.getVTList(MVT::Other),
9644 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009645
9646 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00009647 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00009648 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009649
9650 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00009651 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00009652 DAG.getNode(ISD::SRL, DL, MVT::i16,
9653 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009654 CWD, DAG.getConstant(0x800, MVT::i16)),
9655 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00009656 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00009657 DAG.getNode(ISD::SRL, DL, MVT::i16,
9658 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00009659 CWD, DAG.getConstant(0x400, MVT::i16)),
9660 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009661
Dan Gohman475871a2008-07-27 21:46:04 +00009662 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00009663 DAG.getNode(ISD::AND, DL, MVT::i16,
9664 DAG.getNode(ISD::ADD, DL, MVT::i16,
9665 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00009666 DAG.getConstant(1, MVT::i16)),
9667 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009668
9669
Duncan Sands83ec4b62008-06-06 12:08:01 +00009670 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00009671 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00009672}
9673
Dan Gohmand858e902010-04-17 15:26:15 +00009674SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009675 EVT VT = Op.getValueType();
9676 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009677 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009678 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009679
9680 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009681 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00009682 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00009683 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009684 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009685 }
Evan Cheng18efe262007-12-14 02:13:44 +00009686
Evan Cheng152804e2007-12-14 08:30:15 +00009687 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009688 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009689 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009690
9691 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009692 SDValue Ops[] = {
9693 Op,
9694 DAG.getConstant(NumBits+NumBits-1, OpVT),
9695 DAG.getConstant(X86::COND_E, MVT::i8),
9696 Op.getValue(1)
9697 };
9698 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009699
9700 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00009701 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00009702
Owen Anderson825b72b2009-08-11 20:47:22 +00009703 if (VT == MVT::i8)
9704 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009705 return Op;
9706}
9707
Dan Gohmand858e902010-04-17 15:26:15 +00009708SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00009709 EVT VT = Op.getValueType();
9710 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009711 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009712 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00009713
9714 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00009715 if (VT == MVT::i8) {
9716 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00009717 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009718 }
Evan Cheng152804e2007-12-14 08:30:15 +00009719
9720 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00009721 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009722 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00009723
9724 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00009725 SDValue Ops[] = {
9726 Op,
9727 DAG.getConstant(NumBits, OpVT),
9728 DAG.getConstant(X86::COND_E, MVT::i8),
9729 Op.getValue(1)
9730 };
9731 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00009732
Owen Anderson825b72b2009-08-11 20:47:22 +00009733 if (VT == MVT::i8)
9734 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00009735 return Op;
9736}
9737
Craig Topper13894fa2011-08-24 06:14:18 +00009738// Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
9739// ones, and then concatenate the result back.
9740static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00009741 EVT VT = Op.getValueType();
Craig Topper13894fa2011-08-24 06:14:18 +00009742
9743 assert(VT.getSizeInBits() == 256 && VT.isInteger() &&
9744 "Unsupported value type for operation");
9745
9746 int NumElems = VT.getVectorNumElements();
9747 DebugLoc dl = Op.getDebugLoc();
9748 SDValue Idx0 = DAG.getConstant(0, MVT::i32);
9749 SDValue Idx1 = DAG.getConstant(NumElems/2, MVT::i32);
9750
9751 // Extract the LHS vectors
9752 SDValue LHS = Op.getOperand(0);
9753 SDValue LHS1 = Extract128BitVector(LHS, Idx0, DAG, dl);
9754 SDValue LHS2 = Extract128BitVector(LHS, Idx1, DAG, dl);
9755
9756 // Extract the RHS vectors
9757 SDValue RHS = Op.getOperand(1);
9758 SDValue RHS1 = Extract128BitVector(RHS, Idx0, DAG, dl);
9759 SDValue RHS2 = Extract128BitVector(RHS, Idx1, DAG, dl);
9760
9761 MVT EltVT = VT.getVectorElementType().getSimpleVT();
9762 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9763
9764 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
9765 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
9766 DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
9767}
9768
9769SDValue X86TargetLowering::LowerADD(SDValue Op, SelectionDAG &DAG) const {
9770 assert(Op.getValueType().getSizeInBits() == 256 &&
9771 Op.getValueType().isInteger() &&
9772 "Only handle AVX 256-bit vector integer operation");
9773 return Lower256IntArith(Op, DAG);
9774}
9775
9776SDValue X86TargetLowering::LowerSUB(SDValue Op, SelectionDAG &DAG) const {
9777 assert(Op.getValueType().getSizeInBits() == 256 &&
9778 Op.getValueType().isInteger() &&
9779 "Only handle AVX 256-bit vector integer operation");
9780 return Lower256IntArith(Op, DAG);
9781}
9782
9783SDValue X86TargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
9784 EVT VT = Op.getValueType();
9785
9786 // Decompose 256-bit ops into smaller 128-bit ops.
9787 if (VT.getSizeInBits() == 256)
9788 return Lower256IntArith(Op, DAG);
9789
Owen Anderson825b72b2009-08-11 20:47:22 +00009790 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00009791 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00009792
Mon P Wangaf9b9522008-12-18 21:42:19 +00009793 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
9794 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
9795 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
9796 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
9797 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
9798 //
9799 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
9800 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
9801 // return AloBlo + AloBhi + AhiBlo;
9802
9803 SDValue A = Op.getOperand(0);
9804 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009805
Dale Johannesene4d209d2009-02-03 20:21:25 +00009806 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009807 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9808 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009809 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009810 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9811 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009812 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009813 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009814 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009815 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009816 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009817 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009818 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009819 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00009820 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009821 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009822 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9823 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009824 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00009825 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9826 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00009827 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
9828 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00009829 return Res;
9830}
9831
Nadav Rotem43012222011-05-11 08:12:09 +00009832SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
9833
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009834 EVT VT = Op.getValueType();
9835 DebugLoc dl = Op.getDebugLoc();
9836 SDValue R = Op.getOperand(0);
Nadav Rotem43012222011-05-11 08:12:09 +00009837 SDValue Amt = Op.getOperand(1);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009838 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009839
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009840 if (!(Subtarget->hasSSE2() || Subtarget->hasAVX()))
9841 return SDValue();
9842
9843 // Decompose 256-bit shifts into smaller 128-bit shifts.
9844 if (VT.getSizeInBits() == 256) {
9845 int NumElems = VT.getVectorNumElements();
9846 MVT EltVT = VT.getVectorElementType().getSimpleVT();
9847 EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
9848
9849 // Extract the two vectors
9850 SDValue V1 = Extract128BitVector(R, DAG.getConstant(0, MVT::i32), DAG, dl);
9851 SDValue V2 = Extract128BitVector(R, DAG.getConstant(NumElems/2, MVT::i32),
9852 DAG, dl);
9853
9854 // Recreate the shift amount vectors
Bruno Cardoso Lopes0dd80b02011-08-17 22:12:20 +00009855 SDValue Amt1, Amt2;
9856 if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
9857 // Constant shift amount
9858 SmallVector<SDValue, 4> Amt1Csts;
9859 SmallVector<SDValue, 4> Amt2Csts;
9860 for (int i = 0; i < NumElems/2; ++i)
9861 Amt1Csts.push_back(Amt->getOperand(i));
9862 for (int i = NumElems/2; i < NumElems; ++i)
9863 Amt2Csts.push_back(Amt->getOperand(i));
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009864
Bruno Cardoso Lopes0dd80b02011-08-17 22:12:20 +00009865 Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9866 &Amt1Csts[0], NumElems/2);
9867 Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
9868 &Amt2Csts[0], NumElems/2);
9869 } else {
9870 // Variable shift amount
9871 Amt1 = Extract128BitVector(Amt, DAG.getConstant(0, MVT::i32), DAG, dl);
9872 Amt2 = Extract128BitVector(Amt, DAG.getConstant(NumElems/2, MVT::i32),
9873 DAG, dl);
9874 }
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +00009875
9876 // Issue new vector shifts for the smaller types
9877 V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
9878 V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
9879
9880 // Concatenate the result back
9881 return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
9882 }
Nate Begeman51409212010-07-28 00:21:48 +00009883
Nadav Rotem43012222011-05-11 08:12:09 +00009884 // Optimize shl/srl/sra with constant shift amount.
9885 if (isSplatVector(Amt.getNode())) {
9886 SDValue SclrAmt = Amt->getOperand(0);
9887 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
9888 uint64_t ShiftAmt = C->getZExtValue();
9889
9890 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SHL)
9891 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9892 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9893 R, DAG.getConstant(ShiftAmt, MVT::i32));
9894
9895 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SHL)
9896 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9897 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9898 R, DAG.getConstant(ShiftAmt, MVT::i32));
9899
9900 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SHL)
9901 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9902 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9903 R, DAG.getConstant(ShiftAmt, MVT::i32));
9904
9905 if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SRL)
9906 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9907 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9908 R, DAG.getConstant(ShiftAmt, MVT::i32));
9909
9910 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRL)
9911 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9912 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
9913 R, DAG.getConstant(ShiftAmt, MVT::i32));
9914
9915 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRL)
9916 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9917 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
9918 R, DAG.getConstant(ShiftAmt, MVT::i32));
9919
9920 if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRA)
9921 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9922 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
9923 R, DAG.getConstant(ShiftAmt, MVT::i32));
9924
9925 if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRA)
9926 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9927 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
9928 R, DAG.getConstant(ShiftAmt, MVT::i32));
9929 }
9930 }
9931
9932 // Lower SHL with variable shift amount.
Nadav Rotem43012222011-05-11 08:12:09 +00009933 if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009934 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9935 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9936 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
9937
9938 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00009939
Nate Begeman51409212010-07-28 00:21:48 +00009940 std::vector<Constant*> CV(4, CI);
9941 Constant *C = ConstantVector::get(CV);
9942 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9943 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009944 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009945 false, false, 16);
9946
9947 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00009948 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00009949 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
9950 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
9951 }
Nadav Rotem43012222011-05-11 08:12:09 +00009952 if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
Nate Begeman51409212010-07-28 00:21:48 +00009953 // a = a << 5;
9954 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9955 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9956 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
9957
9958 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
9959 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
9960
9961 std::vector<Constant*> CVM1(16, CM1);
9962 std::vector<Constant*> CVM2(16, CM2);
9963 Constant *C = ConstantVector::get(CVM1);
9964 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9965 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009966 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00009967 false, false, 16);
9968
9969 // r = pblendv(r, psllw(r & (char16)15, 4), a);
9970 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9971 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9972 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9973 DAG.getConstant(4, MVT::i32));
Nadav Rotemfbad25e2011-09-11 15:02:23 +00009974 R = DAG.getNode(ISD::VSELECT, dl, VT, Op, R, M);
Nate Begeman51409212010-07-28 00:21:48 +00009975 // a += a
9976 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009977
Nate Begeman51409212010-07-28 00:21:48 +00009978 C = ConstantVector::get(CVM2);
9979 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9980 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00009981 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00009982 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009983
Nate Begeman51409212010-07-28 00:21:48 +00009984 // r = pblendv(r, psllw(r & (char16)63, 2), a);
9985 M = DAG.getNode(ISD::AND, dl, VT, R, M);
9986 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9987 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9988 DAG.getConstant(2, MVT::i32));
Nadav Rotemfbad25e2011-09-11 15:02:23 +00009989 R = DAG.getNode(ISD::VSELECT, dl, VT, Op, R, M);
Nate Begeman51409212010-07-28 00:21:48 +00009990 // a += a
9991 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00009992
Nate Begeman51409212010-07-28 00:21:48 +00009993 // return pblendv(r, r+r, a);
Nadav Rotemfbad25e2011-09-11 15:02:23 +00009994 R = DAG.getNode(ISD::VSELECT, dl, VT, Op,
9995 R, DAG.getNode(ISD::ADD, dl, VT, R, R));
Nate Begeman51409212010-07-28 00:21:48 +00009996 return R;
9997 }
9998 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00009999}
Mon P Wangaf9b9522008-12-18 21:42:19 +000010000
Dan Gohmand858e902010-04-17 15:26:15 +000010001SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +000010002 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
10003 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +000010004 // looks for this combo and may remove the "setcc" instruction if the "setcc"
10005 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +000010006 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +000010007 SDValue LHS = N->getOperand(0);
10008 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +000010009 unsigned BaseOp = 0;
10010 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010011 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +000010012 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010013 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +000010014 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +000010015 // A subtract of one will be selected as a INC. Note that INC doesn't
10016 // set CF, so we can't do this for UADDO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000010017 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
10018 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000010019 BaseOp = X86ISD::INC;
10020 Cond = X86::COND_O;
10021 break;
10022 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010023 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +000010024 Cond = X86::COND_O;
10025 break;
10026 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010027 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +000010028 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000010029 break;
10030 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +000010031 // A subtract of one will be selected as a DEC. Note that DEC doesn't
10032 // set CF, so we can't do this for USUBO.
Benjamin Kramerc175a4b2011-03-08 15:20:20 +000010033 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
10034 if (C->isOne()) {
Dan Gohman076aee32009-03-04 19:44:21 +000010035 BaseOp = X86ISD::DEC;
10036 Cond = X86::COND_O;
10037 break;
10038 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010039 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +000010040 Cond = X86::COND_O;
10041 break;
10042 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010043 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +000010044 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +000010045 break;
10046 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +000010047 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +000010048 Cond = X86::COND_O;
10049 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010050 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
10051 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
10052 MVT::i32);
10053 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010054
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010055 SDValue SetCC =
10056 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10057 DAG.getConstant(X86::COND_O, MVT::i32),
10058 SDValue(Sum.getNode(), 2));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010059
Dan Gohman6e5fda22011-07-22 18:45:15 +000010060 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010061 }
Bill Wendling74c37652008-12-09 22:08:41 +000010062 }
Bill Wendling3fafd932008-11-26 22:37:40 +000010063
Bill Wendling61edeb52008-12-02 01:06:39 +000010064 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +000010065 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010066 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +000010067
Bill Wendling61edeb52008-12-02 01:06:39 +000010068 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +000010069 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
10070 DAG.getConstant(Cond, MVT::i32),
10071 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +000010072
Dan Gohman6e5fda22011-07-22 18:45:15 +000010073 return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
Bill Wendling41ea7e72008-11-24 19:21:46 +000010074}
10075
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010076SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const{
10077 DebugLoc dl = Op.getDebugLoc();
10078 SDNode* Node = Op.getNode();
10079 EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
10080 EVT VT = Node->getValueType(0);
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010081 if (Subtarget->hasSSE2() && VT.isVector()) {
10082 unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
10083 ExtraVT.getScalarType().getSizeInBits();
10084 SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
10085
10086 unsigned SHLIntrinsicsID = 0;
10087 unsigned SRAIntrinsicsID = 0;
10088 switch (VT.getSimpleVT().SimpleTy) {
10089 default:
10090 return SDValue();
10091 case MVT::v2i64: {
10092 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_q;
10093 SRAIntrinsicsID = 0;
10094 break;
10095 }
10096 case MVT::v4i32: {
10097 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_d;
10098 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_d;
10099 break;
10100 }
10101 case MVT::v8i16: {
10102 SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_w;
10103 SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_w;
10104 break;
10105 }
10106 }
10107
10108 SDValue Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10109 DAG.getConstant(SHLIntrinsicsID, MVT::i32),
10110 Node->getOperand(0), ShAmt);
10111
10112 // In case of 1 bit sext, no need to shr
10113 if (ExtraVT.getScalarType().getSizeInBits() == 1) return Tmp1;
10114
10115 if (SRAIntrinsicsID) {
10116 Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10117 DAG.getConstant(SRAIntrinsicsID, MVT::i32),
10118 Tmp1, ShAmt);
10119 }
10120 return Tmp1;
10121 }
10122
10123 return SDValue();
10124}
10125
10126
Eric Christopher9a9d2752010-07-22 02:48:34 +000010127SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
10128 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010129
Eric Christopher77ed1352011-07-08 00:04:56 +000010130 // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
10131 // There isn't any reason to disable it if the target processor supports it.
10132 if (!Subtarget->hasSSE2() && !Subtarget->is64Bit()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +000010133 SDValue Chain = Op.getOperand(0);
Eric Christopher77ed1352011-07-08 00:04:56 +000010134 SDValue Zero = DAG.getConstant(0, MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +000010135 SDValue Ops[] = {
10136 DAG.getRegister(X86::ESP, MVT::i32), // Base
10137 DAG.getTargetConstant(1, MVT::i8), // Scale
10138 DAG.getRegister(0, MVT::i32), // Index
10139 DAG.getTargetConstant(0, MVT::i32), // Disp
10140 DAG.getRegister(0, MVT::i32), // Segment.
10141 Zero,
10142 Chain
10143 };
Michael J. Spencerec38de22010-10-10 22:04:20 +000010144 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +000010145 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
10146 array_lengthof(Ops));
10147 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +000010148 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000010149
Eric Christopher9a9d2752010-07-22 02:48:34 +000010150 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +000010151 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +000010152 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010153
Chris Lattner132929a2010-08-14 17:26:09 +000010154 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
10155 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10156 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
10157 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010158
Chris Lattner132929a2010-08-14 17:26:09 +000010159 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
10160 if (!Op1 && !Op2 && !Op3 && Op4)
10161 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010162
Chris Lattner132929a2010-08-14 17:26:09 +000010163 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
10164 if (Op1 && !Op2 && !Op3 && !Op4)
10165 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +000010166
10167 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +000010168 // (MFENCE)>;
10169 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +000010170}
10171
Eli Friedman14648462011-07-27 22:21:52 +000010172SDValue X86TargetLowering::LowerATOMIC_FENCE(SDValue Op,
10173 SelectionDAG &DAG) const {
10174 DebugLoc dl = Op.getDebugLoc();
10175 AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
10176 cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
10177 SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
10178 cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
10179
10180 // The only fence that needs an instruction is a sequentially-consistent
10181 // cross-thread fence.
10182 if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
10183 // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
10184 // no-sse2). There isn't any reason to disable it if the target processor
10185 // supports it.
10186 if (Subtarget->hasSSE2() || Subtarget->is64Bit())
10187 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
10188
10189 SDValue Chain = Op.getOperand(0);
10190 SDValue Zero = DAG.getConstant(0, MVT::i32);
10191 SDValue Ops[] = {
10192 DAG.getRegister(X86::ESP, MVT::i32), // Base
10193 DAG.getTargetConstant(1, MVT::i8), // Scale
10194 DAG.getRegister(0, MVT::i32), // Index
10195 DAG.getTargetConstant(0, MVT::i32), // Disp
10196 DAG.getRegister(0, MVT::i32), // Segment.
10197 Zero,
10198 Chain
10199 };
10200 SDNode *Res =
10201 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
10202 array_lengthof(Ops));
10203 return SDValue(Res, 0);
10204 }
10205
10206 // MEMBARRIER is a compiler barrier; it codegens to a no-op.
10207 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
10208}
10209
10210
Dan Gohmand858e902010-04-17 15:26:15 +000010211SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +000010212 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +000010213 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +000010214 unsigned Reg = 0;
10215 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +000010216 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +000010217 default:
10218 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +000010219 case MVT::i8: Reg = X86::AL; size = 1; break;
10220 case MVT::i16: Reg = X86::AX; size = 2; break;
10221 case MVT::i32: Reg = X86::EAX; size = 4; break;
10222 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +000010223 assert(Subtarget->is64Bit() && "Node not type legal!");
10224 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +000010225 break;
Bill Wendling61edeb52008-12-02 01:06:39 +000010226 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +000010227 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +000010228 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +000010229 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +000010230 Op.getOperand(1),
10231 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +000010232 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +000010233 cpIn.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010234 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Chris Lattner93c4a5b2010-09-21 23:59:42 +000010235 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
10236 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
10237 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +000010238 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +000010239 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +000010240 return cpOut;
10241}
10242
Duncan Sands1607f052008-12-01 11:39:25 +000010243SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +000010244 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +000010245 assert(Subtarget->is64Bit() && "Result not type legalized?");
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010246 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000010247 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +000010248 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +000010249 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010250 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
10251 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +000010252 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +000010253 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
10254 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +000010255 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +000010256 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +000010257 rdx.getValue(1)
10258 };
Dale Johannesene4d209d2009-02-03 20:21:25 +000010259 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010260}
10261
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010262SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +000010263 SelectionDAG &DAG) const {
10264 EVT SrcVT = Op.getOperand(0).getValueType();
10265 EVT DstVT = Op.getValueType();
Chris Lattner2a786eb2010-12-19 20:19:20 +000010266 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
10267 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +000010268 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +000010269 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010270 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +000010271 // i64 <=> MMX conversions are Legal.
10272 if (SrcVT==MVT::i64 && DstVT.isVector())
10273 return Op;
10274 if (DstVT==MVT::i64 && SrcVT.isVector())
10275 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +000010276 // MMX <=> MMX conversions are Legal.
10277 if (SrcVT.isVector() && DstVT.isVector())
10278 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +000010279 // All other conversions need to be expanded.
10280 return SDValue();
10281}
Chris Lattner5b856542010-12-20 00:59:46 +000010282
Dan Gohmand858e902010-04-17 15:26:15 +000010283SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +000010284 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +000010285 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000010286 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010287 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +000010288 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +000010289 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010290 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +000010291 Node->getOperand(0),
10292 Node->getOperand(1), negOp,
10293 cast<AtomicSDNode>(Node)->getSrcValue(),
Eli Friedman55ba8162011-07-29 03:05:32 +000010294 cast<AtomicSDNode>(Node)->getAlignment(),
10295 cast<AtomicSDNode>(Node)->getOrdering(),
10296 cast<AtomicSDNode>(Node)->getSynchScope());
Mon P Wang63307c32008-05-05 19:05:59 +000010297}
10298
Eli Friedman327236c2011-08-24 20:50:09 +000010299static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
10300 SDNode *Node = Op.getNode();
10301 DebugLoc dl = Node->getDebugLoc();
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010302 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
Eli Friedman327236c2011-08-24 20:50:09 +000010303
10304 // Convert seq_cst store -> xchg
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010305 // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
10306 // FIXME: On 32-bit, store -> fist or movq would be more efficient
10307 // (The only way to get a 16-byte store is cmpxchg16b)
10308 // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
10309 if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
10310 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Eli Friedman4317fe12011-08-24 21:17:30 +000010311 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
10312 cast<AtomicSDNode>(Node)->getMemoryVT(),
10313 Node->getOperand(0),
10314 Node->getOperand(1), Node->getOperand(2),
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010315 cast<AtomicSDNode>(Node)->getMemOperand(),
Eli Friedman4317fe12011-08-24 21:17:30 +000010316 cast<AtomicSDNode>(Node)->getOrdering(),
10317 cast<AtomicSDNode>(Node)->getSynchScope());
Eli Friedman327236c2011-08-24 20:50:09 +000010318 return Swap.getValue(1);
10319 }
10320 // Other atomic stores have a simple pattern.
10321 return Op;
10322}
10323
Chris Lattner5b856542010-12-20 00:59:46 +000010324static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
10325 EVT VT = Op.getNode()->getValueType(0);
10326
10327 // Let legalize expand this if it isn't a legal type yet.
10328 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
10329 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010330
Chris Lattner5b856542010-12-20 00:59:46 +000010331 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010332
Chris Lattner5b856542010-12-20 00:59:46 +000010333 unsigned Opc;
10334 bool ExtraOp = false;
10335 switch (Op.getOpcode()) {
10336 default: assert(0 && "Invalid code");
10337 case ISD::ADDC: Opc = X86ISD::ADD; break;
10338 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
10339 case ISD::SUBC: Opc = X86ISD::SUB; break;
10340 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
10341 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000010342
Chris Lattner5b856542010-12-20 00:59:46 +000010343 if (!ExtraOp)
10344 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
10345 Op.getOperand(1));
10346 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
10347 Op.getOperand(1), Op.getOperand(2));
10348}
10349
Evan Cheng0db9fe62006-04-25 20:13:52 +000010350/// LowerOperation - Provide custom lowering hooks for some operations.
10351///
Dan Gohmand858e902010-04-17 15:26:15 +000010352SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +000010353 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010354 default: llvm_unreachable("Should not custom lower this!");
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010355 case ISD::SIGN_EXTEND_INREG: return LowerSIGN_EXTEND_INREG(Op,DAG);
Eric Christopher9a9d2752010-07-22 02:48:34 +000010356 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Eli Friedman14648462011-07-27 22:21:52 +000010357 case ISD::ATOMIC_FENCE: return LowerATOMIC_FENCE(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010358 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
10359 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Eli Friedman327236c2011-08-24 20:50:09 +000010360 case ISD::ATOMIC_STORE: return LowerATOMIC_STORE(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010361 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +000010362 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010363 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
10364 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
10365 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
David Greene91585092011-01-26 15:38:49 +000010366 case ISD::EXTRACT_SUBVECTOR: return LowerEXTRACT_SUBVECTOR(Op, DAG);
David Greenecfe33c42011-01-26 19:13:22 +000010367 case ISD::INSERT_SUBVECTOR: return LowerINSERT_SUBVECTOR(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010368 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
10369 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
10370 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000010371 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +000010372 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +000010373 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010374 case ISD::SHL_PARTS:
10375 case ISD::SRA_PARTS:
Nadav Rotem43012222011-05-11 08:12:09 +000010376 case ISD::SRL_PARTS: return LowerShiftParts(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010377 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +000010378 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010379 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +000010380 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010381 case ISD::FABS: return LowerFABS(Op, DAG);
10382 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +000010383 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Stuart Hastings4fd0dee2011-06-01 04:39:42 +000010384 case ISD::FGETSIGN: return LowerFGETSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +000010385 case ISD::SETCC: return LowerSETCC(Op, DAG);
10386 case ISD::SELECT: return LowerSELECT(Op, DAG);
10387 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010388 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010389 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +000010390 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +000010391 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010392 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +000010393 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
10394 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010395 case ISD::FRAME_TO_ARGS_OFFSET:
10396 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +000010397 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010398 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sands4a544a72011-09-06 13:37:06 +000010399 case ISD::INIT_TRAMPOLINE: return LowerINIT_TRAMPOLINE(Op, DAG);
10400 case ISD::ADJUST_TRAMPOLINE: return LowerADJUST_TRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +000010401 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +000010402 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
10403 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000010404 case ISD::MUL: return LowerMUL(Op, DAG);
Nadav Rotem43012222011-05-11 08:12:09 +000010405 case ISD::SRA:
10406 case ISD::SRL:
10407 case ISD::SHL: return LowerShift(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +000010408 case ISD::SADDO:
10409 case ISD::UADDO:
10410 case ISD::SSUBO:
10411 case ISD::USUBO:
10412 case ISD::SMULO:
10413 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +000010414 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000010415 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +000010416 case ISD::ADDC:
10417 case ISD::ADDE:
10418 case ISD::SUBC:
10419 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Craig Topper13894fa2011-08-24 06:14:18 +000010420 case ISD::ADD: return LowerADD(Op, DAG);
10421 case ISD::SUB: return LowerSUB(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +000010422 }
Chris Lattner27a6c732007-11-24 07:07:01 +000010423}
10424
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010425static void ReplaceATOMIC_LOAD(SDNode *Node,
10426 SmallVectorImpl<SDValue> &Results,
10427 SelectionDAG &DAG) {
10428 DebugLoc dl = Node->getDebugLoc();
10429 EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
10430
10431 // Convert wide load -> cmpxchg8b/cmpxchg16b
10432 // FIXME: On 32-bit, load -> fild or movq would be more efficient
10433 // (The only way to get a 16-byte load is cmpxchg16b)
10434 // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
Benjamin Kramer2753ae32011-08-27 17:36:14 +000010435 SDValue Zero = DAG.getConstant(0, VT);
10436 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010437 Node->getOperand(0),
10438 Node->getOperand(1), Zero, Zero,
10439 cast<AtomicSDNode>(Node)->getMemOperand(),
10440 cast<AtomicSDNode>(Node)->getOrdering(),
10441 cast<AtomicSDNode>(Node)->getSynchScope());
10442 Results.push_back(Swap.getValue(0));
10443 Results.push_back(Swap.getValue(1));
10444}
10445
Duncan Sands1607f052008-12-01 11:39:25 +000010446void X86TargetLowering::
10447ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000010448 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +000010449 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010450 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +000010451 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +000010452
10453 SDValue Chain = Node->getOperand(0);
10454 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010455 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010456 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +000010457 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010458 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +000010459 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +000010460 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +000010461 SDValue Result =
10462 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
10463 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +000010464 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +000010465 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010466 Results.push_back(Result.getValue(2));
10467}
10468
Duncan Sands126d9072008-07-04 11:47:58 +000010469/// ReplaceNodeResults - Replace a node with an illegal result type
10470/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +000010471void X86TargetLowering::ReplaceNodeResults(SDNode *N,
10472 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +000010473 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010474 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +000010475 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +000010476 default:
Duncan Sands1607f052008-12-01 11:39:25 +000010477 assert(false && "Do not know how to custom type legalize this operation!");
10478 return;
Nadav Rotemd0f3ef82011-07-14 11:11:14 +000010479 case ISD::SIGN_EXTEND_INREG:
Chris Lattner5b856542010-12-20 00:59:46 +000010480 case ISD::ADDC:
10481 case ISD::ADDE:
10482 case ISD::SUBC:
10483 case ISD::SUBE:
10484 // We don't want to expand or promote these.
10485 return;
Duncan Sands1607f052008-12-01 11:39:25 +000010486 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +000010487 std::pair<SDValue,SDValue> Vals =
10488 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +000010489 SDValue FIST = Vals.first, StackSlot = Vals.second;
10490 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +000010491 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +000010492 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +000010493 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
10494 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +000010495 }
10496 return;
10497 }
10498 case ISD::READCYCLECOUNTER: {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010499 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Duncan Sands1607f052008-12-01 11:39:25 +000010500 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010501 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +000010502 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +000010503 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +000010504 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +000010505 eax.getValue(2));
10506 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
10507 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +000010508 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010509 Results.push_back(edx.getValue(1));
10510 return;
10511 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010512 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +000010513 EVT T = N->getValueType(0);
Benjamin Kramer2753ae32011-08-27 17:36:14 +000010514 assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
Eli Friedman43f51ae2011-08-26 21:21:21 +000010515 bool Regs64bit = T == MVT::i128;
10516 EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
Duncan Sands1607f052008-12-01 11:39:25 +000010517 SDValue cpInL, cpInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000010518 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
10519 DAG.getConstant(0, HalfT));
10520 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
10521 DAG.getConstant(1, HalfT));
10522 cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
10523 Regs64bit ? X86::RAX : X86::EAX,
10524 cpInL, SDValue());
10525 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
10526 Regs64bit ? X86::RDX : X86::EDX,
10527 cpInH, cpInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000010528 SDValue swapInL, swapInH;
Eli Friedman43f51ae2011-08-26 21:21:21 +000010529 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
10530 DAG.getConstant(0, HalfT));
10531 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
10532 DAG.getConstant(1, HalfT));
10533 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
10534 Regs64bit ? X86::RBX : X86::EBX,
10535 swapInL, cpInH.getValue(1));
10536 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
10537 Regs64bit ? X86::RCX : X86::ECX,
10538 swapInH, swapInL.getValue(1));
Duncan Sands1607f052008-12-01 11:39:25 +000010539 SDValue Ops[] = { swapInH.getValue(0),
10540 N->getOperand(1),
10541 swapInH.getValue(1) };
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +000010542 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000010543 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
Eli Friedman43f51ae2011-08-26 21:21:21 +000010544 unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
10545 X86ISD::LCMPXCHG8_DAG;
10546 SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
Andrew Trick1a2cf3b2010-10-11 19:02:04 +000010547 Ops, 3, T, MMO);
Eli Friedman43f51ae2011-08-26 21:21:21 +000010548 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
10549 Regs64bit ? X86::RAX : X86::EAX,
10550 HalfT, Result.getValue(1));
10551 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
10552 Regs64bit ? X86::RDX : X86::EDX,
10553 HalfT, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +000010554 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Eli Friedman43f51ae2011-08-26 21:21:21 +000010555 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +000010556 Results.push_back(cpOutH.getValue(1));
10557 return;
10558 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010559 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +000010560 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
10561 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010562 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +000010563 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
10564 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010565 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +000010566 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
10567 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010568 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +000010569 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
10570 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010571 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +000010572 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
10573 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010574 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +000010575 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
10576 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +000010577 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +000010578 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
10579 return;
Eli Friedmanf8f90f02011-08-24 22:33:28 +000010580 case ISD::ATOMIC_LOAD:
10581 ReplaceATOMIC_LOAD(N, Results, DAG);
Chris Lattner27a6c732007-11-24 07:07:01 +000010582 }
Evan Cheng0db9fe62006-04-25 20:13:52 +000010583}
10584
Evan Cheng72261582005-12-20 06:22:03 +000010585const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
10586 switch (Opcode) {
10587 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +000010588 case X86ISD::BSF: return "X86ISD::BSF";
10589 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +000010590 case X86ISD::SHLD: return "X86ISD::SHLD";
10591 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +000010592 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +000010593 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +000010594 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +000010595 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +000010596 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +000010597 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +000010598 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
10599 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
10600 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +000010601 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +000010602 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +000010603 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +000010604 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +000010605 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +000010606 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +000010607 case X86ISD::COMI: return "X86ISD::COMI";
10608 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +000010609 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +000010610 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Stuart Hastings865f0932011-06-03 23:53:54 +000010611 case X86ISD::FSETCCsd: return "X86ISD::FSETCCsd";
10612 case X86ISD::FSETCCss: return "X86ISD::FSETCCss";
Evan Cheng72261582005-12-20 06:22:03 +000010613 case X86ISD::CMOV: return "X86ISD::CMOV";
10614 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +000010615 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +000010616 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
10617 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +000010618 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +000010619 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +000010620 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +000010621 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +000010622 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +000010623 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
10624 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +000010625 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +000010626 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000010627 case X86ISD::ANDNP: return "X86ISD::ANDNP";
Nate Begemanb65c1752010-12-17 22:55:37 +000010628 case X86ISD::PSIGNB: return "X86ISD::PSIGNB";
10629 case X86ISD::PSIGNW: return "X86ISD::PSIGNW";
10630 case X86ISD::PSIGND: return "X86ISD::PSIGND";
Evan Cheng8ca29322006-11-10 21:43:37 +000010631 case X86ISD::FMAX: return "X86ISD::FMAX";
10632 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +000010633 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
10634 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +000010635 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +000010636 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +000010637 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +000010638 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +000010639 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +000010640 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
10641 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010642 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
10643 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
10644 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
10645 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
10646 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
10647 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +000010648 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
10649 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +000010650 case X86ISD::VSHL: return "X86ISD::VSHL";
10651 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +000010652 case X86ISD::CMPPD: return "X86ISD::CMPPD";
10653 case X86ISD::CMPPS: return "X86ISD::CMPPS";
10654 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
10655 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
10656 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
10657 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
10658 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
10659 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
10660 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
10661 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +000010662 case X86ISD::ADD: return "X86ISD::ADD";
10663 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +000010664 case X86ISD::ADC: return "X86ISD::ADC";
10665 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +000010666 case X86ISD::SMUL: return "X86ISD::SMUL";
10667 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +000010668 case X86ISD::INC: return "X86ISD::INC";
10669 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +000010670 case X86ISD::OR: return "X86ISD::OR";
10671 case X86ISD::XOR: return "X86ISD::XOR";
10672 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +000010673 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +000010674 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +000010675 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010676 case X86ISD::PALIGN: return "X86ISD::PALIGN";
10677 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
10678 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
10679 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
10680 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
10681 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
10682 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
10683 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
10684 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010685 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +000010686 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010687 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +000010688 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
10689 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010690 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
10691 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
10692 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
10693 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
10694 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
10695 case X86ISD::MOVSD: return "X86ISD::MOVSD";
10696 case X86ISD::MOVSS: return "X86ISD::MOVSS";
10697 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
10698 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
David Greenefbf05d32011-02-22 23:31:46 +000010699 case X86ISD::VUNPCKLPDY: return "X86ISD::VUNPCKLPDY";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +000010700 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
10701 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
10702 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
10703 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
10704 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
10705 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
10706 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
10707 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
10708 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
10709 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Bruno Cardoso Lopes0e6d2302011-08-17 02:29:19 +000010710 case X86ISD::VBROADCAST: return "X86ISD::VBROADCAST";
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000010711 case X86ISD::VPERMILPS: return "X86ISD::VPERMILPS";
10712 case X86ISD::VPERMILPSY: return "X86ISD::VPERMILPSY";
10713 case X86ISD::VPERMILPD: return "X86ISD::VPERMILPD";
10714 case X86ISD::VPERMILPDY: return "X86ISD::VPERMILPDY";
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +000010715 case X86ISD::VPERM2F128: return "X86ISD::VPERM2F128";
Dan Gohmand6708ea2009-08-15 01:38:56 +000010716 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +000010717 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010718 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Eli Friedman14648462011-07-27 22:21:52 +000010719 case X86ISD::MEMBARRIER: return "X86ISD::MEMBARRIER";
Rafael Espindolad07b7ec2011-08-30 19:43:21 +000010720 case X86ISD::SEG_ALLOCA: return "X86ISD::SEG_ALLOCA";
Evan Cheng72261582005-12-20 06:22:03 +000010721 }
10722}
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010723
Chris Lattnerc9addb72007-03-30 23:15:24 +000010724// isLegalAddressingMode - Return true if the addressing mode represented
10725// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +000010726bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010727 Type *Ty) const {
Chris Lattnerc9addb72007-03-30 23:15:24 +000010728 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010729 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +000010730 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +000010731
Chris Lattnerc9addb72007-03-30 23:15:24 +000010732 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010733 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010734 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +000010735
Chris Lattnerc9addb72007-03-30 23:15:24 +000010736 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +000010737 unsigned GVFlags =
10738 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010739
Chris Lattnerdfed4132009-07-10 07:38:24 +000010740 // If a reference to this global requires an extra load, we can't fold it.
10741 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +000010742 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010743
Chris Lattnerdfed4132009-07-10 07:38:24 +000010744 // If BaseGV requires a register for the PIC base, we cannot also have a
10745 // BaseReg specified.
10746 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +000010747 return false;
Evan Cheng52787842007-08-01 23:46:47 +000010748
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010749 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +000010750 if ((M != CodeModel::Small || R != Reloc::Static) &&
10751 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +000010752 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +000010753 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010754
Chris Lattnerc9addb72007-03-30 23:15:24 +000010755 switch (AM.Scale) {
10756 case 0:
10757 case 1:
10758 case 2:
10759 case 4:
10760 case 8:
10761 // These scales always work.
10762 break;
10763 case 3:
10764 case 5:
10765 case 9:
10766 // These scales are formed with basereg+scalereg. Only accept if there is
10767 // no basereg yet.
10768 if (AM.HasBaseReg)
10769 return false;
10770 break;
10771 default: // Other stuff never works.
10772 return false;
10773 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010774
Chris Lattnerc9addb72007-03-30 23:15:24 +000010775 return true;
10776}
10777
10778
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010779bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010780 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +000010781 return false;
Evan Chenge127a732007-10-29 07:57:50 +000010782 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
10783 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010784 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +000010785 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010786 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +000010787}
10788
Owen Andersone50ed302009-08-10 22:56:29 +000010789bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +000010790 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010791 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +000010792 unsigned NumBits1 = VT1.getSizeInBits();
10793 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +000010794 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010795 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +000010796 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +000010797}
Evan Cheng2bd122c2007-10-26 01:56:11 +000010798
Chris Lattnerdb125cf2011-07-18 04:54:35 +000010799bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010800 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000010801 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010802}
10803
Owen Andersone50ed302009-08-10 22:56:29 +000010804bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +000010805 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +000010806 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +000010807}
10808
Owen Andersone50ed302009-08-10 22:56:29 +000010809bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +000010810 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +000010811 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +000010812}
10813
Evan Cheng60c07e12006-07-05 22:17:51 +000010814/// isShuffleMaskLegal - Targets can use this to indicate that they only
10815/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
10816/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
10817/// are assumed to be legal.
10818bool
Eric Christopherfd179292009-08-27 18:07:15 +000010819X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +000010820 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +000010821 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +000010822 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +000010823 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +000010824
Nate Begemana09008b2009-10-19 02:17:23 +000010825 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +000010826 return (VT.getVectorNumElements() == 2 ||
10827 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
10828 isMOVLMask(M, VT) ||
10829 isSHUFPMask(M, VT) ||
10830 isPSHUFDMask(M, VT) ||
10831 isPSHUFHWMask(M, VT) ||
10832 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +000010833 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +000010834 isUNPCKLMask(M, VT) ||
10835 isUNPCKHMask(M, VT) ||
10836 isUNPCKL_v_undef_Mask(M, VT) ||
10837 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010838}
10839
Dan Gohman7d8143f2008-04-09 20:09:42 +000010840bool
Nate Begeman5a5ca152009-04-29 05:20:52 +000010841X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +000010842 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +000010843 unsigned NumElts = VT.getVectorNumElements();
10844 // FIXME: This collection of masks seems suspect.
10845 if (NumElts == 2)
10846 return true;
10847 if (NumElts == 4 && VT.getSizeInBits() == 128) {
10848 return (isMOVLMask(Mask, VT) ||
10849 isCommutedMOVLMask(Mask, VT, true) ||
10850 isSHUFPMask(Mask, VT) ||
10851 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +000010852 }
10853 return false;
10854}
10855
10856//===----------------------------------------------------------------------===//
10857// X86 Scheduler Hooks
10858//===----------------------------------------------------------------------===//
10859
Mon P Wang63307c32008-05-05 19:05:59 +000010860// private utility function
10861MachineBasicBlock *
10862X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
10863 MachineBasicBlock *MBB,
10864 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010865 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010866 unsigned LoadOpc,
10867 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010868 unsigned notOpc,
10869 unsigned EAXreg,
10870 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010871 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000010872 // For the atomic bitwise operator, we generate
10873 // thisMBB:
10874 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000010875 // ld t1 = [bitinstr.addr]
10876 // op t2 = t1, [bitinstr.val]
10877 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000010878 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
10879 // bz newMBB
10880 // fallthrough -->nextMBB
10881 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10882 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010883 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000010884 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010885
Mon P Wang63307c32008-05-05 19:05:59 +000010886 /// First build the CFG
10887 MachineFunction *F = MBB->getParent();
10888 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000010889 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10890 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10891 F->insert(MBBIter, newMBB);
10892 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010893
Dan Gohman14152b42010-07-06 20:24:04 +000010894 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10895 nextMBB->splice(nextMBB->begin(), thisMBB,
10896 llvm::next(MachineBasicBlock::iterator(bInstr)),
10897 thisMBB->end());
10898 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010899
Mon P Wang63307c32008-05-05 19:05:59 +000010900 // Update thisMBB to fall through to newMBB
10901 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010902
Mon P Wang63307c32008-05-05 19:05:59 +000010903 // newMBB jumps to itself and fall through to nextMBB
10904 newMBB->addSuccessor(nextMBB);
10905 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000010906
Mon P Wang63307c32008-05-05 19:05:59 +000010907 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010908 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000010909 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +000010910 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000010911 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010912 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000010913 int numArgs = bInstr->getNumOperands() - 1;
10914 for (int i=0; i < numArgs; ++i)
10915 argOpers[i] = &bInstr->getOperand(i+1);
10916
10917 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010918 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000010919 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000010920
Dale Johannesen140be2d2008-08-19 18:47:28 +000010921 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000010922 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000010923 for (int i=0; i <= lastAddrIndx; ++i)
10924 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010925
Dale Johannesen140be2d2008-08-19 18:47:28 +000010926 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010927 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010928 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010929 }
Scott Michelfdc40a02009-02-17 22:15:04 +000010930 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010931 tt = t1;
10932
Dale Johannesen140be2d2008-08-19 18:47:28 +000010933 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +000010934 assert((argOpers[valArgIndx]->isReg() ||
10935 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000010936 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +000010937 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000010938 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000010939 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000010940 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010941 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +000010942 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010943
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010944 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +000010945 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +000010946
Dale Johannesene4d209d2009-02-03 20:21:25 +000010947 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +000010948 for (int i=0; i <= lastAddrIndx; ++i)
10949 (*MIB).addOperand(*argOpers[i]);
10950 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +000010951 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000010952 (*MIB).setMemRefs(bInstr->memoperands_begin(),
10953 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +000010954
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010955 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +000010956 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +000010957
Mon P Wang63307c32008-05-05 19:05:59 +000010958 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000010959 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000010960
Dan Gohman14152b42010-07-06 20:24:04 +000010961 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000010962 return nextMBB;
10963}
10964
Dale Johannesen1b54c7f2008-10-03 19:41:08 +000010965// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +000010966MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010967X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
10968 MachineBasicBlock *MBB,
10969 unsigned regOpcL,
10970 unsigned regOpcH,
10971 unsigned immOpcL,
10972 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000010973 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010974 // For the atomic bitwise operator, we generate
10975 // thisMBB (instructions are in pairs, except cmpxchg8b)
10976 // ld t1,t2 = [bitinstr.addr]
10977 // newMBB:
10978 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
10979 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +000010980 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010981 // mov ECX, EBX <- t5, t6
10982 // mov EAX, EDX <- t1, t2
10983 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
10984 // mov t3, t4 <- EAX, EDX
10985 // bz newMBB
10986 // result in out1, out2
10987 // fallthrough -->nextMBB
10988
10989 const TargetRegisterClass *RC = X86::GR32RegisterClass;
10990 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010991 const unsigned NotOpc = X86::NOT32r;
10992 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10993 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10994 MachineFunction::iterator MBBIter = MBB;
10995 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000010996
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010997 /// First build the CFG
10998 MachineFunction *F = MBB->getParent();
10999 MachineBasicBlock *thisMBB = MBB;
11000 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
11001 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
11002 F->insert(MBBIter, newMBB);
11003 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011004
Dan Gohman14152b42010-07-06 20:24:04 +000011005 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11006 nextMBB->splice(nextMBB->begin(), thisMBB,
11007 llvm::next(MachineBasicBlock::iterator(bInstr)),
11008 thisMBB->end());
11009 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011010
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011011 // Update thisMBB to fall through to newMBB
11012 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011013
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011014 // newMBB jumps to itself and fall through to nextMBB
11015 newMBB->addSuccessor(nextMBB);
11016 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011017
Dale Johannesene4d209d2009-02-03 20:21:25 +000011018 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011019 // Insert instructions into newMBB based on incoming instruction
11020 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011021 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000011022 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011023 MachineOperand& dest1Oper = bInstr->getOperand(0);
11024 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011025 MachineOperand* argOpers[2 + X86::AddrNumOperands];
11026 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011027 argOpers[i] = &bInstr->getOperand(i+2);
11028
Dan Gohman71ea4e52010-05-14 21:01:44 +000011029 // We use some of the operands multiple times, so conservatively just
11030 // clear any kill flags that might be present.
11031 if (argOpers[i]->isReg() && argOpers[i]->isUse())
11032 argOpers[i]->setIsKill(false);
11033 }
11034
Evan Chengad5b52f2010-01-08 19:14:57 +000011035 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011036 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +000011037
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011038 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011039 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011040 for (int i=0; i <= lastAddrIndx; ++i)
11041 (*MIB).addOperand(*argOpers[i]);
11042 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011043 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +000011044 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +000011045 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011046 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +000011047 MachineOperand newOp3 = *(argOpers[3]);
11048 if (newOp3.isImm())
11049 newOp3.setImm(newOp3.getImm()+4);
11050 else
11051 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011052 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +000011053 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011054
11055 // t3/4 are defined later, at the bottom of the loop
11056 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
11057 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011058 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011059 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011060 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011061 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
11062
Evan Cheng306b4ca2010-01-08 23:41:50 +000011063 // The subsequent operations should be using the destination registers of
11064 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +000011065 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +000011066 t1 = F->getRegInfo().createVirtualRegister(RC);
11067 t2 = F->getRegInfo().createVirtualRegister(RC);
11068 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
11069 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011070 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +000011071 t1 = dest1Oper.getReg();
11072 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011073 }
11074
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011075 int valArgIndx = lastAddrIndx + 1;
11076 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +000011077 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011078 "invalid operand");
11079 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
11080 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011081 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000011082 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011083 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000011084 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +000011085 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000011086 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011087 (*MIB).addOperand(*argOpers[valArgIndx]);
11088 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000011089 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011090 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +000011091 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011092 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +000011093 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011094 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000011095 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +000011096 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +000011097 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011098 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011099
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011100 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011101 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011102 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011103 MIB.addReg(t2);
11104
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011105 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011106 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011107 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011108 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +000011109
Dale Johannesene4d209d2009-02-03 20:21:25 +000011110 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011111 for (int i=0; i <= lastAddrIndx; ++i)
11112 (*MIB).addOperand(*argOpers[i]);
11113
11114 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000011115 (*MIB).setMemRefs(bInstr->memoperands_begin(),
11116 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011117
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011118 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011119 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011120 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011121 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +000011122
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011123 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000011124 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011125
Dan Gohman14152b42010-07-06 20:24:04 +000011126 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000011127 return nextMBB;
11128}
11129
11130// private utility function
11131MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +000011132X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
11133 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +000011134 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +000011135 // For the atomic min/max operator, we generate
11136 // thisMBB:
11137 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +000011138 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +000011139 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +000011140 // cmp t1, t2
11141 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +000011142 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +000011143 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
11144 // bz newMBB
11145 // fallthrough -->nextMBB
11146 //
11147 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11148 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +000011149 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +000011150 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +000011151
Mon P Wang63307c32008-05-05 19:05:59 +000011152 /// First build the CFG
11153 MachineFunction *F = MBB->getParent();
11154 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000011155 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
11156 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
11157 F->insert(MBBIter, newMBB);
11158 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011159
Dan Gohman14152b42010-07-06 20:24:04 +000011160 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11161 nextMBB->splice(nextMBB->begin(), thisMBB,
11162 llvm::next(MachineBasicBlock::iterator(mInstr)),
11163 thisMBB->end());
11164 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011165
Mon P Wang63307c32008-05-05 19:05:59 +000011166 // Update thisMBB to fall through to newMBB
11167 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011168
Mon P Wang63307c32008-05-05 19:05:59 +000011169 // newMBB jumps to newMBB and fall through to nextMBB
11170 newMBB->addSuccessor(nextMBB);
11171 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +000011172
Dale Johannesene4d209d2009-02-03 20:21:25 +000011173 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +000011174 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011175 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +000011176 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +000011177 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011178 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +000011179 int numArgs = mInstr->getNumOperands() - 1;
11180 for (int i=0; i < numArgs; ++i)
11181 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +000011182
Mon P Wang63307c32008-05-05 19:05:59 +000011183 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000011184 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +000011185 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +000011186
Mon P Wangab3e7472008-05-05 22:56:23 +000011187 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011188 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +000011189 for (int i=0; i <= lastAddrIndx; ++i)
11190 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +000011191
Mon P Wang63307c32008-05-05 19:05:59 +000011192 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +000011193 assert((argOpers[valArgIndx]->isReg() ||
11194 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +000011195 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +000011196
11197 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +000011198 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011199 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +000011200 else
Dale Johannesene4d209d2009-02-03 20:21:25 +000011201 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +000011202 (*MIB).addOperand(*argOpers[valArgIndx]);
11203
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011204 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +000011205 MIB.addReg(t1);
11206
Dale Johannesene4d209d2009-02-03 20:21:25 +000011207 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +000011208 MIB.addReg(t1);
11209 MIB.addReg(t2);
11210
11211 // Generate movc
11212 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +000011213 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +000011214 MIB.addReg(t2);
11215 MIB.addReg(t1);
11216
11217 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +000011218 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +000011219 for (int i=0; i <= lastAddrIndx; ++i)
11220 (*MIB).addOperand(*argOpers[i]);
11221 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +000011222 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +000011223 (*MIB).setMemRefs(mInstr->memoperands_begin(),
11224 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +000011225
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000011226 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +000011227 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +000011228
Mon P Wang63307c32008-05-05 19:05:59 +000011229 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +000011230 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +000011231
Dan Gohman14152b42010-07-06 20:24:04 +000011232 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +000011233 return nextMBB;
11234}
11235
Eric Christopherf83a5de2009-08-27 18:08:16 +000011236// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011237// or XMM0_V32I8 in AVX all of this code can be replaced with that
11238// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +000011239MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +000011240X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +000011241 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011242 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
11243 "Target must have SSE4.2 or AVX features enabled");
11244
Eric Christopherb120ab42009-08-18 22:50:32 +000011245 DebugLoc dl = MI->getDebugLoc();
11246 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +000011247 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000011248 if (!Subtarget->hasAVX()) {
11249 if (memArg)
11250 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
11251 else
11252 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
11253 } else {
11254 if (memArg)
11255 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
11256 else
11257 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
11258 }
Eric Christopherb120ab42009-08-18 22:50:32 +000011259
Eric Christopher41c902f2010-11-30 08:20:21 +000011260 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +000011261 for (unsigned i = 0; i < numArgs; ++i) {
11262 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +000011263 if (!(Op.isReg() && Op.isImplicit()))
11264 MIB.addOperand(Op);
11265 }
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000011266 BuildMI(*BB, MI, dl,
11267 TII->get(Subtarget->hasAVX() ? X86::VMOVAPSrr : X86::MOVAPSrr),
11268 MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +000011269 .addReg(X86::XMM0);
11270
Dan Gohman14152b42010-07-06 20:24:04 +000011271 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +000011272 return BB;
11273}
11274
11275MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +000011276X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000011277 DebugLoc dl = MI->getDebugLoc();
11278 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011279
Eric Christopher228232b2010-11-30 07:20:12 +000011280 // Address into RAX/EAX, other two args into ECX, EDX.
11281 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
11282 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
11283 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
11284 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +000011285 MIB.addOperand(MI->getOperand(i));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011286
Eric Christopher228232b2010-11-30 07:20:12 +000011287 unsigned ValOps = X86::AddrNumOperands;
11288 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
11289 .addReg(MI->getOperand(ValOps).getReg());
11290 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
11291 .addReg(MI->getOperand(ValOps+1).getReg());
11292
11293 // The instruction doesn't actually take any operands though.
11294 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011295
Eric Christopher228232b2010-11-30 07:20:12 +000011296 MI->eraseFromParent(); // The pseudo is gone now.
11297 return BB;
11298}
11299
11300MachineBasicBlock *
11301X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +000011302 DebugLoc dl = MI->getDebugLoc();
11303 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011304
Eric Christopher228232b2010-11-30 07:20:12 +000011305 // First arg in ECX, the second in EAX.
11306 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
11307 .addReg(MI->getOperand(0).getReg());
11308 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
11309 .addReg(MI->getOperand(1).getReg());
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011310
Eric Christopher228232b2010-11-30 07:20:12 +000011311 // The instruction doesn't actually take any operands though.
11312 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000011313
Eric Christopher228232b2010-11-30 07:20:12 +000011314 MI->eraseFromParent(); // The pseudo is gone now.
11315 return BB;
11316}
11317
11318MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +000011319X86TargetLowering::EmitVAARG64WithCustomInserter(
11320 MachineInstr *MI,
11321 MachineBasicBlock *MBB) const {
11322 // Emit va_arg instruction on X86-64.
11323
11324 // Operands to this pseudo-instruction:
11325 // 0 ) Output : destination address (reg)
11326 // 1-5) Input : va_list address (addr, i64mem)
11327 // 6 ) ArgSize : Size (in bytes) of vararg type
11328 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
11329 // 8 ) Align : Alignment of type
11330 // 9 ) EFLAGS (implicit-def)
11331
11332 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
11333 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
11334
11335 unsigned DestReg = MI->getOperand(0).getReg();
11336 MachineOperand &Base = MI->getOperand(1);
11337 MachineOperand &Scale = MI->getOperand(2);
11338 MachineOperand &Index = MI->getOperand(3);
11339 MachineOperand &Disp = MI->getOperand(4);
11340 MachineOperand &Segment = MI->getOperand(5);
11341 unsigned ArgSize = MI->getOperand(6).getImm();
11342 unsigned ArgMode = MI->getOperand(7).getImm();
11343 unsigned Align = MI->getOperand(8).getImm();
11344
11345 // Memory Reference
11346 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
11347 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
11348 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
11349
11350 // Machine Information
11351 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11352 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
11353 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
11354 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
11355 DebugLoc DL = MI->getDebugLoc();
11356
11357 // struct va_list {
11358 // i32 gp_offset
11359 // i32 fp_offset
11360 // i64 overflow_area (address)
11361 // i64 reg_save_area (address)
11362 // }
11363 // sizeof(va_list) = 24
11364 // alignment(va_list) = 8
11365
11366 unsigned TotalNumIntRegs = 6;
11367 unsigned TotalNumXMMRegs = 8;
11368 bool UseGPOffset = (ArgMode == 1);
11369 bool UseFPOffset = (ArgMode == 2);
11370 unsigned MaxOffset = TotalNumIntRegs * 8 +
11371 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
11372
11373 /* Align ArgSize to a multiple of 8 */
11374 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
11375 bool NeedsAlign = (Align > 8);
11376
11377 MachineBasicBlock *thisMBB = MBB;
11378 MachineBasicBlock *overflowMBB;
11379 MachineBasicBlock *offsetMBB;
11380 MachineBasicBlock *endMBB;
11381
11382 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
11383 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
11384 unsigned OffsetReg = 0;
11385
11386 if (!UseGPOffset && !UseFPOffset) {
11387 // If we only pull from the overflow region, we don't create a branch.
11388 // We don't need to alter control flow.
11389 OffsetDestReg = 0; // unused
11390 OverflowDestReg = DestReg;
11391
11392 offsetMBB = NULL;
11393 overflowMBB = thisMBB;
11394 endMBB = thisMBB;
11395 } else {
11396 // First emit code to check if gp_offset (or fp_offset) is below the bound.
11397 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
11398 // If not, pull from overflow_area. (branch to overflowMBB)
11399 //
11400 // thisMBB
11401 // | .
11402 // | .
11403 // offsetMBB overflowMBB
11404 // | .
11405 // | .
11406 // endMBB
11407
11408 // Registers for the PHI in endMBB
11409 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
11410 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
11411
11412 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11413 MachineFunction *MF = MBB->getParent();
11414 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11415 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11416 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11417
11418 MachineFunction::iterator MBBIter = MBB;
11419 ++MBBIter;
11420
11421 // Insert the new basic blocks
11422 MF->insert(MBBIter, offsetMBB);
11423 MF->insert(MBBIter, overflowMBB);
11424 MF->insert(MBBIter, endMBB);
11425
11426 // Transfer the remainder of MBB and its successor edges to endMBB.
11427 endMBB->splice(endMBB->begin(), thisMBB,
11428 llvm::next(MachineBasicBlock::iterator(MI)),
11429 thisMBB->end());
11430 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11431
11432 // Make offsetMBB and overflowMBB successors of thisMBB
11433 thisMBB->addSuccessor(offsetMBB);
11434 thisMBB->addSuccessor(overflowMBB);
11435
11436 // endMBB is a successor of both offsetMBB and overflowMBB
11437 offsetMBB->addSuccessor(endMBB);
11438 overflowMBB->addSuccessor(endMBB);
11439
11440 // Load the offset value into a register
11441 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
11442 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
11443 .addOperand(Base)
11444 .addOperand(Scale)
11445 .addOperand(Index)
11446 .addDisp(Disp, UseFPOffset ? 4 : 0)
11447 .addOperand(Segment)
11448 .setMemRefs(MMOBegin, MMOEnd);
11449
11450 // Check if there is enough room left to pull this argument.
11451 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
11452 .addReg(OffsetReg)
11453 .addImm(MaxOffset + 8 - ArgSizeA8);
11454
11455 // Branch to "overflowMBB" if offset >= max
11456 // Fall through to "offsetMBB" otherwise
11457 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
11458 .addMBB(overflowMBB);
11459 }
11460
11461 // In offsetMBB, emit code to use the reg_save_area.
11462 if (offsetMBB) {
11463 assert(OffsetReg != 0);
11464
11465 // Read the reg_save_area address.
11466 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
11467 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
11468 .addOperand(Base)
11469 .addOperand(Scale)
11470 .addOperand(Index)
11471 .addDisp(Disp, 16)
11472 .addOperand(Segment)
11473 .setMemRefs(MMOBegin, MMOEnd);
11474
11475 // Zero-extend the offset
11476 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
11477 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
11478 .addImm(0)
11479 .addReg(OffsetReg)
11480 .addImm(X86::sub_32bit);
11481
11482 // Add the offset to the reg_save_area to get the final address.
11483 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
11484 .addReg(OffsetReg64)
11485 .addReg(RegSaveReg);
11486
11487 // Compute the offset for the next argument
11488 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
11489 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
11490 .addReg(OffsetReg)
11491 .addImm(UseFPOffset ? 16 : 8);
11492
11493 // Store it back into the va_list.
11494 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
11495 .addOperand(Base)
11496 .addOperand(Scale)
11497 .addOperand(Index)
11498 .addDisp(Disp, UseFPOffset ? 4 : 0)
11499 .addOperand(Segment)
11500 .addReg(NextOffsetReg)
11501 .setMemRefs(MMOBegin, MMOEnd);
11502
11503 // Jump to endMBB
11504 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
11505 .addMBB(endMBB);
11506 }
11507
11508 //
11509 // Emit code to use overflow area
11510 //
11511
11512 // Load the overflow_area address into a register.
11513 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
11514 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
11515 .addOperand(Base)
11516 .addOperand(Scale)
11517 .addOperand(Index)
11518 .addDisp(Disp, 8)
11519 .addOperand(Segment)
11520 .setMemRefs(MMOBegin, MMOEnd);
11521
11522 // If we need to align it, do so. Otherwise, just copy the address
11523 // to OverflowDestReg.
11524 if (NeedsAlign) {
11525 // Align the overflow address
11526 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
11527 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
11528
11529 // aligned_addr = (addr + (align-1)) & ~(align-1)
11530 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
11531 .addReg(OverflowAddrReg)
11532 .addImm(Align-1);
11533
11534 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
11535 .addReg(TmpReg)
11536 .addImm(~(uint64_t)(Align-1));
11537 } else {
11538 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
11539 .addReg(OverflowAddrReg);
11540 }
11541
11542 // Compute the next overflow address after this argument.
11543 // (the overflow address should be kept 8-byte aligned)
11544 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
11545 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
11546 .addReg(OverflowDestReg)
11547 .addImm(ArgSizeA8);
11548
11549 // Store the new overflow address.
11550 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
11551 .addOperand(Base)
11552 .addOperand(Scale)
11553 .addOperand(Index)
11554 .addDisp(Disp, 8)
11555 .addOperand(Segment)
11556 .addReg(NextAddrReg)
11557 .setMemRefs(MMOBegin, MMOEnd);
11558
11559 // If we branched, emit the PHI to the front of endMBB.
11560 if (offsetMBB) {
11561 BuildMI(*endMBB, endMBB->begin(), DL,
11562 TII->get(X86::PHI), DestReg)
11563 .addReg(OffsetDestReg).addMBB(offsetMBB)
11564 .addReg(OverflowDestReg).addMBB(overflowMBB);
11565 }
11566
11567 // Erase the pseudo instruction
11568 MI->eraseFromParent();
11569
11570 return endMBB;
11571}
11572
11573MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +000011574X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
11575 MachineInstr *MI,
11576 MachineBasicBlock *MBB) const {
11577 // Emit code to save XMM registers to the stack. The ABI says that the
11578 // number of registers to save is given in %al, so it's theoretically
11579 // possible to do an indirect jump trick to avoid saving all of them,
11580 // however this code takes a simpler approach and just executes all
11581 // of the stores if %al is non-zero. It's less code, and it's probably
11582 // easier on the hardware branch predictor, and stores aren't all that
11583 // expensive anyway.
11584
11585 // Create the new basic blocks. One block contains all the XMM stores,
11586 // and one block is the final destination regardless of whether any
11587 // stores were performed.
11588 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11589 MachineFunction *F = MBB->getParent();
11590 MachineFunction::iterator MBBIter = MBB;
11591 ++MBBIter;
11592 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
11593 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
11594 F->insert(MBBIter, XMMSaveMBB);
11595 F->insert(MBBIter, EndMBB);
11596
Dan Gohman14152b42010-07-06 20:24:04 +000011597 // Transfer the remainder of MBB and its successor edges to EndMBB.
11598 EndMBB->splice(EndMBB->begin(), MBB,
11599 llvm::next(MachineBasicBlock::iterator(MI)),
11600 MBB->end());
11601 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
11602
Dan Gohmand6708ea2009-08-15 01:38:56 +000011603 // The original block will now fall through to the XMM save block.
11604 MBB->addSuccessor(XMMSaveMBB);
11605 // The XMMSaveMBB will fall through to the end block.
11606 XMMSaveMBB->addSuccessor(EndMBB);
11607
11608 // Now add the instructions.
11609 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11610 DebugLoc DL = MI->getDebugLoc();
11611
11612 unsigned CountReg = MI->getOperand(0).getReg();
11613 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
11614 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
11615
11616 if (!Subtarget->isTargetWin64()) {
11617 // If %al is 0, branch around the XMM save block.
11618 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +000011619 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011620 MBB->addSuccessor(EndMBB);
11621 }
11622
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000011623 unsigned MOVOpc = Subtarget->hasAVX() ? X86::VMOVAPSmr : X86::MOVAPSmr;
Dan Gohmand6708ea2009-08-15 01:38:56 +000011624 // In the XMM save block, save all the XMM argument registers.
11625 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
11626 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +000011627 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +000011628 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +000011629 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +000011630 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +000011631 /*Size=*/16, /*Align=*/16);
Bruno Cardoso Lopes5affa512011-08-31 03:04:09 +000011632 BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
Dan Gohmand6708ea2009-08-15 01:38:56 +000011633 .addFrameIndex(RegSaveFrameIndex)
11634 .addImm(/*Scale=*/1)
11635 .addReg(/*IndexReg=*/0)
11636 .addImm(/*Disp=*/Offset)
11637 .addReg(/*Segment=*/0)
11638 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +000011639 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +000011640 }
11641
Dan Gohman14152b42010-07-06 20:24:04 +000011642 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +000011643
11644 return EndMBB;
11645}
Mon P Wang63307c32008-05-05 19:05:59 +000011646
Evan Cheng60c07e12006-07-05 22:17:51 +000011647MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +000011648X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011649 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +000011650 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11651 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +000011652
Chris Lattner52600972009-09-02 05:57:00 +000011653 // To "insert" a SELECT_CC instruction, we actually have to insert the
11654 // diamond control-flow pattern. The incoming instruction knows the
11655 // destination vreg to set, the condition code register to branch on, the
11656 // true/false values to select between, and a branch opcode to use.
11657 const BasicBlock *LLVM_BB = BB->getBasicBlock();
11658 MachineFunction::iterator It = BB;
11659 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +000011660
Chris Lattner52600972009-09-02 05:57:00 +000011661 // thisMBB:
11662 // ...
11663 // TrueVal = ...
11664 // cmpTY ccX, r1, r2
11665 // bCC copy1MBB
11666 // fallthrough --> copy0MBB
11667 MachineBasicBlock *thisMBB = BB;
11668 MachineFunction *F = BB->getParent();
11669 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
11670 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +000011671 F->insert(It, copy0MBB);
11672 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +000011673
Bill Wendling730c07e2010-06-25 20:48:10 +000011674 // If the EFLAGS register isn't dead in the terminator, then claim that it's
11675 // live into the sink and copy blocks.
Jakob Stoklund Olesen4a1b9d82011-09-02 23:52:49 +000011676 if (!MI->killsRegister(X86::EFLAGS)) {
11677 copy0MBB->addLiveIn(X86::EFLAGS);
11678 sinkMBB->addLiveIn(X86::EFLAGS);
Bill Wendling730c07e2010-06-25 20:48:10 +000011679 }
11680
Dan Gohman14152b42010-07-06 20:24:04 +000011681 // Transfer the remainder of BB and its successor edges to sinkMBB.
11682 sinkMBB->splice(sinkMBB->begin(), BB,
11683 llvm::next(MachineBasicBlock::iterator(MI)),
11684 BB->end());
11685 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
11686
11687 // Add the true and fallthrough blocks as its successors.
11688 BB->addSuccessor(copy0MBB);
11689 BB->addSuccessor(sinkMBB);
11690
11691 // Create the conditional branch instruction.
11692 unsigned Opc =
11693 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
11694 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
11695
Chris Lattner52600972009-09-02 05:57:00 +000011696 // copy0MBB:
11697 // %FalseValue = ...
11698 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +000011699 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +000011700
Chris Lattner52600972009-09-02 05:57:00 +000011701 // sinkMBB:
11702 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
11703 // ...
Dan Gohman14152b42010-07-06 20:24:04 +000011704 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
11705 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +000011706 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
11707 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
11708
Dan Gohman14152b42010-07-06 20:24:04 +000011709 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +000011710 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +000011711}
11712
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011713MachineBasicBlock *
Rafael Espindola151ab3e2011-08-30 19:47:04 +000011714X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
11715 bool Is64Bit) const {
11716 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11717 DebugLoc DL = MI->getDebugLoc();
11718 MachineFunction *MF = BB->getParent();
11719 const BasicBlock *LLVM_BB = BB->getBasicBlock();
11720
11721 assert(EnableSegmentedStacks);
11722
11723 unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
11724 unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
11725
11726 // BB:
11727 // ... [Till the alloca]
11728 // If stacklet is not large enough, jump to mallocMBB
11729 //
11730 // bumpMBB:
11731 // Allocate by subtracting from RSP
11732 // Jump to continueMBB
11733 //
11734 // mallocMBB:
11735 // Allocate by call to runtime
11736 //
11737 // continueMBB:
11738 // ...
11739 // [rest of original BB]
11740 //
11741
11742 MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11743 MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11744 MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
11745
11746 MachineRegisterInfo &MRI = MF->getRegInfo();
11747 const TargetRegisterClass *AddrRegClass =
11748 getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
11749
11750 unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
11751 bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
11752 tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
11753 sizeVReg = MI->getOperand(1).getReg(),
11754 physSPReg = Is64Bit ? X86::RSP : X86::ESP;
11755
11756 MachineFunction::iterator MBBIter = BB;
11757 ++MBBIter;
11758
11759 MF->insert(MBBIter, bumpMBB);
11760 MF->insert(MBBIter, mallocMBB);
11761 MF->insert(MBBIter, continueMBB);
11762
11763 continueMBB->splice(continueMBB->begin(), BB, llvm::next
11764 (MachineBasicBlock::iterator(MI)), BB->end());
11765 continueMBB->transferSuccessorsAndUpdatePHIs(BB);
11766
11767 // Add code to the main basic block to check if the stack limit has been hit,
11768 // and if so, jump to mallocMBB otherwise to bumpMBB.
11769 BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
11770 BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), tmpSPVReg)
11771 .addReg(tmpSPVReg).addReg(sizeVReg);
11772 BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
11773 .addReg(0).addImm(0).addReg(0).addImm(TlsOffset).addReg(TlsReg)
11774 .addReg(tmpSPVReg);
11775 BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
11776
11777 // bumpMBB simply decreases the stack pointer, since we know the current
11778 // stacklet has enough space.
11779 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
11780 .addReg(tmpSPVReg);
11781 BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
11782 .addReg(tmpSPVReg);
11783 BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
11784
11785 // Calls into a routine in libgcc to allocate more space from the heap.
11786 if (Is64Bit) {
11787 BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
11788 .addReg(sizeVReg);
11789 BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
11790 .addExternalSymbol("__morestack_allocate_stack_space").addReg(X86::RDI);
11791 } else {
11792 BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
11793 .addImm(12);
11794 BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
11795 BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
11796 .addExternalSymbol("__morestack_allocate_stack_space");
11797 }
11798
11799 if (!Is64Bit)
11800 BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
11801 .addImm(16);
11802
11803 BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
11804 .addReg(Is64Bit ? X86::RAX : X86::EAX);
11805 BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
11806
11807 // Set up the CFG correctly.
11808 BB->addSuccessor(bumpMBB);
11809 BB->addSuccessor(mallocMBB);
11810 mallocMBB->addSuccessor(continueMBB);
11811 bumpMBB->addSuccessor(continueMBB);
11812
11813 // Take care of the PHI nodes.
11814 BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
11815 MI->getOperand(0).getReg())
11816 .addReg(mallocPtrVReg).addMBB(mallocMBB)
11817 .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
11818
11819 // Delete the original pseudo instruction.
11820 MI->eraseFromParent();
11821
11822 // And we're done.
11823 return continueMBB;
11824}
11825
11826MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011827X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011828 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011829 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11830 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011831
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011832 assert(!Subtarget->isTargetEnvMacho());
11833
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011834 // The lowering is pretty easy: we're just emitting the call to _alloca. The
11835 // non-trivial part is impdef of ESP.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011836
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011837 if (Subtarget->isTargetWin64()) {
11838 if (Subtarget->isTargetCygMing()) {
11839 // ___chkstk(Mingw64):
11840 // Clobbers R10, R11, RAX and EFLAGS.
11841 // Updates RSP.
11842 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11843 .addExternalSymbol("___chkstk")
11844 .addReg(X86::RAX, RegState::Implicit)
11845 .addReg(X86::RSP, RegState::Implicit)
11846 .addReg(X86::RAX, RegState::Define | RegState::Implicit)
11847 .addReg(X86::RSP, RegState::Define | RegState::Implicit)
11848 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11849 } else {
11850 // __chkstk(MSVCRT): does not update stack pointer.
11851 // Clobbers R10, R11 and EFLAGS.
11852 // FIXME: RAX(allocated size) might be reused and not killed.
11853 BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
11854 .addExternalSymbol("__chkstk")
11855 .addReg(X86::RAX, RegState::Implicit)
11856 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11857 // RAX has the offset to subtracted from RSP.
11858 BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
11859 .addReg(X86::RSP)
11860 .addReg(X86::RAX);
11861 }
11862 } else {
11863 const char *StackProbeSymbol =
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011864 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
11865
NAKAMURA Takumia2e07622011-03-24 07:07:00 +000011866 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
11867 .addExternalSymbol(StackProbeSymbol)
11868 .addReg(X86::EAX, RegState::Implicit)
11869 .addReg(X86::ESP, RegState::Implicit)
11870 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
11871 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
11872 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
11873 }
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011874
Dan Gohman14152b42010-07-06 20:24:04 +000011875 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000011876 return BB;
11877}
Chris Lattner52600972009-09-02 05:57:00 +000011878
11879MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000011880X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
11881 MachineBasicBlock *BB) const {
11882 // This is pretty easy. We're taking the value that we received from
11883 // our load from the relocation, sticking it in either RDI (x86-64)
11884 // or EAX and doing an indirect call. The return value will then
11885 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000011886 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000011887 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000011888 DebugLoc DL = MI->getDebugLoc();
11889 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000011890
11891 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000011892 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000011893
Eric Christopher30ef0e52010-06-03 04:07:48 +000011894 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000011895 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11896 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000011897 .addReg(X86::RIP)
11898 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011899 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011900 MI->getOperand(3).getTargetFlags())
11901 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000011902 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000011903 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000011904 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000011905 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11906 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000011907 .addReg(0)
11908 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011909 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000011910 MI->getOperand(3).getTargetFlags())
11911 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011912 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011913 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011914 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000011915 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11916 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000011917 .addReg(TII->getGlobalBaseReg(F))
11918 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000011919 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000011920 MI->getOperand(3).getTargetFlags())
11921 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000011922 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000011923 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011924 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000011925
Dan Gohman14152b42010-07-06 20:24:04 +000011926 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000011927 return BB;
11928}
11929
11930MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000011931X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011932 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000011933 switch (MI->getOpcode()) {
11934 default: assert(false && "Unexpected instr type to insert");
NAKAMURA Takumi7754f852011-01-26 02:04:09 +000011935 case X86::TAILJMPd64:
11936 case X86::TAILJMPr64:
11937 case X86::TAILJMPm64:
11938 assert(!"TAILJMP64 would not be touched here.");
11939 case X86::TCRETURNdi64:
11940 case X86::TCRETURNri64:
11941 case X86::TCRETURNmi64:
11942 // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
11943 // On AMD64, additional defs should be added before register allocation.
11944 if (!Subtarget->isTargetWin64()) {
11945 MI->addRegisterDefined(X86::RSI);
11946 MI->addRegisterDefined(X86::RDI);
11947 MI->addRegisterDefined(X86::XMM6);
11948 MI->addRegisterDefined(X86::XMM7);
11949 MI->addRegisterDefined(X86::XMM8);
11950 MI->addRegisterDefined(X86::XMM9);
11951 MI->addRegisterDefined(X86::XMM10);
11952 MI->addRegisterDefined(X86::XMM11);
11953 MI->addRegisterDefined(X86::XMM12);
11954 MI->addRegisterDefined(X86::XMM13);
11955 MI->addRegisterDefined(X86::XMM14);
11956 MI->addRegisterDefined(X86::XMM15);
11957 }
11958 return BB;
Michael J. Spencere9c253e2010-10-21 01:41:01 +000011959 case X86::WIN_ALLOCA:
11960 return EmitLoweredWinAlloca(MI, BB);
Rafael Espindola151ab3e2011-08-30 19:47:04 +000011961 case X86::SEG_ALLOCA_32:
11962 return EmitLoweredSegAlloca(MI, BB, false);
11963 case X86::SEG_ALLOCA_64:
11964 return EmitLoweredSegAlloca(MI, BB, true);
Eric Christopher30ef0e52010-06-03 04:07:48 +000011965 case X86::TLSCall_32:
11966 case X86::TLSCall_64:
11967 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000011968 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000011969 case X86::CMOV_FR32:
11970 case X86::CMOV_FR64:
11971 case X86::CMOV_V4F32:
11972 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000011973 case X86::CMOV_V2I64:
Bruno Cardoso Lopesd40aa242011-08-09 23:27:13 +000011974 case X86::CMOV_V8F32:
11975 case X86::CMOV_V4F64:
11976 case X86::CMOV_V4I64:
Chris Lattner314a1132010-03-14 18:31:44 +000011977 case X86::CMOV_GR16:
11978 case X86::CMOV_GR32:
11979 case X86::CMOV_RFP32:
11980 case X86::CMOV_RFP64:
11981 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000011982 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000011983
Dale Johannesen849f2142007-07-03 00:53:03 +000011984 case X86::FP32_TO_INT16_IN_MEM:
11985 case X86::FP32_TO_INT32_IN_MEM:
11986 case X86::FP32_TO_INT64_IN_MEM:
11987 case X86::FP64_TO_INT16_IN_MEM:
11988 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000011989 case X86::FP64_TO_INT64_IN_MEM:
11990 case X86::FP80_TO_INT16_IN_MEM:
11991 case X86::FP80_TO_INT32_IN_MEM:
11992 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000011993 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11994 DebugLoc DL = MI->getDebugLoc();
11995
Evan Cheng60c07e12006-07-05 22:17:51 +000011996 // Change the floating point control register to use "round towards zero"
11997 // mode when truncating to an integer value.
11998 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000011999 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000012000 addFrameReference(BuildMI(*BB, MI, DL,
12001 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000012002
12003 // Load the old value of the high byte of the control word...
12004 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000012005 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000012006 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000012007 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000012008
12009 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000012010 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000012011 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000012012
12013 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000012014 addFrameReference(BuildMI(*BB, MI, DL,
12015 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000012016
12017 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000012018 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000012019 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000012020
12021 // Get the X86 opcode to use.
12022 unsigned Opc;
12023 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000012024 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000012025 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
12026 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
12027 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
12028 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
12029 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
12030 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000012031 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
12032 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
12033 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000012034 }
12035
12036 X86AddressMode AM;
12037 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000012038 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000012039 AM.BaseType = X86AddressMode::RegBase;
12040 AM.Base.Reg = Op.getReg();
12041 } else {
12042 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000012043 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000012044 }
12045 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000012046 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000012047 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000012048 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000012049 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000012050 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000012051 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000012052 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000012053 AM.GV = Op.getGlobal();
12054 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000012055 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000012056 }
Dan Gohman14152b42010-07-06 20:24:04 +000012057 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000012058 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000012059
12060 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000012061 addFrameReference(BuildMI(*BB, MI, DL,
12062 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000012063
Dan Gohman14152b42010-07-06 20:24:04 +000012064 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000012065 return BB;
12066 }
Eric Christopherb120ab42009-08-18 22:50:32 +000012067 // String/text processing lowering.
12068 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000012069 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000012070 return EmitPCMP(MI, BB, 3, false /* in-mem */);
12071 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000012072 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000012073 return EmitPCMP(MI, BB, 3, true /* in-mem */);
12074 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000012075 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000012076 return EmitPCMP(MI, BB, 5, false /* in mem */);
12077 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000012078 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000012079 return EmitPCMP(MI, BB, 5, true /* in mem */);
12080
Eric Christopher228232b2010-11-30 07:20:12 +000012081 // Thread synchronization.
12082 case X86::MONITOR:
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000012083 return EmitMonitor(MI, BB);
Eric Christopher228232b2010-11-30 07:20:12 +000012084 case X86::MWAIT:
12085 return EmitMwait(MI, BB);
12086
Eric Christopherb120ab42009-08-18 22:50:32 +000012087 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000012088 case X86::ATOMAND32:
12089 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000012090 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012091 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012092 X86::NOT32r, X86::EAX,
12093 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000012094 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000012095 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
12096 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012097 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012098 X86::NOT32r, X86::EAX,
12099 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000012100 case X86::ATOMXOR32:
12101 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000012102 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012103 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012104 X86::NOT32r, X86::EAX,
12105 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000012106 case X86::ATOMNAND32:
12107 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012108 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012109 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012110 X86::NOT32r, X86::EAX,
12111 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000012112 case X86::ATOMMIN32:
12113 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
12114 case X86::ATOMMAX32:
12115 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
12116 case X86::ATOMUMIN32:
12117 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
12118 case X86::ATOMUMAX32:
12119 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000012120
12121 case X86::ATOMAND16:
12122 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
12123 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012124 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012125 X86::NOT16r, X86::AX,
12126 X86::GR16RegisterClass);
12127 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000012128 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012129 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012130 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012131 X86::NOT16r, X86::AX,
12132 X86::GR16RegisterClass);
12133 case X86::ATOMXOR16:
12134 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
12135 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012136 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012137 X86::NOT16r, X86::AX,
12138 X86::GR16RegisterClass);
12139 case X86::ATOMNAND16:
12140 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
12141 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012142 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012143 X86::NOT16r, X86::AX,
12144 X86::GR16RegisterClass, true);
12145 case X86::ATOMMIN16:
12146 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
12147 case X86::ATOMMAX16:
12148 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
12149 case X86::ATOMUMIN16:
12150 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
12151 case X86::ATOMUMAX16:
12152 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
12153
12154 case X86::ATOMAND8:
12155 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
12156 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012157 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012158 X86::NOT8r, X86::AL,
12159 X86::GR8RegisterClass);
12160 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000012161 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012162 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012163 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012164 X86::NOT8r, X86::AL,
12165 X86::GR8RegisterClass);
12166 case X86::ATOMXOR8:
12167 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
12168 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012169 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012170 X86::NOT8r, X86::AL,
12171 X86::GR8RegisterClass);
12172 case X86::ATOMNAND8:
12173 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
12174 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012175 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000012176 X86::NOT8r, X86::AL,
12177 X86::GR8RegisterClass, true);
12178 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012179 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000012180 case X86::ATOMAND64:
12181 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000012182 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012183 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000012184 X86::NOT64r, X86::RAX,
12185 X86::GR64RegisterClass);
12186 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000012187 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
12188 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012189 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000012190 X86::NOT64r, X86::RAX,
12191 X86::GR64RegisterClass);
12192 case X86::ATOMXOR64:
12193 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000012194 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012195 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000012196 X86::NOT64r, X86::RAX,
12197 X86::GR64RegisterClass);
12198 case X86::ATOMNAND64:
12199 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
12200 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000012201 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000012202 X86::NOT64r, X86::RAX,
12203 X86::GR64RegisterClass, true);
12204 case X86::ATOMMIN64:
12205 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
12206 case X86::ATOMMAX64:
12207 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
12208 case X86::ATOMUMIN64:
12209 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
12210 case X86::ATOMUMAX64:
12211 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012212
12213 // This group does 64-bit operations on a 32-bit host.
12214 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012215 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012216 X86::AND32rr, X86::AND32rr,
12217 X86::AND32ri, X86::AND32ri,
12218 false);
12219 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012220 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012221 X86::OR32rr, X86::OR32rr,
12222 X86::OR32ri, X86::OR32ri,
12223 false);
12224 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012225 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012226 X86::XOR32rr, X86::XOR32rr,
12227 X86::XOR32ri, X86::XOR32ri,
12228 false);
12229 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012230 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012231 X86::AND32rr, X86::AND32rr,
12232 X86::AND32ri, X86::AND32ri,
12233 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012234 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012235 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012236 X86::ADD32rr, X86::ADC32rr,
12237 X86::ADD32ri, X86::ADC32ri,
12238 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012239 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012240 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000012241 X86::SUB32rr, X86::SBB32rr,
12242 X86::SUB32ri, X86::SBB32ri,
12243 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000012244 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000012245 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000012246 X86::MOV32rr, X86::MOV32rr,
12247 X86::MOV32ri, X86::MOV32ri,
12248 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000012249 case X86::VASTART_SAVE_XMM_REGS:
12250 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000012251
12252 case X86::VAARG_64:
12253 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000012254 }
12255}
12256
12257//===----------------------------------------------------------------------===//
12258// X86 Optimization Hooks
12259//===----------------------------------------------------------------------===//
12260
Dan Gohman475871a2008-07-27 21:46:04 +000012261void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000012262 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000012263 APInt &KnownZero,
12264 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000012265 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000012266 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012267 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000012268 assert((Opc >= ISD::BUILTIN_OP_END ||
12269 Opc == ISD::INTRINSIC_WO_CHAIN ||
12270 Opc == ISD::INTRINSIC_W_CHAIN ||
12271 Opc == ISD::INTRINSIC_VOID) &&
12272 "Should use MaskedValueIsZero if you don't know whether Op"
12273 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012274
Dan Gohmanf4f92f52008-02-13 23:07:24 +000012275 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012276 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000012277 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000012278 case X86ISD::ADD:
12279 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000012280 case X86ISD::ADC:
12281 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000012282 case X86ISD::SMUL:
12283 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000012284 case X86ISD::INC:
12285 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000012286 case X86ISD::OR:
12287 case X86ISD::XOR:
12288 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000012289 // These nodes' second result is a boolean.
12290 if (Op.getResNo() == 0)
12291 break;
12292 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012293 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000012294 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
12295 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000012296 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012297 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000012298}
Chris Lattner259e97c2006-01-31 19:43:35 +000012299
Owen Andersonbc146b02010-09-21 20:42:50 +000012300unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
12301 unsigned Depth) const {
12302 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
12303 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
12304 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000012305
Owen Andersonbc146b02010-09-21 20:42:50 +000012306 // Fallback case.
12307 return 1;
12308}
12309
Evan Cheng206ee9d2006-07-07 08:33:52 +000012310/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000012311/// node is a GlobalAddress + offset.
12312bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000012313 const GlobalValue* &GA,
12314 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000012315 if (N->getOpcode() == X86ISD::Wrapper) {
12316 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000012317 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000012318 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000012319 return true;
12320 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000012321 }
Evan Chengad4196b2008-05-12 19:56:52 +000012322 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000012323}
12324
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000012325/// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
12326/// same as extracting the high 128-bit part of 256-bit vector and then
12327/// inserting the result into the low part of a new 256-bit vector
12328static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
12329 EVT VT = SVOp->getValueType(0);
12330 int NumElems = VT.getVectorNumElements();
12331
12332 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
12333 for (int i = 0, j = NumElems/2; i < NumElems/2; ++i, ++j)
12334 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
12335 SVOp->getMaskElt(j) >= 0)
12336 return false;
12337
12338 return true;
12339}
12340
12341/// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
12342/// same as extracting the low 128-bit part of 256-bit vector and then
12343/// inserting the result into the high part of a new 256-bit vector
12344static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
12345 EVT VT = SVOp->getValueType(0);
12346 int NumElems = VT.getVectorNumElements();
12347
12348 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
12349 for (int i = NumElems/2, j = 0; i < NumElems; ++i, ++j)
12350 if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
12351 SVOp->getMaskElt(j) >= 0)
12352 return false;
12353
12354 return true;
12355}
12356
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012357/// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
12358static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
12359 TargetLowering::DAGCombinerInfo &DCI) {
12360 DebugLoc dl = N->getDebugLoc();
12361 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
12362 SDValue V1 = SVOp->getOperand(0);
12363 SDValue V2 = SVOp->getOperand(1);
12364 EVT VT = SVOp->getValueType(0);
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000012365 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012366
12367 if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
12368 V2.getOpcode() == ISD::CONCAT_VECTORS) {
12369 //
12370 // 0,0,0,...
Benjamin Kramer558cc5a2011-07-22 01:02:57 +000012371 // |
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012372 // V UNDEF BUILD_VECTOR UNDEF
12373 // \ / \ /
12374 // CONCAT_VECTOR CONCAT_VECTOR
12375 // \ /
12376 // \ /
12377 // RESULT: V + zero extended
12378 //
12379 if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
12380 V2.getOperand(1).getOpcode() != ISD::UNDEF ||
12381 V1.getOperand(1).getOpcode() != ISD::UNDEF)
12382 return SDValue();
12383
12384 if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
12385 return SDValue();
12386
12387 // To match the shuffle mask, the first half of the mask should
12388 // be exactly the first vector, and all the rest a splat with the
12389 // first element of the second one.
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012390 for (int i = 0; i < NumElems/2; ++i)
12391 if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
12392 !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
12393 return SDValue();
12394
12395 // Emit a zeroed vector and insert the desired subvector on its
12396 // first half.
12397 SDValue Zeros = getZeroVector(VT, true /* HasSSE2 */, DAG, dl);
12398 SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0),
12399 DAG.getConstant(0, MVT::i32), DAG, dl);
12400 return DCI.CombineTo(N, InsV);
12401 }
12402
Bruno Cardoso Lopesef8d6992011-08-11 21:50:44 +000012403 //===--------------------------------------------------------------------===//
12404 // Combine some shuffles into subvector extracts and inserts:
12405 //
12406
12407 // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
12408 if (isShuffleHigh128VectorInsertLow(SVOp)) {
12409 SDValue V = Extract128BitVector(V1, DAG.getConstant(NumElems/2, MVT::i32),
12410 DAG, dl);
12411 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT),
12412 V, DAG.getConstant(0, MVT::i32), DAG, dl);
12413 return DCI.CombineTo(N, InsV);
12414 }
12415
12416 // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
12417 if (isShuffleLow128VectorInsertHigh(SVOp)) {
12418 SDValue V = Extract128BitVector(V1, DAG.getConstant(0, MVT::i32), DAG, dl);
12419 SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT),
12420 V, DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
12421 return DCI.CombineTo(N, InsV);
12422 }
12423
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012424 return SDValue();
12425}
12426
12427/// PerformShuffleCombine - Performs several different shuffle combines.
Dan Gohman475871a2008-07-27 21:46:04 +000012428static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000012429 TargetLowering::DAGCombinerInfo &DCI,
12430 const X86Subtarget *Subtarget) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000012431 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000012432 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000012433
Mon P Wanga0fd0d52010-12-19 23:55:53 +000012434 // Don't create instructions with illegal types after legalize types has run.
12435 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12436 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
12437 return SDValue();
12438
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000012439 // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
12440 if (Subtarget->hasAVX() && VT.getSizeInBits() == 256 &&
12441 N->getOpcode() == ISD::VECTOR_SHUFFLE)
Bruno Cardoso Lopes74dad552011-07-22 00:15:00 +000012442 return PerformShuffleCombine256(N, DAG, DCI);
12443
12444 // Only handle 128 wide vector from here on.
12445 if (VT.getSizeInBits() != 128)
12446 return SDValue();
12447
12448 // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
12449 // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
12450 // consecutive, non-overlapping, and in the right order.
Nate Begemanfdea31a2010-03-24 20:49:50 +000012451 SmallVector<SDValue, 16> Elts;
12452 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000012453 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000012454
Nate Begemanfdea31a2010-03-24 20:49:50 +000012455 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000012456}
Evan Chengd880b972008-05-09 21:53:03 +000012457
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000012458/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
12459/// generation and convert it from being a bunch of shuffles and extracts
12460/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012461static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
12462 const TargetLowering &TLI) {
12463 SDValue InputVector = N->getOperand(0);
12464
12465 // Only operate on vectors of 4 elements, where the alternative shuffling
12466 // gets to be more expensive.
12467 if (InputVector.getValueType() != MVT::v4i32)
12468 return SDValue();
12469
12470 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
12471 // single use which is a sign-extend or zero-extend, and all elements are
12472 // used.
12473 SmallVector<SDNode *, 4> Uses;
12474 unsigned ExtractedElements = 0;
12475 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
12476 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
12477 if (UI.getUse().getResNo() != InputVector.getResNo())
12478 return SDValue();
12479
12480 SDNode *Extract = *UI;
12481 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
12482 return SDValue();
12483
12484 if (Extract->getValueType(0) != MVT::i32)
12485 return SDValue();
12486 if (!Extract->hasOneUse())
12487 return SDValue();
12488 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
12489 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
12490 return SDValue();
12491 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
12492 return SDValue();
12493
12494 // Record which element was extracted.
12495 ExtractedElements |=
12496 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
12497
12498 Uses.push_back(Extract);
12499 }
12500
12501 // If not all the elements were used, this may not be worthwhile.
12502 if (ExtractedElements != 15)
12503 return SDValue();
12504
12505 // Ok, we've now decided to do the transformation.
12506 DebugLoc dl = InputVector.getDebugLoc();
12507
12508 // Store the value to a temporary stack slot.
12509 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000012510 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
12511 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012512
12513 // Replace each use (extract) with a load of the appropriate element.
12514 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
12515 UE = Uses.end(); UI != UE; ++UI) {
12516 SDNode *Extract = *UI;
12517
Nadav Rotem86694292011-05-17 08:31:57 +000012518 // cOMpute the element's address.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012519 SDValue Idx = Extract->getOperand(1);
12520 unsigned EltSize =
12521 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
12522 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
12523 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
12524
Nadav Rotem86694292011-05-17 08:31:57 +000012525 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
Chris Lattner51abfe42010-09-21 06:02:19 +000012526 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012527
12528 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000012529 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000012530 ScalarAddr, MachinePointerInfo(),
12531 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000012532
12533 // Replace the exact with the load.
12534 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
12535 }
12536
12537 // The replacement was made in place; don't return anything.
12538 return SDValue();
12539}
12540
Chris Lattner83e6c992006-10-04 06:57:07 +000012541/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000012542static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000012543 const X86Subtarget *Subtarget) {
12544 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000012545 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000012546 // Get the LHS/RHS of the select.
12547 SDValue LHS = N->getOperand(1);
12548 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000012549
Dan Gohman670e5392009-09-21 18:03:22 +000012550 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000012551 // instructions match the semantics of the common C idiom x<y?x:y but not
12552 // x<=y?x:y, because of how they handle negative zero (which can be
12553 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000012554 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000012555 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000012556 Cond.getOpcode() == ISD::SETCC) {
12557 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012558
Chris Lattner47b4ce82009-03-11 05:48:52 +000012559 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000012560 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000012561 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
12562 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000012563 switch (CC) {
12564 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000012565 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000012566 // Converting this to a min would handle NaNs incorrectly, and swapping
12567 // the operands would cause it to handle comparisons between positive
12568 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012569 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000012570 if (!UnsafeFPMath &&
12571 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
12572 break;
12573 std::swap(LHS, RHS);
12574 }
Dan Gohman670e5392009-09-21 18:03:22 +000012575 Opcode = X86ISD::FMIN;
12576 break;
12577 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000012578 // Converting this to a min would handle comparisons between positive
12579 // and negative zero incorrectly.
12580 if (!UnsafeFPMath &&
12581 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
12582 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012583 Opcode = X86ISD::FMIN;
12584 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000012585 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000012586 // Converting this to a min would handle both negative zeros and NaNs
12587 // incorrectly, but we can swap the operands to fix both.
12588 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012589 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012590 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000012591 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012592 Opcode = X86ISD::FMIN;
12593 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012594
Dan Gohman670e5392009-09-21 18:03:22 +000012595 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012596 // Converting this to a max would handle comparisons between positive
12597 // and negative zero incorrectly.
12598 if (!UnsafeFPMath &&
Evan Chengdd5663c2011-08-04 18:38:15 +000012599 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012600 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012601 Opcode = X86ISD::FMAX;
12602 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000012603 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000012604 // Converting this to a max would handle NaNs incorrectly, and swapping
12605 // the operands would cause it to handle comparisons between positive
12606 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012607 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000012608 if (!UnsafeFPMath &&
12609 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
12610 break;
12611 std::swap(LHS, RHS);
12612 }
Dan Gohman670e5392009-09-21 18:03:22 +000012613 Opcode = X86ISD::FMAX;
12614 break;
12615 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012616 // Converting this to a max would handle both negative zeros and NaNs
12617 // incorrectly, but we can swap the operands to fix both.
12618 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012619 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012620 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012621 case ISD::SETGE:
12622 Opcode = X86ISD::FMAX;
12623 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000012624 }
Dan Gohman670e5392009-09-21 18:03:22 +000012625 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000012626 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
12627 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000012628 switch (CC) {
12629 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000012630 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012631 // Converting this to a min would handle comparisons between positive
12632 // and negative zero incorrectly, and swapping the operands would
12633 // cause it to handle NaNs incorrectly.
12634 if (!UnsafeFPMath &&
12635 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000012636 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012637 break;
12638 std::swap(LHS, RHS);
12639 }
Dan Gohman670e5392009-09-21 18:03:22 +000012640 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000012641 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012642 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000012643 // Converting this to a min would handle NaNs incorrectly.
12644 if (!UnsafeFPMath &&
12645 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
12646 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012647 Opcode = X86ISD::FMIN;
12648 break;
12649 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000012650 // Converting this to a min would handle both negative zeros and NaNs
12651 // incorrectly, but we can swap the operands to fix both.
12652 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012653 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012654 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012655 case ISD::SETGE:
12656 Opcode = X86ISD::FMIN;
12657 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012658
Dan Gohman670e5392009-09-21 18:03:22 +000012659 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000012660 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000012661 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012662 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012663 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000012664 break;
Dan Gohman670e5392009-09-21 18:03:22 +000012665 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000012666 // Converting this to a max would handle comparisons between positive
12667 // and negative zero incorrectly, and swapping the operands would
12668 // cause it to handle NaNs incorrectly.
12669 if (!UnsafeFPMath &&
12670 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000012671 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000012672 break;
12673 std::swap(LHS, RHS);
12674 }
Dan Gohman670e5392009-09-21 18:03:22 +000012675 Opcode = X86ISD::FMAX;
12676 break;
12677 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000012678 // Converting this to a max would handle both negative zeros and NaNs
12679 // incorrectly, but we can swap the operands to fix both.
12680 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000012681 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012682 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000012683 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000012684 Opcode = X86ISD::FMAX;
12685 break;
12686 }
Chris Lattner83e6c992006-10-04 06:57:07 +000012687 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012688
Chris Lattner47b4ce82009-03-11 05:48:52 +000012689 if (Opcode)
12690 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000012691 }
Eric Christopherfd179292009-08-27 18:07:15 +000012692
Chris Lattnerd1980a52009-03-12 06:52:53 +000012693 // If this is a select between two integer constants, try to do some
12694 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000012695 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
12696 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000012697 // Don't do this for crazy integer types.
12698 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
12699 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000012700 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000012701 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000012702
Chris Lattnercee56e72009-03-13 05:53:31 +000012703 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000012704 // Efficiently invertible.
12705 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
12706 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
12707 isa<ConstantSDNode>(Cond.getOperand(1))))) {
12708 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000012709 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000012710 }
Eric Christopherfd179292009-08-27 18:07:15 +000012711
Chris Lattnerd1980a52009-03-12 06:52:53 +000012712 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000012713 if (FalseC->getAPIntValue() == 0 &&
12714 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000012715 if (NeedsCondInvert) // Invert the condition if needed.
12716 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12717 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012718
Chris Lattnerd1980a52009-03-12 06:52:53 +000012719 // Zero extend the condition if needed.
12720 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012721
Chris Lattnercee56e72009-03-13 05:53:31 +000012722 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000012723 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000012724 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000012725 }
Eric Christopherfd179292009-08-27 18:07:15 +000012726
Chris Lattner97a29a52009-03-13 05:22:11 +000012727 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000012728 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000012729 if (NeedsCondInvert) // Invert the condition if needed.
12730 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12731 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012732
Chris Lattner97a29a52009-03-13 05:22:11 +000012733 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000012734 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
12735 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000012736 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000012737 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000012738 }
Eric Christopherfd179292009-08-27 18:07:15 +000012739
Chris Lattnercee56e72009-03-13 05:53:31 +000012740 // Optimize cases that will turn into an LEA instruction. This requires
12741 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000012742 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000012743 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012744 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000012745
Chris Lattnercee56e72009-03-13 05:53:31 +000012746 bool isFastMultiplier = false;
12747 if (Diff < 10) {
12748 switch ((unsigned char)Diff) {
12749 default: break;
12750 case 1: // result = add base, cond
12751 case 2: // result = lea base( , cond*2)
12752 case 3: // result = lea base(cond, cond*2)
12753 case 4: // result = lea base( , cond*4)
12754 case 5: // result = lea base(cond, cond*4)
12755 case 8: // result = lea base( , cond*8)
12756 case 9: // result = lea base(cond, cond*8)
12757 isFastMultiplier = true;
12758 break;
12759 }
12760 }
Eric Christopherfd179292009-08-27 18:07:15 +000012761
Chris Lattnercee56e72009-03-13 05:53:31 +000012762 if (isFastMultiplier) {
12763 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
12764 if (NeedsCondInvert) // Invert the condition if needed.
12765 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
12766 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012767
Chris Lattnercee56e72009-03-13 05:53:31 +000012768 // Zero extend the condition if needed.
12769 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
12770 Cond);
12771 // Scale the condition by the difference.
12772 if (Diff != 1)
12773 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
12774 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000012775
Chris Lattnercee56e72009-03-13 05:53:31 +000012776 // Add the base if non-zero.
12777 if (FalseC->getAPIntValue() != 0)
12778 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12779 SDValue(FalseC, 0));
12780 return Cond;
12781 }
Eric Christopherfd179292009-08-27 18:07:15 +000012782 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000012783 }
12784 }
Eric Christopherfd179292009-08-27 18:07:15 +000012785
Dan Gohman475871a2008-07-27 21:46:04 +000012786 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000012787}
12788
Chris Lattnerd1980a52009-03-12 06:52:53 +000012789/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
12790static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
12791 TargetLowering::DAGCombinerInfo &DCI) {
12792 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000012793
Chris Lattnerd1980a52009-03-12 06:52:53 +000012794 // If the flag operand isn't dead, don't touch this CMOV.
12795 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
12796 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000012797
Evan Chengb5a55d92011-05-24 01:48:22 +000012798 SDValue FalseOp = N->getOperand(0);
12799 SDValue TrueOp = N->getOperand(1);
12800 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
12801 SDValue Cond = N->getOperand(3);
12802 if (CC == X86::COND_E || CC == X86::COND_NE) {
12803 switch (Cond.getOpcode()) {
12804 default: break;
12805 case X86ISD::BSR:
12806 case X86ISD::BSF:
12807 // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
12808 if (DAG.isKnownNeverZero(Cond.getOperand(0)))
12809 return (CC == X86::COND_E) ? FalseOp : TrueOp;
12810 }
12811 }
12812
Chris Lattnerd1980a52009-03-12 06:52:53 +000012813 // If this is a select between two integer constants, try to do some
12814 // optimizations. Note that the operands are ordered the opposite of SELECT
12815 // operands.
Evan Chengb5a55d92011-05-24 01:48:22 +000012816 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
12817 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000012818 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
12819 // larger than FalseC (the false value).
Chris Lattnerd1980a52009-03-12 06:52:53 +000012820 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
12821 CC = X86::GetOppositeBranchCondition(CC);
12822 std::swap(TrueC, FalseC);
12823 }
Eric Christopherfd179292009-08-27 18:07:15 +000012824
Chris Lattnerd1980a52009-03-12 06:52:53 +000012825 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000012826 // This is efficient for any integer data type (including i8/i16) and
12827 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000012828 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012829 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12830 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012831
Chris Lattnerd1980a52009-03-12 06:52:53 +000012832 // Zero extend the condition if needed.
12833 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012834
Chris Lattnerd1980a52009-03-12 06:52:53 +000012835 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
12836 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000012837 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000012838 if (N->getNumValues() == 2) // Dead flag value?
12839 return DCI.CombineTo(N, Cond, SDValue());
12840 return Cond;
12841 }
Eric Christopherfd179292009-08-27 18:07:15 +000012842
Chris Lattnercee56e72009-03-13 05:53:31 +000012843 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
12844 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000012845 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012846 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12847 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000012848
Chris Lattner97a29a52009-03-13 05:22:11 +000012849 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000012850 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
12851 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000012852 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12853 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000012854
Chris Lattner97a29a52009-03-13 05:22:11 +000012855 if (N->getNumValues() == 2) // Dead flag value?
12856 return DCI.CombineTo(N, Cond, SDValue());
12857 return Cond;
12858 }
Eric Christopherfd179292009-08-27 18:07:15 +000012859
Chris Lattnercee56e72009-03-13 05:53:31 +000012860 // Optimize cases that will turn into an LEA instruction. This requires
12861 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000012862 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000012863 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012864 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000012865
Chris Lattnercee56e72009-03-13 05:53:31 +000012866 bool isFastMultiplier = false;
12867 if (Diff < 10) {
12868 switch ((unsigned char)Diff) {
12869 default: break;
12870 case 1: // result = add base, cond
12871 case 2: // result = lea base( , cond*2)
12872 case 3: // result = lea base(cond, cond*2)
12873 case 4: // result = lea base( , cond*4)
12874 case 5: // result = lea base(cond, cond*4)
12875 case 8: // result = lea base( , cond*8)
12876 case 9: // result = lea base(cond, cond*8)
12877 isFastMultiplier = true;
12878 break;
12879 }
12880 }
Eric Christopherfd179292009-08-27 18:07:15 +000012881
Chris Lattnercee56e72009-03-13 05:53:31 +000012882 if (isFastMultiplier) {
12883 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000012884 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
12885 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000012886 // Zero extend the condition if needed.
12887 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
12888 Cond);
12889 // Scale the condition by the difference.
12890 if (Diff != 1)
12891 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
12892 DAG.getConstant(Diff, Cond.getValueType()));
12893
12894 // Add the base if non-zero.
12895 if (FalseC->getAPIntValue() != 0)
12896 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
12897 SDValue(FalseC, 0));
12898 if (N->getNumValues() == 2) // Dead flag value?
12899 return DCI.CombineTo(N, Cond, SDValue());
12900 return Cond;
12901 }
Eric Christopherfd179292009-08-27 18:07:15 +000012902 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000012903 }
12904 }
12905 return SDValue();
12906}
12907
12908
Evan Cheng0b0cd912009-03-28 05:57:29 +000012909/// PerformMulCombine - Optimize a single multiply with constant into two
12910/// in order to implement it with two cheaper instructions, e.g.
12911/// LEA + SHL, LEA + LEA.
12912static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
12913 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000012914 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
12915 return SDValue();
12916
Owen Andersone50ed302009-08-10 22:56:29 +000012917 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012918 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000012919 return SDValue();
12920
12921 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
12922 if (!C)
12923 return SDValue();
12924 uint64_t MulAmt = C->getZExtValue();
12925 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
12926 return SDValue();
12927
12928 uint64_t MulAmt1 = 0;
12929 uint64_t MulAmt2 = 0;
12930 if ((MulAmt % 9) == 0) {
12931 MulAmt1 = 9;
12932 MulAmt2 = MulAmt / 9;
12933 } else if ((MulAmt % 5) == 0) {
12934 MulAmt1 = 5;
12935 MulAmt2 = MulAmt / 5;
12936 } else if ((MulAmt % 3) == 0) {
12937 MulAmt1 = 3;
12938 MulAmt2 = MulAmt / 3;
12939 }
12940 if (MulAmt2 &&
12941 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
12942 DebugLoc DL = N->getDebugLoc();
12943
12944 if (isPowerOf2_64(MulAmt2) &&
12945 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
12946 // If second multiplifer is pow2, issue it first. We want the multiply by
12947 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
12948 // is an add.
12949 std::swap(MulAmt1, MulAmt2);
12950
12951 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000012952 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012953 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000012954 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000012955 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012956 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000012957 DAG.getConstant(MulAmt1, VT));
12958
Eric Christopherfd179292009-08-27 18:07:15 +000012959 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000012960 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000012961 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000012962 else
Evan Cheng73f24c92009-03-30 21:36:47 +000012963 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000012964 DAG.getConstant(MulAmt2, VT));
12965
12966 // Do not add new nodes to DAG combiner worklist.
12967 DCI.CombineTo(N, NewMul, false);
12968 }
12969 return SDValue();
12970}
12971
Evan Chengad9c0a32009-12-15 00:53:42 +000012972static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
12973 SDValue N0 = N->getOperand(0);
12974 SDValue N1 = N->getOperand(1);
12975 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
12976 EVT VT = N0.getValueType();
12977
12978 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
12979 // since the result of setcc_c is all zero's or all ones.
12980 if (N1C && N0.getOpcode() == ISD::AND &&
12981 N0.getOperand(1).getOpcode() == ISD::Constant) {
12982 SDValue N00 = N0.getOperand(0);
12983 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
12984 ((N00.getOpcode() == ISD::ANY_EXTEND ||
12985 N00.getOpcode() == ISD::ZERO_EXTEND) &&
12986 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
12987 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
12988 APInt ShAmt = N1C->getAPIntValue();
12989 Mask = Mask.shl(ShAmt);
12990 if (Mask != 0)
12991 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
12992 N00, DAG.getConstant(Mask, VT));
12993 }
12994 }
12995
12996 return SDValue();
12997}
Evan Cheng0b0cd912009-03-28 05:57:29 +000012998
Nate Begeman740ab032009-01-26 00:52:55 +000012999/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
13000/// when possible.
13001static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
13002 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000013003 EVT VT = N->getValueType(0);
13004 if (!VT.isVector() && VT.isInteger() &&
13005 N->getOpcode() == ISD::SHL)
13006 return PerformSHLCombine(N, DAG);
13007
Nate Begeman740ab032009-01-26 00:52:55 +000013008 // On X86 with SSE2 support, we can transform this to a vector shift if
13009 // all elements are shifted by the same amount. We can't do this in legalize
13010 // because the a constant vector is typically transformed to a constant pool
13011 // so we have no knowledge of the shift amount.
Bruno Cardoso Lopes328a9d42011-08-08 21:31:08 +000013012 if (!(Subtarget->hasSSE2() || Subtarget->hasAVX()))
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013013 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000013014
Owen Anderson825b72b2009-08-11 20:47:22 +000013015 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013016 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000013017
Mon P Wang3becd092009-01-28 08:12:05 +000013018 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000013019 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000013020 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000013021 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000013022 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
13023 unsigned NumElts = VT.getVectorNumElements();
13024 unsigned i = 0;
13025 for (; i != NumElts; ++i) {
13026 SDValue Arg = ShAmtOp.getOperand(i);
13027 if (Arg.getOpcode() == ISD::UNDEF) continue;
13028 BaseShAmt = Arg;
13029 break;
13030 }
13031 for (; i != NumElts; ++i) {
13032 SDValue Arg = ShAmtOp.getOperand(i);
13033 if (Arg.getOpcode() == ISD::UNDEF) continue;
13034 if (Arg != BaseShAmt) {
13035 return SDValue();
13036 }
13037 }
13038 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000013039 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000013040 SDValue InVec = ShAmtOp.getOperand(0);
13041 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
13042 unsigned NumElts = InVec.getValueType().getVectorNumElements();
13043 unsigned i = 0;
13044 for (; i != NumElts; ++i) {
13045 SDValue Arg = InVec.getOperand(i);
13046 if (Arg.getOpcode() == ISD::UNDEF) continue;
13047 BaseShAmt = Arg;
13048 break;
13049 }
13050 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
13051 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000013052 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000013053 if (C->getZExtValue() == SplatIdx)
13054 BaseShAmt = InVec.getOperand(1);
13055 }
13056 }
13057 if (BaseShAmt.getNode() == 0)
13058 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
13059 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000013060 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013061 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000013062
Mon P Wangefa42202009-09-03 19:56:25 +000013063 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000013064 if (EltVT.bitsGT(MVT::i32))
13065 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
13066 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000013067 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000013068
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013069 // The shift amount is identical so we can do a vector shift.
13070 SDValue ValOp = N->getOperand(0);
13071 switch (N->getOpcode()) {
13072 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000013073 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013074 break;
13075 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000013076 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013077 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013078 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013079 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000013080 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013081 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013082 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013083 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000013084 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013085 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013086 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013087 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013088 break;
13089 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000013090 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013091 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013092 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013093 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000013094 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013095 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013096 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013097 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013098 break;
13099 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000013100 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013101 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013102 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013103 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000013104 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013105 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013106 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013107 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000013108 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000013109 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000013110 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000013111 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000013112 break;
Nate Begeman740ab032009-01-26 00:52:55 +000013113 }
13114 return SDValue();
13115}
13116
Nate Begemanb65c1752010-12-17 22:55:37 +000013117
Stuart Hastings865f0932011-06-03 23:53:54 +000013118// CMPEQCombine - Recognize the distinctive (AND (setcc ...) (setcc ..))
13119// where both setccs reference the same FP CMP, and rewrite for CMPEQSS
13120// and friends. Likewise for OR -> CMPNEQSS.
13121static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
13122 TargetLowering::DAGCombinerInfo &DCI,
13123 const X86Subtarget *Subtarget) {
13124 unsigned opcode;
13125
13126 // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
13127 // we're requiring SSE2 for both.
13128 if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
13129 SDValue N0 = N->getOperand(0);
13130 SDValue N1 = N->getOperand(1);
13131 SDValue CMP0 = N0->getOperand(1);
13132 SDValue CMP1 = N1->getOperand(1);
13133 DebugLoc DL = N->getDebugLoc();
13134
13135 // The SETCCs should both refer to the same CMP.
13136 if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
13137 return SDValue();
13138
13139 SDValue CMP00 = CMP0->getOperand(0);
13140 SDValue CMP01 = CMP0->getOperand(1);
13141 EVT VT = CMP00.getValueType();
13142
13143 if (VT == MVT::f32 || VT == MVT::f64) {
13144 bool ExpectingFlags = false;
13145 // Check for any users that want flags:
13146 for (SDNode::use_iterator UI = N->use_begin(),
13147 UE = N->use_end();
13148 !ExpectingFlags && UI != UE; ++UI)
13149 switch (UI->getOpcode()) {
13150 default:
13151 case ISD::BR_CC:
13152 case ISD::BRCOND:
13153 case ISD::SELECT:
13154 ExpectingFlags = true;
13155 break;
13156 case ISD::CopyToReg:
13157 case ISD::SIGN_EXTEND:
13158 case ISD::ZERO_EXTEND:
13159 case ISD::ANY_EXTEND:
13160 break;
13161 }
13162
13163 if (!ExpectingFlags) {
13164 enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
13165 enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
13166
13167 if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
13168 X86::CondCode tmp = cc0;
13169 cc0 = cc1;
13170 cc1 = tmp;
13171 }
13172
13173 if ((cc0 == X86::COND_E && cc1 == X86::COND_NP) ||
13174 (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
13175 bool is64BitFP = (CMP00.getValueType() == MVT::f64);
13176 X86ISD::NodeType NTOperator = is64BitFP ?
13177 X86ISD::FSETCCsd : X86ISD::FSETCCss;
13178 // FIXME: need symbolic constants for these magic numbers.
13179 // See X86ATTInstPrinter.cpp:printSSECC().
13180 unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
13181 SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
13182 DAG.getConstant(x86cc, MVT::i8));
13183 SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
13184 OnesOrZeroesF);
13185 SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
13186 DAG.getConstant(1, MVT::i32));
13187 SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
13188 return OneBitOfTruth;
13189 }
13190 }
13191 }
13192 }
13193 return SDValue();
13194}
13195
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013196/// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
13197/// so it can be folded inside ANDNP.
13198static bool CanFoldXORWithAllOnes(const SDNode *N) {
13199 EVT VT = N->getValueType(0);
13200
13201 // Match direct AllOnes for 128 and 256-bit vectors
13202 if (ISD::isBuildVectorAllOnes(N))
13203 return true;
13204
13205 // Look through a bit convert.
13206 if (N->getOpcode() == ISD::BITCAST)
13207 N = N->getOperand(0).getNode();
13208
13209 // Sometimes the operand may come from a insert_subvector building a 256-bit
13210 // allones vector
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013211 if (VT.getSizeInBits() == 256 &&
Bill Wendling456a9252011-08-04 00:32:58 +000013212 N->getOpcode() == ISD::INSERT_SUBVECTOR) {
13213 SDValue V1 = N->getOperand(0);
13214 SDValue V2 = N->getOperand(1);
13215
13216 if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
13217 V1.getOperand(0).getOpcode() == ISD::UNDEF &&
13218 ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
13219 ISD::isBuildVectorAllOnes(V2.getNode()))
13220 return true;
13221 }
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013222
13223 return false;
13224}
13225
Nate Begemanb65c1752010-12-17 22:55:37 +000013226static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
13227 TargetLowering::DAGCombinerInfo &DCI,
13228 const X86Subtarget *Subtarget) {
13229 if (DCI.isBeforeLegalizeOps())
13230 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013231
Stuart Hastings865f0932011-06-03 23:53:54 +000013232 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
13233 if (R.getNode())
13234 return R;
13235
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000013236 // Want to form ANDNP nodes:
13237 // 1) In the hopes of then easily combining them with OR and AND nodes
13238 // to form PBLEND/PSIGN.
13239 // 2) To match ANDN packed intrinsics
Nate Begemanb65c1752010-12-17 22:55:37 +000013240 EVT VT = N->getValueType(0);
Bruno Cardoso Lopes466b0222011-07-13 21:36:51 +000013241 if (VT != MVT::v2i64 && VT != MVT::v4i64)
Nate Begemanb65c1752010-12-17 22:55:37 +000013242 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013243
Nate Begemanb65c1752010-12-17 22:55:37 +000013244 SDValue N0 = N->getOperand(0);
13245 SDValue N1 = N->getOperand(1);
13246 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013247
Nate Begemanb65c1752010-12-17 22:55:37 +000013248 // Check LHS for vnot
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013249 if (N0.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013250 //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
13251 CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013252 return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
Nate Begemanb65c1752010-12-17 22:55:37 +000013253
13254 // Check RHS for vnot
13255 if (N1.getOpcode() == ISD::XOR &&
Bruno Cardoso Lopes863bd9d2011-07-25 23:05:32 +000013256 //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
13257 CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013258 return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013259
Nate Begemanb65c1752010-12-17 22:55:37 +000013260 return SDValue();
13261}
13262
Evan Cheng760d1942010-01-04 21:22:48 +000013263static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000013264 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000013265 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000013266 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000013267 return SDValue();
13268
Stuart Hastings865f0932011-06-03 23:53:54 +000013269 SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
13270 if (R.getNode())
13271 return R;
13272
Evan Cheng760d1942010-01-04 21:22:48 +000013273 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000013274 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64 && VT != MVT::v2i64)
Evan Cheng760d1942010-01-04 21:22:48 +000013275 return SDValue();
13276
Evan Cheng760d1942010-01-04 21:22:48 +000013277 SDValue N0 = N->getOperand(0);
13278 SDValue N1 = N->getOperand(1);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013279
Nate Begemanb65c1752010-12-17 22:55:37 +000013280 // look for psign/blend
13281 if (Subtarget->hasSSSE3()) {
13282 if (VT == MVT::v2i64) {
13283 // Canonicalize pandn to RHS
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013284 if (N0.getOpcode() == X86ISD::ANDNP)
Nate Begemanb65c1752010-12-17 22:55:37 +000013285 std::swap(N0, N1);
13286 // or (and (m, x), (pandn m, y))
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013287 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
Nate Begemanb65c1752010-12-17 22:55:37 +000013288 SDValue Mask = N1.getOperand(0);
13289 SDValue X = N1.getOperand(1);
13290 SDValue Y;
13291 if (N0.getOperand(0) == Mask)
13292 Y = N0.getOperand(1);
13293 if (N0.getOperand(1) == Mask)
13294 Y = N0.getOperand(0);
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013295
Bruno Cardoso Lopesc1af4772011-07-13 21:36:47 +000013296 // Check to see if the mask appeared in both the AND and ANDNP and
Nate Begemanb65c1752010-12-17 22:55:37 +000013297 if (!Y.getNode())
13298 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013299
Nate Begemanb65c1752010-12-17 22:55:37 +000013300 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
13301 if (Mask.getOpcode() != ISD::BITCAST ||
13302 X.getOpcode() != ISD::BITCAST ||
13303 Y.getOpcode() != ISD::BITCAST)
13304 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013305
Nate Begemanb65c1752010-12-17 22:55:37 +000013306 // Look through mask bitcast.
13307 Mask = Mask.getOperand(0);
13308 EVT MaskVT = Mask.getValueType();
13309
13310 // Validate that the Mask operand is a vector sra node. The sra node
13311 // will be an intrinsic.
13312 if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
13313 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013314
Nate Begemanb65c1752010-12-17 22:55:37 +000013315 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
13316 // there is no psrai.b
13317 switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
13318 case Intrinsic::x86_sse2_psrai_w:
13319 case Intrinsic::x86_sse2_psrai_d:
13320 break;
13321 default: return SDValue();
13322 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013323
Nate Begemanb65c1752010-12-17 22:55:37 +000013324 // Check that the SRA is all signbits.
13325 SDValue SraC = Mask.getOperand(2);
13326 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
13327 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
13328 if ((SraAmt + 1) != EltBits)
13329 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013330
Nate Begemanb65c1752010-12-17 22:55:37 +000013331 DebugLoc DL = N->getDebugLoc();
13332
13333 // Now we know we at least have a plendvb with the mask val. See if
13334 // we can form a psignb/w/d.
13335 // psign = x.type == y.type == mask.type && y = sub(0, x);
13336 X = X.getOperand(0);
13337 Y = Y.getOperand(0);
13338 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
13339 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
13340 X.getValueType() == MaskVT && X.getValueType() == Y.getValueType()){
13341 unsigned Opc = 0;
13342 switch (EltBits) {
13343 case 8: Opc = X86ISD::PSIGNB; break;
13344 case 16: Opc = X86ISD::PSIGNW; break;
13345 case 32: Opc = X86ISD::PSIGND; break;
13346 default: break;
13347 }
13348 if (Opc) {
13349 SDValue Sign = DAG.getNode(Opc, DL, MaskVT, X, Mask.getOperand(1));
13350 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Sign);
13351 }
13352 }
13353 // PBLENDVB only available on SSE 4.1
13354 if (!Subtarget->hasSSE41())
13355 return SDValue();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013356
Nate Begemanb65c1752010-12-17 22:55:37 +000013357 X = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, X);
13358 Y = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Y);
13359 Mask = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Mask);
Nadav Rotemfbad25e2011-09-11 15:02:23 +000013360 Mask = DAG.getNode(ISD::VSELECT, DL, MVT::v16i8, Mask, X, Y);
Nate Begemanb65c1752010-12-17 22:55:37 +000013361 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Mask);
13362 }
13363 }
13364 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013365
Nate Begemanb65c1752010-12-17 22:55:37 +000013366 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000013367 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
13368 std::swap(N0, N1);
13369 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
13370 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000013371 if (!N0.hasOneUse() || !N1.hasOneUse())
13372 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000013373
13374 SDValue ShAmt0 = N0.getOperand(1);
13375 if (ShAmt0.getValueType() != MVT::i8)
13376 return SDValue();
13377 SDValue ShAmt1 = N1.getOperand(1);
13378 if (ShAmt1.getValueType() != MVT::i8)
13379 return SDValue();
13380 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
13381 ShAmt0 = ShAmt0.getOperand(0);
13382 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
13383 ShAmt1 = ShAmt1.getOperand(0);
13384
13385 DebugLoc DL = N->getDebugLoc();
13386 unsigned Opc = X86ISD::SHLD;
13387 SDValue Op0 = N0.getOperand(0);
13388 SDValue Op1 = N1.getOperand(0);
13389 if (ShAmt0.getOpcode() == ISD::SUB) {
13390 Opc = X86ISD::SHRD;
13391 std::swap(Op0, Op1);
13392 std::swap(ShAmt0, ShAmt1);
13393 }
13394
Evan Cheng8b1190a2010-04-28 01:18:01 +000013395 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000013396 if (ShAmt1.getOpcode() == ISD::SUB) {
13397 SDValue Sum = ShAmt1.getOperand(0);
13398 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000013399 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
13400 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
13401 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
13402 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000013403 return DAG.getNode(Opc, DL, VT,
13404 Op0, Op1,
13405 DAG.getNode(ISD::TRUNCATE, DL,
13406 MVT::i8, ShAmt0));
13407 }
13408 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
13409 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
13410 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000013411 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000013412 return DAG.getNode(Opc, DL, VT,
13413 N0.getOperand(0), N1.getOperand(0),
13414 DAG.getNode(ISD::TRUNCATE, DL,
13415 MVT::i8, ShAmt0));
13416 }
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013417
Evan Cheng760d1942010-01-04 21:22:48 +000013418 return SDValue();
13419}
13420
Chris Lattner149a4e52008-02-22 02:09:43 +000013421/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000013422static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000013423 const X86Subtarget *Subtarget) {
Nadav Rotem614061b2011-08-10 19:30:14 +000013424 StoreSDNode *St = cast<StoreSDNode>(N);
13425 EVT VT = St->getValue().getValueType();
13426 EVT StVT = St->getMemoryVT();
13427 DebugLoc dl = St->getDebugLoc();
Nadav Rotem5e742a32011-08-11 16:41:21 +000013428 SDValue StoredVal = St->getOperand(1);
13429 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13430
13431 // If we are saving a concatination of two XMM registers, perform two stores.
Nadav Rotem6236f7f2011-08-11 17:05:47 +000013432 // This is better in Sandy Bridge cause one 256-bit mem op is done via two
13433 // 128-bit ones. If in the future the cost becomes only one memory access the
13434 // first version would be better.
Nadav Rotem5e742a32011-08-11 16:41:21 +000013435 if (VT.getSizeInBits() == 256 &&
13436 StoredVal.getNode()->getOpcode() == ISD::CONCAT_VECTORS &&
13437 StoredVal.getNumOperands() == 2) {
13438
13439 SDValue Value0 = StoredVal.getOperand(0);
13440 SDValue Value1 = StoredVal.getOperand(1);
13441
13442 SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
13443 SDValue Ptr0 = St->getBasePtr();
13444 SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
13445
13446 SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
13447 St->getPointerInfo(), St->isVolatile(),
13448 St->isNonTemporal(), St->getAlignment());
13449 SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
13450 St->getPointerInfo(), St->isVolatile(),
13451 St->isNonTemporal(), St->getAlignment());
13452 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
13453 }
Nadav Rotem614061b2011-08-10 19:30:14 +000013454
13455 // Optimize trunc store (of multiple scalars) to shuffle and store.
13456 // First, pack all of the elements in one place. Next, store to memory
13457 // in fewer chunks.
13458 if (St->isTruncatingStore() && VT.isVector()) {
13459 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13460 unsigned NumElems = VT.getVectorNumElements();
13461 assert(StVT != VT && "Cannot truncate to the same type");
13462 unsigned FromSz = VT.getVectorElementType().getSizeInBits();
13463 unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
13464
13465 // From, To sizes and ElemCount must be pow of two
13466 if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
13467 // We are going to use the original vector elt for storing.
13468 // accumulated smaller vector elements must be a multiple of bigger size.
13469 if (0 != (NumElems * ToSz) % FromSz) return SDValue();
13470 unsigned SizeRatio = FromSz / ToSz;
13471
13472 assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
13473
13474 // Create a type on which we perform the shuffle
13475 EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
13476 StVT.getScalarType(), NumElems*SizeRatio);
13477
13478 assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
13479
13480 SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
13481 SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
13482 for (unsigned i = 0; i < NumElems; i++ ) ShuffleVec[i] = i * SizeRatio;
13483
13484 // Can't shuffle using an illegal type
13485 if (!TLI.isTypeLegal(WideVecVT)) return SDValue();
13486
13487 SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
13488 DAG.getUNDEF(WideVec.getValueType()),
13489 ShuffleVec.data());
13490 // At this point all of the data is stored at the bottom of the
13491 // register. We now need to save it to mem.
13492
13493 // Find the largest store unit
13494 MVT StoreType = MVT::i8;
13495 for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
13496 tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
13497 MVT Tp = (MVT::SimpleValueType)tp;
13498 if (TLI.isTypeLegal(Tp) && StoreType.getSizeInBits() < NumElems * ToSz)
13499 StoreType = Tp;
13500 }
13501
13502 // Bitcast the original vector into a vector of store-size units
13503 EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
13504 StoreType, VT.getSizeInBits()/EVT(StoreType).getSizeInBits());
13505 assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
13506 SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
13507 SmallVector<SDValue, 8> Chains;
13508 SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
13509 TLI.getPointerTy());
13510 SDValue Ptr = St->getBasePtr();
13511
13512 // Perform one or more big stores into memory.
13513 for (unsigned i = 0; i < (ToSz*NumElems)/StoreType.getSizeInBits() ; i++) {
13514 SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
13515 StoreType, ShuffWide,
13516 DAG.getIntPtrConstant(i));
13517 SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
13518 St->getPointerInfo(), St->isVolatile(),
13519 St->isNonTemporal(), St->getAlignment());
13520 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
13521 Chains.push_back(Ch);
13522 }
13523
13524 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
13525 Chains.size());
13526 }
13527
13528
Chris Lattner149a4e52008-02-22 02:09:43 +000013529 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
13530 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000013531 // A preferable solution to the general problem is to figure out the right
13532 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000013533
13534 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng536e6672009-03-12 05:59:15 +000013535 if (VT.getSizeInBits() != 64)
13536 return SDValue();
13537
Devang Patel578efa92009-06-05 21:57:13 +000013538 const Function *F = DAG.getMachineFunction().getFunction();
13539 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000013540 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000013541 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000013542 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000013543 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000013544 isa<LoadSDNode>(St->getValue()) &&
13545 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
13546 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000013547 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013548 LoadSDNode *Ld = 0;
13549 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000013550 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000013551 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013552 // Must be a store of a load. We currently handle two cases: the load
13553 // is a direct child, and it's under an intervening TokenFactor. It is
13554 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000013555 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000013556 Ld = cast<LoadSDNode>(St->getChain());
13557 else if (St->getValue().hasOneUse() &&
13558 ChainVal->getOpcode() == ISD::TokenFactor) {
13559 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000013560 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000013561 TokenFactorIndex = i;
13562 Ld = cast<LoadSDNode>(St->getValue());
13563 } else
13564 Ops.push_back(ChainVal->getOperand(i));
13565 }
13566 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000013567
Evan Cheng536e6672009-03-12 05:59:15 +000013568 if (!Ld || !ISD::isNormalLoad(Ld))
13569 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013570
Evan Cheng536e6672009-03-12 05:59:15 +000013571 // If this is not the MMX case, i.e. we are just turning i64 load/store
13572 // into f64 load/store, avoid the transformation if there are multiple
13573 // uses of the loaded value.
13574 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
13575 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000013576
Evan Cheng536e6672009-03-12 05:59:15 +000013577 DebugLoc LdDL = Ld->getDebugLoc();
13578 DebugLoc StDL = N->getDebugLoc();
13579 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
13580 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
13581 // pair instead.
13582 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000013583 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000013584 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
13585 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000013586 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000013587 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000013588 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000013589 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000013590 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000013591 Ops.size());
13592 }
Evan Cheng536e6672009-03-12 05:59:15 +000013593 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000013594 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013595 St->isVolatile(), St->isNonTemporal(),
13596 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000013597 }
Evan Cheng536e6672009-03-12 05:59:15 +000013598
13599 // Otherwise, lower to two pairs of 32-bit loads / stores.
13600 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000013601 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
13602 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000013603
Owen Anderson825b72b2009-08-11 20:47:22 +000013604 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000013605 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013606 Ld->isVolatile(), Ld->isNonTemporal(),
13607 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000013608 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000013609 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000013610 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000013611 MinAlign(Ld->getAlignment(), 4));
13612
13613 SDValue NewChain = LoLd.getValue(1);
13614 if (TokenFactorIndex != -1) {
13615 Ops.push_back(LoLd);
13616 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000013617 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000013618 Ops.size());
13619 }
13620
13621 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000013622 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
13623 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000013624
13625 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000013626 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000013627 St->isVolatile(), St->isNonTemporal(),
13628 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000013629 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000013630 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000013631 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000013632 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000013633 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000013634 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000013635 }
Dan Gohman475871a2008-07-27 21:46:04 +000013636 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000013637}
13638
Chris Lattner6cf73262008-01-25 06:14:17 +000013639/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
13640/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000013641static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000013642 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
13643 // F[X]OR(0.0, x) -> x
13644 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000013645 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
13646 if (C->getValueAPF().isPosZero())
13647 return N->getOperand(1);
13648 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
13649 if (C->getValueAPF().isPosZero())
13650 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000013651 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000013652}
13653
13654/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000013655static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000013656 // FAND(0.0, x) -> 0.0
13657 // FAND(x, 0.0) -> 0.0
13658 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
13659 if (C->getValueAPF().isPosZero())
13660 return N->getOperand(0);
13661 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
13662 if (C->getValueAPF().isPosZero())
13663 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000013664 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000013665}
13666
Dan Gohmane5af2d32009-01-29 01:59:02 +000013667static SDValue PerformBTCombine(SDNode *N,
13668 SelectionDAG &DAG,
13669 TargetLowering::DAGCombinerInfo &DCI) {
13670 // BT ignores high bits in the bit index operand.
13671 SDValue Op1 = N->getOperand(1);
13672 if (Op1.hasOneUse()) {
13673 unsigned BitWidth = Op1.getValueSizeInBits();
13674 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
13675 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013676 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
13677 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000013678 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000013679 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
13680 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
13681 DCI.CommitTargetLoweringOpt(TLO);
13682 }
13683 return SDValue();
13684}
Chris Lattner83e6c992006-10-04 06:57:07 +000013685
Eli Friedman7a5e5552009-06-07 06:52:44 +000013686static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
13687 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013688 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000013689 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000013690 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000013691 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000013692 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000013693 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000013694 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000013695 }
13696 return SDValue();
13697}
13698
Evan Cheng2e489c42009-12-16 00:53:11 +000013699static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
13700 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
13701 // (and (i32 x86isd::setcc_carry), 1)
13702 // This eliminates the zext. This transformation is necessary because
13703 // ISD::SETCC is always legalized to i8.
13704 DebugLoc dl = N->getDebugLoc();
13705 SDValue N0 = N->getOperand(0);
13706 EVT VT = N->getValueType(0);
13707 if (N0.getOpcode() == ISD::AND &&
13708 N0.hasOneUse() &&
13709 N0.getOperand(0).hasOneUse()) {
13710 SDValue N00 = N0.getOperand(0);
13711 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
13712 return SDValue();
13713 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
13714 if (!C || C->getZExtValue() != 1)
13715 return SDValue();
13716 return DAG.getNode(ISD::AND, dl, VT,
13717 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
13718 N00.getOperand(0), N00.getOperand(1)),
13719 DAG.getConstant(1, VT));
13720 }
13721
13722 return SDValue();
13723}
13724
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013725// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
13726static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
13727 unsigned X86CC = N->getConstantOperandVal(0);
13728 SDValue EFLAG = N->getOperand(1);
13729 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013730
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013731 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
13732 // a zext and produces an all-ones bit which is more useful than 0/1 in some
13733 // cases.
13734 if (X86CC == X86::COND_B)
13735 return DAG.getNode(ISD::AND, DL, MVT::i8,
13736 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
13737 DAG.getConstant(X86CC, MVT::i8), EFLAG),
13738 DAG.getConstant(1, MVT::i8));
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013739
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013740 return SDValue();
13741}
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013742
Benjamin Kramer1396c402011-06-18 11:09:41 +000013743static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
13744 const X86TargetLowering *XTLI) {
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013745 SDValue Op0 = N->getOperand(0);
13746 // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
13747 // a 32-bit target where SSE doesn't support i64->FP operations.
13748 if (Op0.getOpcode() == ISD::LOAD) {
13749 LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
13750 EVT VT = Ld->getValueType(0);
13751 if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
13752 ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
13753 !XTLI->getSubtarget()->is64Bit() &&
13754 !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
Benjamin Kramer1396c402011-06-18 11:09:41 +000013755 SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
13756 Ld->getChain(), Op0, DAG);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013757 DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
13758 return FILDChain;
13759 }
13760 }
13761 return SDValue();
13762}
13763
Chris Lattner23a01992010-12-20 01:37:09 +000013764// Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
13765static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
13766 X86TargetLowering::DAGCombinerInfo &DCI) {
13767 // If the LHS and RHS of the ADC node are zero, then it can't overflow and
13768 // the result is either zero or one (depending on the input carry bit).
13769 // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
13770 if (X86::isZeroNode(N->getOperand(0)) &&
13771 X86::isZeroNode(N->getOperand(1)) &&
13772 // We don't have a good way to replace an EFLAGS use, so only do this when
13773 // dead right now.
13774 SDValue(N, 1).use_empty()) {
13775 DebugLoc DL = N->getDebugLoc();
13776 EVT VT = N->getValueType(0);
13777 SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
13778 SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
13779 DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
13780 DAG.getConstant(X86::COND_B,MVT::i8),
13781 N->getOperand(2)),
13782 DAG.getConstant(1, VT));
13783 return DCI.CombineTo(N, Res1, CarryOut);
13784 }
13785
13786 return SDValue();
13787}
13788
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013789// fold (add Y, (sete X, 0)) -> adc 0, Y
13790// (add Y, (setne X, 0)) -> sbb -1, Y
13791// (sub (sete X, 0), Y) -> sbb 0, Y
13792// (sub (setne X, 0), Y) -> adc -1, Y
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013793static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013794 DebugLoc DL = N->getDebugLoc();
NAKAMURA Takumie5fffe92011-01-26 02:03:37 +000013795
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013796 // Look through ZExts.
13797 SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
13798 if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
13799 return SDValue();
13800
13801 SDValue SetCC = Ext.getOperand(0);
13802 if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
13803 return SDValue();
13804
13805 X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
13806 if (CC != X86::COND_E && CC != X86::COND_NE)
13807 return SDValue();
13808
13809 SDValue Cmp = SetCC.getOperand(1);
13810 if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
Chris Lattner9cd3da42011-01-16 02:56:53 +000013811 !X86::isZeroNode(Cmp.getOperand(1)) ||
13812 !Cmp.getOperand(0).getValueType().isInteger())
Benjamin Kramer7d6fe132010-12-21 21:41:44 +000013813 return SDValue();
13814
13815 SDValue CmpOp0 = Cmp.getOperand(0);
13816 SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
13817 DAG.getConstant(1, CmpOp0.getValueType()));
13818
13819 SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
13820 if (CC == X86::COND_NE)
13821 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
13822 DL, OtherVal.getValueType(), OtherVal,
13823 DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
13824 return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
13825 DL, OtherVal.getValueType(), OtherVal,
13826 DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
13827}
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013828
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013829static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG) {
13830 SDValue Op0 = N->getOperand(0);
13831 SDValue Op1 = N->getOperand(1);
13832
13833 // X86 can't encode an immediate LHS of a sub. See if we can push the
13834 // negation into a preceding instruction.
13835 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013836 // If the RHS of the sub is a XOR with one use and a constant, invert the
13837 // immediate. Then add one to the LHS of the sub so we can turn
13838 // X-Y -> X+~Y+1, saving one register.
13839 if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
13840 isa<ConstantSDNode>(Op1.getOperand(1))) {
Nick Lewycky726ebd62011-08-23 19:01:24 +000013841 APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013842 EVT VT = Op0.getValueType();
13843 SDValue NewXor = DAG.getNode(ISD::XOR, Op1.getDebugLoc(), VT,
13844 Op1.getOperand(0),
13845 DAG.getConstant(~XorC, VT));
13846 return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, NewXor,
Nick Lewycky726ebd62011-08-23 19:01:24 +000013847 DAG.getConstant(C->getAPIntValue()+1, VT));
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013848 }
13849 }
13850
13851 return OptimizeConditionalInDecrement(N, DAG);
13852}
13853
Dan Gohman475871a2008-07-27 21:46:04 +000013854SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000013855 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000013856 SelectionDAG &DAG = DCI.DAG;
13857 switch (N->getOpcode()) {
13858 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000013859 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013860 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000013861 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000013862 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Benjamin Kramer162ee5c2011-07-26 22:42:13 +000013863 case ISD::ADD: return OptimizeConditionalInDecrement(N, DAG);
13864 case ISD::SUB: return PerformSubCombine(N, DAG);
Chris Lattner23a01992010-12-20 01:37:09 +000013865 case X86ISD::ADC: return PerformADCCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000013866 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000013867 case ISD::SHL:
13868 case ISD::SRA:
13869 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000013870 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000013871 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000013872 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Stuart Hastingsf99a4b82011-06-06 23:15:58 +000013873 case ISD::SINT_TO_FP: return PerformSINT_TO_FPCombine(N, DAG, this);
Chris Lattner6cf73262008-01-25 06:14:17 +000013874 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000013875 case X86ISD::FOR: return PerformFORCombine(N, DAG);
13876 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000013877 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000013878 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000013879 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Chris Lattnerc19d1c32010-12-19 22:08:31 +000013880 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013881 case X86ISD::SHUFPS: // Handle all target specific shuffles
13882 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000013883 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013884 case X86ISD::PUNPCKHBW:
13885 case X86ISD::PUNPCKHWD:
13886 case X86ISD::PUNPCKHDQ:
13887 case X86ISD::PUNPCKHQDQ:
13888 case X86ISD::UNPCKHPS:
13889 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes4ea49682011-07-26 22:03:40 +000013890 case X86ISD::VUNPCKHPSY:
13891 case X86ISD::VUNPCKHPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013892 case X86ISD::PUNPCKLBW:
13893 case X86ISD::PUNPCKLWD:
13894 case X86ISD::PUNPCKLDQ:
13895 case X86ISD::PUNPCKLQDQ:
13896 case X86ISD::UNPCKLPS:
13897 case X86ISD::UNPCKLPD:
David Greenefbf05d32011-02-22 23:31:46 +000013898 case X86ISD::VUNPCKLPSY:
13899 case X86ISD::VUNPCKLPDY:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000013900 case X86ISD::MOVHLPS:
13901 case X86ISD::MOVLHPS:
13902 case X86ISD::PSHUFD:
13903 case X86ISD::PSHUFHW:
13904 case X86ISD::PSHUFLW:
13905 case X86ISD::MOVSS:
13906 case X86ISD::MOVSD:
Bruno Cardoso Lopescea34e42011-07-27 00:56:34 +000013907 case X86ISD::VPERMILPS:
13908 case X86ISD::VPERMILPSY:
13909 case X86ISD::VPERMILPD:
13910 case X86ISD::VPERMILPDY:
Bruno Cardoso Lopes53cae132011-08-12 21:48:26 +000013911 case X86ISD::VPERM2F128:
Bruno Cardoso Lopes50b37c72011-08-15 21:45:54 +000013912 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
Evan Cheng206ee9d2006-07-07 08:33:52 +000013913 }
13914
Dan Gohman475871a2008-07-27 21:46:04 +000013915 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000013916}
13917
Evan Chenge5b51ac2010-04-17 06:13:15 +000013918/// isTypeDesirableForOp - Return true if the target has native support for
13919/// the specified value type and it is 'desirable' to use the type for the
13920/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
13921/// instruction encodings are longer and some i16 instructions are slow.
13922bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
13923 if (!isTypeLegal(VT))
13924 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013925 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000013926 return true;
13927
13928 switch (Opc) {
13929 default:
13930 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000013931 case ISD::LOAD:
13932 case ISD::SIGN_EXTEND:
13933 case ISD::ZERO_EXTEND:
13934 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000013935 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000013936 case ISD::SRL:
13937 case ISD::SUB:
13938 case ISD::ADD:
13939 case ISD::MUL:
13940 case ISD::AND:
13941 case ISD::OR:
13942 case ISD::XOR:
13943 return false;
13944 }
13945}
13946
13947/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000013948/// beneficial for dag combiner to promote the specified node. If true, it
13949/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000013950bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000013951 EVT VT = Op.getValueType();
13952 if (VT != MVT::i16)
13953 return false;
13954
Evan Cheng4c26e932010-04-19 19:29:22 +000013955 bool Promote = false;
13956 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000013957 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000013958 default: break;
13959 case ISD::LOAD: {
13960 LoadSDNode *LD = cast<LoadSDNode>(Op);
13961 // If the non-extending load has a single use and it's not live out, then it
13962 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013963 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
13964 Op.hasOneUse()*/) {
13965 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
13966 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
13967 // The only case where we'd want to promote LOAD (rather then it being
13968 // promoted as an operand is when it's only use is liveout.
13969 if (UI->getOpcode() != ISD::CopyToReg)
13970 return false;
13971 }
13972 }
Evan Cheng4c26e932010-04-19 19:29:22 +000013973 Promote = true;
13974 break;
13975 }
13976 case ISD::SIGN_EXTEND:
13977 case ISD::ZERO_EXTEND:
13978 case ISD::ANY_EXTEND:
13979 Promote = true;
13980 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013981 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000013982 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000013983 SDValue N0 = Op.getOperand(0);
13984 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000013985 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000013986 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000013987 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000013988 break;
13989 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000013990 case ISD::ADD:
13991 case ISD::MUL:
13992 case ISD::AND:
13993 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000013994 case ISD::XOR:
13995 Commute = true;
13996 // fallthrough
13997 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000013998 SDValue N0 = Op.getOperand(0);
13999 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000014000 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000014001 return false;
14002 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000014003 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000014004 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000014005 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000014006 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000014007 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000014008 }
14009 }
14010
14011 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000014012 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000014013}
14014
Evan Cheng60c07e12006-07-05 22:17:51 +000014015//===----------------------------------------------------------------------===//
14016// X86 Inline Assembly Support
14017//===----------------------------------------------------------------------===//
14018
Chris Lattnerb8105652009-07-20 17:51:36 +000014019bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
14020 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
Chris Lattnerb8105652009-07-20 17:51:36 +000014021
14022 std::string AsmStr = IA->getAsmString();
14023
14024 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000014025 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000014026 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000014027
14028 switch (AsmPieces.size()) {
14029 default: return false;
14030 case 1:
14031 AsmStr = AsmPieces[0];
14032 AsmPieces.clear();
14033 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
14034
Chris Lattner7a2bdde2011-04-15 05:18:47 +000014035 // FIXME: this should verify that we are targeting a 486 or better. If not,
Evan Cheng55d42002011-01-08 01:24:27 +000014036 // we will turn this bswap into something that will be lowered to logical ops
14037 // instead of emitting the bswap asm. For now, we don't support 486 or lower
14038 // so don't worry about this.
Chris Lattnerb8105652009-07-20 17:51:36 +000014039 // bswap $0
14040 if (AsmPieces.size() == 2 &&
14041 (AsmPieces[0] == "bswap" ||
14042 AsmPieces[0] == "bswapq" ||
14043 AsmPieces[0] == "bswapl") &&
14044 (AsmPieces[1] == "$0" ||
14045 AsmPieces[1] == "${0:q}")) {
14046 // No need to check constraints, nothing other than the equivalent of
14047 // "=r,0" would be valid here.
Chris Lattnerdb125cf2011-07-18 04:54:35 +000014048 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000014049 if (!Ty || Ty->getBitWidth() % 16 != 0)
14050 return false;
14051 return IntrinsicLowering::LowerToByteSwap(CI);
Chris Lattnerb8105652009-07-20 17:51:36 +000014052 }
14053 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000014054 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000014055 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000014056 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000014057 AsmPieces[1] == "$$8," &&
14058 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000014059 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
14060 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000014061 const std::string &ConstraintsStr = IA->getConstraintString();
14062 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000014063 std::sort(AsmPieces.begin(), AsmPieces.end());
14064 if (AsmPieces.size() == 4 &&
14065 AsmPieces[0] == "~{cc}" &&
14066 AsmPieces[1] == "~{dirflag}" &&
14067 AsmPieces[2] == "~{flags}" &&
14068 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000014069 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000014070 if (!Ty || Ty->getBitWidth() % 16 != 0)
14071 return false;
14072 return IntrinsicLowering::LowerToByteSwap(CI);
Dan Gohman0ef701e2010-03-04 19:58:08 +000014073 }
Chris Lattnerb8105652009-07-20 17:51:36 +000014074 }
14075 break;
14076 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000014077 if (CI->getType()->isIntegerTy(32) &&
14078 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
14079 SmallVector<StringRef, 4> Words;
14080 SplitString(AsmPieces[0], Words, " \t,");
14081 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
14082 Words[2] == "${0:w}") {
14083 Words.clear();
14084 SplitString(AsmPieces[1], Words, " \t,");
14085 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
14086 Words[2] == "$0") {
14087 Words.clear();
14088 SplitString(AsmPieces[2], Words, " \t,");
14089 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
14090 Words[2] == "${0:w}") {
14091 AsmPieces.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000014092 const std::string &ConstraintsStr = IA->getConstraintString();
14093 SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
Peter Collingbourne948cf022010-11-13 19:54:30 +000014094 std::sort(AsmPieces.begin(), AsmPieces.end());
14095 if (AsmPieces.size() == 4 &&
14096 AsmPieces[0] == "~{cc}" &&
14097 AsmPieces[1] == "~{dirflag}" &&
14098 AsmPieces[2] == "~{flags}" &&
14099 AsmPieces[3] == "~{fpsr}") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000014100 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000014101 if (!Ty || Ty->getBitWidth() % 16 != 0)
14102 return false;
14103 return IntrinsicLowering::LowerToByteSwap(CI);
Peter Collingbourne948cf022010-11-13 19:54:30 +000014104 }
14105 }
14106 }
14107 }
14108 }
Evan Cheng55d42002011-01-08 01:24:27 +000014109
14110 if (CI->getType()->isIntegerTy(64)) {
14111 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
14112 if (Constraints.size() >= 2 &&
14113 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
14114 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
14115 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
14116 SmallVector<StringRef, 4> Words;
14117 SplitString(AsmPieces[0], Words, " \t");
14118 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
Chris Lattnerb8105652009-07-20 17:51:36 +000014119 Words.clear();
Evan Cheng55d42002011-01-08 01:24:27 +000014120 SplitString(AsmPieces[1], Words, " \t");
14121 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
14122 Words.clear();
14123 SplitString(AsmPieces[2], Words, " \t,");
14124 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
14125 Words[2] == "%edx") {
Chris Lattnerdb125cf2011-07-18 04:54:35 +000014126 IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
Evan Cheng55d42002011-01-08 01:24:27 +000014127 if (!Ty || Ty->getBitWidth() % 16 != 0)
14128 return false;
14129 return IntrinsicLowering::LowerToByteSwap(CI);
14130 }
Chris Lattnerb8105652009-07-20 17:51:36 +000014131 }
14132 }
14133 }
14134 }
14135 break;
14136 }
14137 return false;
14138}
14139
14140
14141
Chris Lattnerf4dff842006-07-11 02:54:03 +000014142/// getConstraintType - Given a constraint letter, return the type of
14143/// constraint it is for this target.
14144X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000014145X86TargetLowering::getConstraintType(const std::string &Constraint) const {
14146 if (Constraint.size() == 1) {
14147 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000014148 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000014149 case 'q':
14150 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000014151 case 'f':
14152 case 't':
14153 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000014154 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000014155 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000014156 case 'Y':
Eric Christopher31b5f002011-07-07 22:29:07 +000014157 case 'l':
Chris Lattner4234f572007-03-25 02:14:49 +000014158 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000014159 case 'a':
14160 case 'b':
14161 case 'c':
14162 case 'd':
14163 case 'S':
14164 case 'D':
14165 case 'A':
14166 return C_Register;
14167 case 'I':
14168 case 'J':
14169 case 'K':
14170 case 'L':
14171 case 'M':
14172 case 'N':
14173 case 'G':
14174 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000014175 case 'e':
14176 case 'Z':
14177 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000014178 default:
14179 break;
14180 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000014181 }
Chris Lattner4234f572007-03-25 02:14:49 +000014182 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000014183}
14184
John Thompson44ab89e2010-10-29 17:29:13 +000014185/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000014186/// This object must already have been set up with the operand type
14187/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000014188TargetLowering::ConstraintWeight
14189 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000014190 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000014191 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000014192 Value *CallOperandVal = info.CallOperandVal;
14193 // If we don't have a value, we can't do a match,
14194 // but allow it at the lowest weight.
14195 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000014196 return CW_Default;
Chris Lattnerdb125cf2011-07-18 04:54:35 +000014197 Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000014198 // Look at the constraint type.
14199 switch (*constraint) {
14200 default:
John Thompson44ab89e2010-10-29 17:29:13 +000014201 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
14202 case 'R':
14203 case 'q':
14204 case 'Q':
14205 case 'a':
14206 case 'b':
14207 case 'c':
14208 case 'd':
14209 case 'S':
14210 case 'D':
14211 case 'A':
14212 if (CallOperandVal->getType()->isIntegerTy())
14213 weight = CW_SpecificReg;
14214 break;
14215 case 'f':
14216 case 't':
14217 case 'u':
14218 if (type->isFloatingPointTy())
14219 weight = CW_SpecificReg;
14220 break;
14221 case 'y':
Chris Lattner2a786eb2010-12-19 20:19:20 +000014222 if (type->isX86_MMXTy() && Subtarget->hasMMX())
John Thompson44ab89e2010-10-29 17:29:13 +000014223 weight = CW_SpecificReg;
14224 break;
14225 case 'x':
14226 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014227 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000014228 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000014229 break;
14230 case 'I':
14231 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
14232 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000014233 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000014234 }
14235 break;
John Thompson44ab89e2010-10-29 17:29:13 +000014236 case 'J':
14237 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14238 if (C->getZExtValue() <= 63)
14239 weight = CW_Constant;
14240 }
14241 break;
14242 case 'K':
14243 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14244 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
14245 weight = CW_Constant;
14246 }
14247 break;
14248 case 'L':
14249 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14250 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
14251 weight = CW_Constant;
14252 }
14253 break;
14254 case 'M':
14255 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14256 if (C->getZExtValue() <= 3)
14257 weight = CW_Constant;
14258 }
14259 break;
14260 case 'N':
14261 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14262 if (C->getZExtValue() <= 0xff)
14263 weight = CW_Constant;
14264 }
14265 break;
14266 case 'G':
14267 case 'C':
14268 if (dyn_cast<ConstantFP>(CallOperandVal)) {
14269 weight = CW_Constant;
14270 }
14271 break;
14272 case 'e':
14273 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14274 if ((C->getSExtValue() >= -0x80000000LL) &&
14275 (C->getSExtValue() <= 0x7fffffffLL))
14276 weight = CW_Constant;
14277 }
14278 break;
14279 case 'Z':
14280 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
14281 if (C->getZExtValue() <= 0xffffffff)
14282 weight = CW_Constant;
14283 }
14284 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000014285 }
14286 return weight;
14287}
14288
Dale Johannesenba2a0b92008-01-29 02:21:21 +000014289/// LowerXConstraint - try to replace an X constraint, which matches anything,
14290/// with another that has more specific requirements based on the type of the
14291/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000014292const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000014293LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000014294 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
14295 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000014296 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014297 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000014298 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014299 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000014300 return "x";
14301 }
Scott Michelfdc40a02009-02-17 22:15:04 +000014302
Chris Lattner5e764232008-04-26 23:02:14 +000014303 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000014304}
14305
Chris Lattner48884cd2007-08-25 00:47:38 +000014306/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
14307/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000014308void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Eric Christopher100c8332011-06-02 23:16:42 +000014309 std::string &Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000014310 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000014311 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000014312 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000014313
Eric Christopher100c8332011-06-02 23:16:42 +000014314 // Only support length 1 constraints for now.
14315 if (Constraint.length() > 1) return;
Eric Christopher471e4222011-06-08 23:55:35 +000014316
Eric Christopher100c8332011-06-02 23:16:42 +000014317 char ConstraintLetter = Constraint[0];
14318 switch (ConstraintLetter) {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000014319 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000014320 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000014321 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000014322 if (C->getZExtValue() <= 31) {
14323 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000014324 break;
14325 }
Devang Patel84f7fd22007-03-17 00:13:28 +000014326 }
Chris Lattner48884cd2007-08-25 00:47:38 +000014327 return;
Evan Cheng364091e2008-09-22 23:57:37 +000014328 case 'J':
14329 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000014330 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000014331 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
14332 break;
14333 }
14334 }
14335 return;
14336 case 'K':
14337 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000014338 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000014339 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
14340 break;
14341 }
14342 }
14343 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000014344 case 'N':
14345 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000014346 if (C->getZExtValue() <= 255) {
14347 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000014348 break;
14349 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000014350 }
Chris Lattner48884cd2007-08-25 00:47:38 +000014351 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000014352 case 'e': {
14353 // 32-bit signed value
14354 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000014355 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
14356 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000014357 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000014358 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000014359 break;
14360 }
14361 // FIXME gcc accepts some relocatable values here too, but only in certain
14362 // memory models; it's complicated.
14363 }
14364 return;
14365 }
14366 case 'Z': {
14367 // 32-bit unsigned value
14368 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000014369 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
14370 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000014371 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
14372 break;
14373 }
14374 }
14375 // FIXME gcc accepts some relocatable values here too, but only in certain
14376 // memory models; it's complicated.
14377 return;
14378 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000014379 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000014380 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000014381 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000014382 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000014383 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000014384 break;
14385 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014386
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000014387 // In any sort of PIC mode addresses need to be computed at runtime by
14388 // adding in a register or some sort of table lookup. These can't
14389 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000014390 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000014391 return;
14392
Chris Lattnerdc43a882007-05-03 16:52:29 +000014393 // If we are in non-pic codegen mode, we allow the address of a global (with
14394 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000014395 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000014396 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000014397
Chris Lattner49921962009-05-08 18:23:14 +000014398 // Match either (GA), (GA+C), (GA+C1+C2), etc.
14399 while (1) {
14400 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
14401 Offset += GA->getOffset();
14402 break;
14403 } else if (Op.getOpcode() == ISD::ADD) {
14404 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
14405 Offset += C->getZExtValue();
14406 Op = Op.getOperand(0);
14407 continue;
14408 }
14409 } else if (Op.getOpcode() == ISD::SUB) {
14410 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
14411 Offset += -C->getZExtValue();
14412 Op = Op.getOperand(0);
14413 continue;
14414 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000014415 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000014416
Chris Lattner49921962009-05-08 18:23:14 +000014417 // Otherwise, this isn't something we can handle, reject it.
14418 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000014419 }
Eric Christopherfd179292009-08-27 18:07:15 +000014420
Dan Gohman46510a72010-04-15 01:51:59 +000014421 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000014422 // If we require an extra load to get this address, as in PIC mode, we
14423 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000014424 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
14425 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000014426 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000014427
Devang Patel0d881da2010-07-06 22:08:15 +000014428 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
14429 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000014430 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000014431 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000014432 }
Scott Michelfdc40a02009-02-17 22:15:04 +000014433
Gabor Greifba36cb52008-08-28 21:40:38 +000014434 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000014435 Ops.push_back(Result);
14436 return;
14437 }
Dale Johannesen1784d162010-06-25 21:55:36 +000014438 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000014439}
14440
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014441std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000014442X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000014443 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000014444 // First, see if this is a constraint that directly corresponds to an LLVM
14445 // register class.
14446 if (Constraint.size() == 1) {
14447 // GCC Constraint Letters
14448 switch (Constraint[0]) {
14449 default: break;
Eric Christopherd176af82011-06-29 17:23:50 +000014450 // TODO: Slight differences here in allocation order and leaving
14451 // RIP in the class. Do they matter any more here than they do
14452 // in the normal allocation?
14453 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
14454 if (Subtarget->is64Bit()) {
Nick Lewycky9bf45d02011-07-08 00:19:27 +000014455 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000014456 return std::make_pair(0U, X86::GR32RegisterClass);
14457 else if (VT == MVT::i16)
14458 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000014459 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000014460 return std::make_pair(0U, X86::GR8RegisterClass);
Nick Lewycky9bf45d02011-07-08 00:19:27 +000014461 else if (VT == MVT::i64 || VT == MVT::f64)
Eric Christopherd176af82011-06-29 17:23:50 +000014462 return std::make_pair(0U, X86::GR64RegisterClass);
14463 break;
14464 }
14465 // 32-bit fallthrough
14466 case 'Q': // Q_REGS
Nick Lewycky9bf45d02011-07-08 00:19:27 +000014467 if (VT == MVT::i32 || VT == MVT::f32)
Eric Christopherd176af82011-06-29 17:23:50 +000014468 return std::make_pair(0U, X86::GR32_ABCDRegisterClass);
14469 else if (VT == MVT::i16)
14470 return std::make_pair(0U, X86::GR16_ABCDRegisterClass);
Eric Christopher5427ede2011-07-14 20:13:52 +000014471 else if (VT == MVT::i8 || VT == MVT::i1)
Eric Christopherd176af82011-06-29 17:23:50 +000014472 return std::make_pair(0U, X86::GR8_ABCD_LRegisterClass);
14473 else if (VT == MVT::i64)
14474 return std::make_pair(0U, X86::GR64_ABCDRegisterClass);
14475 break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000014476 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000014477 case 'l': // INDEX_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000014478 if (VT == MVT::i8 || VT == MVT::i1)
Chris Lattner0f65cad2007-04-09 05:49:22 +000014479 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000014480 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000014481 return std::make_pair(0U, X86::GR16RegisterClass);
Eric Christopher2bbecd82011-05-19 21:33:47 +000014482 if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000014483 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000014484 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000014485 case 'R': // LEGACY_REGS
Eric Christopher5427ede2011-07-14 20:13:52 +000014486 if (VT == MVT::i8 || VT == MVT::i1)
Dale Johannesen5f3663e2009-10-07 22:47:20 +000014487 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
14488 if (VT == MVT::i16)
14489 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
14490 if (VT == MVT::i32 || !Subtarget->is64Bit())
14491 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
14492 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000014493 case 'f': // FP Stack registers.
14494 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
14495 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000014496 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000014497 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000014498 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000014499 return std::make_pair(0U, X86::RFP64RegisterClass);
14500 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000014501 case 'y': // MMX_REGS if MMX allowed.
14502 if (!Subtarget->hasMMX()) break;
14503 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000014504 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014505 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000014506 // FALL THROUGH.
14507 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000014508 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000014509
Owen Anderson825b72b2009-08-11 20:47:22 +000014510 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000014511 default: break;
14512 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000014513 case MVT::f32:
14514 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000014515 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000014516 case MVT::f64:
14517 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000014518 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000014519 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000014520 case MVT::v16i8:
14521 case MVT::v8i16:
14522 case MVT::v4i32:
14523 case MVT::v2i64:
14524 case MVT::v4f32:
14525 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000014526 return std::make_pair(0U, X86::VR128RegisterClass);
14527 }
Chris Lattnerad043e82007-04-09 05:11:28 +000014528 break;
14529 }
14530 }
Scott Michelfdc40a02009-02-17 22:15:04 +000014531
Chris Lattnerf76d1802006-07-31 23:26:50 +000014532 // Use the default implementation in TargetLowering to convert the register
14533 // constraint into a member of a register class.
14534 std::pair<unsigned, const TargetRegisterClass*> Res;
14535 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000014536
14537 // Not found as a standard register?
14538 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000014539 // Map st(0) -> st(7) -> ST0
14540 if (Constraint.size() == 7 && Constraint[0] == '{' &&
14541 tolower(Constraint[1]) == 's' &&
14542 tolower(Constraint[2]) == 't' &&
14543 Constraint[3] == '(' &&
14544 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
14545 Constraint[5] == ')' &&
14546 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000014547
Chris Lattner56d77c72009-09-13 22:41:48 +000014548 Res.first = X86::ST0+Constraint[4]-'0';
14549 Res.second = X86::RFP80RegisterClass;
14550 return Res;
14551 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000014552
Chris Lattner56d77c72009-09-13 22:41:48 +000014553 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000014554 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000014555 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000014556 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000014557 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000014558 }
Chris Lattner56d77c72009-09-13 22:41:48 +000014559
14560 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000014561 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000014562 Res.first = X86::EFLAGS;
14563 Res.second = X86::CCRRegisterClass;
14564 return Res;
14565 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000014566
Dale Johannesen330169f2008-11-13 21:52:36 +000014567 // 'A' means EAX + EDX.
14568 if (Constraint == "A") {
14569 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000014570 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000014571 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000014572 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000014573 return Res;
14574 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014575
Chris Lattnerf76d1802006-07-31 23:26:50 +000014576 // Otherwise, check to see if this is a register class of the wrong value
14577 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
14578 // turn into {ax},{dx}.
14579 if (Res.second->hasType(VT))
14580 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014581
Chris Lattnerf76d1802006-07-31 23:26:50 +000014582 // All of the single-register GCC register classes map their values onto
14583 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
14584 // really want an 8-bit or 32-bit register, map to the appropriate register
14585 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000014586 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000014587 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014588 unsigned DestReg = 0;
14589 switch (Res.first) {
14590 default: break;
14591 case X86::AX: DestReg = X86::AL; break;
14592 case X86::DX: DestReg = X86::DL; break;
14593 case X86::CX: DestReg = X86::CL; break;
14594 case X86::BX: DestReg = X86::BL; break;
14595 }
14596 if (DestReg) {
14597 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014598 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014599 }
Owen Anderson825b72b2009-08-11 20:47:22 +000014600 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014601 unsigned DestReg = 0;
14602 switch (Res.first) {
14603 default: break;
14604 case X86::AX: DestReg = X86::EAX; break;
14605 case X86::DX: DestReg = X86::EDX; break;
14606 case X86::CX: DestReg = X86::ECX; break;
14607 case X86::BX: DestReg = X86::EBX; break;
14608 case X86::SI: DestReg = X86::ESI; break;
14609 case X86::DI: DestReg = X86::EDI; break;
14610 case X86::BP: DestReg = X86::EBP; break;
14611 case X86::SP: DestReg = X86::ESP; break;
14612 }
14613 if (DestReg) {
14614 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014615 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014616 }
Owen Anderson825b72b2009-08-11 20:47:22 +000014617 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000014618 unsigned DestReg = 0;
14619 switch (Res.first) {
14620 default: break;
14621 case X86::AX: DestReg = X86::RAX; break;
14622 case X86::DX: DestReg = X86::RDX; break;
14623 case X86::CX: DestReg = X86::RCX; break;
14624 case X86::BX: DestReg = X86::RBX; break;
14625 case X86::SI: DestReg = X86::RSI; break;
14626 case X86::DI: DestReg = X86::RDI; break;
14627 case X86::BP: DestReg = X86::RBP; break;
14628 case X86::SP: DestReg = X86::RSP; break;
14629 }
14630 if (DestReg) {
14631 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000014632 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000014633 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000014634 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000014635 } else if (Res.second == X86::FR32RegisterClass ||
14636 Res.second == X86::FR64RegisterClass ||
14637 Res.second == X86::VR128RegisterClass) {
14638 // Handle references to XMM physical registers that got mapped into the
14639 // wrong class. This can happen with constraints like {xmm0} where the
14640 // target independent register mapper will just pick the first match it can
14641 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000014642 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000014643 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000014644 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000014645 Res.second = X86::FR64RegisterClass;
14646 else if (X86::VR128RegisterClass->hasType(VT))
14647 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000014648 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000014649
Chris Lattnerf76d1802006-07-31 23:26:50 +000014650 return Res;
14651}