blob: 9037ece8c9c2000be24c0828b1d262cd87fc5420 [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"
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000019#include "X86ShuffleDecode.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000020#include "X86TargetMachine.h"
Chris Lattner8c6ed052009-09-16 01:46:41 +000021#include "X86TargetObjectFile.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"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000031#include "llvm/CodeGen/MachineFrameInfo.h"
Evan Cheng4a460802006-01-11 00:33:36 +000032#include "llvm/CodeGen/MachineFunction.h"
33#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner5e1df8d2010-01-25 23:38:14 +000034#include "llvm/CodeGen/MachineJumpTableInfo.h"
Evan Chenga844bde2008-02-02 04:07:54 +000035#include "llvm/CodeGen/MachineModuleInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000036#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000037#include "llvm/CodeGen/PseudoSourceValue.h"
Chris Lattner589c6f62010-01-26 06:28:43 +000038#include "llvm/MC/MCAsmInfo.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000039#include "llvm/MC/MCContext.h"
Daniel Dunbar4e815f82010-03-15 23:51:06 +000040#include "llvm/MC/MCExpr.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000041#include "llvm/MC/MCSymbol.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000042#include "llvm/ADT/BitVector.h"
Evan Cheng14b32e12007-12-11 01:46:18 +000043#include "llvm/ADT/SmallSet.h"
Evan Chengb1712452010-01-27 06:25:16 +000044#include "llvm/ADT/Statistic.h"
Chris Lattner1a60aa72006-10-31 19:42:44 +000045#include "llvm/ADT/StringExtras.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000046#include "llvm/ADT/VectorExtras.h"
Mon P Wang3c81d352008-11-23 04:37:22 +000047#include "llvm/Support/CommandLine.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000048#include "llvm/Support/Debug.h"
Bill Wendlingec041eb2010-03-12 19:20:40 +000049#include "llvm/Support/Dwarf.h"
Chris Lattnerc64daab2010-01-26 05:02:42 +000050#include "llvm/Support/ErrorHandling.h"
51#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000052#include "llvm/Support/raw_ostream.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000053using namespace llvm;
Bill Wendlingec041eb2010-03-12 19:20:40 +000054using namespace dwarf;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000055
Evan Chengb1712452010-01-27 06:25:16 +000056STATISTIC(NumTailCalls, "Number of tail calls");
57
Evan Cheng10e86422008-04-25 19:11:04 +000058// Forward declarations.
Owen Andersone50ed302009-08-10 22:56:29 +000059static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +000060 SDValue V2);
Evan Cheng10e86422008-04-25 19:11:04 +000061
Chris Lattnerf0144122009-07-28 03:13:23 +000062static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
Michael J. Spencerec38de22010-10-10 22:04:20 +000063
Eric Christopher62f35a22010-07-05 19:26:33 +000064 bool is64Bit = TM.getSubtarget<X86Subtarget>().is64Bit();
Michael J. Spencerec38de22010-10-10 22:04:20 +000065
Eric Christopher62f35a22010-07-05 19:26:33 +000066 if (TM.getSubtarget<X86Subtarget>().isTargetDarwin()) {
Chris Lattnere019ec12010-12-19 20:07:10 +000067 if (is64Bit)
68 return new X8664_MachoTargetObjectFile();
Anton Korobeynikov293d5922010-02-21 20:28:15 +000069 return new TargetLoweringObjectFileMachO();
Michael J. Spencerec38de22010-10-10 22:04:20 +000070 }
Chris Lattnere019ec12010-12-19 20:07:10 +000071
72 if (TM.getSubtarget<X86Subtarget>().isTargetELF() ){
73 if (is64Bit)
74 return new X8664_ELFTargetObjectFile(TM);
75 return new X8632_ELFTargetObjectFile(TM);
76 }
77 if (TM.getSubtarget<X86Subtarget>().isTargetCOFF())
78 return new TargetLoweringObjectFileCOFF();
Eric Christopher62f35a22010-07-05 19:26:33 +000079 llvm_unreachable("unknown subtarget type");
Chris Lattnerf0144122009-07-28 03:13:23 +000080}
81
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +000082X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +000083 : TargetLowering(TM, createTLOF(TM)) {
Evan Cheng559806f2006-01-27 08:10:46 +000084 Subtarget = &TM.getSubtarget<X86Subtarget>();
Nate Begeman2ea8ee72010-12-10 00:26:57 +000085 X86ScalarSSEf64 = Subtarget->hasXMMInt();
86 X86ScalarSSEf32 = Subtarget->hasXMM();
Evan Cheng25ab6902006-09-08 06:48:29 +000087 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000088
Anton Korobeynikov2365f512007-07-14 14:06:15 +000089 RegInfo = TM.getRegisterInfo();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000090 TD = getTargetData();
Anton Korobeynikov2365f512007-07-14 14:06:15 +000091
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000092 // Set up the TargetLowering object.
Chris Lattnera34b3cf2010-12-19 20:03:11 +000093 static MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000094
95 // X86 is weird, it always uses i8 for shift amounts and setcc results.
Owen Anderson825b72b2009-08-11 20:47:22 +000096 setShiftAmountType(MVT::i8);
Duncan Sands03228082008-11-23 15:47:28 +000097 setBooleanContents(ZeroOrOneBooleanContent);
Evan Cheng211ffa12010-05-19 20:19:50 +000098 setSchedulingPreference(Sched::RegPressure);
Evan Cheng25ab6902006-09-08 06:48:29 +000099 setStackPointerRegisterToSaveRestore(X86StackPtr);
Evan Cheng714554d2006-03-16 21:47:42 +0000100
Michael J. Spencer92bf38c2010-10-10 23:11:06 +0000101 if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000102 // Setup Windows compiler runtime calls.
103 setLibcallName(RTLIB::SDIV_I64, "_alldiv");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000104 setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
105 setLibcallName(RTLIB::FPTOUINT_F64_I64, "_ftol2");
Michael J. Spencer94f7eeb2010-10-19 07:32:52 +0000106 setLibcallName(RTLIB::FPTOUINT_F32_I64, "_ftol2");
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000107 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer335b8062010-10-11 05:29:15 +0000108 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer6dad10e2010-10-27 18:52:38 +0000109 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::C);
110 setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::C);
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000111 }
112
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000113 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +0000114 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000115 setUseUnderscoreSetJmp(false);
116 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000117 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000118 // MS runtime is weird: it exports _setjmp, but longjmp!
119 setUseUnderscoreSetJmp(true);
120 setUseUnderscoreLongJmp(false);
121 } else {
122 setUseUnderscoreSetJmp(true);
123 setUseUnderscoreLongJmp(true);
124 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000125
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000126 // Set up the register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000127 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
Dan Gohman71edb242010-04-30 18:30:26 +0000128 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000129 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
Evan Cheng25ab6902006-09-08 06:48:29 +0000130 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000131 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000132
Owen Anderson825b72b2009-08-11 20:47:22 +0000133 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +0000134
Chris Lattner5b856542010-12-20 00:59:46 +0000135 setOperationAction(ISD::ADDC, MVT::i8, Custom);
136 setOperationAction(ISD::ADDC, MVT::i16, Custom);
137 setOperationAction(ISD::ADDC, MVT::i32, Custom);
138 setOperationAction(ISD::ADDC, MVT::i64, Custom);
139
140 setOperationAction(ISD::ADDE, MVT::i8, Custom);
141 setOperationAction(ISD::ADDE, MVT::i16, Custom);
142 setOperationAction(ISD::ADDE, MVT::i32, Custom);
143 setOperationAction(ISD::ADDE, MVT::i64, Custom);
144
145 setOperationAction(ISD::SUBC, MVT::i8, Custom);
146 setOperationAction(ISD::SUBC, MVT::i16, Custom);
147 setOperationAction(ISD::SUBC, MVT::i32, Custom);
148 setOperationAction(ISD::SUBC, MVT::i64, Custom);
149
150 setOperationAction(ISD::SUBE, MVT::i8, Custom);
151 setOperationAction(ISD::SUBE, MVT::i16, Custom);
152 setOperationAction(ISD::SUBE, MVT::i32, Custom);
153 setOperationAction(ISD::SUBE, MVT::i64, Custom);
154
Scott Michelfdc40a02009-02-17 22:15:04 +0000155 // We don't accept any truncstore of integer registers.
Owen Anderson825b72b2009-08-11 20:47:22 +0000156 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000157 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000158 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000159 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000160 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
161 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Evan Cheng7f042682008-10-15 02:05:31 +0000162
163 // SETOEQ and SETUNE require checking two conditions.
Owen Anderson825b72b2009-08-11 20:47:22 +0000164 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
165 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
166 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
167 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
168 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
169 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000170
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000171 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
172 // operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000173 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
174 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
175 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000176
Evan Cheng25ab6902006-09-08 06:48:29 +0000177 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000178 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
179 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Eli Friedman948e95a2009-05-23 09:59:16 +0000180 } else if (!UseSoftFloat) {
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000181 // We have an algorithm for SSE2->double, and we turn this into a
182 // 64-bit FILD followed by conditional FADD for other targets.
183 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Eli Friedman948e95a2009-05-23 09:59:16 +0000184 // We have an algorithm for SSE2, and we turn this into a 64-bit
185 // FILD for other targets.
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000186 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000187 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000188
189 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
190 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000191 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
192 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000193
Devang Patel6a784892009-06-05 18:48:29 +0000194 if (!UseSoftFloat) {
Bill Wendling105be5a2009-03-13 08:41:47 +0000195 // SSE has no i16 to fp conversion, only i32
196 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000197 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000198 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000199 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000200 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000201 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
202 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000203 }
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000204 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000205 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
206 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000207 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000208
Dale Johannesen73328d12007-09-19 23:55:34 +0000209 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
210 // are Legal, f80 is custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000211 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
212 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000213
Evan Cheng02568ff2006-01-30 22:13:22 +0000214 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
215 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000216 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
217 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
Evan Cheng02568ff2006-01-30 22:13:22 +0000218
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000219 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000220 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000221 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000222 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000223 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000224 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
225 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000226 }
227
228 // Handle FP_TO_UINT by promoting the destination to a larger signed
229 // conversion.
Owen Anderson825b72b2009-08-11 20:47:22 +0000230 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
231 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
232 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000233
Evan Cheng25ab6902006-09-08 06:48:29 +0000234 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000235 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
236 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Eli Friedman948e95a2009-05-23 09:59:16 +0000237 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000238 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000239 // Expand FP_TO_UINT into a select.
240 // FIXME: We would like to use a Custom expander here eventually to do
241 // the optimal thing for SSE vs. the default expansion in the legalizer.
Owen Anderson825b72b2009-08-11 20:47:22 +0000242 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000243 else
Eli Friedman948e95a2009-05-23 09:59:16 +0000244 // With SSE3 we can use fisttpll to convert to a signed i64; without
245 // SSE, we're stuck with a fistpll.
Owen Anderson825b72b2009-08-11 20:47:22 +0000246 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000247 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000248
Chris Lattner399610a2006-12-05 18:22:22 +0000249 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Michael J. Spencerec38de22010-10-10 22:04:20 +0000250 if (!X86ScalarSSEf64) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000251 setOperationAction(ISD::BITCAST , MVT::f32 , Expand);
252 setOperationAction(ISD::BITCAST , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000253 if (Subtarget->is64Bit()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000254 setOperationAction(ISD::BITCAST , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000255 // Without SSE, i64->f64 goes through memory.
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000256 setOperationAction(ISD::BITCAST , MVT::i64 , Expand);
Dale Johannesen7d07b482010-05-21 00:52:33 +0000257 }
Chris Lattnerf3597a12006-12-05 18:45:06 +0000258 }
Chris Lattner21f66852005-12-23 05:15:23 +0000259
Dan Gohmanb00ee212008-02-18 19:34:53 +0000260 // Scalar integer divide and remainder are lowered to use operations that
261 // produce two results, to match the available instructions. This exposes
262 // the two-result form to trivial CSE, which is able to combine x/y and x%y
263 // into a single instruction.
264 //
265 // Scalar integer multiply-high is also lowered to use two-result
266 // operations, to match the available instructions. However, plain multiply
267 // (low) operations are left as Legal, as there are single-result
268 // instructions for this in x86. Using the two-result multiply instructions
269 // when both high and low results are needed must be arranged by dagcombine.
Chris Lattnere019ec12010-12-19 20:07:10 +0000270 for (unsigned i = 0, e = 4; i != e; ++i) {
271 MVT VT = IntVTs[i];
272 setOperationAction(ISD::MULHS, VT, Expand);
273 setOperationAction(ISD::MULHU, VT, Expand);
274 setOperationAction(ISD::SDIV, VT, Expand);
275 setOperationAction(ISD::UDIV, VT, Expand);
276 setOperationAction(ISD::SREM, VT, Expand);
277 setOperationAction(ISD::UREM, VT, Expand);
278 }
Dan Gohmana37c9f72007-09-25 18:23:27 +0000279
Owen Anderson825b72b2009-08-11 20:47:22 +0000280 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
281 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
282 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
283 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000284 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000285 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
286 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
287 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
288 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
289 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
290 setOperationAction(ISD::FREM , MVT::f32 , Expand);
291 setOperationAction(ISD::FREM , MVT::f64 , Expand);
292 setOperationAction(ISD::FREM , MVT::f80 , Expand);
293 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000294
Owen Anderson825b72b2009-08-11 20:47:22 +0000295 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
296 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000297 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
298 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000299 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
300 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000301 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000302 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
303 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000304 }
305
Benjamin Kramer1292c222010-12-04 20:32:23 +0000306 if (Subtarget->hasPOPCNT()) {
307 setOperationAction(ISD::CTPOP , MVT::i8 , Promote);
308 } else {
309 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
310 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
311 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
312 if (Subtarget->is64Bit())
313 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
314 }
315
Owen Anderson825b72b2009-08-11 20:47:22 +0000316 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
317 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000318
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000319 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000320 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000321 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000322 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Chris Lattnere019ec12010-12-19 20:07:10 +0000323 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000324 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
325 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
326 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
327 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
328 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000329 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000330 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
331 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
332 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
333 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000334 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000335 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
336 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000337 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000338 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000339
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000340 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000341 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
342 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
343 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
344 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000345 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000346 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
347 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000348 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000349 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000350 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
351 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
352 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
353 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000354 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000355 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000356 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000357 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
358 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
359 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000360 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000361 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
362 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
363 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000364 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000365
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000366 if (Subtarget->hasXMM())
Owen Anderson825b72b2009-08-11 20:47:22 +0000367 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000368
Eric Christopher9a9d2752010-07-22 02:48:34 +0000369 // We may not have a libcall for MEMBARRIER so we should lower this.
370 setOperationAction(ISD::MEMBARRIER , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000371
Jim Grosbachf1ab49e2010-06-23 16:25:07 +0000372 // On X86 and X86-64, atomic operations are lowered to locked instructions.
373 // Locked instructions, in turn, have implicit fence semantics (all memory
374 // operations are flushed before issuing the locked instruction, and they
375 // are not buffered), so we can fold away the common pattern of
376 // fence-atomic-fence.
377 setShouldFoldAtomicFences(true);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000378
Mon P Wang63307c32008-05-05 19:05:59 +0000379 // Expand certain atomics
Chris Lattnere019ec12010-12-19 20:07:10 +0000380 for (unsigned i = 0, e = 4; i != e; ++i) {
381 MVT VT = IntVTs[i];
382 setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
383 setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
384 }
385
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000386 if (!Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000387 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
388 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
389 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
390 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
391 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
392 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
393 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000394 }
395
Evan Cheng3c992d22006-03-07 02:02:57 +0000396 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000397 if (!Subtarget->isTargetDarwin() &&
398 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000399 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000400 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000401 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000402
Owen Anderson825b72b2009-08-11 20:47:22 +0000403 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
404 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
405 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
406 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000407 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000408 setExceptionPointerRegister(X86::RAX);
409 setExceptionSelectorRegister(X86::RDX);
410 } else {
411 setExceptionPointerRegister(X86::EAX);
412 setExceptionSelectorRegister(X86::EDX);
413 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000414 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
415 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000416
Owen Anderson825b72b2009-08-11 20:47:22 +0000417 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000418
Owen Anderson825b72b2009-08-11 20:47:22 +0000419 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000420
Nate Begemanacc398c2006-01-25 18:21:52 +0000421 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000422 setOperationAction(ISD::VASTART , MVT::Other, Custom);
423 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000424 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000425 setOperationAction(ISD::VAARG , MVT::Other, Custom);
426 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000427 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000428 setOperationAction(ISD::VAARG , MVT::Other, Expand);
429 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000430 }
Evan Chengae642192007-03-02 23:16:35 +0000431
Owen Anderson825b72b2009-08-11 20:47:22 +0000432 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
433 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000434 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000435 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
Michael J. Spencere9c253e2010-10-21 01:41:01 +0000436 if (Subtarget->isTargetCygMing() || Subtarget->isTargetWindows())
Owen Anderson825b72b2009-08-11 20:47:22 +0000437 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +0000438 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000439 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000440
Evan Chengc7ce29b2009-02-13 22:36:38 +0000441 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000442 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000443 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000444 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
445 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000446
Evan Cheng223547a2006-01-31 22:28:30 +0000447 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000448 setOperationAction(ISD::FABS , MVT::f64, Custom);
449 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000450
451 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000452 setOperationAction(ISD::FNEG , MVT::f64, Custom);
453 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000454
Evan Cheng68c47cb2007-01-05 07:55:56 +0000455 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000456 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
457 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000458
Evan Chengd25e9e82006-02-02 00:28:23 +0000459 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000460 setOperationAction(ISD::FSIN , MVT::f64, Expand);
461 setOperationAction(ISD::FCOS , MVT::f64, Expand);
462 setOperationAction(ISD::FSIN , MVT::f32, Expand);
463 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000464
Chris Lattnera54aa942006-01-29 06:26:08 +0000465 // Expand FP immediates into loads from the stack, except for the special
466 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000467 addLegalFPImmediate(APFloat(+0.0)); // xorpd
468 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000469 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000470 // Use SSE for f32, x87 for f64.
471 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000472 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
473 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000474
475 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000476 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000477
478 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000479 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000480
Owen Anderson825b72b2009-08-11 20:47:22 +0000481 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000482
483 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000484 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
485 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000486
487 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000488 setOperationAction(ISD::FSIN , MVT::f32, Expand);
489 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000490
Nate Begemane1795842008-02-14 08:57:00 +0000491 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000492 addLegalFPImmediate(APFloat(+0.0f)); // xorps
493 addLegalFPImmediate(APFloat(+0.0)); // FLD0
494 addLegalFPImmediate(APFloat(+1.0)); // FLD1
495 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
496 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
497
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000498 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000499 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
500 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000501 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000502 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000503 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000504 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000505 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
506 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000507
Owen Anderson825b72b2009-08-11 20:47:22 +0000508 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
509 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
510 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
511 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000512
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000513 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000514 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
515 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000516 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000517 addLegalFPImmediate(APFloat(+0.0)); // FLD0
518 addLegalFPImmediate(APFloat(+1.0)); // FLD1
519 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
520 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000521 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
522 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
523 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
524 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000525 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000526
Dale Johannesen59a58732007-08-05 18:49:15 +0000527 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000528 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000529 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
530 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
531 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000532 {
Benjamin Kramer98383962010-12-04 14:22:24 +0000533 APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000534 addLegalFPImmediate(TmpFlt); // FLD0
535 TmpFlt.changeSign();
536 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
Benjamin Kramer98383962010-12-04 14:22:24 +0000537
538 bool ignored;
Evan Chengc7ce29b2009-02-13 22:36:38 +0000539 APFloat TmpFlt2(+1.0);
540 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
541 &ignored);
542 addLegalFPImmediate(TmpFlt2); // FLD1
543 TmpFlt2.changeSign();
544 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
545 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000546
Evan Chengc7ce29b2009-02-13 22:36:38 +0000547 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000548 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
549 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000550 }
Dale Johannesen2f429012007-09-26 21:10:55 +0000551 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000552
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000553 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000554 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
555 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
556 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000557
Owen Anderson825b72b2009-08-11 20:47:22 +0000558 setOperationAction(ISD::FLOG, MVT::f80, Expand);
559 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
560 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
561 setOperationAction(ISD::FEXP, MVT::f80, Expand);
562 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000563
Mon P Wangf007a8b2008-11-06 05:31:54 +0000564 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000565 // (for widening) or expand (for scalarization). Then we will selectively
566 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000567 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
568 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
569 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
570 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
571 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
572 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
573 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
574 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
575 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
576 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
577 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
578 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
579 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
580 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
581 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
582 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
583 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
584 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
585 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
586 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
587 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
588 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
589 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
590 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
591 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
592 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
593 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
594 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
595 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
596 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
597 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
598 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
599 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
600 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
601 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
602 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
603 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
604 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
605 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
606 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
607 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
608 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
609 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
610 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
611 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
612 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
613 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
614 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
615 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
616 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000617 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000618 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
619 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
620 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
621 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
622 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
623 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
624 setTruncStoreAction((MVT::SimpleValueType)VT,
625 (MVT::SimpleValueType)InnerVT, Expand);
626 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
627 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
628 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000629 }
630
Evan Chengc7ce29b2009-02-13 22:36:38 +0000631 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
632 // with -msoft-float, disable use of MMX as well.
Chris Lattner2a786eb2010-12-19 20:19:20 +0000633 if (!UseSoftFloat && Subtarget->hasMMX()) {
Dale Johannesene93d99c2010-10-20 21:32:10 +0000634 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000635 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000636 }
637
Dale Johannesen0488fb62010-09-30 23:57:10 +0000638 // MMX-sized vectors (other than x86mmx) are expected to be expanded
639 // into smaller operations.
640 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
641 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
642 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
643 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
644 setOperationAction(ISD::AND, MVT::v8i8, Expand);
645 setOperationAction(ISD::AND, MVT::v4i16, Expand);
646 setOperationAction(ISD::AND, MVT::v2i32, Expand);
647 setOperationAction(ISD::AND, MVT::v1i64, Expand);
648 setOperationAction(ISD::OR, MVT::v8i8, Expand);
649 setOperationAction(ISD::OR, MVT::v4i16, Expand);
650 setOperationAction(ISD::OR, MVT::v2i32, Expand);
651 setOperationAction(ISD::OR, MVT::v1i64, Expand);
652 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
653 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
654 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
655 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
656 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
657 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
658 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
659 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
660 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
661 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
662 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
663 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
664 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
Wesley Peckbf17cfa2010-11-23 03:31:01 +0000665 setOperationAction(ISD::BITCAST, MVT::v8i8, Expand);
666 setOperationAction(ISD::BITCAST, MVT::v4i16, Expand);
667 setOperationAction(ISD::BITCAST, MVT::v2i32, Expand);
668 setOperationAction(ISD::BITCAST, MVT::v1i64, Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000669
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000670 if (!UseSoftFloat && Subtarget->hasXMM()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000671 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000672
Owen Anderson825b72b2009-08-11 20:47:22 +0000673 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
674 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
675 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
676 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
677 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
678 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
679 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
680 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
681 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
682 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
683 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
684 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000685 }
686
Nate Begeman2ea8ee72010-12-10 00:26:57 +0000687 if (!UseSoftFloat && Subtarget->hasXMMInt()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000688 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000689
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000690 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
691 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000692 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
693 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
694 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
695 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000696
Owen Anderson825b72b2009-08-11 20:47:22 +0000697 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
698 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
699 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
700 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
701 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
702 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
703 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
704 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
705 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
706 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
707 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
708 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
709 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
710 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
711 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
712 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000713
Owen Anderson825b72b2009-08-11 20:47:22 +0000714 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
715 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
716 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
717 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000718
Owen Anderson825b72b2009-08-11 20:47:22 +0000719 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
720 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
721 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
722 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
723 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000724
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000725 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
726 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
727 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
728 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
729 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
730
Evan Cheng2c3ae372006-04-12 21:21:57 +0000731 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000732 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
733 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000734 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000735 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000736 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000737 // Do not attempt to custom lower non-128-bit vectors
738 if (!VT.is128BitVector())
739 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000740 setOperationAction(ISD::BUILD_VECTOR,
741 VT.getSimpleVT().SimpleTy, Custom);
742 setOperationAction(ISD::VECTOR_SHUFFLE,
743 VT.getSimpleVT().SimpleTy, Custom);
744 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
745 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000746 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000747
Owen Anderson825b72b2009-08-11 20:47:22 +0000748 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
749 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
750 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
751 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
752 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
753 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000754
Nate Begemancdd1eec2008-02-12 22:51:28 +0000755 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000756 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
757 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000758 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000759
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000760 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000761 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
762 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000763 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000764
765 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000766 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000767 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000768
Owen Andersond6662ad2009-08-10 20:46:15 +0000769 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000770 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000771 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000772 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000773 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000774 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000775 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000776 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000777 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000778 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000779 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000780
Owen Anderson825b72b2009-08-11 20:47:22 +0000781 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000782
Evan Cheng2c3ae372006-04-12 21:21:57 +0000783 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000784 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
785 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
786 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
787 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000788
Owen Anderson825b72b2009-08-11 20:47:22 +0000789 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
790 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000791 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000792
Nate Begeman14d12ca2008-02-11 04:19:36 +0000793 if (Subtarget->hasSSE41()) {
Dale Johannesen54feef22010-05-27 20:12:41 +0000794 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
795 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
796 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
797 setOperationAction(ISD::FRINT, MVT::f32, Legal);
798 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
799 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
800 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
801 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
802 setOperationAction(ISD::FRINT, MVT::f64, Legal);
803 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
804
Nate Begeman14d12ca2008-02-11 04:19:36 +0000805 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000806 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000807
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000808 // Can turn SHL into an integer multiply.
809 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Nate Begeman51409212010-07-28 00:21:48 +0000810 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000811
Nate Begeman14d12ca2008-02-11 04:19:36 +0000812 // i8 and i16 vectors are custom , because the source register and source
813 // source memory operand types are not the same width. f32 vectors are
814 // custom since the immediate controlling the insert encodes additional
815 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000816 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
817 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
818 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
819 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000820
Owen Anderson825b72b2009-08-11 20:47:22 +0000821 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
822 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
823 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
824 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000825
826 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000827 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
828 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000829 }
830 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000831
Chris Lattnera34b3cf2010-12-19 20:03:11 +0000832 if (Subtarget->hasSSE42())
Owen Anderson825b72b2009-08-11 20:47:22 +0000833 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000834
David Greene9b9838d2009-06-29 16:47:10 +0000835 if (!UseSoftFloat && Subtarget->hasAVX()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000836 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
837 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
838 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
839 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
Bruno Cardoso Lopes405f11b2010-08-10 01:43:16 +0000840 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000841
Owen Anderson825b72b2009-08-11 20:47:22 +0000842 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
843 setOperationAction(ISD::LOAD, MVT::v8i32, Legal);
844 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
845 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
846 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
847 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
848 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
849 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
850 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
851 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +0000852 setOperationAction(ISD::BUILD_VECTOR, MVT::v8f32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000853 //setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8f32, Custom);
854 //setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8f32, Custom);
855 //setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
856 //setOperationAction(ISD::VSETCC, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000857
858 // Operations to consider commented out -v16i16 v32i8
Owen Anderson825b72b2009-08-11 20:47:22 +0000859 //setOperationAction(ISD::ADD, MVT::v16i16, Legal);
860 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
861 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
862 //setOperationAction(ISD::SUB, MVT::v32i8, Legal);
863 //setOperationAction(ISD::SUB, MVT::v16i16, Legal);
864 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
865 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
866 //setOperationAction(ISD::MUL, MVT::v16i16, Legal);
867 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
868 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
869 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
870 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
871 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
872 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000873
Owen Anderson825b72b2009-08-11 20:47:22 +0000874 setOperationAction(ISD::VSETCC, MVT::v4f64, Custom);
875 // setOperationAction(ISD::VSETCC, MVT::v32i8, Custom);
876 // setOperationAction(ISD::VSETCC, MVT::v16i16, Custom);
877 setOperationAction(ISD::VSETCC, MVT::v8i32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000878
Owen Anderson825b72b2009-08-11 20:47:22 +0000879 // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v32i8, Custom);
880 // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i16, Custom);
881 // setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i16, Custom);
882 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i32, Custom);
883 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000884
Owen Anderson825b72b2009-08-11 20:47:22 +0000885 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f64, Custom);
886 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i64, Custom);
887 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f64, Custom);
888 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i64, Custom);
889 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f64, Custom);
890 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000891
892#if 0
893 // Not sure we want to do this since there are no 256-bit integer
894 // operations in AVX
895
896 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
897 // This includes 256-bit vectors
Owen Anderson825b72b2009-08-11 20:47:22 +0000898 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; ++i) {
899 EVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000900
901 // Do not attempt to custom lower non-power-of-2 vectors
902 if (!isPowerOf2_32(VT.getVectorNumElements()))
903 continue;
904
905 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
906 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
907 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
908 }
909
910 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000911 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i64, Custom);
912 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i64, Custom);
Eric Christopherfd179292009-08-27 18:07:15 +0000913 }
David Greene9b9838d2009-06-29 16:47:10 +0000914#endif
915
916#if 0
917 // Not sure we want to do this since there are no 256-bit integer
918 // operations in AVX
919
920 // Promote v32i8, v16i16, v8i32 load, select, and, or, xor to v4i64.
921 // Including 256-bit vectors
Owen Anderson825b72b2009-08-11 20:47:22 +0000922 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; i++) {
923 EVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000924
925 if (!VT.is256BitVector()) {
926 continue;
927 }
928 setOperationAction(ISD::AND, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000929 AddPromotedToType (ISD::AND, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000930 setOperationAction(ISD::OR, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000931 AddPromotedToType (ISD::OR, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000932 setOperationAction(ISD::XOR, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000933 AddPromotedToType (ISD::XOR, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000934 setOperationAction(ISD::LOAD, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000935 AddPromotedToType (ISD::LOAD, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000936 setOperationAction(ISD::SELECT, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000937 AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000938 }
939
Owen Anderson825b72b2009-08-11 20:47:22 +0000940 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
David Greene9b9838d2009-06-29 16:47:10 +0000941#endif
942 }
943
Evan Cheng6be2c582006-04-05 23:38:46 +0000944 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +0000945 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +0000946
Chris Lattnera34b3cf2010-12-19 20:03:11 +0000947
Eli Friedman962f5492010-06-02 19:35:46 +0000948 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
949 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +0000950 //
Eli Friedman962f5492010-06-02 19:35:46 +0000951 // FIXME: We really should do custom legalization for addition and
952 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
953 // than generic legalization for 64-bit multiplication-with-overflow, though.
Chris Lattnera34b3cf2010-12-19 20:03:11 +0000954 for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
955 // Add/Sub/Mul with overflow operations are custom lowered.
956 MVT VT = IntVTs[i];
957 setOperationAction(ISD::SADDO, VT, Custom);
958 setOperationAction(ISD::UADDO, VT, Custom);
959 setOperationAction(ISD::SSUBO, VT, Custom);
960 setOperationAction(ISD::USUBO, VT, Custom);
961 setOperationAction(ISD::SMULO, VT, Custom);
962 setOperationAction(ISD::UMULO, VT, Custom);
Eli Friedmana993f0a2010-06-02 00:27:18 +0000963 }
Chris Lattnera34b3cf2010-12-19 20:03:11 +0000964
965 // There are no 8-bit 3-address imul/mul instructions
966 setOperationAction(ISD::SMULO, MVT::i8, Expand);
967 setOperationAction(ISD::UMULO, MVT::i8, Expand);
Bill Wendling41ea7e72008-11-24 19:21:46 +0000968
Evan Chengd54f2d52009-03-31 19:38:51 +0000969 if (!Subtarget->is64Bit()) {
970 // These libcalls are not available in 32-bit.
971 setLibcallName(RTLIB::SHL_I128, 0);
972 setLibcallName(RTLIB::SRL_I128, 0);
973 setLibcallName(RTLIB::SRA_I128, 0);
974 }
975
Evan Cheng206ee9d2006-07-07 08:33:52 +0000976 // We have target-specific dag combine patterns for the following nodes:
977 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +0000978 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +0000979 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +0000980 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +0000981 setTargetDAGCombine(ISD::SHL);
982 setTargetDAGCombine(ISD::SRA);
983 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +0000984 setTargetDAGCombine(ISD::OR);
Nate Begemanb65c1752010-12-17 22:55:37 +0000985 setTargetDAGCombine(ISD::AND);
Chris Lattner149a4e52008-02-22 02:09:43 +0000986 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +0000987 setTargetDAGCombine(ISD::ZERO_EXTEND);
Evan Cheng0b0cd912009-03-28 05:57:29 +0000988 if (Subtarget->is64Bit())
989 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +0000990
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000991 computeRegisterProperties();
992
Evan Cheng87ed7162006-02-14 08:25:08 +0000993 // FIXME: These should be based on subtarget info. Plus, the values should
994 // be smaller when we are in optimizing for size mode.
Dan Gohman87060f52008-06-30 21:00:56 +0000995 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng255f20f2010-04-01 06:04:33 +0000996 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Dan Gohman87060f52008-06-30 21:00:56 +0000997 maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
Evan Chengfb8075d2008-02-28 00:43:03 +0000998 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +0000999 benefitFromCodePlacementOpt = true;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001000}
1001
Scott Michel5b8f82e2008-03-10 15:42:14 +00001002
Owen Anderson825b72b2009-08-11 20:47:22 +00001003MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1004 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +00001005}
1006
1007
Evan Cheng29286502008-01-23 23:17:41 +00001008/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1009/// the desired ByVal argument alignment.
1010static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
1011 if (MaxAlign == 16)
1012 return;
1013 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1014 if (VTy->getBitWidth() == 128)
1015 MaxAlign = 16;
Evan Cheng29286502008-01-23 23:17:41 +00001016 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1017 unsigned EltAlign = 0;
1018 getMaxByValAlign(ATy->getElementType(), EltAlign);
1019 if (EltAlign > MaxAlign)
1020 MaxAlign = EltAlign;
1021 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
1022 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1023 unsigned EltAlign = 0;
1024 getMaxByValAlign(STy->getElementType(i), EltAlign);
1025 if (EltAlign > MaxAlign)
1026 MaxAlign = EltAlign;
1027 if (MaxAlign == 16)
1028 break;
1029 }
1030 }
1031 return;
1032}
1033
1034/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1035/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001036/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1037/// are at 4-byte boundaries.
Evan Cheng29286502008-01-23 23:17:41 +00001038unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001039 if (Subtarget->is64Bit()) {
1040 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001041 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001042 if (TyAlign > 8)
1043 return TyAlign;
1044 return 8;
1045 }
1046
Evan Cheng29286502008-01-23 23:17:41 +00001047 unsigned Align = 4;
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001048 if (Subtarget->hasXMM())
Dale Johannesen0c191872008-02-08 19:48:20 +00001049 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001050 return Align;
1051}
Chris Lattner2b02a442007-02-25 08:29:00 +00001052
Evan Chengf0df0312008-05-15 08:39:06 +00001053/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001054/// and store operations as a result of memset, memcpy, and memmove
1055/// lowering. If DstAlign is zero that means it's safe to destination
1056/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1057/// means there isn't a need to check it against alignment requirement,
1058/// probably because the source does not need to be loaded. If
1059/// 'NonScalarIntSafe' is true, that means it's safe to return a
1060/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1061/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1062/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001063/// It returns EVT::Other if the type should be determined using generic
1064/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001065EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001066X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1067 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001068 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001069 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001070 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001071 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1072 // linux. This is because the stack realignment code can't handle certain
1073 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001074 const Function *F = MF.getFunction();
Evan Chengf28f8bc2010-04-02 19:36:14 +00001075 if (NonScalarIntSafe &&
1076 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001077 if (Size >= 16 &&
1078 (Subtarget->isUnalignedMemAccessFast() ||
Chandler Carruthae1d41c2010-04-02 01:31:24 +00001079 ((DstAlign == 0 || DstAlign >= 16) &&
1080 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001081 Subtarget->getStackAlignment() >= 16) {
1082 if (Subtarget->hasSSE2())
1083 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001084 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001085 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001086 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001087 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001088 Subtarget->getStackAlignment() >= 8 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001089 Subtarget->hasXMMInt()) {
Evan Chengc3b0c342010-04-08 07:37:57 +00001090 // Do not use f64 to lower memcpy if source is string constant. It's
1091 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001092 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001093 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001094 }
Evan Chengf0df0312008-05-15 08:39:06 +00001095 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001096 return MVT::i64;
1097 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001098}
1099
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001100/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1101/// current function. The returned value is a member of the
1102/// MachineJumpTableInfo::JTEntryKind enum.
1103unsigned X86TargetLowering::getJumpTableEncoding() const {
1104 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1105 // symbol.
1106 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1107 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001108 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001109
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001110 // Otherwise, use the normal jump table encoding heuristics.
1111 return TargetLowering::getJumpTableEncoding();
1112}
1113
Chris Lattnerc64daab2010-01-26 05:02:42 +00001114const MCExpr *
1115X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1116 const MachineBasicBlock *MBB,
1117 unsigned uid,MCContext &Ctx) const{
1118 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1119 Subtarget->isPICStyleGOT());
1120 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1121 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001122 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1123 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001124}
1125
Evan Chengcc415862007-11-09 01:32:10 +00001126/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1127/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001128SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001129 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001130 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001131 // This doesn't have DebugLoc associated with it, but is not really the
1132 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001133 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001134 return Table;
1135}
1136
Chris Lattner589c6f62010-01-26 06:28:43 +00001137/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1138/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1139/// MCExpr.
1140const MCExpr *X86TargetLowering::
1141getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1142 MCContext &Ctx) const {
1143 // X86-64 uses RIP relative addressing based on the jump table label.
1144 if (Subtarget->isPICStyleRIPRel())
1145 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1146
1147 // Otherwise, the reference is relative to the PIC base.
Chris Lattner142b5312010-11-14 22:48:15 +00001148 return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
Chris Lattner589c6f62010-01-26 06:28:43 +00001149}
1150
Bill Wendlingb4202b82009-07-01 18:50:55 +00001151/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling20c568f2009-06-30 22:38:32 +00001152unsigned X86TargetLowering::getFunctionAlignment(const Function *F) const {
Dan Gohman25103a22009-08-18 00:20:06 +00001153 return F->hasFnAttr(Attribute::OptimizeForSize) ? 0 : 4;
Bill Wendling20c568f2009-06-30 22:38:32 +00001154}
1155
Evan Chengdee81012010-07-26 21:50:05 +00001156std::pair<const TargetRegisterClass*, uint8_t>
1157X86TargetLowering::findRepresentativeClass(EVT VT) const{
1158 const TargetRegisterClass *RRC = 0;
1159 uint8_t Cost = 1;
1160 switch (VT.getSimpleVT().SimpleTy) {
1161 default:
1162 return TargetLowering::findRepresentativeClass(VT);
1163 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1164 RRC = (Subtarget->is64Bit()
1165 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1166 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001167 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001168 RRC = X86::VR64RegisterClass;
1169 break;
1170 case MVT::f32: case MVT::f64:
1171 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1172 case MVT::v4f32: case MVT::v2f64:
1173 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1174 case MVT::v4f64:
1175 RRC = X86::VR128RegisterClass;
1176 break;
1177 }
1178 return std::make_pair(RRC, Cost);
1179}
1180
Evan Cheng70017e42010-07-24 00:39:05 +00001181unsigned
1182X86TargetLowering::getRegPressureLimit(const TargetRegisterClass *RC,
1183 MachineFunction &MF) const {
Anton Korobeynikovd0c38172010-11-18 21:19:35 +00001184 const TargetFrameInfo *TFI = MF.getTarget().getFrameInfo();
1185
1186 unsigned FPDiff = TFI->hasFP(MF) ? 1 : 0;
Evan Cheng70017e42010-07-24 00:39:05 +00001187 switch (RC->getID()) {
1188 default:
1189 return 0;
1190 case X86::GR32RegClassID:
1191 return 4 - FPDiff;
1192 case X86::GR64RegClassID:
1193 return 8 - FPDiff;
1194 case X86::VR128RegClassID:
1195 return Subtarget->is64Bit() ? 10 : 4;
1196 case X86::VR64RegClassID:
1197 return 4;
1198 }
1199}
1200
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001201bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1202 unsigned &Offset) const {
1203 if (!Subtarget->isTargetLinux())
1204 return false;
1205
1206 if (Subtarget->is64Bit()) {
1207 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1208 Offset = 0x28;
1209 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1210 AddressSpace = 256;
1211 else
1212 AddressSpace = 257;
1213 } else {
1214 // %gs:0x14 on i386
1215 Offset = 0x14;
1216 AddressSpace = 256;
1217 }
1218 return true;
1219}
1220
1221
Chris Lattner2b02a442007-02-25 08:29:00 +00001222//===----------------------------------------------------------------------===//
1223// Return Value Calling Convention Implementation
1224//===----------------------------------------------------------------------===//
1225
Chris Lattner59ed56b2007-02-28 04:55:35 +00001226#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001227
Michael J. Spencerec38de22010-10-10 22:04:20 +00001228bool
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001229X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001230 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001231 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001232 SmallVector<CCValAssign, 16> RVLocs;
1233 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001234 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001235 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001236}
1237
Dan Gohman98ca4f22009-08-05 01:29:28 +00001238SDValue
1239X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001240 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001241 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001242 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001243 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001244 MachineFunction &MF = DAG.getMachineFunction();
1245 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001246
Chris Lattner9774c912007-02-27 05:28:59 +00001247 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001248 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1249 RVLocs, *DAG.getContext());
1250 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001251
Evan Chengdcea1632010-02-04 02:40:39 +00001252 // Add the regs to the liveout set for the function.
1253 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1254 for (unsigned i = 0; i != RVLocs.size(); ++i)
1255 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1256 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001257
Dan Gohman475871a2008-07-27 21:46:04 +00001258 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001259
Dan Gohman475871a2008-07-27 21:46:04 +00001260 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001261 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1262 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001263 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1264 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001265
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001266 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001267 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1268 CCValAssign &VA = RVLocs[i];
1269 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001270 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001271 EVT ValVT = ValToCopy.getValueType();
1272
Dale Johannesenc4510512010-09-24 19:05:48 +00001273 // If this is x86-64, and we disabled SSE, we can't return FP values,
1274 // or SSE or MMX vectors.
1275 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1276 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001277 (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001278 report_fatal_error("SSE register return with SSE disabled");
1279 }
1280 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1281 // llvm-gcc has never done it right and no one has noticed, so this
1282 // should be OK for now.
1283 if (ValVT == MVT::f64 &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001284 (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001285 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001286
Chris Lattner447ff682008-03-11 03:23:40 +00001287 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1288 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001289 if (VA.getLocReg() == X86::ST0 ||
1290 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001291 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1292 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001293 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001294 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001295 RetOps.push_back(ValToCopy);
1296 // Don't emit a copytoreg.
1297 continue;
1298 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001299
Evan Cheng242b38b2009-02-23 09:03:22 +00001300 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1301 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001302 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001303 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001304 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001305 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001306 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1307 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001308 // If we don't have SSE2 available, convert to v4f32 so the generated
1309 // register is legal.
1310 if (!Subtarget->hasSSE2())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001311 ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001312 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001313 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001314 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001315
Dale Johannesendd64c412009-02-04 00:33:20 +00001316 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001317 Flag = Chain.getValue(1);
1318 }
Dan Gohman61a92132008-04-21 23:59:07 +00001319
1320 // The x86-64 ABI for returning structs by value requires that we copy
1321 // the sret argument into %rax for the return. We saved the argument into
1322 // a virtual register in the entry block, so now we copy the value out
1323 // and into %rax.
1324 if (Subtarget->is64Bit() &&
1325 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1326 MachineFunction &MF = DAG.getMachineFunction();
1327 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1328 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001329 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001330 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001331 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001332
Dale Johannesendd64c412009-02-04 00:33:20 +00001333 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001334 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001335
1336 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001337 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001338 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001339
Chris Lattner447ff682008-03-11 03:23:40 +00001340 RetOps[0] = Chain; // Update chain.
1341
1342 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001343 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001344 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001345
1346 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001347 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001348}
1349
Evan Cheng3d2125c2010-11-30 23:55:39 +00001350bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1351 if (N->getNumValues() != 1)
1352 return false;
1353 if (!N->hasNUsesOfValue(1, 0))
1354 return false;
1355
1356 SDNode *Copy = *N->use_begin();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001357 if (Copy->getOpcode() != ISD::CopyToReg &&
1358 Copy->getOpcode() != ISD::FP_EXTEND)
Evan Cheng3d2125c2010-11-30 23:55:39 +00001359 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001360
1361 bool HasRet = false;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001362 for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
Evan Cheng1bf891a2010-12-01 22:59:46 +00001363 UI != UE; ++UI) {
Evan Cheng3d2125c2010-11-30 23:55:39 +00001364 if (UI->getOpcode() != X86ISD::RET_FLAG)
1365 return false;
Evan Cheng1bf891a2010-12-01 22:59:46 +00001366 HasRet = true;
1367 }
Evan Cheng3d2125c2010-11-30 23:55:39 +00001368
Evan Cheng1bf891a2010-12-01 22:59:46 +00001369 return HasRet;
Evan Cheng3d2125c2010-11-30 23:55:39 +00001370}
1371
Dan Gohman98ca4f22009-08-05 01:29:28 +00001372/// LowerCallResult - Lower the result values of a call into the
1373/// appropriate copies out of appropriate physical registers.
1374///
1375SDValue
1376X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001377 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001378 const SmallVectorImpl<ISD::InputArg> &Ins,
1379 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001380 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001381
Chris Lattnere32bbf62007-02-28 07:09:55 +00001382 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001383 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001384 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001385 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +00001386 RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001387 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001388
Chris Lattner3085e152007-02-25 08:59:22 +00001389 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001390 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001391 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001392 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001393
Torok Edwin3f142c32009-02-01 18:15:56 +00001394 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001395 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001396 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001397 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001398 }
1399
Evan Cheng79fb3b42009-02-20 20:43:02 +00001400 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001401
1402 // If this is a call to a function that returns an fp value on the floating
1403 // point stack, we must guarantee the the value is popped from the stack, so
1404 // a CopyFromReg is not good enough - the copy instruction may be eliminated
1405 // if the return value is not used. We use the FpGET_ST0 instructions
1406 // instead.
1407 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1408 // If we prefer to use the value in xmm registers, copy it out as f80 and
1409 // use a truncate to move it from fp stack reg to xmm reg.
1410 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1411 bool isST0 = VA.getLocReg() == X86::ST0;
1412 unsigned Opc = 0;
1413 if (CopyVT == MVT::f32) Opc = isST0 ? X86::FpGET_ST0_32:X86::FpGET_ST1_32;
1414 if (CopyVT == MVT::f64) Opc = isST0 ? X86::FpGET_ST0_64:X86::FpGET_ST1_64;
1415 if (CopyVT == MVT::f80) Opc = isST0 ? X86::FpGET_ST0_80:X86::FpGET_ST1_80;
1416 SDValue Ops[] = { Chain, InFlag };
1417 Chain = SDValue(DAG.getMachineNode(Opc, dl, CopyVT, MVT::Other, MVT::Flag,
1418 Ops, 2), 1);
1419 Val = Chain.getValue(0);
1420
1421 // Round the f80 to the right size, which also moves it to the appropriate
1422 // xmm register.
1423 if (CopyVT != VA.getValVT())
1424 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1425 // This truncation won't change the value.
1426 DAG.getIntPtrConstant(1));
1427 } else if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
Evan Cheng242b38b2009-02-23 09:03:22 +00001428 // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64.
1429 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1430 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001431 MVT::v2i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001432 Val = Chain.getValue(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001433 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1434 Val, DAG.getConstant(0, MVT::i64));
Evan Cheng242b38b2009-02-23 09:03:22 +00001435 } else {
1436 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001437 MVT::i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001438 Val = Chain.getValue(0);
1439 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001440 Val = DAG.getNode(ISD::BITCAST, dl, CopyVT, Val);
Evan Cheng79fb3b42009-02-20 20:43:02 +00001441 } else {
1442 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1443 CopyVT, InFlag).getValue(1);
1444 Val = Chain.getValue(0);
1445 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001446 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001447 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001448 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001449
Dan Gohman98ca4f22009-08-05 01:29:28 +00001450 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001451}
1452
1453
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001454//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001455// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001456//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001457// StdCall calling convention seems to be standard for many Windows' API
1458// routines and around. It differs from C calling convention just a little:
1459// callee should clean up the stack, not caller. Symbols should be also
1460// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001461// For info on fast calling convention see Fast Calling Convention (tail call)
1462// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001463
Dan Gohman98ca4f22009-08-05 01:29:28 +00001464/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001465/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001466static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1467 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001468 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001469
Dan Gohman98ca4f22009-08-05 01:29:28 +00001470 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001471}
1472
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001473/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001474/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001475static bool
1476ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1477 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001478 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001479
Dan Gohman98ca4f22009-08-05 01:29:28 +00001480 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001481}
1482
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001483/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1484/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001485/// the specific parameter attribute. The copy will be passed as a byval
1486/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001487static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001488CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001489 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1490 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001491 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001492
Dale Johannesendd64c412009-02-04 00:33:20 +00001493 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Mon P Wang20adc9d2010-04-04 03:10:48 +00001494 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001495 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001496}
1497
Chris Lattner29689432010-03-11 00:22:57 +00001498/// IsTailCallConvention - Return true if the calling convention is one that
1499/// supports tail call optimization.
1500static bool IsTailCallConvention(CallingConv::ID CC) {
1501 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1502}
1503
Evan Cheng0c439eb2010-01-27 00:07:07 +00001504/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1505/// a tailcall target by changing its ABI.
1506static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001507 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001508}
1509
Dan Gohman98ca4f22009-08-05 01:29:28 +00001510SDValue
1511X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001512 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001513 const SmallVectorImpl<ISD::InputArg> &Ins,
1514 DebugLoc dl, SelectionDAG &DAG,
1515 const CCValAssign &VA,
1516 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001517 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001518 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001519 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001520 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001521 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001522 EVT ValVT;
1523
1524 // If value is passed by pointer we have address passed instead of the value
1525 // itself.
1526 if (VA.getLocInfo() == CCValAssign::Indirect)
1527 ValVT = VA.getLocVT();
1528 else
1529 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001530
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001531 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001532 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001533 // In case of tail call optimization mark all arguments mutable. Since they
1534 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001535 if (Flags.isByVal()) {
1536 int FI = MFI->CreateFixedObject(Flags.getByValSize(),
Evan Chenged2ae132010-07-03 00:40:23 +00001537 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001538 return DAG.getFrameIndex(FI, getPointerTy());
1539 } else {
1540 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001541 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001542 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1543 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001544 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001545 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001546 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001547}
1548
Dan Gohman475871a2008-07-27 21:46:04 +00001549SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001550X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001551 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001552 bool isVarArg,
1553 const SmallVectorImpl<ISD::InputArg> &Ins,
1554 DebugLoc dl,
1555 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001556 SmallVectorImpl<SDValue> &InVals)
1557 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001558 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001559 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001560
Gordon Henriksen86737662008-01-05 16:56:59 +00001561 const Function* Fn = MF.getFunction();
1562 if (Fn->hasExternalLinkage() &&
1563 Subtarget->isTargetCygMing() &&
1564 Fn->getName() == "main")
1565 FuncInfo->setForceFramePointer(true);
1566
Evan Cheng1bc78042006-04-26 01:20:17 +00001567 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001568 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001569 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001570
Chris Lattner29689432010-03-11 00:22:57 +00001571 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1572 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001573
Chris Lattner638402b2007-02-28 07:00:42 +00001574 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001575 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001576 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1577 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00001578 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001579
Chris Lattnerf39f7712007-02-28 05:46:49 +00001580 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001581 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001582 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1583 CCValAssign &VA = ArgLocs[i];
1584 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1585 // places.
1586 assert(VA.getValNo() != LastVal &&
1587 "Don't support value assigned to multiple locs yet");
1588 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001589
Chris Lattnerf39f7712007-02-28 05:46:49 +00001590 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001591 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001592 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001593 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001594 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001595 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001596 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001597 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001598 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001599 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001600 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001601 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1602 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001603 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001604 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001605 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001606 RC = X86::VR64RegisterClass;
1607 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001608 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001609
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001610 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001611 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001612
Chris Lattnerf39f7712007-02-28 05:46:49 +00001613 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1614 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1615 // right size.
1616 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001617 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001618 DAG.getValueType(VA.getValVT()));
1619 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001620 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001621 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001622 else if (VA.getLocInfo() == CCValAssign::BCvt)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001623 ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001624
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001625 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001626 // Handle MMX values passed in XMM regs.
1627 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001628 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1629 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001630 } else
1631 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001632 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001633 } else {
1634 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001635 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001636 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001637
1638 // If value is passed via pointer - do a load.
1639 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001640 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1641 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001642
Dan Gohman98ca4f22009-08-05 01:29:28 +00001643 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001644 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001645
Dan Gohman61a92132008-04-21 23:59:07 +00001646 // The x86-64 ABI for returning structs by value requires that we copy
1647 // the sret argument into %rax for the return. Save the argument into
1648 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001649 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001650 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1651 unsigned Reg = FuncInfo->getSRetReturnReg();
1652 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001653 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001654 FuncInfo->setSRetReturnReg(Reg);
1655 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001656 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001657 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001658 }
1659
Chris Lattnerf39f7712007-02-28 05:46:49 +00001660 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001661 // Align stack specially for tail calls.
1662 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001663 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001664
Evan Cheng1bc78042006-04-26 01:20:17 +00001665 // If the function takes variable number of arguments, make a frame index for
1666 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001667 if (isVarArg) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001668 if (!IsWin64 && (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1669 CallConv != CallingConv::X86_ThisCall))) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001670 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001671 }
1672 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001673 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1674
1675 // FIXME: We should really autogenerate these arrays
1676 static const unsigned GPR64ArgRegsWin64[] = {
1677 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001678 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001679 static const unsigned GPR64ArgRegs64Bit[] = {
1680 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1681 };
1682 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001683 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1684 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1685 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001686 const unsigned *GPR64ArgRegs;
1687 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001688
1689 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001690 // The XMM registers which might contain var arg parameters are shadowed
1691 // in their paired GPR. So we only need to save the GPR to their home
1692 // slots.
1693 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001694 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001695 } else {
1696 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1697 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001698
1699 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001700 }
1701 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1702 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001703
Devang Patel578efa92009-06-05 21:57:13 +00001704 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001705 assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001706 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001707 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001708 "SSE register cannot be used when SSE is disabled!");
Nate Begeman2ea8ee72010-12-10 00:26:57 +00001709 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
Torok Edwin3f142c32009-02-01 18:15:56 +00001710 // Kernel mode asks for SSE to be disabled, so don't push them
1711 // on the stack.
1712 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001713
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001714 if (IsWin64) {
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001715 const TargetFrameInfo &TFI = *getTargetMachine().getFrameInfo();
1716 // Get to the caller-allocated home save location. Add 8 to account
1717 // for the return address.
1718 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001719 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001720 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001721 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
1722 } else {
1723 // For X86-64, if there are vararg parameters that are passed via
1724 // registers, then we must store them to their spots on the stack so they
1725 // may be loaded by deferencing the result of va_next.
1726 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1727 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1728 FuncInfo->setRegSaveFrameIndex(
1729 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001730 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001731 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001732
Gordon Henriksen86737662008-01-05 16:56:59 +00001733 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001734 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001735 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1736 getPointerTy());
1737 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001738 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001739 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1740 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001741 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
1742 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001743 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001744 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001745 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001746 MachinePointerInfo::getFixedStack(
1747 FuncInfo->getRegSaveFrameIndex(), Offset),
1748 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001749 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001750 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001751 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001752
Dan Gohmanface41a2009-08-16 21:24:25 +00001753 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1754 // Now store the XMM (fp + vector) parameter registers.
1755 SmallVector<SDValue, 11> SaveXMMOps;
1756 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001757
Dan Gohmanface41a2009-08-16 21:24:25 +00001758 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
1759 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1760 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001761
Dan Gohman1e93df62010-04-17 14:41:14 +00001762 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1763 FuncInfo->getRegSaveFrameIndex()));
1764 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1765 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001766
Dan Gohmanface41a2009-08-16 21:24:25 +00001767 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001768 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Dan Gohmanface41a2009-08-16 21:24:25 +00001769 X86::VR128RegisterClass);
1770 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1771 SaveXMMOps.push_back(Val);
1772 }
1773 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1774 MVT::Other,
1775 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001776 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001777
1778 if (!MemOps.empty())
1779 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1780 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001781 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001782 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001783
Gordon Henriksen86737662008-01-05 16:56:59 +00001784 // Some CCs need callee pop.
Dan Gohman4d3d6e12010-05-27 18:43:40 +00001785 if (Subtarget->IsCalleePop(isVarArg, CallConv)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001786 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001787 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001788 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001789 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001790 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001791 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001792 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001793
Gordon Henriksen86737662008-01-05 16:56:59 +00001794 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001795 // RegSaveFrameIndex is X86-64 only.
1796 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001797 if (CallConv == CallingConv::X86_FastCall ||
1798 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001799 // fastcc functions can't have varargs.
1800 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001801 }
Evan Cheng25caf632006-05-23 21:06:34 +00001802
Dan Gohman98ca4f22009-08-05 01:29:28 +00001803 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001804}
1805
Dan Gohman475871a2008-07-27 21:46:04 +00001806SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001807X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1808 SDValue StackPtr, SDValue Arg,
1809 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001810 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001811 ISD::ArgFlagsTy Flags) const {
Anton Korobeynikovc7c62bb2010-09-02 22:31:32 +00001812 const unsigned FirstStackArgOffset = (Subtarget->isTargetWin64() ? 32 : 0);
1813 unsigned LocMemOffset = FirstStackArgOffset + VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001814 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001815 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001816 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001817 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001818
1819 return DAG.getStore(Chain, dl, Arg, PtrOff,
1820 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001821 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001822}
1823
Bill Wendling64e87322009-01-16 19:25:27 +00001824/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001825/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001826SDValue
1827X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001828 SDValue &OutRetAddr, SDValue Chain,
1829 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001830 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001831 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001832 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001833 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001834
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001835 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001836 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1837 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001838 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001839}
1840
1841/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1842/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001843static SDValue
1844EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001845 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001846 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001847 // Store the return address to the appropriate stack slot.
1848 if (!FPDiff) return Chain;
1849 // Calculate the new stack slot for the return address.
1850 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001851 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001852 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001853 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001854 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001855 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001856 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001857 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001858 return Chain;
1859}
1860
Dan Gohman98ca4f22009-08-05 01:29:28 +00001861SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001862X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001863 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001864 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001865 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001866 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001867 const SmallVectorImpl<ISD::InputArg> &Ins,
1868 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001869 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001870 MachineFunction &MF = DAG.getMachineFunction();
1871 bool Is64Bit = Subtarget->is64Bit();
1872 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001873 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001874
Evan Cheng5f941932010-02-05 02:21:12 +00001875 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001876 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001877 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1878 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001879 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001880
1881 // Sibcalls are automatically detected tailcalls which do not require
1882 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001883 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001884 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001885
1886 if (isTailCall)
1887 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001888 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001889
Chris Lattner29689432010-03-11 00:22:57 +00001890 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1891 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001892
Chris Lattner638402b2007-02-28 07:00:42 +00001893 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00001894 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001895 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1896 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00001897 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001898
Chris Lattner423c5f42007-02-28 05:31:48 +00001899 // Get a count of how many bytes are to be pushed on the stack.
1900 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00001901 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00001902 // This is a sibcall. The memory operands are available in caller's
1903 // own caller's stack.
1904 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00001905 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00001906 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001907
Gordon Henriksen86737662008-01-05 16:56:59 +00001908 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00001909 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001910 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00001911 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00001912 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1913 FPDiff = NumBytesCallerPushed - NumBytes;
1914
1915 // Set the delta of movement of the returnaddr stackslot.
1916 // But only set if delta is greater than previous delta.
1917 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1918 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1919 }
1920
Evan Chengf22f9b32010-02-06 03:28:46 +00001921 if (!IsSibcall)
1922 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001923
Dan Gohman475871a2008-07-27 21:46:04 +00001924 SDValue RetAddrFrIdx;
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001925 // Load return adress for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00001926 if (isTailCall && FPDiff)
1927 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
1928 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00001929
Dan Gohman475871a2008-07-27 21:46:04 +00001930 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1931 SmallVector<SDValue, 8> MemOpChains;
1932 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00001933
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001934 // Walk the register/memloc assignments, inserting copies/loads. In the case
1935 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00001936 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1937 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001938 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00001939 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00001940 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00001941 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00001942
Chris Lattner423c5f42007-02-28 05:31:48 +00001943 // Promote the value if needed.
1944 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001945 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00001946 case CCValAssign::Full: break;
1947 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001948 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001949 break;
1950 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001951 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001952 break;
1953 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001954 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
1955 // Special case: passing MMX values in XMM registers.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001956 Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
Owen Anderson825b72b2009-08-11 20:47:22 +00001957 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
1958 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001959 } else
1960 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
1961 break;
1962 case CCValAssign::BCvt:
Wesley Peckbf17cfa2010-11-23 03:31:01 +00001963 Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001964 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001965 case CCValAssign::Indirect: {
1966 // Store the argument.
1967 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00001968 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001969 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00001970 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001971 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001972 Arg = SpillSlot;
1973 break;
1974 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00001975 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001976
Chris Lattner423c5f42007-02-28 05:31:48 +00001977 if (VA.isRegLoc()) {
1978 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00001979 if (isVarArg && Subtarget->isTargetWin64()) {
1980 // Win64 ABI requires argument XMM reg to be copied to the corresponding
1981 // shadow reg if callee is a varargs function.
1982 unsigned ShadowReg = 0;
1983 switch (VA.getLocReg()) {
1984 case X86::XMM0: ShadowReg = X86::RCX; break;
1985 case X86::XMM1: ShadowReg = X86::RDX; break;
1986 case X86::XMM2: ShadowReg = X86::R8; break;
1987 case X86::XMM3: ShadowReg = X86::R9; break;
1988 }
1989 if (ShadowReg)
1990 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
1991 }
Evan Chengf22f9b32010-02-06 03:28:46 +00001992 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00001993 assert(VA.isMemLoc());
1994 if (StackPtr.getNode() == 0)
1995 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
1996 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1997 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001998 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001999 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002000
Evan Cheng32fe1032006-05-25 00:59:30 +00002001 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002002 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00002003 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002004
Evan Cheng347d5f72006-04-28 21:29:37 +00002005 // Build a sequence of copy-to-reg nodes chained together with token chain
2006 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00002007 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002008 // Tail call byval lowering might overwrite argument registers so in case of
2009 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002010 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002011 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002012 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002013 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002014 InFlag = Chain.getValue(1);
2015 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002016
Chris Lattner88e1fd52009-07-09 04:24:46 +00002017 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002018 // ELF / PIC requires GOT in the EBX register before function calls via PLT
2019 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002020 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002021 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2022 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002023 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002024 InFlag);
2025 InFlag = Chain.getValue(1);
2026 } else {
2027 // If we are tail calling and generating PIC/GOT style code load the
2028 // address of the callee into ECX. The value in ecx is used as target of
2029 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2030 // for tail calls on PIC/GOT architectures. Normally we would just put the
2031 // address of GOT into ebx and then call target@PLT. But for tail calls
2032 // ebx would be restored (since ebx is callee saved) before jumping to the
2033 // target@PLT.
2034
2035 // Note: The actual moving to ECX is done further down.
2036 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2037 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2038 !G->getGlobal()->hasProtectedVisibility())
2039 Callee = LowerGlobalAddress(Callee, DAG);
2040 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002041 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002042 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002043 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002044
Nate Begemanc8ea6732010-07-21 20:49:52 +00002045 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64()) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002046 // From AMD64 ABI document:
2047 // For calls that may call functions that use varargs or stdargs
2048 // (prototype-less calls or calls to functions containing ellipsis (...) in
2049 // the declaration) %al is used as hidden argument to specify the number
2050 // of SSE registers used. The contents of %al do not need to match exactly
2051 // the number of registers, but must be an ubound on the number of SSE
2052 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002053
Gordon Henriksen86737662008-01-05 16:56:59 +00002054 // Count the number of XMM registers allocated.
2055 static const unsigned XMMArgRegs[] = {
2056 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2057 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2058 };
2059 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Nate Begeman2ea8ee72010-12-10 00:26:57 +00002060 assert((Subtarget->hasXMM() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002061 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002062
Dale Johannesendd64c412009-02-04 00:33:20 +00002063 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002064 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002065 InFlag = Chain.getValue(1);
2066 }
2067
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002068
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002069 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002070 if (isTailCall) {
2071 // Force all the incoming stack arguments to be loaded from the stack
2072 // before any new outgoing arguments are stored to the stack, because the
2073 // outgoing stack slots may alias the incoming argument stack slots, and
2074 // the alias isn't otherwise explicit. This is slightly more conservative
2075 // than necessary, because it means that each store effectively depends
2076 // on every argument instead of just those arguments it would clobber.
2077 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2078
Dan Gohman475871a2008-07-27 21:46:04 +00002079 SmallVector<SDValue, 8> MemOpChains2;
2080 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002081 int FI = 0;
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002082 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002083 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002084 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002085 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2086 CCValAssign &VA = ArgLocs[i];
2087 if (VA.isRegLoc())
2088 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002089 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002090 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002091 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002092 // Create frame index.
2093 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002094 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002095 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002096 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002097
Duncan Sands276dcbd2008-03-21 09:14:45 +00002098 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002099 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002100 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002101 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002102 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002103 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002104 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002105
Dan Gohman98ca4f22009-08-05 01:29:28 +00002106 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2107 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002108 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002109 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002110 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002111 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002112 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002113 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002114 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002115 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002116 }
2117 }
2118
2119 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002120 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002121 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002122
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002123 // Copy arguments to their registers.
2124 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002125 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002126 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002127 InFlag = Chain.getValue(1);
2128 }
Dan Gohman475871a2008-07-27 21:46:04 +00002129 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002130
Gordon Henriksen86737662008-01-05 16:56:59 +00002131 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002132 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002133 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002134 }
2135
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002136 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2137 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2138 // In the 64-bit large code model, we have to make all calls
2139 // through a register, since the call instruction's 32-bit
2140 // pc-relative offset may not be large enough to hold the whole
2141 // address.
2142 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002143 // If the callee is a GlobalAddress node (quite common, every direct call
2144 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2145 // it.
2146
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002147 // We should use extra load for direct calls to dllimported functions in
2148 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002149 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002150 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002151 unsigned char OpFlags = 0;
Eric Christopherfd179292009-08-27 18:07:15 +00002152
Chris Lattner48a7d022009-07-09 05:02:21 +00002153 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2154 // external symbols most go through the PLT in PIC mode. If the symbol
2155 // has hidden or protected visibility, or if it is static or local, then
2156 // we don't need to use the PLT - we can directly call it.
2157 if (Subtarget->isTargetELF() &&
2158 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002159 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002160 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002161 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002162 (GV->isDeclaration() || GV->isWeakForLinker()) &&
2163 Subtarget->getDarwinVers() < 9) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002164 // PC-relative references to external symbols should go through $stub,
2165 // unless we're building with the leopard linker or later, which
2166 // automatically synthesizes these stubs.
2167 OpFlags = X86II::MO_DARWIN_STUB;
2168 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002169
Devang Patel0d881da2010-07-06 22:08:15 +00002170 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002171 G->getOffset(), OpFlags);
2172 }
Bill Wendling056292f2008-09-16 21:48:12 +00002173 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002174 unsigned char OpFlags = 0;
2175
Evan Cheng1bf891a2010-12-01 22:59:46 +00002176 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2177 // external symbols should go through the PLT.
2178 if (Subtarget->isTargetELF() &&
2179 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2180 OpFlags = X86II::MO_PLT;
2181 } else if (Subtarget->isPICStyleStubAny() &&
2182 Subtarget->getDarwinVers() < 9) {
2183 // PC-relative references to external symbols should go through $stub,
2184 // unless we're building with the leopard linker or later, which
2185 // automatically synthesizes these stubs.
2186 OpFlags = X86II::MO_DARWIN_STUB;
Chris Lattner74e726e2009-07-09 05:27:35 +00002187 }
Eric Christopherfd179292009-08-27 18:07:15 +00002188
Chris Lattner48a7d022009-07-09 05:02:21 +00002189 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2190 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002191 }
2192
Chris Lattnerd96d0722007-02-25 06:40:16 +00002193 // Returns a chain & a flag for retval copy to use.
Owen Anderson825b72b2009-08-11 20:47:22 +00002194 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00002195 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002196
Evan Chengf22f9b32010-02-06 03:28:46 +00002197 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002198 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2199 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002200 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002201 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002202
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002203 Ops.push_back(Chain);
2204 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002205
Dan Gohman98ca4f22009-08-05 01:29:28 +00002206 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002207 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002208
Gordon Henriksen86737662008-01-05 16:56:59 +00002209 // Add argument registers to the end of the list so that they are known live
2210 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002211 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2212 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2213 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002214
Evan Cheng586ccac2008-03-18 23:36:35 +00002215 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002216 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002217 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2218
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002219 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
2220 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64())
Owen Anderson825b72b2009-08-11 20:47:22 +00002221 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002222
Gabor Greifba36cb52008-08-28 21:40:38 +00002223 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002224 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002225
Dan Gohman98ca4f22009-08-05 01:29:28 +00002226 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002227 // We used to do:
2228 //// If this is the first return lowered for this function, add the regs
2229 //// to the liveout set for the function.
2230 // This isn't right, although it's probably harmless on x86; liveouts
2231 // should be computed from returns not tail calls. Consider a void
2232 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002233 return DAG.getNode(X86ISD::TC_RETURN, dl,
2234 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002235 }
2236
Dale Johannesenace16102009-02-03 19:33:06 +00002237 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002238 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002239
Chris Lattner2d297092006-05-23 18:50:38 +00002240 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002241 unsigned NumBytesForCalleeToPush;
Dan Gohman4d3d6e12010-05-27 18:43:40 +00002242 if (Subtarget->IsCalleePop(isVarArg, CallConv))
Gordon Henriksen86737662008-01-05 16:56:59 +00002243 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002244 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002245 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002246 // pops the hidden struct pointer, so we have to push it back.
2247 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002248 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002249 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002250 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002251
Gordon Henriksenae636f82008-01-03 16:47:34 +00002252 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002253 if (!IsSibcall) {
2254 Chain = DAG.getCALLSEQ_END(Chain,
2255 DAG.getIntPtrConstant(NumBytes, true),
2256 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2257 true),
2258 InFlag);
2259 InFlag = Chain.getValue(1);
2260 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002261
Chris Lattner3085e152007-02-25 08:59:22 +00002262 // Handle result values, copying them out of physregs into vregs that we
2263 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002264 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2265 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002266}
2267
Evan Cheng25ab6902006-09-08 06:48:29 +00002268
2269//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002270// Fast Calling Convention (tail call) implementation
2271//===----------------------------------------------------------------------===//
2272
2273// Like std call, callee cleans arguments, convention except that ECX is
2274// reserved for storing the tail called function address. Only 2 registers are
2275// free for argument passing (inreg). Tail call optimization is performed
2276// provided:
2277// * tailcallopt is enabled
2278// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002279// On X86_64 architecture with GOT-style position independent code only local
2280// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002281// To keep the stack aligned according to platform abi the function
2282// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2283// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002284// If a tail called function callee has more arguments than the caller the
2285// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002286// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002287// original REtADDR, but before the saved framepointer or the spilled registers
2288// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2289// stack layout:
2290// arg1
2291// arg2
2292// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002293// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002294// move area ]
2295// (possible EBP)
2296// ESI
2297// EDI
2298// local1 ..
2299
2300/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2301/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002302unsigned
2303X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2304 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002305 MachineFunction &MF = DAG.getMachineFunction();
2306 const TargetMachine &TM = MF.getTarget();
2307 const TargetFrameInfo &TFI = *TM.getFrameInfo();
2308 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002309 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002310 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002311 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002312 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2313 // Number smaller than 12 so just add the difference.
2314 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2315 } else {
2316 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002317 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002318 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002319 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002320 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002321}
2322
Evan Cheng5f941932010-02-05 02:21:12 +00002323/// MatchingStackOffset - Return true if the given stack call argument is
2324/// already available in the same position (relatively) of the caller's
2325/// incoming argument stack.
2326static
2327bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2328 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2329 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002330 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2331 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002332 if (Arg.getOpcode() == ISD::CopyFromReg) {
2333 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2334 if (!VR || TargetRegisterInfo::isPhysicalRegister(VR))
2335 return false;
2336 MachineInstr *Def = MRI->getVRegDef(VR);
2337 if (!Def)
2338 return false;
2339 if (!Flags.isByVal()) {
2340 if (!TII->isLoadFromStackSlot(Def, FI))
2341 return false;
2342 } else {
2343 unsigned Opcode = Def->getOpcode();
2344 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2345 Def->getOperand(1).isFI()) {
2346 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002347 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002348 } else
2349 return false;
2350 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002351 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2352 if (Flags.isByVal())
2353 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002354 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002355 // define @foo(%struct.X* %A) {
2356 // tail call @bar(%struct.X* byval %A)
2357 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002358 return false;
2359 SDValue Ptr = Ld->getBasePtr();
2360 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2361 if (!FINode)
2362 return false;
2363 FI = FINode->getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002364 } else
2365 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002366
Evan Cheng4cae1332010-03-05 08:38:04 +00002367 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002368 if (!MFI->isFixedObjectIndex(FI))
2369 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002370 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002371}
2372
Dan Gohman98ca4f22009-08-05 01:29:28 +00002373/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2374/// for tail call optimization. Targets which want to do tail call
2375/// optimization should implement this function.
2376bool
2377X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002378 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002379 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002380 bool isCalleeStructRet,
2381 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002382 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002383 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002384 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002385 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002386 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002387 CalleeCC != CallingConv::C)
2388 return false;
2389
Evan Cheng7096ae42010-01-29 06:45:59 +00002390 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002391 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002392 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002393 CallingConv::ID CallerCC = CallerF->getCallingConv();
2394 bool CCMatch = CallerCC == CalleeCC;
2395
Dan Gohman1797ed52010-02-08 20:27:50 +00002396 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002397 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002398 return true;
2399 return false;
2400 }
2401
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002402 // Look for obvious safe cases to perform tail call optimization that do not
2403 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002404
Evan Cheng2c12cb42010-03-26 16:26:03 +00002405 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2406 // emit a special epilogue.
2407 if (RegInfo->needsStackRealignment(MF))
2408 return false;
2409
Eric Christopher90eb4022010-07-22 00:26:08 +00002410 // Do not sibcall optimize vararg calls unless the call site is not passing
2411 // any arguments.
Evan Cheng3c262ee2010-03-26 02:13:13 +00002412 if (isVarArg && !Outs.empty())
Evan Cheng843bd692010-01-31 06:44:49 +00002413 return false;
2414
Evan Chenga375d472010-03-15 18:54:48 +00002415 // Also avoid sibcall optimization if either caller or callee uses struct
2416 // return semantics.
2417 if (isCalleeStructRet || isCallerStructRet)
2418 return false;
2419
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002420 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2421 // Therefore if it's not used by the call it is not safe to optimize this into
2422 // a sibcall.
2423 bool Unused = false;
2424 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2425 if (!Ins[i].Used) {
2426 Unused = true;
2427 break;
2428 }
2429 }
2430 if (Unused) {
2431 SmallVector<CCValAssign, 16> RVLocs;
2432 CCState CCInfo(CalleeCC, false, getTargetMachine(),
2433 RVLocs, *DAG.getContext());
2434 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002435 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002436 CCValAssign &VA = RVLocs[i];
2437 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2438 return false;
2439 }
2440 }
2441
Evan Cheng13617962010-04-30 01:12:32 +00002442 // If the calling conventions do not match, then we'd better make sure the
2443 // results are returned in the same way as what the caller expects.
2444 if (!CCMatch) {
2445 SmallVector<CCValAssign, 16> RVLocs1;
2446 CCState CCInfo1(CalleeCC, false, getTargetMachine(),
2447 RVLocs1, *DAG.getContext());
2448 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2449
2450 SmallVector<CCValAssign, 16> RVLocs2;
2451 CCState CCInfo2(CallerCC, false, getTargetMachine(),
2452 RVLocs2, *DAG.getContext());
2453 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2454
2455 if (RVLocs1.size() != RVLocs2.size())
2456 return false;
2457 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2458 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2459 return false;
2460 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2461 return false;
2462 if (RVLocs1[i].isRegLoc()) {
2463 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2464 return false;
2465 } else {
2466 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2467 return false;
2468 }
2469 }
2470 }
2471
Evan Chenga6bff982010-01-30 01:22:00 +00002472 // If the callee takes no arguments then go on to check the results of the
2473 // call.
2474 if (!Outs.empty()) {
2475 // Check if stack adjustment is needed. For now, do not do this if any
2476 // argument is passed on the stack.
2477 SmallVector<CCValAssign, 16> ArgLocs;
2478 CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(),
2479 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00002480 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Evan Chengb2c92902010-02-02 02:22:50 +00002481 if (CCInfo.getNextStackOffset()) {
2482 MachineFunction &MF = DAG.getMachineFunction();
2483 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2484 return false;
2485 if (Subtarget->isTargetWin64())
2486 // Win64 ABI has additional complications.
2487 return false;
2488
2489 // Check if the arguments are already laid out in the right way as
2490 // the caller's fixed stack objects.
2491 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002492 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2493 const X86InstrInfo *TII =
2494 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002495 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2496 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002497 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002498 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002499 if (VA.getLocInfo() == CCValAssign::Indirect)
2500 return false;
2501 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002502 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2503 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002504 return false;
2505 }
2506 }
2507 }
Evan Cheng9c044672010-05-29 01:35:22 +00002508
2509 // If the tailcall address may be in a register, then make sure it's
2510 // possible to register allocate for it. In 32-bit, the call address can
2511 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002512 // callee-saved registers are restored. These happen to be the same
2513 // registers used to pass 'inreg' arguments so watch out for those.
2514 if (!Subtarget->is64Bit() &&
2515 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002516 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002517 unsigned NumInRegs = 0;
2518 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2519 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002520 if (!VA.isRegLoc())
2521 continue;
2522 unsigned Reg = VA.getLocReg();
2523 switch (Reg) {
2524 default: break;
2525 case X86::EAX: case X86::EDX: case X86::ECX:
2526 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002527 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002528 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002529 }
2530 }
2531 }
Evan Chenga6bff982010-01-30 01:22:00 +00002532 }
Evan Chengb1712452010-01-27 06:25:16 +00002533
Dale Johannesend155d7e2010-10-25 22:17:05 +00002534 // An stdcall caller is expected to clean up its arguments; the callee
Dale Johannesen0e034562010-11-12 00:43:18 +00002535 // isn't going to do that.
Dale Johannesend155d7e2010-10-25 22:17:05 +00002536 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2537 return false;
2538
Evan Cheng86809cc2010-02-03 03:28:02 +00002539 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002540}
2541
Dan Gohman3df24e62008-09-03 23:12:08 +00002542FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002543X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2544 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002545}
2546
2547
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002548//===----------------------------------------------------------------------===//
2549// Other Lowering Hooks
2550//===----------------------------------------------------------------------===//
2551
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002552static bool MayFoldLoad(SDValue Op) {
2553 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2554}
2555
2556static bool MayFoldIntoStore(SDValue Op) {
2557 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2558}
2559
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002560static bool isTargetShuffle(unsigned Opcode) {
2561 switch(Opcode) {
2562 default: return false;
2563 case X86ISD::PSHUFD:
2564 case X86ISD::PSHUFHW:
2565 case X86ISD::PSHUFLW:
2566 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002567 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002568 case X86ISD::SHUFPS:
2569 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002570 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002571 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002572 case X86ISD::MOVLPS:
2573 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002574 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002575 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002576 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002577 case X86ISD::MOVSS:
2578 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002579 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002580 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002581 case X86ISD::PUNPCKLWD:
2582 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002583 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002584 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002585 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002586 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002587 case X86ISD::PUNPCKHWD:
2588 case X86ISD::PUNPCKHBW:
2589 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002590 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002591 return true;
2592 }
2593 return false;
2594}
2595
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002596static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002597 SDValue V1, SelectionDAG &DAG) {
2598 switch(Opc) {
2599 default: llvm_unreachable("Unknown x86 shuffle node");
2600 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002601 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002602 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002603 return DAG.getNode(Opc, dl, VT, V1);
2604 }
2605
2606 return SDValue();
2607}
2608
2609static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002610 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002611 switch(Opc) {
2612 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002613 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002614 case X86ISD::PSHUFHW:
2615 case X86ISD::PSHUFLW:
2616 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2617 }
2618
2619 return SDValue();
2620}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002621
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002622static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2623 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2624 switch(Opc) {
2625 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002626 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002627 case X86ISD::SHUFPD:
2628 case X86ISD::SHUFPS:
2629 return DAG.getNode(Opc, dl, VT, V1, V2,
2630 DAG.getConstant(TargetMask, MVT::i8));
2631 }
2632 return SDValue();
2633}
2634
2635static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2636 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2637 switch(Opc) {
2638 default: llvm_unreachable("Unknown x86 shuffle node");
2639 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002640 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002641 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002642 case X86ISD::MOVLPS:
2643 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002644 case X86ISD::MOVSS:
2645 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002646 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002647 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002648 case X86ISD::PUNPCKLWD:
2649 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002650 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002651 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002652 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002653 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002654 case X86ISD::PUNPCKHWD:
2655 case X86ISD::PUNPCKHBW:
2656 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002657 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002658 return DAG.getNode(Opc, dl, VT, V1, V2);
2659 }
2660 return SDValue();
2661}
2662
Dan Gohmand858e902010-04-17 15:26:15 +00002663SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002664 MachineFunction &MF = DAG.getMachineFunction();
2665 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2666 int ReturnAddrIndex = FuncInfo->getRAIndex();
2667
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002668 if (ReturnAddrIndex == 0) {
2669 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002670 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002671 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002672 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002673 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002674 }
2675
Evan Cheng25ab6902006-09-08 06:48:29 +00002676 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002677}
2678
2679
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002680bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2681 bool hasSymbolicDisplacement) {
2682 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002683 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002684 return false;
2685
2686 // If we don't have a symbolic displacement - we don't have any extra
2687 // restrictions.
2688 if (!hasSymbolicDisplacement)
2689 return true;
2690
2691 // FIXME: Some tweaks might be needed for medium code model.
2692 if (M != CodeModel::Small && M != CodeModel::Kernel)
2693 return false;
2694
2695 // For small code model we assume that latest object is 16MB before end of 31
2696 // bits boundary. We may also accept pretty large negative constants knowing
2697 // that all objects are in the positive half of address space.
2698 if (M == CodeModel::Small && Offset < 16*1024*1024)
2699 return true;
2700
2701 // For kernel code model we know that all object resist in the negative half
2702 // of 32bits address space. We may not accept negative offsets, since they may
2703 // be just off and we may accept pretty large positive ones.
2704 if (M == CodeModel::Kernel && Offset > 0)
2705 return true;
2706
2707 return false;
2708}
2709
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002710/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2711/// specific condition code, returning the condition code and the LHS/RHS of the
2712/// comparison to make.
2713static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2714 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002715 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002716 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2717 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2718 // X > -1 -> X == 0, jump !sign.
2719 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002720 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002721 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2722 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002723 return X86::COND_S;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002724 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002725 // X < 1 -> X <= 0
2726 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002727 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002728 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002729 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002730
Evan Chengd9558e02006-01-06 00:43:03 +00002731 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002732 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002733 case ISD::SETEQ: return X86::COND_E;
2734 case ISD::SETGT: return X86::COND_G;
2735 case ISD::SETGE: return X86::COND_GE;
2736 case ISD::SETLT: return X86::COND_L;
2737 case ISD::SETLE: return X86::COND_LE;
2738 case ISD::SETNE: return X86::COND_NE;
2739 case ISD::SETULT: return X86::COND_B;
2740 case ISD::SETUGT: return X86::COND_A;
2741 case ISD::SETULE: return X86::COND_BE;
2742 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002743 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002744 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002745
Chris Lattner4c78e022008-12-23 23:42:27 +00002746 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002747
Chris Lattner4c78e022008-12-23 23:42:27 +00002748 // If LHS is a foldable load, but RHS is not, flip the condition.
2749 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2750 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2751 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2752 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002753 }
2754
Chris Lattner4c78e022008-12-23 23:42:27 +00002755 switch (SetCCOpcode) {
2756 default: break;
2757 case ISD::SETOLT:
2758 case ISD::SETOLE:
2759 case ISD::SETUGT:
2760 case ISD::SETUGE:
2761 std::swap(LHS, RHS);
2762 break;
2763 }
2764
2765 // On a floating point condition, the flags are set as follows:
2766 // ZF PF CF op
2767 // 0 | 0 | 0 | X > Y
2768 // 0 | 0 | 1 | X < Y
2769 // 1 | 0 | 0 | X == Y
2770 // 1 | 1 | 1 | unordered
2771 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002772 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002773 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002774 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002775 case ISD::SETOLT: // flipped
2776 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002777 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002778 case ISD::SETOLE: // flipped
2779 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002780 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002781 case ISD::SETUGT: // flipped
2782 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002783 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002784 case ISD::SETUGE: // flipped
2785 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002786 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002787 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002788 case ISD::SETNE: return X86::COND_NE;
2789 case ISD::SETUO: return X86::COND_P;
2790 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002791 case ISD::SETOEQ:
2792 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002793 }
Evan Chengd9558e02006-01-06 00:43:03 +00002794}
2795
Evan Cheng4a460802006-01-11 00:33:36 +00002796/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2797/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002798/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002799static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002800 switch (X86CC) {
2801 default:
2802 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002803 case X86::COND_B:
2804 case X86::COND_BE:
2805 case X86::COND_E:
2806 case X86::COND_P:
2807 case X86::COND_A:
2808 case X86::COND_AE:
2809 case X86::COND_NE:
2810 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002811 return true;
2812 }
2813}
2814
Evan Chengeb2f9692009-10-27 19:56:55 +00002815/// isFPImmLegal - Returns true if the target can instruction select the
2816/// specified FP immediate natively. If false, the legalizer will
2817/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00002818bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00002819 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
2820 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
2821 return true;
2822 }
2823 return false;
2824}
2825
Nate Begeman9008ca62009-04-27 18:41:29 +00002826/// isUndefOrInRange - Return true if Val is undef or if its value falls within
2827/// the specified range (L, H].
2828static bool isUndefOrInRange(int Val, int Low, int Hi) {
2829 return (Val < 0) || (Val >= Low && Val < Hi);
2830}
2831
2832/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
2833/// specified value.
2834static bool isUndefOrEqual(int Val, int CmpVal) {
2835 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002836 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00002837 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00002838}
2839
Nate Begeman9008ca62009-04-27 18:41:29 +00002840/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
2841/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
2842/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00002843static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00002844 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00002845 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002846 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00002847 return (Mask[0] < 2 && Mask[1] < 2);
2848 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002849}
2850
Nate Begeman9008ca62009-04-27 18:41:29 +00002851bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002852 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002853 N->getMask(M);
2854 return ::isPSHUFDMask(M, N->getValueType(0));
2855}
Evan Cheng0188ecb2006-03-22 18:59:22 +00002856
Nate Begeman9008ca62009-04-27 18:41:29 +00002857/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
2858/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00002859static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002860 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00002861 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002862
Nate Begeman9008ca62009-04-27 18:41:29 +00002863 // Lower quadword copied in order or undef.
2864 for (int i = 0; i != 4; ++i)
2865 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00002866 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002867
Evan Cheng506d3df2006-03-29 23:07:14 +00002868 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002869 for (int i = 4; i != 8; ++i)
2870 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00002871 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002872
Evan Cheng506d3df2006-03-29 23:07:14 +00002873 return true;
2874}
2875
Nate Begeman9008ca62009-04-27 18:41:29 +00002876bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002877 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002878 N->getMask(M);
2879 return ::isPSHUFHWMask(M, N->getValueType(0));
2880}
Evan Cheng506d3df2006-03-29 23:07:14 +00002881
Nate Begeman9008ca62009-04-27 18:41:29 +00002882/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
2883/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00002884static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002885 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00002886 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002887
Rafael Espindola15684b22009-04-24 12:40:33 +00002888 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00002889 for (int i = 4; i != 8; ++i)
2890 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00002891 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002892
Rafael Espindola15684b22009-04-24 12:40:33 +00002893 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002894 for (int i = 0; i != 4; ++i)
2895 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00002896 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002897
Rafael Espindola15684b22009-04-24 12:40:33 +00002898 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00002899}
2900
Nate Begeman9008ca62009-04-27 18:41:29 +00002901bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002902 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002903 N->getMask(M);
2904 return ::isPSHUFLWMask(M, N->getValueType(0));
2905}
2906
Nate Begemana09008b2009-10-19 02:17:23 +00002907/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
2908/// is suitable for input to PALIGNR.
2909static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
2910 bool hasSSSE3) {
2911 int i, e = VT.getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00002912
Nate Begemana09008b2009-10-19 02:17:23 +00002913 // Do not handle v2i64 / v2f64 shuffles with palignr.
2914 if (e < 4 || !hasSSSE3)
2915 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002916
Nate Begemana09008b2009-10-19 02:17:23 +00002917 for (i = 0; i != e; ++i)
2918 if (Mask[i] >= 0)
2919 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002920
Nate Begemana09008b2009-10-19 02:17:23 +00002921 // All undef, not a palignr.
2922 if (i == e)
2923 return false;
2924
2925 // Determine if it's ok to perform a palignr with only the LHS, since we
2926 // don't have access to the actual shuffle elements to see if RHS is undef.
2927 bool Unary = Mask[i] < (int)e;
2928 bool NeedsUnary = false;
2929
2930 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002931
Nate Begemana09008b2009-10-19 02:17:23 +00002932 // Check the rest of the elements to see if they are consecutive.
2933 for (++i; i != e; ++i) {
2934 int m = Mask[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00002935 if (m < 0)
Nate Begemana09008b2009-10-19 02:17:23 +00002936 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002937
Nate Begemana09008b2009-10-19 02:17:23 +00002938 Unary = Unary && (m < (int)e);
2939 NeedsUnary = NeedsUnary || (m < s);
2940
2941 if (NeedsUnary && !Unary)
2942 return false;
2943 if (Unary && m != ((s+i) & (e-1)))
2944 return false;
2945 if (!Unary && m != (s+i))
2946 return false;
2947 }
2948 return true;
2949}
2950
2951bool X86::isPALIGNRMask(ShuffleVectorSDNode *N) {
2952 SmallVector<int, 8> M;
2953 N->getMask(M);
2954 return ::isPALIGNRMask(M, N->getValueType(0), true);
2955}
2956
Evan Cheng14aed5e2006-03-24 01:18:28 +00002957/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2958/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00002959static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002960 int NumElems = VT.getVectorNumElements();
2961 if (NumElems != 2 && NumElems != 4)
2962 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002963
Nate Begeman9008ca62009-04-27 18:41:29 +00002964 int Half = NumElems / 2;
2965 for (int i = 0; i < Half; ++i)
2966 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002967 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002968 for (int i = Half; i < NumElems; ++i)
2969 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002970 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002971
Evan Cheng14aed5e2006-03-24 01:18:28 +00002972 return true;
2973}
2974
Nate Begeman9008ca62009-04-27 18:41:29 +00002975bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
2976 SmallVector<int, 8> M;
2977 N->getMask(M);
2978 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00002979}
2980
Evan Cheng213d2cf2007-05-17 18:45:50 +00002981/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00002982/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2983/// half elements to come from vector 1 (which would equal the dest.) and
2984/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00002985static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002986 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00002987
2988 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00002989 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002990
Nate Begeman9008ca62009-04-27 18:41:29 +00002991 int Half = NumElems / 2;
2992 for (int i = 0; i < Half; ++i)
2993 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002994 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002995 for (int i = Half; i < NumElems; ++i)
2996 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002997 return false;
2998 return true;
2999}
3000
Nate Begeman9008ca62009-04-27 18:41:29 +00003001static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3002 SmallVector<int, 8> M;
3003 N->getMask(M);
3004 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003005}
3006
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003007/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3008/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00003009bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
3010 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00003011 return false;
3012
Evan Cheng2064a2b2006-03-28 06:50:32 +00003013 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00003014 return isUndefOrEqual(N->getMaskElt(0), 6) &&
3015 isUndefOrEqual(N->getMaskElt(1), 7) &&
3016 isUndefOrEqual(N->getMaskElt(2), 2) &&
3017 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00003018}
3019
Nate Begeman0b10b912009-11-07 23:17:15 +00003020/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3021/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3022/// <2, 3, 2, 3>
3023bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
3024 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003025
Nate Begeman0b10b912009-11-07 23:17:15 +00003026 if (NumElems != 4)
3027 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003028
Nate Begeman0b10b912009-11-07 23:17:15 +00003029 return isUndefOrEqual(N->getMaskElt(0), 2) &&
3030 isUndefOrEqual(N->getMaskElt(1), 3) &&
3031 isUndefOrEqual(N->getMaskElt(2), 2) &&
3032 isUndefOrEqual(N->getMaskElt(3), 3);
3033}
3034
Evan Cheng5ced1d82006-04-06 23:23:56 +00003035/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3036/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003037bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3038 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003039
Evan Cheng5ced1d82006-04-06 23:23:56 +00003040 if (NumElems != 2 && NumElems != 4)
3041 return false;
3042
Evan Chengc5cdff22006-04-07 21:53:05 +00003043 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003044 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003045 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003046
Evan Chengc5cdff22006-04-07 21:53:05 +00003047 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003048 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003049 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003050
3051 return true;
3052}
3053
Nate Begeman0b10b912009-11-07 23:17:15 +00003054/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3055/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3056bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003057 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003058
Evan Cheng5ced1d82006-04-06 23:23:56 +00003059 if (NumElems != 2 && NumElems != 4)
3060 return false;
3061
Evan Chengc5cdff22006-04-07 21:53:05 +00003062 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003063 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003064 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003065
Nate Begeman9008ca62009-04-27 18:41:29 +00003066 for (unsigned i = 0; i < NumElems/2; ++i)
3067 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003068 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003069
3070 return true;
3071}
3072
Evan Cheng0038e592006-03-28 00:39:58 +00003073/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3074/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003075static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003076 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003077 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003078 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00003079 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003080
Nate Begeman9008ca62009-04-27 18:41:29 +00003081 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3082 int BitI = Mask[i];
3083 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003084 if (!isUndefOrEqual(BitI, j))
3085 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003086 if (V2IsSplat) {
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003087 if (!isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003088 return false;
3089 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003090 if (!isUndefOrEqual(BitI1, j + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003091 return false;
3092 }
Evan Cheng0038e592006-03-28 00:39:58 +00003093 }
Evan Cheng0038e592006-03-28 00:39:58 +00003094 return true;
3095}
3096
Nate Begeman9008ca62009-04-27 18:41:29 +00003097bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3098 SmallVector<int, 8> M;
3099 N->getMask(M);
3100 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003101}
3102
Evan Cheng4fcb9222006-03-28 02:43:26 +00003103/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3104/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003105static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003106 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003107 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003108 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003109 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003110
Nate Begeman9008ca62009-04-27 18:41:29 +00003111 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3112 int BitI = Mask[i];
3113 int BitI1 = Mask[i+1];
Chris Lattner5a88b832007-02-25 07:10:00 +00003114 if (!isUndefOrEqual(BitI, j + NumElts/2))
Evan Chengc5cdff22006-04-07 21:53:05 +00003115 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003116 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00003117 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003118 return false;
3119 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003120 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003121 return false;
3122 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003123 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003124 return true;
3125}
3126
Nate Begeman9008ca62009-04-27 18:41:29 +00003127bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3128 SmallVector<int, 8> M;
3129 N->getMask(M);
3130 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003131}
3132
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003133/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3134/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3135/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003136static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003137 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003138 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003139 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003140
Nate Begeman9008ca62009-04-27 18:41:29 +00003141 for (int i = 0, j = 0; i != NumElems; i += 2, ++j) {
3142 int BitI = Mask[i];
3143 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003144 if (!isUndefOrEqual(BitI, j))
3145 return false;
3146 if (!isUndefOrEqual(BitI1, j))
3147 return false;
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003148 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003149 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003150}
3151
Nate Begeman9008ca62009-04-27 18:41:29 +00003152bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3153 SmallVector<int, 8> M;
3154 N->getMask(M);
3155 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3156}
3157
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003158/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3159/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3160/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003161static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003162 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003163 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3164 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003165
Nate Begeman9008ca62009-04-27 18:41:29 +00003166 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3167 int BitI = Mask[i];
3168 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003169 if (!isUndefOrEqual(BitI, j))
3170 return false;
3171 if (!isUndefOrEqual(BitI1, j))
3172 return false;
3173 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003174 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003175}
3176
Nate Begeman9008ca62009-04-27 18:41:29 +00003177bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3178 SmallVector<int, 8> M;
3179 N->getMask(M);
3180 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3181}
3182
Evan Cheng017dcc62006-04-21 01:05:10 +00003183/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3184/// specifies a shuffle of elements that is suitable for input to MOVSS,
3185/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003186static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003187 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003188 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003189
3190 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003191
Nate Begeman9008ca62009-04-27 18:41:29 +00003192 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003193 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003194
Nate Begeman9008ca62009-04-27 18:41:29 +00003195 for (int i = 1; i < NumElts; ++i)
3196 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003197 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003198
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003199 return true;
3200}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003201
Nate Begeman9008ca62009-04-27 18:41:29 +00003202bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3203 SmallVector<int, 8> M;
3204 N->getMask(M);
3205 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003206}
3207
Evan Cheng017dcc62006-04-21 01:05:10 +00003208/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3209/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003210/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003211static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003212 bool V2IsSplat = false, bool V2IsUndef = false) {
3213 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003214 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003215 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003216
Nate Begeman9008ca62009-04-27 18:41:29 +00003217 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003218 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003219
Nate Begeman9008ca62009-04-27 18:41:29 +00003220 for (int i = 1; i < NumOps; ++i)
3221 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3222 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3223 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003224 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003225
Evan Cheng39623da2006-04-20 08:58:49 +00003226 return true;
3227}
3228
Nate Begeman9008ca62009-04-27 18:41:29 +00003229static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003230 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003231 SmallVector<int, 8> M;
3232 N->getMask(M);
3233 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003234}
3235
Evan Chengd9539472006-04-14 21:59:03 +00003236/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3237/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003238bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) {
3239 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003240 return false;
3241
3242 // Expect 1, 1, 3, 3
Rafael Espindola15684b22009-04-24 12:40:33 +00003243 for (unsigned i = 0; i < 2; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003244 int Elt = N->getMaskElt(i);
3245 if (Elt >= 0 && Elt != 1)
3246 return false;
Rafael Espindola15684b22009-04-24 12:40:33 +00003247 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003248
3249 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003250 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003251 int Elt = N->getMaskElt(i);
3252 if (Elt >= 0 && Elt != 3)
3253 return false;
3254 if (Elt == 3)
3255 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003256 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003257 // Don't use movshdup if it can be done with a shufps.
Nate Begeman9008ca62009-04-27 18:41:29 +00003258 // FIXME: verify that matching u, u, 3, 3 is what we want.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003259 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003260}
3261
3262/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3263/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003264bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) {
3265 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003266 return false;
3267
3268 // Expect 0, 0, 2, 2
Nate Begeman9008ca62009-04-27 18:41:29 +00003269 for (unsigned i = 0; i < 2; ++i)
3270 if (N->getMaskElt(i) > 0)
3271 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003272
3273 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003274 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003275 int Elt = N->getMaskElt(i);
3276 if (Elt >= 0 && Elt != 2)
3277 return false;
3278 if (Elt == 2)
3279 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003280 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003281 // Don't use movsldup if it can be done with a shufps.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003282 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003283}
3284
Evan Cheng0b457f02008-09-25 20:50:48 +00003285/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3286/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003287bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3288 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003289
Nate Begeman9008ca62009-04-27 18:41:29 +00003290 for (int i = 0; i < e; ++i)
3291 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003292 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003293 for (int i = 0; i < e; ++i)
3294 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003295 return false;
3296 return true;
3297}
3298
Evan Cheng63d33002006-03-22 08:01:21 +00003299/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003300/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003301unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003302 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3303 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3304
Evan Chengb9df0ca2006-03-22 02:53:00 +00003305 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3306 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003307 for (int i = 0; i < NumOperands; ++i) {
3308 int Val = SVOp->getMaskElt(NumOperands-i-1);
3309 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003310 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003311 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003312 if (i != NumOperands - 1)
3313 Mask <<= Shift;
3314 }
Evan Cheng63d33002006-03-22 08:01:21 +00003315 return Mask;
3316}
3317
Evan Cheng506d3df2006-03-29 23:07:14 +00003318/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003319/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003320unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003321 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003322 unsigned Mask = 0;
3323 // 8 nodes, but we only care about the last 4.
3324 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003325 int Val = SVOp->getMaskElt(i);
3326 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003327 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003328 if (i != 4)
3329 Mask <<= 2;
3330 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003331 return Mask;
3332}
3333
3334/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003335/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003336unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003337 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003338 unsigned Mask = 0;
3339 // 8 nodes, but we only care about the first 4.
3340 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003341 int Val = SVOp->getMaskElt(i);
3342 if (Val >= 0)
3343 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003344 if (i != 0)
3345 Mask <<= 2;
3346 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003347 return Mask;
3348}
3349
Nate Begemana09008b2009-10-19 02:17:23 +00003350/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3351/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3352unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3353 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3354 EVT VVT = N->getValueType(0);
3355 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3356 int Val = 0;
3357
3358 unsigned i, e;
3359 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3360 Val = SVOp->getMaskElt(i);
3361 if (Val >= 0)
3362 break;
3363 }
3364 return (Val - i) * EltSize;
3365}
3366
Evan Cheng37b73872009-07-30 08:33:02 +00003367/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3368/// constant +0.0.
3369bool X86::isZeroNode(SDValue Elt) {
3370 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003371 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003372 (isa<ConstantFPSDNode>(Elt) &&
3373 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3374}
3375
Nate Begeman9008ca62009-04-27 18:41:29 +00003376/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3377/// their permute mask.
3378static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3379 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003380 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003381 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003382 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003383
Nate Begeman5a5ca152009-04-29 05:20:52 +00003384 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003385 int idx = SVOp->getMaskElt(i);
3386 if (idx < 0)
3387 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003388 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003389 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003390 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003391 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003392 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003393 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3394 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003395}
3396
Evan Cheng779ccea2007-12-07 21:30:01 +00003397/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3398/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003399static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003400 unsigned NumElems = VT.getVectorNumElements();
3401 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003402 int idx = Mask[i];
3403 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003404 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003405 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003406 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003407 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003408 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003409 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003410}
3411
Evan Cheng533a0aa2006-04-19 20:35:22 +00003412/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3413/// match movhlps. The lower half elements should come from upper half of
3414/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003415/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003416static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3417 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003418 return false;
3419 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003420 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003421 return false;
3422 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003423 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003424 return false;
3425 return true;
3426}
3427
Evan Cheng5ced1d82006-04-06 23:23:56 +00003428/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003429/// is promoted to a vector. It also returns the LoadSDNode by reference if
3430/// required.
3431static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003432 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3433 return false;
3434 N = N->getOperand(0).getNode();
3435 if (!ISD::isNON_EXTLoad(N))
3436 return false;
3437 if (LD)
3438 *LD = cast<LoadSDNode>(N);
3439 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003440}
3441
Evan Cheng533a0aa2006-04-19 20:35:22 +00003442/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3443/// match movlp{s|d}. The lower half elements should come from lower half of
3444/// V1 (and in order), and the upper half elements should come from the upper
3445/// half of V2 (and in order). And since V1 will become the source of the
3446/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003447static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3448 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003449 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003450 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003451 // Is V2 is a vector load, don't do this transformation. We will try to use
3452 // load folding shufps op.
3453 if (ISD::isNON_EXTLoad(V2))
3454 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003455
Nate Begeman5a5ca152009-04-29 05:20:52 +00003456 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003457
Evan Cheng533a0aa2006-04-19 20:35:22 +00003458 if (NumElems != 2 && NumElems != 4)
3459 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003460 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003461 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003462 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003463 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003464 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003465 return false;
3466 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003467}
3468
Evan Cheng39623da2006-04-20 08:58:49 +00003469/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3470/// all the same.
3471static bool isSplatVector(SDNode *N) {
3472 if (N->getOpcode() != ISD::BUILD_VECTOR)
3473 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003474
Dan Gohman475871a2008-07-27 21:46:04 +00003475 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003476 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3477 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003478 return false;
3479 return true;
3480}
3481
Evan Cheng213d2cf2007-05-17 18:45:50 +00003482/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003483/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003484/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003485static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003486 SDValue V1 = N->getOperand(0);
3487 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003488 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3489 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003490 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003491 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003492 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003493 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3494 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003495 if (Opc != ISD::BUILD_VECTOR ||
3496 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003497 return false;
3498 } else if (Idx >= 0) {
3499 unsigned Opc = V1.getOpcode();
3500 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3501 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003502 if (Opc != ISD::BUILD_VECTOR ||
3503 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003504 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003505 }
3506 }
3507 return true;
3508}
3509
3510/// getZeroVector - Returns a vector of specified type with all zero elements.
3511///
Owen Andersone50ed302009-08-10 22:56:29 +00003512static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003513 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003514 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003515
Dale Johannesen0488fb62010-09-30 23:57:10 +00003516 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003517 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003518 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003519 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003520 if (HasSSE2) { // SSE2
3521 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3522 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3523 } else { // SSE1
3524 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3525 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3526 }
3527 } else if (VT.getSizeInBits() == 256) { // AVX
3528 // 256-bit logic and arithmetic instructions in AVX are
3529 // all floating-point, no support for integer ops. Default
3530 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003531 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003532 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3533 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003534 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003535 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003536}
3537
Chris Lattner8a594482007-11-25 00:24:49 +00003538/// getOnesVector - Returns a vector of specified type with all bits set.
3539///
Owen Andersone50ed302009-08-10 22:56:29 +00003540static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003541 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003542
Chris Lattner8a594482007-11-25 00:24:49 +00003543 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
3544 // type. This ensures they get CSE'd.
Owen Anderson825b72b2009-08-11 20:47:22 +00003545 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +00003546 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003547 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003548 return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00003549}
3550
3551
Evan Cheng39623da2006-04-20 08:58:49 +00003552/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
3553/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00003554static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003555 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003556 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003557
Evan Cheng39623da2006-04-20 08:58:49 +00003558 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003559 SmallVector<int, 8> MaskVec;
3560 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00003561
Nate Begeman5a5ca152009-04-29 05:20:52 +00003562 for (unsigned i = 0; i != NumElems; ++i) {
3563 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003564 MaskVec[i] = NumElems;
3565 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00003566 }
Evan Cheng39623da2006-04-20 08:58:49 +00003567 }
Evan Cheng39623da2006-04-20 08:58:49 +00003568 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00003569 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
3570 SVOp->getOperand(1), &MaskVec[0]);
3571 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00003572}
3573
Evan Cheng017dcc62006-04-21 01:05:10 +00003574/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
3575/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00003576static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003577 SDValue V2) {
3578 unsigned NumElems = VT.getVectorNumElements();
3579 SmallVector<int, 8> Mask;
3580 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00003581 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003582 Mask.push_back(i);
3583 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00003584}
3585
Nate Begeman9008ca62009-04-27 18:41:29 +00003586/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003587static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003588 SDValue V2) {
3589 unsigned NumElems = VT.getVectorNumElements();
3590 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00003591 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003592 Mask.push_back(i);
3593 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00003594 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003595 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00003596}
3597
Nate Begeman9008ca62009-04-27 18:41:29 +00003598/// getUnpackhMask - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003599static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003600 SDValue V2) {
3601 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00003602 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003603 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00003604 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003605 Mask.push_back(i + Half);
3606 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00003607 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003608 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00003609}
3610
Bruno Cardoso Lopesbb0a9482010-08-13 17:50:47 +00003611/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32.
3612static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003613 EVT PVT = MVT::v4f32;
Owen Andersone50ed302009-08-10 22:56:29 +00003614 EVT VT = SV->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00003615 DebugLoc dl = SV->getDebugLoc();
3616 SDValue V1 = SV->getOperand(0);
3617 int NumElems = VT.getVectorNumElements();
3618 int EltNo = SV->getSplatIndex();
Rafael Espindola15684b22009-04-24 12:40:33 +00003619
Nate Begeman9008ca62009-04-27 18:41:29 +00003620 // unpack elements to the correct location
3621 while (NumElems > 4) {
3622 if (EltNo < NumElems/2) {
3623 V1 = getUnpackl(DAG, dl, VT, V1, V1);
3624 } else {
3625 V1 = getUnpackh(DAG, dl, VT, V1, V1);
3626 EltNo -= NumElems/2;
3627 }
3628 NumElems >>= 1;
3629 }
Eric Christopherfd179292009-08-27 18:07:15 +00003630
Nate Begeman9008ca62009-04-27 18:41:29 +00003631 // Perform the splat.
3632 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003633 V1 = DAG.getNode(ISD::BITCAST, dl, PVT, V1);
Nate Begeman9008ca62009-04-27 18:41:29 +00003634 V1 = DAG.getVectorShuffle(PVT, dl, V1, DAG.getUNDEF(PVT), &SplatMask[0]);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003635 return DAG.getNode(ISD::BITCAST, dl, VT, V1);
Evan Chengc575ca22006-04-17 20:43:08 +00003636}
3637
Evan Chengba05f722006-04-21 23:03:30 +00003638/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00003639/// vector of zero or undef vector. This produces a shuffle where the low
3640/// element of V2 is swizzled into the zero/undef vector, landing at element
3641/// 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 +00003642static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00003643 bool isZero, bool HasSSE2,
3644 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003645 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003646 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00003647 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
3648 unsigned NumElems = VT.getVectorNumElements();
3649 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00003650 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003651 // If this is the insertion idx, put the low elt of V2 here.
3652 MaskVec.push_back(i == Idx ? NumElems : i);
3653 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00003654}
3655
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003656/// getShuffleScalarElt - Returns the scalar element that will make up the ith
3657/// element of the result of the vector shuffle.
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003658SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
3659 unsigned Depth) {
3660 if (Depth == 6)
3661 return SDValue(); // Limit search depth.
3662
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003663 SDValue V = SDValue(N, 0);
3664 EVT VT = V.getValueType();
3665 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003666
3667 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
3668 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
3669 Index = SV->getMaskElt(Index);
3670
3671 if (Index < 0)
3672 return DAG.getUNDEF(VT.getVectorElementType());
3673
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003674 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003675 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003676 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00003677 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003678
3679 // Recurse into target specific vector shuffles to find scalars.
3680 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003681 int NumElems = VT.getVectorNumElements();
3682 SmallVector<unsigned, 16> ShuffleMask;
3683 SDValue ImmN;
3684
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003685 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003686 case X86ISD::SHUFPS:
3687 case X86ISD::SHUFPD:
3688 ImmN = N->getOperand(N->getNumOperands()-1);
3689 DecodeSHUFPSMask(NumElems,
3690 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3691 ShuffleMask);
3692 break;
3693 case X86ISD::PUNPCKHBW:
3694 case X86ISD::PUNPCKHWD:
3695 case X86ISD::PUNPCKHDQ:
3696 case X86ISD::PUNPCKHQDQ:
3697 DecodePUNPCKHMask(NumElems, ShuffleMask);
3698 break;
3699 case X86ISD::UNPCKHPS:
3700 case X86ISD::UNPCKHPD:
3701 DecodeUNPCKHPMask(NumElems, ShuffleMask);
3702 break;
3703 case X86ISD::PUNPCKLBW:
3704 case X86ISD::PUNPCKLWD:
3705 case X86ISD::PUNPCKLDQ:
3706 case X86ISD::PUNPCKLQDQ:
3707 DecodePUNPCKLMask(NumElems, ShuffleMask);
3708 break;
3709 case X86ISD::UNPCKLPS:
3710 case X86ISD::UNPCKLPD:
3711 DecodeUNPCKLPMask(NumElems, ShuffleMask);
3712 break;
3713 case X86ISD::MOVHLPS:
3714 DecodeMOVHLPSMask(NumElems, ShuffleMask);
3715 break;
3716 case X86ISD::MOVLHPS:
3717 DecodeMOVLHPSMask(NumElems, ShuffleMask);
3718 break;
3719 case X86ISD::PSHUFD:
3720 ImmN = N->getOperand(N->getNumOperands()-1);
3721 DecodePSHUFMask(NumElems,
3722 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3723 ShuffleMask);
3724 break;
3725 case X86ISD::PSHUFHW:
3726 ImmN = N->getOperand(N->getNumOperands()-1);
3727 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3728 ShuffleMask);
3729 break;
3730 case X86ISD::PSHUFLW:
3731 ImmN = N->getOperand(N->getNumOperands()-1);
3732 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3733 ShuffleMask);
3734 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003735 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003736 case X86ISD::MOVSD: {
3737 // The index 0 always comes from the first element of the second source,
3738 // this is why MOVSS and MOVSD are used in the first place. The other
3739 // elements come from the other positions of the first source vector.
3740 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003741 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
3742 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003743 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003744 default:
3745 assert("not implemented for target shuffle node");
3746 return SDValue();
3747 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003748
3749 Index = ShuffleMask[Index];
3750 if (Index < 0)
3751 return DAG.getUNDEF(VT.getVectorElementType());
3752
3753 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
3754 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
3755 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003756 }
3757
3758 // Actual nodes that may contain scalar elements
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003759 if (Opcode == ISD::BITCAST) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003760 V = V.getOperand(0);
3761 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003762 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003763
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003764 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003765 return SDValue();
3766 }
3767
3768 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
3769 return (Index == 0) ? V.getOperand(0)
3770 : DAG.getUNDEF(VT.getVectorElementType());
3771
3772 if (V.getOpcode() == ISD::BUILD_VECTOR)
3773 return V.getOperand(Index);
3774
3775 return SDValue();
3776}
3777
3778/// getNumOfConsecutiveZeros - Return the number of elements of a vector
3779/// shuffle operation which come from a consecutively from a zero. The
3780/// search can start in two diferent directions, from left or right.
3781static
3782unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
3783 bool ZerosFromLeft, SelectionDAG &DAG) {
3784 int i = 0;
3785
3786 while (i < NumElems) {
3787 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003788 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003789 if (!(Elt.getNode() &&
3790 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
3791 break;
3792 ++i;
3793 }
3794
3795 return i;
3796}
3797
3798/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
3799/// MaskE correspond consecutively to elements from one of the vector operands,
3800/// starting from its index OpIdx. Also tell OpNum which source vector operand.
3801static
3802bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
3803 int OpIdx, int NumElems, unsigned &OpNum) {
3804 bool SeenV1 = false;
3805 bool SeenV2 = false;
3806
3807 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
3808 int Idx = SVOp->getMaskElt(i);
3809 // Ignore undef indicies
3810 if (Idx < 0)
3811 continue;
3812
3813 if (Idx < NumElems)
3814 SeenV1 = true;
3815 else
3816 SeenV2 = true;
3817
3818 // Only accept consecutive elements from the same vector
3819 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
3820 return false;
3821 }
3822
3823 OpNum = SeenV1 ? 0 : 1;
3824 return true;
3825}
3826
3827/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
3828/// logical left shift of a vector.
3829static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3830 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3831 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3832 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3833 false /* check zeros from right */, DAG);
3834 unsigned OpSrc;
3835
3836 if (!NumZeros)
3837 return false;
3838
3839 // Considering the elements in the mask that are not consecutive zeros,
3840 // check if they consecutively come from only one of the source vectors.
3841 //
3842 // V1 = {X, A, B, C} 0
3843 // \ \ \ /
3844 // vector_shuffle V1, V2 <1, 2, 3, X>
3845 //
3846 if (!isShuffleMaskConsecutive(SVOp,
3847 0, // Mask Start Index
3848 NumElems-NumZeros-1, // Mask End Index
3849 NumZeros, // Where to start looking in the src vector
3850 NumElems, // Number of elements in vector
3851 OpSrc)) // Which source operand ?
3852 return false;
3853
3854 isLeft = false;
3855 ShAmt = NumZeros;
3856 ShVal = SVOp->getOperand(OpSrc);
3857 return true;
3858}
3859
3860/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
3861/// logical left shift of a vector.
3862static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3863 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3864 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3865 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3866 true /* check zeros from left */, DAG);
3867 unsigned OpSrc;
3868
3869 if (!NumZeros)
3870 return false;
3871
3872 // Considering the elements in the mask that are not consecutive zeros,
3873 // check if they consecutively come from only one of the source vectors.
3874 //
3875 // 0 { A, B, X, X } = V2
3876 // / \ / /
3877 // vector_shuffle V1, V2 <X, X, 4, 5>
3878 //
3879 if (!isShuffleMaskConsecutive(SVOp,
3880 NumZeros, // Mask Start Index
3881 NumElems-1, // Mask End Index
3882 0, // Where to start looking in the src vector
3883 NumElems, // Number of elements in vector
3884 OpSrc)) // Which source operand ?
3885 return false;
3886
3887 isLeft = true;
3888 ShAmt = NumZeros;
3889 ShVal = SVOp->getOperand(OpSrc);
3890 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003891}
3892
3893/// isVectorShift - Returns true if the shuffle can be implemented as a
3894/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003895static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00003896 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003897 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
3898 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
3899 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003900
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003901 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00003902}
3903
Evan Chengc78d3b42006-04-24 18:01:45 +00003904/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3905///
Dan Gohman475871a2008-07-27 21:46:04 +00003906static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00003907 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00003908 SelectionDAG &DAG,
3909 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003910 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00003911 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003912
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003913 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003914 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003915 bool First = true;
3916 for (unsigned i = 0; i < 16; ++i) {
3917 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3918 if (ThisIsNonZero && First) {
3919 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003920 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003921 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003922 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003923 First = false;
3924 }
3925
3926 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00003927 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003928 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3929 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003930 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003931 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00003932 }
3933 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003934 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
3935 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
3936 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00003937 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003938 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00003939 } else
3940 ThisElt = LastElt;
3941
Gabor Greifba36cb52008-08-28 21:40:38 +00003942 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00003943 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00003944 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00003945 }
3946 }
3947
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003948 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00003949}
3950
Bill Wendlinga348c562007-03-22 18:42:45 +00003951/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00003952///
Dan Gohman475871a2008-07-27 21:46:04 +00003953static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00003954 unsigned NumNonZero, unsigned NumZero,
3955 SelectionDAG &DAG,
3956 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003957 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00003958 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003959
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003960 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003961 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003962 bool First = true;
3963 for (unsigned i = 0; i < 8; ++i) {
3964 bool isNonZero = (NonZeros & (1 << i)) != 0;
3965 if (isNonZero) {
3966 if (First) {
3967 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003968 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003969 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003970 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003971 First = false;
3972 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003973 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003974 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00003975 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00003976 }
3977 }
3978
3979 return V;
3980}
3981
Evan Chengf26ffe92008-05-29 08:22:04 +00003982/// getVShift - Return a vector logical shift node.
3983///
Owen Andersone50ed302009-08-10 22:56:29 +00003984static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00003985 unsigned NumBits, SelectionDAG &DAG,
3986 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003987 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00003988 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00003989 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
3990 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00003991 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif327ef032008-08-28 23:19:51 +00003992 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengf26ffe92008-05-29 08:22:04 +00003993}
3994
Dan Gohman475871a2008-07-27 21:46:04 +00003995SDValue
Evan Chengc3630942009-12-09 21:00:30 +00003996X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00003997 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00003998
Evan Chengc3630942009-12-09 21:00:30 +00003999 // Check if the scalar load can be widened into a vector load. And if
4000 // the address is "base + cst" see if the cst can be "absorbed" into
4001 // the shuffle mask.
4002 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4003 SDValue Ptr = LD->getBasePtr();
4004 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4005 return SDValue();
4006 EVT PVT = LD->getValueType(0);
4007 if (PVT != MVT::i32 && PVT != MVT::f32)
4008 return SDValue();
4009
4010 int FI = -1;
4011 int64_t Offset = 0;
4012 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4013 FI = FINode->getIndex();
4014 Offset = 0;
4015 } else if (Ptr.getOpcode() == ISD::ADD &&
4016 isa<ConstantSDNode>(Ptr.getOperand(1)) &&
4017 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4018 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4019 Offset = Ptr.getConstantOperandVal(1);
4020 Ptr = Ptr.getOperand(0);
4021 } else {
4022 return SDValue();
4023 }
4024
4025 SDValue Chain = LD->getChain();
4026 // Make sure the stack object alignment is at least 16.
4027 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4028 if (DAG.InferPtrAlignment(Ptr) < 16) {
4029 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004030 // Can't change the alignment. FIXME: It's possible to compute
4031 // the exact stack offset and reference FI + adjust offset instead.
4032 // If someone *really* cares about this. That's the way to implement it.
4033 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004034 } else {
4035 MFI->setObjectAlignment(FI, 16);
4036 }
4037 }
4038
4039 // (Offset % 16) must be multiple of 4. Then address is then
4040 // Ptr + (Offset & ~15).
4041 if (Offset < 0)
4042 return SDValue();
4043 if ((Offset % 16) & 3)
4044 return SDValue();
4045 int64_t StartOffset = Offset & ~15;
4046 if (StartOffset)
4047 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4048 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4049
4050 int EltNo = (Offset - StartOffset) >> 2;
4051 int Mask[4] = { EltNo, EltNo, EltNo, EltNo };
4052 EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32;
Chris Lattner51abfe42010-09-21 06:02:19 +00004053 SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr,
4054 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004055 false, false, 0);
Evan Chengc3630942009-12-09 21:00:30 +00004056 // Canonicalize it to a v4i32 shuffle.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004057 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V1);
4058 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Chengc3630942009-12-09 21:00:30 +00004059 DAG.getVectorShuffle(MVT::v4i32, dl, V1,
Chris Lattner51abfe42010-09-21 06:02:19 +00004060 DAG.getUNDEF(MVT::v4i32),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004061 }
4062
4063 return SDValue();
4064}
4065
Michael J. Spencerec38de22010-10-10 22:04:20 +00004066/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4067/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004068/// load which has the same value as a build_vector whose operands are 'elts'.
4069///
4070/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004071///
Nate Begeman1449f292010-03-24 22:19:06 +00004072/// FIXME: we'd also like to handle the case where the last elements are zero
4073/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4074/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004075static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004076 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004077 EVT EltVT = VT.getVectorElementType();
4078 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004079
Nate Begemanfdea31a2010-03-24 20:49:50 +00004080 LoadSDNode *LDBase = NULL;
4081 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004082
Nate Begeman1449f292010-03-24 22:19:06 +00004083 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004084 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004085 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004086 for (unsigned i = 0; i < NumElems; ++i) {
4087 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004088
Nate Begemanfdea31a2010-03-24 20:49:50 +00004089 if (!Elt.getNode() ||
4090 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4091 return SDValue();
4092 if (!LDBase) {
4093 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4094 return SDValue();
4095 LDBase = cast<LoadSDNode>(Elt.getNode());
4096 LastLoadedElt = i;
4097 continue;
4098 }
4099 if (Elt.getOpcode() == ISD::UNDEF)
4100 continue;
4101
4102 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4103 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4104 return SDValue();
4105 LastLoadedElt = i;
4106 }
Nate Begeman1449f292010-03-24 22:19:06 +00004107
4108 // If we have found an entire vector of loads and undefs, then return a large
4109 // load of the entire vector width starting at the base pointer. If we found
4110 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004111 if (LastLoadedElt == NumElems - 1) {
4112 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004113 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004114 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004115 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004116 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004117 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004118 LDBase->isVolatile(), LDBase->isNonTemporal(),
4119 LDBase->getAlignment());
4120 } else if (NumElems == 4 && LastLoadedElt == 1) {
4121 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4122 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004123 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4124 Ops, 2, MVT::i32,
4125 LDBase->getMemOperand());
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004126 return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004127 }
4128 return SDValue();
4129}
4130
Evan Chengc3630942009-12-09 21:00:30 +00004131SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004132X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004133 DebugLoc dl = Op.getDebugLoc();
Chris Lattner6e80e442010-08-28 17:15:43 +00004134 // All zero's are handled with pxor in SSE2 and above, xorps in SSE1.
4135 // All one's are handled with pcmpeqd. In AVX, zero's are handled with
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004136 // vpxor in 128-bit and xor{pd,ps} in 256-bit, but no 256 version of pcmpeqd
4137 // is present, so AllOnes is ignored.
4138 if (ISD::isBuildVectorAllZeros(Op.getNode()) ||
4139 (Op.getValueType().getSizeInBits() != 256 &&
4140 ISD::isBuildVectorAllOnes(Op.getNode()))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004141 // Canonicalize this to <4 x i32> (SSE) to
Chris Lattner8a594482007-11-25 00:24:49 +00004142 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
4143 // eliminated on x86-32 hosts.
Dale Johannesen0488fb62010-09-30 23:57:10 +00004144 if (Op.getValueType() == MVT::v4i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004145 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004146
Gabor Greifba36cb52008-08-28 21:40:38 +00004147 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004148 return getOnesVector(Op.getValueType(), DAG, dl);
4149 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004150 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004151
Owen Andersone50ed302009-08-10 22:56:29 +00004152 EVT VT = Op.getValueType();
4153 EVT ExtVT = VT.getVectorElementType();
4154 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004155
4156 unsigned NumElems = Op.getNumOperands();
4157 unsigned NumZero = 0;
4158 unsigned NumNonZero = 0;
4159 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004160 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004161 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004162 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004163 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004164 if (Elt.getOpcode() == ISD::UNDEF)
4165 continue;
4166 Values.insert(Elt);
4167 if (Elt.getOpcode() != ISD::Constant &&
4168 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004169 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004170 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004171 NumZero++;
4172 else {
4173 NonZeros |= (1 << i);
4174 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004175 }
4176 }
4177
Chris Lattner97a2a562010-08-26 05:24:29 +00004178 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4179 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004180 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004181
Chris Lattner67f453a2008-03-09 05:42:06 +00004182 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004183 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004184 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004185 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004186
Chris Lattner62098042008-03-09 01:05:04 +00004187 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4188 // the value are obviously zero, truncate the value to i32 and do the
4189 // insertion that way. Only do this if the value is non-constant or if the
4190 // value is a constant being inserted into element 0. It is cheaper to do
4191 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004192 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004193 (!IsAllConstants || Idx == 0)) {
4194 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004195 // Handle SSE only.
4196 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4197 EVT VecVT = MVT::v4i32;
4198 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004199
Chris Lattner62098042008-03-09 01:05:04 +00004200 // Truncate the value (which may itself be a constant) to i32, and
4201 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004202 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004203 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004204 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4205 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004206
Chris Lattner62098042008-03-09 01:05:04 +00004207 // Now we have our 32-bit value zero extended in the low element of
4208 // a vector. If Idx != 0, swizzle it into place.
4209 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004210 SmallVector<int, 4> Mask;
4211 Mask.push_back(Idx);
4212 for (unsigned i = 1; i != VecElts; ++i)
4213 Mask.push_back(i);
4214 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004215 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004216 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004217 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004218 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004219 }
4220 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004221
Chris Lattner19f79692008-03-08 22:59:52 +00004222 // If we have a constant or non-constant insertion into the low element of
4223 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4224 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004225 // depending on what the source datatype is.
4226 if (Idx == 0) {
4227 if (NumZero == 0) {
4228 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004229 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4230 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004231 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4232 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4233 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4234 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004235 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4236 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004237 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4238 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004239 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4240 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4241 Subtarget->hasSSE2(), DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004242 return DAG.getNode(ISD::BITCAST, dl, VT, Item);
Eli Friedman10415532009-06-06 06:05:10 +00004243 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004244 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004245
4246 // Is it a vector logical left shift?
4247 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004248 X86::isZeroNode(Op.getOperand(0)) &&
4249 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004250 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004251 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004252 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004253 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004254 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004255 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004256
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004257 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004258 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004259
Chris Lattner19f79692008-03-08 22:59:52 +00004260 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4261 // is a non-constant being inserted into an element other than the low one,
4262 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4263 // movd/movss) to move this into the low element, then shuffle it into
4264 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004265 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004266 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004267
Evan Cheng0db9fe62006-04-25 20:13:52 +00004268 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004269 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4270 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004271 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004272 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004273 MaskVec.push_back(i == Idx ? 0 : 1);
4274 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004275 }
4276 }
4277
Chris Lattner67f453a2008-03-09 05:42:06 +00004278 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004279 if (Values.size() == 1) {
4280 if (EVTBits == 32) {
4281 // Instead of a shuffle like this:
4282 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4283 // Check if it's possible to issue this instead.
4284 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4285 unsigned Idx = CountTrailingZeros_32(NonZeros);
4286 SDValue Item = Op.getOperand(Idx);
4287 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4288 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4289 }
Dan Gohman475871a2008-07-27 21:46:04 +00004290 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004291 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004292
Dan Gohmana3941172007-07-24 22:55:08 +00004293 // A vector full of immediates; various special cases are already
4294 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004295 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004296 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004297
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004298 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004299 if (EVTBits == 64) {
4300 if (NumNonZero == 1) {
4301 // One half is zero or undef.
4302 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004303 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004304 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004305 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4306 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004307 }
Dan Gohman475871a2008-07-27 21:46:04 +00004308 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004309 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004310
4311 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004312 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004313 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004314 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004315 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004316 }
4317
Bill Wendling826f36f2007-03-28 00:57:11 +00004318 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004319 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004320 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004321 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004322 }
4323
4324 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004325 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004326 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004327 if (NumElems == 4 && NumZero > 0) {
4328 for (unsigned i = 0; i < 4; ++i) {
4329 bool isZero = !(NonZeros & (1 << i));
4330 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004331 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004332 else
Dale Johannesenace16102009-02-03 19:33:06 +00004333 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004334 }
4335
4336 for (unsigned i = 0; i < 2; ++i) {
4337 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4338 default: break;
4339 case 0:
4340 V[i] = V[i*2]; // Must be a zero vector.
4341 break;
4342 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004343 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004344 break;
4345 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004346 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004347 break;
4348 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004349 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004350 break;
4351 }
4352 }
4353
Nate Begeman9008ca62009-04-27 18:41:29 +00004354 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004355 bool Reverse = (NonZeros & 0x3) == 2;
4356 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004357 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004358 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4359 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004360 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4361 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004362 }
4363
Nate Begemanfdea31a2010-03-24 20:49:50 +00004364 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4365 // Check for a build vector of consecutive loads.
4366 for (unsigned i = 0; i < NumElems; ++i)
4367 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004368
Nate Begemanfdea31a2010-03-24 20:49:50 +00004369 // Check for elements which are consecutive loads.
4370 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4371 if (LD.getNode())
4372 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004373
4374 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004375 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004376 SDValue Result;
4377 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4378 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4379 else
4380 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004381
Chris Lattner24faf612010-08-28 17:59:08 +00004382 for (unsigned i = 1; i < NumElems; ++i) {
4383 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4384 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004385 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004386 }
4387 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004388 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004389
Chris Lattner6e80e442010-08-28 17:15:43 +00004390 // Otherwise, expand into a number of unpckl*, start by extending each of
4391 // our (non-undef) elements to the full vector width with the element in the
4392 // bottom slot of the vector (which generates no code for SSE).
4393 for (unsigned i = 0; i < NumElems; ++i) {
4394 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4395 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4396 else
4397 V[i] = DAG.getUNDEF(VT);
4398 }
4399
4400 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004401 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4402 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4403 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00004404 unsigned EltStride = NumElems >> 1;
4405 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00004406 for (unsigned i = 0; i < EltStride; ++i) {
4407 // If V[i+EltStride] is undef and this is the first round of mixing,
4408 // then it is safe to just drop this shuffle: V[i] is already in the
4409 // right place, the one element (since it's the first round) being
4410 // inserted as undef can be dropped. This isn't safe for successive
4411 // rounds because they will permute elements within both vectors.
4412 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
4413 EltStride == NumElems/2)
4414 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004415
Chris Lattner6e80e442010-08-28 17:15:43 +00004416 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00004417 }
Chris Lattner6e80e442010-08-28 17:15:43 +00004418 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004419 }
4420 return V[0];
4421 }
Dan Gohman475871a2008-07-27 21:46:04 +00004422 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004423}
4424
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004425SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004426X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004427 // We support concatenate two MMX registers and place them in a MMX
4428 // register. This is better than doing a stack convert.
4429 DebugLoc dl = Op.getDebugLoc();
4430 EVT ResVT = Op.getValueType();
4431 assert(Op.getNumOperands() == 2);
4432 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
4433 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
4434 int Mask[2];
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004435 SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004436 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4437 InVec = Op.getOperand(1);
4438 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4439 unsigned NumElts = ResVT.getVectorNumElements();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004440 VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004441 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
4442 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
4443 } else {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004444 InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004445 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4446 Mask[0] = 0; Mask[1] = 2;
4447 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
4448 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004449 return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004450}
4451
Nate Begemanb9a47b82009-02-23 08:49:38 +00004452// v8i16 shuffles - Prefer shuffles in the following order:
4453// 1. [all] pshuflw, pshufhw, optional move
4454// 2. [ssse3] 1 x pshufb
4455// 3. [ssse3] 2 x pshufb + 1 x por
4456// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004457SDValue
4458X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
4459 SelectionDAG &DAG) const {
4460 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00004461 SDValue V1 = SVOp->getOperand(0);
4462 SDValue V2 = SVOp->getOperand(1);
4463 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004464 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00004465
Nate Begemanb9a47b82009-02-23 08:49:38 +00004466 // Determine if more than 1 of the words in each of the low and high quadwords
4467 // of the result come from the same quadword of one of the two inputs. Undef
4468 // mask values count as coming from any quadword, for better codegen.
4469 SmallVector<unsigned, 4> LoQuad(4);
4470 SmallVector<unsigned, 4> HiQuad(4);
4471 BitVector InputQuads(4);
4472 for (unsigned i = 0; i < 8; ++i) {
4473 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00004474 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004475 MaskVals.push_back(EltIdx);
4476 if (EltIdx < 0) {
4477 ++Quad[0];
4478 ++Quad[1];
4479 ++Quad[2];
4480 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00004481 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004482 }
4483 ++Quad[EltIdx / 4];
4484 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00004485 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004486
Nate Begemanb9a47b82009-02-23 08:49:38 +00004487 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004488 unsigned MaxQuad = 1;
4489 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004490 if (LoQuad[i] > MaxQuad) {
4491 BestLoQuad = i;
4492 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004493 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004494 }
4495
Nate Begemanb9a47b82009-02-23 08:49:38 +00004496 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004497 MaxQuad = 1;
4498 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004499 if (HiQuad[i] > MaxQuad) {
4500 BestHiQuad = i;
4501 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004502 }
4503 }
4504
Nate Begemanb9a47b82009-02-23 08:49:38 +00004505 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00004506 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00004507 // single pshufb instruction is necessary. If There are more than 2 input
4508 // quads, disable the next transformation since it does not help SSSE3.
4509 bool V1Used = InputQuads[0] || InputQuads[1];
4510 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004511 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004512 if (InputQuads.count() == 2 && V1Used && V2Used) {
4513 BestLoQuad = InputQuads.find_first();
4514 BestHiQuad = InputQuads.find_next(BestLoQuad);
4515 }
4516 if (InputQuads.count() > 2) {
4517 BestLoQuad = -1;
4518 BestHiQuad = -1;
4519 }
4520 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004521
Nate Begemanb9a47b82009-02-23 08:49:38 +00004522 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
4523 // the shuffle mask. If a quad is scored as -1, that means that it contains
4524 // words from all 4 input quadwords.
4525 SDValue NewV;
4526 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004527 SmallVector<int, 8> MaskV;
4528 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
4529 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00004530 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004531 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
4532 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
4533 NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004534
Nate Begemanb9a47b82009-02-23 08:49:38 +00004535 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
4536 // source words for the shuffle, to aid later transformations.
4537 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00004538 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00004539 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004540 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00004541 if (idx != (int)i)
4542 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004543 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00004544 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004545 AllWordsInNewV = false;
4546 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00004547 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004548
Nate Begemanb9a47b82009-02-23 08:49:38 +00004549 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
4550 if (AllWordsInNewV) {
4551 for (int i = 0; i != 8; ++i) {
4552 int idx = MaskVals[i];
4553 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004554 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004555 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004556 if ((idx != i) && idx < 4)
4557 pshufhw = false;
4558 if ((idx != i) && idx > 3)
4559 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00004560 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00004561 V1 = NewV;
4562 V2Used = false;
4563 BestLoQuad = 0;
4564 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004565 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004566
Nate Begemanb9a47b82009-02-23 08:49:38 +00004567 // If we've eliminated the use of V2, and the new mask is a pshuflw or
4568 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00004569 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004570 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
4571 unsigned TargetMask = 0;
4572 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00004573 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004574 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
4575 X86::getShufflePSHUFLWImmediate(NewV.getNode());
4576 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004577 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00004578 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004579 }
Eric Christopherfd179292009-08-27 18:07:15 +00004580
Nate Begemanb9a47b82009-02-23 08:49:38 +00004581 // If we have SSSE3, and all words of the result are from 1 input vector,
4582 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
4583 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004584 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004585 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004586
Nate Begemanb9a47b82009-02-23 08:49:38 +00004587 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00004588 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00004589 // mask, and elements that come from V1 in the V2 mask, so that the two
4590 // results can be OR'd together.
4591 bool TwoInputs = V1Used && V2Used;
4592 for (unsigned i = 0; i != 8; ++i) {
4593 int EltIdx = MaskVals[i] * 2;
4594 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004595 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4596 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004597 continue;
4598 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004599 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
4600 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004601 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004602 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004603 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004604 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004605 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004606 if (!TwoInputs)
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004607 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004608
Nate Begemanb9a47b82009-02-23 08:49:38 +00004609 // Calculate the shuffle mask for the second input, shuffle it, and
4610 // OR it with the first shuffled input.
4611 pshufbMask.clear();
4612 for (unsigned i = 0; i != 8; ++i) {
4613 int EltIdx = MaskVals[i] * 2;
4614 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004615 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4616 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004617 continue;
4618 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004619 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
4620 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004621 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004622 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00004623 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004624 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004625 MVT::v16i8, &pshufbMask[0], 16));
4626 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004627 return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004628 }
4629
4630 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
4631 // and update MaskVals with new element order.
4632 BitVector InOrder(8);
4633 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004634 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004635 for (int i = 0; i != 4; ++i) {
4636 int idx = MaskVals[i];
4637 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004638 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004639 InOrder.set(i);
4640 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004641 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004642 InOrder.set(i);
4643 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004644 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004645 }
4646 }
4647 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004648 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00004649 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004650 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004651
4652 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4653 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
4654 NewV.getOperand(0),
4655 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
4656 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004657 }
Eric Christopherfd179292009-08-27 18:07:15 +00004658
Nate Begemanb9a47b82009-02-23 08:49:38 +00004659 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
4660 // and update MaskVals with the new element order.
4661 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004662 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004663 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004664 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004665 for (unsigned i = 4; i != 8; ++i) {
4666 int idx = MaskVals[i];
4667 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004668 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004669 InOrder.set(i);
4670 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004671 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004672 InOrder.set(i);
4673 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004674 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004675 }
4676 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004677 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004678 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004679
4680 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4681 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
4682 NewV.getOperand(0),
4683 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
4684 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004685 }
Eric Christopherfd179292009-08-27 18:07:15 +00004686
Nate Begemanb9a47b82009-02-23 08:49:38 +00004687 // In case BestHi & BestLo were both -1, which means each quadword has a word
4688 // from each of the four input quadwords, calculate the InOrder bitvector now
4689 // before falling through to the insert/extract cleanup.
4690 if (BestLoQuad == -1 && BestHiQuad == -1) {
4691 NewV = V1;
4692 for (int i = 0; i != 8; ++i)
4693 if (MaskVals[i] < 0 || MaskVals[i] == i)
4694 InOrder.set(i);
4695 }
Eric Christopherfd179292009-08-27 18:07:15 +00004696
Nate Begemanb9a47b82009-02-23 08:49:38 +00004697 // The other elements are put in the right place using pextrw and pinsrw.
4698 for (unsigned i = 0; i != 8; ++i) {
4699 if (InOrder[i])
4700 continue;
4701 int EltIdx = MaskVals[i];
4702 if (EltIdx < 0)
4703 continue;
4704 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004705 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004706 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00004707 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004708 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00004709 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004710 DAG.getIntPtrConstant(i));
4711 }
4712 return NewV;
4713}
4714
4715// v16i8 shuffles - Prefer shuffles in the following order:
4716// 1. [ssse3] 1 x pshufb
4717// 2. [ssse3] 2 x pshufb + 1 x por
4718// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
4719static
Nate Begeman9008ca62009-04-27 18:41:29 +00004720SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00004721 SelectionDAG &DAG,
4722 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004723 SDValue V1 = SVOp->getOperand(0);
4724 SDValue V2 = SVOp->getOperand(1);
4725 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004726 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00004727 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00004728
Nate Begemanb9a47b82009-02-23 08:49:38 +00004729 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00004730 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00004731 // present, fall back to case 3.
4732 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
4733 bool V1Only = true;
4734 bool V2Only = true;
4735 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004736 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00004737 if (EltIdx < 0)
4738 continue;
4739 if (EltIdx < 16)
4740 V2Only = false;
4741 else
4742 V1Only = false;
4743 }
Eric Christopherfd179292009-08-27 18:07:15 +00004744
Nate Begemanb9a47b82009-02-23 08:49:38 +00004745 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
4746 if (TLI.getSubtarget()->hasSSSE3()) {
4747 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004748
Nate Begemanb9a47b82009-02-23 08:49:38 +00004749 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00004750 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004751 //
4752 // Otherwise, we have elements from both input vectors, and must zero out
4753 // elements that come from V2 in the first mask, and V1 in the second mask
4754 // so that we can OR them together.
4755 bool TwoInputs = !(V1Only || V2Only);
4756 for (unsigned i = 0; i != 16; ++i) {
4757 int EltIdx = MaskVals[i];
4758 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004759 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004760 continue;
4761 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004762 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004763 }
4764 // If all the elements are from V2, assign it to V1 and return after
4765 // building the first pshufb.
4766 if (V2Only)
4767 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00004768 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004769 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004770 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004771 if (!TwoInputs)
4772 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00004773
Nate Begemanb9a47b82009-02-23 08:49:38 +00004774 // Calculate the shuffle mask for the second input, shuffle it, and
4775 // OR it with the first shuffled input.
4776 pshufbMask.clear();
4777 for (unsigned i = 0; i != 16; ++i) {
4778 int EltIdx = MaskVals[i];
4779 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004780 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004781 continue;
4782 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004783 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004784 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004785 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004786 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004787 MVT::v16i8, &pshufbMask[0], 16));
4788 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004789 }
Eric Christopherfd179292009-08-27 18:07:15 +00004790
Nate Begemanb9a47b82009-02-23 08:49:38 +00004791 // No SSSE3 - Calculate in place words and then fix all out of place words
4792 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
4793 // the 16 different words that comprise the two doublequadword input vectors.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004794 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
4795 V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004796 SDValue NewV = V2Only ? V2 : V1;
4797 for (int i = 0; i != 8; ++i) {
4798 int Elt0 = MaskVals[i*2];
4799 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00004800
Nate Begemanb9a47b82009-02-23 08:49:38 +00004801 // This word of the result is all undef, skip it.
4802 if (Elt0 < 0 && Elt1 < 0)
4803 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004804
Nate Begemanb9a47b82009-02-23 08:49:38 +00004805 // This word of the result is already in the correct place, skip it.
4806 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
4807 continue;
4808 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
4809 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004810
Nate Begemanb9a47b82009-02-23 08:49:38 +00004811 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
4812 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
4813 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00004814
4815 // If Elt0 and Elt1 are defined, are consecutive, and can be load
4816 // using a single extract together, load it and store it.
4817 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004818 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004819 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00004820 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004821 DAG.getIntPtrConstant(i));
4822 continue;
4823 }
4824
Nate Begemanb9a47b82009-02-23 08:49:38 +00004825 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00004826 // source byte is not also odd, shift the extracted word left 8 bits
4827 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004828 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004829 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004830 DAG.getIntPtrConstant(Elt1 / 2));
4831 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004832 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004833 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004834 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004835 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
4836 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004837 }
4838 // If Elt0 is defined, extract it from the appropriate source. If the
4839 // source byte is not also even, shift the extracted word right 8 bits. If
4840 // Elt1 was also defined, OR the extracted values together before
4841 // inserting them in the result.
4842 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004843 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004844 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
4845 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004846 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004847 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004848 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004849 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
4850 DAG.getConstant(0x00FF, MVT::i16));
4851 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00004852 : InsElt0;
4853 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004854 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004855 DAG.getIntPtrConstant(i));
4856 }
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004857 return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004858}
4859
Evan Cheng7a831ce2007-12-15 03:00:47 +00004860/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004861/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00004862/// done when every pair / quad of shuffle mask elements point to elements in
4863/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004864/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00004865static
Nate Begeman9008ca62009-04-27 18:41:29 +00004866SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00004867 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00004868 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00004869 SDValue V1 = SVOp->getOperand(0);
4870 SDValue V2 = SVOp->getOperand(1);
4871 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00004872 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004873 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00004874 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004875 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00004876 case MVT::v4f32: NewVT = MVT::v2f64; break;
4877 case MVT::v4i32: NewVT = MVT::v2i64; break;
4878 case MVT::v8i16: NewVT = MVT::v4i32; break;
4879 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00004880 }
4881
Nate Begeman9008ca62009-04-27 18:41:29 +00004882 int Scale = NumElems / NewWidth;
4883 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00004884 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004885 int StartIdx = -1;
4886 for (int j = 0; j < Scale; ++j) {
4887 int EltIdx = SVOp->getMaskElt(i+j);
4888 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004889 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00004890 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00004891 StartIdx = EltIdx - (EltIdx % Scale);
4892 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00004893 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00004894 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004895 if (StartIdx == -1)
4896 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00004897 else
Nate Begeman9008ca62009-04-27 18:41:29 +00004898 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004899 }
4900
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004901 V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
4902 V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00004903 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004904}
4905
Evan Chengd880b972008-05-09 21:53:03 +00004906/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004907///
Owen Andersone50ed302009-08-10 22:56:29 +00004908static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00004909 SDValue SrcOp, SelectionDAG &DAG,
4910 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004911 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004912 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00004913 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00004914 LD = dyn_cast<LoadSDNode>(SrcOp);
4915 if (!LD) {
4916 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
4917 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00004918 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00004919 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00004920 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004921 SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00004922 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004923 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00004924 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004925 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004926 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
4927 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
4928 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00004929 SrcOp.getOperand(0)
4930 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004931 }
4932 }
4933 }
4934
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004935 return DAG.getNode(ISD::BITCAST, dl, VT,
Dale Johannesenace16102009-02-03 19:33:06 +00004936 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00004937 DAG.getNode(ISD::BITCAST, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00004938 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004939}
4940
Evan Chengace3c172008-07-22 21:13:36 +00004941/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
4942/// shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004943static SDValue
Nate Begeman9008ca62009-04-27 18:41:29 +00004944LowerVECTOR_SHUFFLE_4wide(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
4945 SDValue V1 = SVOp->getOperand(0);
4946 SDValue V2 = SVOp->getOperand(1);
4947 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00004948 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00004949
Evan Chengace3c172008-07-22 21:13:36 +00004950 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00004951 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00004952 SmallVector<int, 8> Mask1(4U, -1);
4953 SmallVector<int, 8> PermMask;
4954 SVOp->getMask(PermMask);
4955
Evan Chengace3c172008-07-22 21:13:36 +00004956 unsigned NumHi = 0;
4957 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00004958 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004959 int Idx = PermMask[i];
4960 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00004961 Locs[i] = std::make_pair(-1, -1);
4962 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004963 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
4964 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00004965 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00004966 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004967 NumLo++;
4968 } else {
4969 Locs[i] = std::make_pair(1, NumHi);
4970 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00004971 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004972 NumHi++;
4973 }
4974 }
4975 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004976
Evan Chengace3c172008-07-22 21:13:36 +00004977 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004978 // If no more than two elements come from either vector. This can be
4979 // implemented with two shuffles. First shuffle gather the elements.
4980 // The second shuffle, which takes the first shuffle as both of its
4981 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00004982 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004983
Nate Begeman9008ca62009-04-27 18:41:29 +00004984 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00004985
Evan Chengace3c172008-07-22 21:13:36 +00004986 for (unsigned i = 0; i != 4; ++i) {
4987 if (Locs[i].first == -1)
4988 continue;
4989 else {
4990 unsigned Idx = (i < 2) ? 0 : 4;
4991 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00004992 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004993 }
4994 }
4995
Nate Begeman9008ca62009-04-27 18:41:29 +00004996 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004997 } else if (NumLo == 3 || NumHi == 3) {
4998 // Otherwise, we must have three elements from one vector, call it X, and
4999 // one element from the other, call it Y. First, use a shufps to build an
5000 // intermediate vector with the one element from Y and the element from X
5001 // that will be in the same half in the final destination (the indexes don't
5002 // matter). Then, use a shufps to build the final vector, taking the half
5003 // containing the element from Y from the intermediate, and the other half
5004 // from X.
5005 if (NumHi == 3) {
5006 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00005007 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005008 std::swap(V1, V2);
5009 }
5010
5011 // Find the element from V2.
5012 unsigned HiIndex;
5013 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005014 int Val = PermMask[HiIndex];
5015 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005016 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005017 if (Val >= 4)
5018 break;
5019 }
5020
Nate Begeman9008ca62009-04-27 18:41:29 +00005021 Mask1[0] = PermMask[HiIndex];
5022 Mask1[1] = -1;
5023 Mask1[2] = PermMask[HiIndex^1];
5024 Mask1[3] = -1;
5025 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005026
5027 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005028 Mask1[0] = PermMask[0];
5029 Mask1[1] = PermMask[1];
5030 Mask1[2] = HiIndex & 1 ? 6 : 4;
5031 Mask1[3] = HiIndex & 1 ? 4 : 6;
5032 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005033 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005034 Mask1[0] = HiIndex & 1 ? 2 : 0;
5035 Mask1[1] = HiIndex & 1 ? 0 : 2;
5036 Mask1[2] = PermMask[2];
5037 Mask1[3] = PermMask[3];
5038 if (Mask1[2] >= 0)
5039 Mask1[2] += 4;
5040 if (Mask1[3] >= 0)
5041 Mask1[3] += 4;
5042 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005043 }
Evan Chengace3c172008-07-22 21:13:36 +00005044 }
5045
5046 // Break it into (shuffle shuffle_hi, shuffle_lo).
5047 Locs.clear();
Nate Begeman9008ca62009-04-27 18:41:29 +00005048 SmallVector<int,8> LoMask(4U, -1);
5049 SmallVector<int,8> HiMask(4U, -1);
5050
5051 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005052 unsigned MaskIdx = 0;
5053 unsigned LoIdx = 0;
5054 unsigned HiIdx = 2;
5055 for (unsigned i = 0; i != 4; ++i) {
5056 if (i == 2) {
5057 MaskPtr = &HiMask;
5058 MaskIdx = 1;
5059 LoIdx = 0;
5060 HiIdx = 2;
5061 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005062 int Idx = PermMask[i];
5063 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005064 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005065 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005066 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005067 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005068 LoIdx++;
5069 } else {
5070 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005071 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005072 HiIdx++;
5073 }
5074 }
5075
Nate Begeman9008ca62009-04-27 18:41:29 +00005076 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5077 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5078 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005079 for (unsigned i = 0; i != 4; ++i) {
5080 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005081 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005082 } else {
5083 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005084 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005085 }
5086 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005087 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005088}
5089
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005090static bool MayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005091 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005092 V = V.getOperand(0);
5093 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5094 V = V.getOperand(0);
5095 if (MayFoldLoad(V))
5096 return true;
5097 return false;
5098}
5099
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005100// FIXME: the version above should always be used. Since there's
5101// a bug where several vector shuffles can't be folded because the
5102// DAG is not updated during lowering and a node claims to have two
5103// uses while it only has one, use this version, and let isel match
5104// another instruction if the load really happens to have more than
5105// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005106// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005107static bool RelaxedMayFoldVectorLoad(SDValue V) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005108 if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005109 V = V.getOperand(0);
5110 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5111 V = V.getOperand(0);
5112 if (ISD::isNormalLoad(V.getNode()))
5113 return true;
5114 return false;
5115}
5116
5117/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5118/// a vector extract, and if both can be later optimized into a single load.
5119/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5120/// here because otherwise a target specific shuffle node is going to be
5121/// emitted for this shuffle, and the optimization not done.
5122/// FIXME: This is probably not the best approach, but fix the problem
5123/// until the right path is decided.
5124static
5125bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5126 const TargetLowering &TLI) {
5127 EVT VT = V.getValueType();
5128 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5129
5130 // Be sure that the vector shuffle is present in a pattern like this:
5131 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5132 if (!V.hasOneUse())
5133 return false;
5134
5135 SDNode *N = *V.getNode()->use_begin();
5136 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5137 return false;
5138
5139 SDValue EltNo = N->getOperand(1);
5140 if (!isa<ConstantSDNode>(EltNo))
5141 return false;
5142
5143 // If the bit convert changed the number of elements, it is unsafe
5144 // to examine the mask.
5145 bool HasShuffleIntoBitcast = false;
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005146 if (V.getOpcode() == ISD::BITCAST) {
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005147 EVT SrcVT = V.getOperand(0).getValueType();
5148 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5149 return false;
5150 V = V.getOperand(0);
5151 HasShuffleIntoBitcast = true;
5152 }
5153
5154 // Select the input vector, guarding against out of range extract vector.
5155 unsigned NumElems = VT.getVectorNumElements();
5156 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5157 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5158 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5159
5160 // Skip one more bit_convert if necessary
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005161 if (V.getOpcode() == ISD::BITCAST)
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005162 V = V.getOperand(0);
5163
5164 if (ISD::isNormalLoad(V.getNode())) {
5165 // Is the original load suitable?
5166 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5167
5168 // FIXME: avoid the multi-use bug that is preventing lots of
5169 // of foldings to be detected, this is still wrong of course, but
5170 // give the temporary desired behavior, and if it happens that
5171 // the load has real more uses, during isel it will not fold, and
5172 // will generate poor code.
5173 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5174 return false;
5175
5176 if (!HasShuffleIntoBitcast)
5177 return true;
5178
5179 // If there's a bitcast before the shuffle, check if the load type and
5180 // alignment is valid.
5181 unsigned Align = LN0->getAlignment();
5182 unsigned NewAlign =
5183 TLI.getTargetData()->getABITypeAlignment(
5184 VT.getTypeForEVT(*DAG.getContext()));
5185
5186 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5187 return false;
5188 }
5189
5190 return true;
5191}
5192
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005193static
Evan Cheng835580f2010-10-07 20:50:20 +00005194SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5195 EVT VT = Op.getValueType();
5196
5197 // Canonizalize to v2f64.
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005198 V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
5199 return DAG.getNode(ISD::BITCAST, dl, VT,
Evan Cheng835580f2010-10-07 20:50:20 +00005200 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5201 V1, DAG));
5202}
5203
5204static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005205SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5206 bool HasSSE2) {
5207 SDValue V1 = Op.getOperand(0);
5208 SDValue V2 = Op.getOperand(1);
5209 EVT VT = Op.getValueType();
5210
5211 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5212
5213 if (HasSSE2 && VT == MVT::v2f64)
5214 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5215
5216 // v4f32 or v4i32
5217 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5218}
5219
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005220static
5221SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5222 SDValue V1 = Op.getOperand(0);
5223 SDValue V2 = Op.getOperand(1);
5224 EVT VT = Op.getValueType();
5225
5226 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5227 "unsupported shuffle type");
5228
5229 if (V2.getOpcode() == ISD::UNDEF)
5230 V2 = V1;
5231
5232 // v4i32 or v4f32
5233 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5234}
5235
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005236static
5237SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5238 SDValue V1 = Op.getOperand(0);
5239 SDValue V2 = Op.getOperand(1);
5240 EVT VT = Op.getValueType();
5241 unsigned NumElems = VT.getVectorNumElements();
5242
5243 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5244 // operand of these instructions is only memory, so check if there's a
5245 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5246 // same masks.
5247 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005248
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005249 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005250 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005251 CanFoldLoad = true;
5252
5253 // When V1 is a load, it can be folded later into a store in isel, example:
5254 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5255 // turns into:
5256 // (MOVLPSmr addr:$src1, VR128:$src2)
5257 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005258 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005259 CanFoldLoad = true;
5260
5261 if (CanFoldLoad) {
5262 if (HasSSE2 && NumElems == 2)
5263 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5264
5265 if (NumElems == 4)
5266 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5267 }
5268
5269 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5270 // movl and movlp will both match v2i64, but v2i64 is never matched by
5271 // movl earlier because we make it strict to avoid messing with the movlp load
5272 // folding logic (see the code above getMOVLP call). Match it here then,
5273 // this is horrible, but will stay like this until we move all shuffle
5274 // matching to x86 specific nodes. Note that for the 1st condition all
5275 // types are matched with movsd.
5276 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5277 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5278 else if (HasSSE2)
5279 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5280
5281
5282 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5283
5284 // Invert the operand order and use SHUFPS to match it.
5285 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5286 X86::getShuffleSHUFImmediate(SVOp), DAG);
5287}
5288
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005289static inline unsigned getUNPCKLOpcode(EVT VT) {
5290 switch(VT.getSimpleVT().SimpleTy) {
5291 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5292 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
5293 case MVT::v4f32: return X86ISD::UNPCKLPS;
5294 case MVT::v2f64: return X86ISD::UNPCKLPD;
5295 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5296 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5297 default:
5298 llvm_unreachable("Unknow type for unpckl");
5299 }
5300 return 0;
5301}
5302
5303static inline unsigned getUNPCKHOpcode(EVT VT) {
5304 switch(VT.getSimpleVT().SimpleTy) {
5305 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5306 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5307 case MVT::v4f32: return X86ISD::UNPCKHPS;
5308 case MVT::v2f64: return X86ISD::UNPCKHPD;
5309 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5310 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5311 default:
5312 llvm_unreachable("Unknow type for unpckh");
5313 }
5314 return 0;
5315}
5316
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005317static
5318SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005319 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005320 const X86Subtarget *Subtarget) {
5321 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5322 EVT VT = Op.getValueType();
5323 DebugLoc dl = Op.getDebugLoc();
5324 SDValue V1 = Op.getOperand(0);
5325 SDValue V2 = Op.getOperand(1);
5326
5327 if (isZeroShuffle(SVOp))
5328 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
5329
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005330 // Handle splat operations
5331 if (SVOp->isSplat()) {
5332 // Special case, this is the only place now where it's
5333 // allowed to return a vector_shuffle operation without
5334 // using a target specific node, because *hopefully* it
5335 // will be optimized away by the dag combiner.
5336 if (VT.getVectorNumElements() <= 4 &&
5337 CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
5338 return Op;
5339
5340 // Handle splats by matching through known masks
5341 if (VT.getVectorNumElements() <= 4)
5342 return SDValue();
5343
Evan Cheng835580f2010-10-07 20:50:20 +00005344 // Canonicalize all of the remaining to v4f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005345 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005346 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005347
5348 // If the shuffle can be profitably rewritten as a narrower shuffle, then
5349 // do it!
5350 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
5351 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5352 if (NewOp.getNode())
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005353 return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005354 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
5355 // FIXME: Figure out a cleaner way to do this.
5356 // Try to make use of movq to zero out the top part.
5357 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
5358 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5359 if (NewOp.getNode()) {
5360 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
5361 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
5362 DAG, Subtarget, dl);
5363 }
5364 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
5365 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5366 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
5367 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
5368 DAG, Subtarget, dl);
5369 }
5370 }
5371 return SDValue();
5372}
5373
Dan Gohman475871a2008-07-27 21:46:04 +00005374SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005375X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00005376 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005377 SDValue V1 = Op.getOperand(0);
5378 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005379 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005380 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00005381 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005382 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005383 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
5384 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00005385 bool V1IsSplat = false;
5386 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005387 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005388 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005389 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005390 MachineFunction &MF = DAG.getMachineFunction();
5391 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005392
Dale Johannesen0488fb62010-09-30 23:57:10 +00005393 // Shuffle operations on MMX not supported.
5394 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00005395 return Op;
5396
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005397 // Vector shuffle lowering takes 3 steps:
5398 //
5399 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
5400 // narrowing and commutation of operands should be handled.
5401 // 2) Matching of shuffles with known shuffle masks to x86 target specific
5402 // shuffle nodes.
5403 // 3) Rewriting of unmatched masks into new generic shuffle operations,
5404 // so the shuffle can be broken into other shuffles and the legalizer can
5405 // try the lowering again.
5406 //
5407 // The general ideia is that no vector_shuffle operation should be left to
5408 // be matched during isel, all of them must be converted to a target specific
5409 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00005410
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005411 // Normalize the input vectors. Here splats, zeroed vectors, profitable
5412 // narrowing and commutation of operands should be handled. The actual code
5413 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005414 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005415 if (NewOp.getNode())
5416 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00005417
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005418 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
5419 // unpckh_undef). Only use pshufd if speed is more important than size.
5420 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
5421 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5422 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5423 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
5424 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5425 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00005426
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005427 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00005428 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00005429 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005430
Dale Johannesen0488fb62010-09-30 23:57:10 +00005431 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005432 return getMOVHighToLow(Op, dl, DAG);
5433
5434 // Use to match splats
5435 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
5436 (VT == MVT::v2f64 || VT == MVT::v2i64))
5437 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5438
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005439 if (X86::isPSHUFDMask(SVOp)) {
5440 // The actual implementation will match the mask in the if above and then
5441 // during isel it can match several different instructions, not only pshufd
5442 // as its name says, sad but true, emulate the behavior for now...
5443 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
5444 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
5445
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005446 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5447
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005448 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005449 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
5450
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005451 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005452 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
5453 TargetMask, DAG);
5454
5455 if (VT == MVT::v4f32)
5456 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
5457 TargetMask, DAG);
5458 }
Eric Christopherfd179292009-08-27 18:07:15 +00005459
Evan Chengf26ffe92008-05-29 08:22:04 +00005460 // Check if this can be converted into a logical shift.
5461 bool isLeft = false;
5462 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00005463 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00005464 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00005465 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00005466 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005467 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00005468 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005469 EVT EltVT = VT.getVectorElementType();
5470 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005471 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005472 }
Eric Christopherfd179292009-08-27 18:07:15 +00005473
Nate Begeman9008ca62009-04-27 18:41:29 +00005474 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005475 if (V1IsUndef)
5476 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00005477 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00005478 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00005479 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005480 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005481 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5482
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005483 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005484 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5485 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00005486 }
Eric Christopherfd179292009-08-27 18:07:15 +00005487
Nate Begeman9008ca62009-04-27 18:41:29 +00005488 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00005489 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
5490 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005491
Dale Johannesen0488fb62010-09-30 23:57:10 +00005492 if (X86::isMOVHLPSMask(SVOp))
5493 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005494
Dale Johannesen0488fb62010-09-30 23:57:10 +00005495 if (X86::isMOVSHDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5496 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005497
Dale Johannesen0488fb62010-09-30 23:57:10 +00005498 if (X86::isMOVSLDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5499 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00005500
Dale Johannesen0488fb62010-09-30 23:57:10 +00005501 if (X86::isMOVLPMask(SVOp))
5502 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005503
Nate Begeman9008ca62009-04-27 18:41:29 +00005504 if (ShouldXformToMOVHLPS(SVOp) ||
5505 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
5506 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005507
Evan Chengf26ffe92008-05-29 08:22:04 +00005508 if (isShift) {
5509 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005510 EVT EltVT = VT.getVectorElementType();
5511 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005512 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005513 }
Eric Christopherfd179292009-08-27 18:07:15 +00005514
Evan Cheng9eca5e82006-10-25 21:49:50 +00005515 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00005516 // FIXME: This should also accept a bitcast of a splat? Be careful, not
5517 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00005518 V1IsSplat = isSplatVector(V1.getNode());
5519 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005520
Chris Lattner8a594482007-11-25 00:24:49 +00005521 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00005522 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005523 Op = CommuteVectorShuffle(SVOp, DAG);
5524 SVOp = cast<ShuffleVectorSDNode>(Op);
5525 V1 = SVOp->getOperand(0);
5526 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00005527 std::swap(V1IsSplat, V2IsSplat);
5528 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005529 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00005530 }
5531
Nate Begeman9008ca62009-04-27 18:41:29 +00005532 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
5533 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00005534 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00005535 return V1;
5536 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
5537 // the instruction selector will not match, so get a canonical MOVL with
5538 // swapped operands to undo the commute.
5539 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00005540 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005541
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005542 if (X86::isUNPCKLMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005543 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005544
5545 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005546 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00005547
Evan Cheng9bbbb982006-10-25 20:48:19 +00005548 if (V2IsSplat) {
5549 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00005550 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00005551 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00005552 SDValue NewMask = NormalizeMask(SVOp, DAG);
5553 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
5554 if (NSVOp != SVOp) {
5555 if (X86::isUNPCKLMask(NSVOp, true)) {
5556 return NewMask;
5557 } else if (X86::isUNPCKHMask(NSVOp, true)) {
5558 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005559 }
5560 }
5561 }
5562
Evan Cheng9eca5e82006-10-25 21:49:50 +00005563 if (Commuted) {
5564 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00005565 // FIXME: this seems wrong.
5566 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
5567 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005568
5569 if (X86::isUNPCKLMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005570 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005571
5572 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005573 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005574 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005575
Nate Begeman9008ca62009-04-27 18:41:29 +00005576 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00005577 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00005578 return CommuteVectorShuffle(SVOp, DAG);
5579
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00005580 // The checks below are all present in isShuffleMaskLegal, but they are
5581 // inlined here right now to enable us to directly emit target specific
5582 // nodes, and remove one by one until they don't return Op anymore.
5583 SmallVector<int, 16> M;
5584 SVOp->getMask(M);
5585
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005586 if (isPALIGNRMask(M, VT, HasSSSE3))
5587 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
5588 X86::getShufflePALIGNRImmediate(SVOp),
5589 DAG);
5590
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00005591 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
5592 SVOp->getSplatIndex() == 0 && V2IsUndef) {
5593 if (VT == MVT::v2f64)
5594 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
5595 if (VT == MVT::v2i64)
5596 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
5597 }
5598
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00005599 if (isPSHUFHWMask(M, VT))
5600 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
5601 X86::getShufflePSHUFHWImmediate(SVOp),
5602 DAG);
5603
5604 if (isPSHUFLWMask(M, VT))
5605 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
5606 X86::getShufflePSHUFLWImmediate(SVOp),
5607 DAG);
5608
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00005609 if (isSHUFPMask(M, VT)) {
5610 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5611 if (VT == MVT::v4f32 || VT == MVT::v4i32)
5612 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
5613 TargetMask, DAG);
5614 if (VT == MVT::v2f64 || VT == MVT::v2i64)
5615 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
5616 TargetMask, DAG);
5617 }
5618
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005619 if (X86::isUNPCKL_v_undef_Mask(SVOp))
5620 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5621 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5622 if (X86::isUNPCKH_v_undef_Mask(SVOp))
5623 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5624 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5625
Evan Cheng14b32e12007-12-11 01:46:18 +00005626 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
Owen Anderson825b72b2009-08-11 20:47:22 +00005627 if (VT == MVT::v8i16) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005628 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005629 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00005630 return NewOp;
5631 }
5632
Owen Anderson825b72b2009-08-11 20:47:22 +00005633 if (VT == MVT::v16i8) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005634 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005635 if (NewOp.getNode())
5636 return NewOp;
5637 }
Eric Christopherfd179292009-08-27 18:07:15 +00005638
Dale Johannesen0488fb62010-09-30 23:57:10 +00005639 // Handle all 4 wide cases with a number of shuffles.
5640 if (NumElems == 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005641 return LowerVECTOR_SHUFFLE_4wide(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005642
Dan Gohman475871a2008-07-27 21:46:04 +00005643 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005644}
5645
Dan Gohman475871a2008-07-27 21:46:04 +00005646SDValue
5647X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00005648 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005649 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005650 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005651 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005652 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005653 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005654 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005655 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005656 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005657 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00005658 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
5659 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
5660 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005661 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5662 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005663 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005664 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00005665 Op.getOperand(0)),
5666 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00005667 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005668 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005669 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005670 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005671 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00005672 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00005673 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
5674 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005675 // result has a single use which is a store or a bitcast to i32. And in
5676 // the case of a store, it's not worth it if the index is a constant 0,
5677 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00005678 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00005679 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00005680 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005681 if ((User->getOpcode() != ISD::STORE ||
5682 (isa<ConstantSDNode>(Op.getOperand(1)) &&
5683 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005684 (User->getOpcode() != ISD::BITCAST ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005685 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00005686 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00005687 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005688 DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00005689 Op.getOperand(0)),
5690 Op.getOperand(1));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005691 return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
Owen Anderson825b72b2009-08-11 20:47:22 +00005692 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00005693 // ExtractPS works with constant index.
5694 if (isa<ConstantSDNode>(Op.getOperand(1)))
5695 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005696 }
Dan Gohman475871a2008-07-27 21:46:04 +00005697 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005698}
5699
5700
Dan Gohman475871a2008-07-27 21:46:04 +00005701SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005702X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
5703 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005704 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00005705 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005706
Evan Cheng62a3f152008-03-24 21:52:23 +00005707 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005708 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005709 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00005710 return Res;
5711 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00005712
Owen Andersone50ed302009-08-10 22:56:29 +00005713 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005714 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005715 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005716 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005717 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005718 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005719 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005720 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5721 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005722 DAG.getNode(ISD::BITCAST, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005723 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00005724 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005725 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00005726 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00005727 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005728 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00005729 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005730 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005731 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005732 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005733 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005734 if (Idx == 0)
5735 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00005736
Evan Cheng0db9fe62006-04-25 20:13:52 +00005737 // SHUFPS the element to the lowest double word, then movss.
Nate Begeman9008ca62009-04-27 18:41:29 +00005738 int Mask[4] = { Idx, -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005739 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005740 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005741 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005742 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005743 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00005744 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005745 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
5746 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
5747 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005748 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005749 if (Idx == 0)
5750 return Op;
5751
5752 // UNPCKHPD the element to the lowest double word, then movsd.
5753 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
5754 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00005755 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005756 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005757 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005758 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005759 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005760 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005761 }
5762
Dan Gohman475871a2008-07-27 21:46:04 +00005763 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005764}
5765
Dan Gohman475871a2008-07-27 21:46:04 +00005766SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005767X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
5768 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005769 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005770 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005771 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005772
Dan Gohman475871a2008-07-27 21:46:04 +00005773 SDValue N0 = Op.getOperand(0);
5774 SDValue N1 = Op.getOperand(1);
5775 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00005776
Dan Gohman8a55ce42009-09-23 21:02:20 +00005777 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00005778 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005779 unsigned Opc;
5780 if (VT == MVT::v8i16)
5781 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005782 else if (VT == MVT::v16i8)
5783 Opc = X86ISD::PINSRB;
5784 else
5785 Opc = X86ISD::PINSRB;
5786
Nate Begeman14d12ca2008-02-11 04:19:36 +00005787 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
5788 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005789 if (N1.getValueType() != MVT::i32)
5790 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5791 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005792 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00005793 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005794 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005795 // Bits [7:6] of the constant are the source select. This will always be
5796 // zero here. The DAG Combiner may combine an extract_elt index into these
5797 // bits. For example (insert (extract, 3), 2) could be matched by putting
5798 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00005799 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00005800 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00005801 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00005802 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005803 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00005804 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00005805 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00005806 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005807 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00005808 // PINSR* works with constant index.
5809 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005810 }
Dan Gohman475871a2008-07-27 21:46:04 +00005811 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005812}
5813
Dan Gohman475871a2008-07-27 21:46:04 +00005814SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005815X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005816 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005817 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005818
5819 if (Subtarget->hasSSE41())
5820 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
5821
Dan Gohman8a55ce42009-09-23 21:02:20 +00005822 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00005823 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00005824
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005825 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00005826 SDValue N0 = Op.getOperand(0);
5827 SDValue N1 = Op.getOperand(1);
5828 SDValue N2 = Op.getOperand(2);
Evan Cheng794405e2007-12-12 07:55:34 +00005829
Dan Gohman8a55ce42009-09-23 21:02:20 +00005830 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00005831 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
5832 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005833 if (N1.getValueType() != MVT::i32)
5834 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5835 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005836 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00005837 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005838 }
Dan Gohman475871a2008-07-27 21:46:04 +00005839 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005840}
5841
Dan Gohman475871a2008-07-27 21:46:04 +00005842SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005843X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005844 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005845
Chris Lattnerf172ecd2010-07-04 23:07:25 +00005846 if (Op.getValueType() == MVT::v1i64 &&
5847 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00005848 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00005849
Owen Anderson825b72b2009-08-11 20:47:22 +00005850 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00005851 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
5852 "Expected an SSE type!");
Wesley Peckbf17cfa2010-11-23 03:31:01 +00005853 return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00005854 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005855}
5856
Bill Wendling056292f2008-09-16 21:48:12 +00005857// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
5858// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
5859// one of the above mentioned nodes. It has to be wrapped because otherwise
5860// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
5861// be used to form addressing mode. These wrapped nodes will be selected
5862// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00005863SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005864X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005865 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005866
Chris Lattner41621a22009-06-26 19:22:52 +00005867 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5868 // global base reg.
5869 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00005870 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005871 CodeModel::Model M = getTargetMachine().getCodeModel();
5872
Chris Lattner4f066492009-07-11 20:29:19 +00005873 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005874 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005875 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005876 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005877 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005878 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005879 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005880
Evan Cheng1606e8e2009-03-13 07:51:59 +00005881 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00005882 CP->getAlignment(),
5883 CP->getOffset(), OpFlag);
5884 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00005885 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005886 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00005887 if (OpFlag) {
5888 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005889 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005890 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005891 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005892 }
5893
5894 return Result;
5895}
5896
Dan Gohmand858e902010-04-17 15:26:15 +00005897SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005898 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005899
Chris Lattner18c59872009-06-27 04:16:01 +00005900 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5901 // global base reg.
5902 unsigned char OpFlag = 0;
5903 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005904 CodeModel::Model M = getTargetMachine().getCodeModel();
5905
Chris Lattner4f066492009-07-11 20:29:19 +00005906 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005907 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005908 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005909 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005910 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005911 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005912 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005913
Chris Lattner18c59872009-06-27 04:16:01 +00005914 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
5915 OpFlag);
5916 DebugLoc DL = JT->getDebugLoc();
5917 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005918
Chris Lattner18c59872009-06-27 04:16:01 +00005919 // With PIC, the address is actually $g + Offset.
Chris Lattner1e61e692010-11-15 02:46:57 +00005920 if (OpFlag)
Chris Lattner18c59872009-06-27 04:16:01 +00005921 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5922 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005923 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005924 Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005925
Chris Lattner18c59872009-06-27 04:16:01 +00005926 return Result;
5927}
5928
5929SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005930X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005931 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00005932
Chris Lattner18c59872009-06-27 04:16:01 +00005933 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5934 // global base reg.
5935 unsigned char OpFlag = 0;
5936 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005937 CodeModel::Model M = getTargetMachine().getCodeModel();
5938
Chris Lattner4f066492009-07-11 20:29:19 +00005939 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005940 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005941 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005942 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005943 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005944 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005945 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005946
Chris Lattner18c59872009-06-27 04:16:01 +00005947 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00005948
Chris Lattner18c59872009-06-27 04:16:01 +00005949 DebugLoc DL = Op.getDebugLoc();
5950 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005951
5952
Chris Lattner18c59872009-06-27 04:16:01 +00005953 // With PIC, the address is actually $g + Offset.
5954 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00005955 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00005956 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5957 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005958 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005959 Result);
5960 }
Eric Christopherfd179292009-08-27 18:07:15 +00005961
Chris Lattner18c59872009-06-27 04:16:01 +00005962 return Result;
5963}
5964
Dan Gohman475871a2008-07-27 21:46:04 +00005965SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005966X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00005967 // Create the TargetBlockAddressAddress node.
5968 unsigned char OpFlags =
5969 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00005970 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00005971 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00005972 DebugLoc dl = Op.getDebugLoc();
5973 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
5974 /*isTarget=*/true, OpFlags);
5975
Dan Gohmanf705adb2009-10-30 01:28:02 +00005976 if (Subtarget->isPICStyleRIPRel() &&
5977 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00005978 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
5979 else
5980 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00005981
Dan Gohman29cbade2009-11-20 23:18:13 +00005982 // With PIC, the address is actually $g + Offset.
5983 if (isGlobalRelativeToPICBase(OpFlags)) {
5984 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
5985 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
5986 Result);
5987 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00005988
5989 return Result;
5990}
5991
5992SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00005993X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00005994 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00005995 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00005996 // Create the TargetGlobalAddress node, folding in the constant
5997 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00005998 unsigned char OpFlags =
5999 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006000 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00006001 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006002 if (OpFlags == X86II::MO_NO_FLAG &&
6003 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00006004 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00006005 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00006006 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006007 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00006008 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006009 }
Eric Christopherfd179292009-08-27 18:07:15 +00006010
Chris Lattner4f066492009-07-11 20:29:19 +00006011 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00006012 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00006013 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6014 else
6015 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00006016
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006017 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00006018 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006019 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6020 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00006021 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006022 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006023
Chris Lattner36c25012009-07-10 07:34:39 +00006024 // For globals that require a load from a stub to get the address, emit the
6025 // load.
6026 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00006027 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006028 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006029
Dan Gohman6520e202008-10-18 02:06:02 +00006030 // If there was a non-zero offset that we didn't fold, create an explicit
6031 // addition for it.
6032 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006033 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006034 DAG.getConstant(Offset, getPointerTy()));
6035
Evan Cheng0db9fe62006-04-25 20:13:52 +00006036 return Result;
6037}
6038
Evan Chengda43bcf2008-09-24 00:05:32 +00006039SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006040X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006041 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006042 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006043 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006044}
6045
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006046static SDValue
6047GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006048 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006049 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006050 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Owen Anderson825b72b2009-08-11 20:47:22 +00006051 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006052 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006053 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006054 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006055 GA->getOffset(),
6056 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006057 if (InFlag) {
6058 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006059 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006060 } else {
6061 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006062 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006063 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006064
6065 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006066 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006067
Rafael Espindola15f1b662009-04-24 12:59:40 +00006068 SDValue Flag = Chain.getValue(1);
6069 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006070}
6071
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006072// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006073static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006074LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006075 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006076 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006077 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6078 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006079 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006080 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006081 InFlag = Chain.getValue(1);
6082
Chris Lattnerb903bed2009-06-26 21:20:29 +00006083 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006084}
6085
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006086// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006087static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006088LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006089 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006090 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6091 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006092}
6093
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006094// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6095// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006096static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006097 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006098 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006099 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006100
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006101 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6102 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6103 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006104
Michael J. Spencerec38de22010-10-10 22:04:20 +00006105 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006106 DAG.getIntPtrConstant(0),
6107 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006108
Chris Lattnerb903bed2009-06-26 21:20:29 +00006109 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006110 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6111 // initialexec.
6112 unsigned WrapperKind = X86ISD::Wrapper;
6113 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006114 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006115 } else if (is64Bit) {
6116 assert(model == TLSModel::InitialExec);
6117 OperandFlags = X86II::MO_GOTTPOFF;
6118 WrapperKind = X86ISD::WrapperRIP;
6119 } else {
6120 assert(model == TLSModel::InitialExec);
6121 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006122 }
Eric Christopherfd179292009-08-27 18:07:15 +00006123
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006124 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6125 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006126 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006127 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006128 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006129 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006130
Rafael Espindola9a580232009-02-27 13:37:18 +00006131 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006132 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006133 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006134
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006135 // The address of the thread local variable is the add of the thread
6136 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006137 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006138}
6139
Dan Gohman475871a2008-07-27 21:46:04 +00006140SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006141X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006142
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006143 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006144 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006145
Eric Christopher30ef0e52010-06-03 04:07:48 +00006146 if (Subtarget->isTargetELF()) {
6147 // TODO: implement the "local dynamic" model
6148 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006149
Eric Christopher30ef0e52010-06-03 04:07:48 +00006150 // If GV is an alias then use the aliasee for determining
6151 // thread-localness.
6152 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6153 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006154
6155 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006156 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006157
Eric Christopher30ef0e52010-06-03 04:07:48 +00006158 switch (model) {
6159 case TLSModel::GeneralDynamic:
6160 case TLSModel::LocalDynamic: // not implemented
6161 if (Subtarget->is64Bit())
6162 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6163 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006164
Eric Christopher30ef0e52010-06-03 04:07:48 +00006165 case TLSModel::InitialExec:
6166 case TLSModel::LocalExec:
6167 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6168 Subtarget->is64Bit());
6169 }
6170 } else if (Subtarget->isTargetDarwin()) {
6171 // Darwin only has one model of TLS. Lower to that.
6172 unsigned char OpFlag = 0;
6173 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6174 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006175
Eric Christopher30ef0e52010-06-03 04:07:48 +00006176 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6177 // global base reg.
6178 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6179 !Subtarget->is64Bit();
6180 if (PIC32)
6181 OpFlag = X86II::MO_TLVP_PIC_BASE;
6182 else
6183 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006184 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006185 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopherd8c05362010-12-09 06:25:53 +00006186 GA->getValueType(0),
Eric Christopher30ef0e52010-06-03 04:07:48 +00006187 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00006188 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006189
Eric Christopher30ef0e52010-06-03 04:07:48 +00006190 // With PIC32, the address is actually $g + Offset.
6191 if (PIC32)
6192 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6193 DAG.getNode(X86ISD::GlobalBaseReg,
6194 DebugLoc(), getPointerTy()),
6195 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006196
Eric Christopher30ef0e52010-06-03 04:07:48 +00006197 // Lowering the machine isd will make sure everything is in the right
6198 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00006199 SDValue Chain = DAG.getEntryNode();
6200 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
6201 SDValue Args[] = { Chain, Offset };
6202 Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006203
Eric Christopher30ef0e52010-06-03 04:07:48 +00006204 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
6205 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6206 MFI->setAdjustsStack(true);
Eric Christopher8bce7cc2010-12-09 00:27:58 +00006207
Eric Christopher30ef0e52010-06-03 04:07:48 +00006208 // And our return value (tls address) is in the standard call return value
6209 // location.
Eric Christopherd8c05362010-12-09 06:25:53 +00006210 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
6211 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006212 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006213
Eric Christopher30ef0e52010-06-03 04:07:48 +00006214 assert(false &&
6215 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00006216
Torok Edwinc23197a2009-07-14 16:55:14 +00006217 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00006218 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006219}
6220
Evan Cheng0db9fe62006-04-25 20:13:52 +00006221
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006222/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00006223/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohmand858e902010-04-17 15:26:15 +00006224SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00006225 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00006226 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006227 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006228 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006229 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00006230 SDValue ShOpLo = Op.getOperand(0);
6231 SDValue ShOpHi = Op.getOperand(1);
6232 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00006233 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00006234 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00006235 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00006236
Dan Gohman475871a2008-07-27 21:46:04 +00006237 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006238 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006239 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
6240 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006241 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006242 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
6243 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006244 }
Evan Chenge3413162006-01-09 18:33:28 +00006245
Owen Anderson825b72b2009-08-11 20:47:22 +00006246 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
6247 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00006248 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00006249 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00006250
Dan Gohman475871a2008-07-27 21:46:04 +00006251 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00006252 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00006253 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
6254 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00006255
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006256 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006257 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6258 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006259 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006260 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6261 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006262 }
6263
Dan Gohman475871a2008-07-27 21:46:04 +00006264 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00006265 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006266}
Evan Chenga3195e82006-01-12 22:54:21 +00006267
Dan Gohmand858e902010-04-17 15:26:15 +00006268SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
6269 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006270 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00006271
Dale Johannesen0488fb62010-09-30 23:57:10 +00006272 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006273 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006274
Owen Anderson825b72b2009-08-11 20:47:22 +00006275 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00006276 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00006277
Eli Friedman36df4992009-05-27 00:47:34 +00006278 // These are really Legal; return the operand so the caller accepts it as
6279 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006280 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00006281 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00006282 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00006283 Subtarget->is64Bit()) {
6284 return Op;
6285 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006286
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006287 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006288 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006289 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00006290 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006291 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00006292 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00006293 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006294 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006295 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006296 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
6297}
Evan Cheng0db9fe62006-04-25 20:13:52 +00006298
Owen Andersone50ed302009-08-10 22:56:29 +00006299SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00006300 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00006301 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006302 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00006303 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00006304 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00006305 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006306 if (useSSE)
Owen Anderson825b72b2009-08-11 20:47:22 +00006307 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
Chris Lattner5a88b832007-02-25 07:10:00 +00006308 else
Owen Anderson825b72b2009-08-11 20:47:22 +00006309 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006310
Chris Lattner492a43e2010-09-22 01:28:21 +00006311 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006312
Chris Lattner492a43e2010-09-22 01:28:21 +00006313 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6314 MachineMemOperand *MMO =
6315 DAG.getMachineFunction()
6316 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6317 MachineMemOperand::MOLoad, ByteSize, ByteSize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006318
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006319 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006320 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
6321 X86ISD::FILD, DL,
6322 Tys, Ops, array_lengthof(Ops),
6323 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006324
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006325 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006326 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00006327 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006328
6329 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
6330 // shouldn't be necessary except that RFP cannot be live across
6331 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006332 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006333 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
6334 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006335 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00006336 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006337 SDValue Ops[] = {
6338 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
6339 };
Chris Lattner492a43e2010-09-22 01:28:21 +00006340 MachineMemOperand *MMO =
6341 DAG.getMachineFunction()
6342 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006343 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006344
Chris Lattner492a43e2010-09-22 01:28:21 +00006345 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
6346 Ops, array_lengthof(Ops),
6347 Op.getValueType(), MMO);
6348 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006349 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006350 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006351 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006352
Evan Cheng0db9fe62006-04-25 20:13:52 +00006353 return Result;
6354}
6355
Bill Wendling8b8a6362009-01-17 03:56:04 +00006356// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006357SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
6358 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00006359 // This algorithm is not obvious. Here it is in C code, more or less:
6360 /*
6361 double uint64_to_double( uint32_t hi, uint32_t lo ) {
6362 static const __m128i exp = { 0x4330000045300000ULL, 0 };
6363 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00006364
Bill Wendling8b8a6362009-01-17 03:56:04 +00006365 // Copy ints to xmm registers.
6366 __m128i xh = _mm_cvtsi32_si128( hi );
6367 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00006368
Bill Wendling8b8a6362009-01-17 03:56:04 +00006369 // Combine into low half of a single xmm register.
6370 __m128i x = _mm_unpacklo_epi32( xh, xl );
6371 __m128d d;
6372 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00006373
Bill Wendling8b8a6362009-01-17 03:56:04 +00006374 // Merge in appropriate exponents to give the integer bits the right
6375 // magnitude.
6376 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00006377
Bill Wendling8b8a6362009-01-17 03:56:04 +00006378 // Subtract away the biases to deal with the IEEE-754 double precision
6379 // implicit 1.
6380 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00006381
Bill Wendling8b8a6362009-01-17 03:56:04 +00006382 // All conversions up to here are exact. The correctly rounded result is
6383 // calculated using the current rounding mode using the following
6384 // horizontal add.
6385 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
6386 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
6387 // store doesn't really need to be here (except
6388 // maybe to zero the other double)
6389 return sd;
6390 }
6391 */
Dale Johannesen040225f2008-10-21 23:07:49 +00006392
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006393 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00006394 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00006395
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006396 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00006397 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00006398 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
6399 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
6400 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
6401 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006402 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006403 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006404
Bill Wendling8b8a6362009-01-17 03:56:04 +00006405 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00006406 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006407 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00006408 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006409 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006410 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006411 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006412
Owen Anderson825b72b2009-08-11 20:47:22 +00006413 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6414 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006415 Op.getOperand(0),
6416 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006417 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6418 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006419 Op.getOperand(0),
6420 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006421 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
6422 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00006423 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006424 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006425 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006426 SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
Owen Anderson825b72b2009-08-11 20:47:22 +00006427 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00006428 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006429 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006430 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006431
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006432 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00006433 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00006434 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
6435 DAG.getUNDEF(MVT::v2f64), ShufMask);
6436 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
6437 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006438 DAG.getIntPtrConstant(0));
6439}
6440
Bill Wendling8b8a6362009-01-17 03:56:04 +00006441// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006442SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
6443 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006444 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006445 // FP constant to bias correct the final result.
6446 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00006447 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006448
6449 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00006450 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6451 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00006452 Op.getOperand(0),
6453 DAG.getIntPtrConstant(0)));
6454
Owen Anderson825b72b2009-08-11 20:47:22 +00006455 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006456 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006457 DAG.getIntPtrConstant(0));
6458
6459 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006460 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006461 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006462 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006463 MVT::v2f64, Load)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006464 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006465 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006466 MVT::v2f64, Bias)));
6467 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006468 DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006469 DAG.getIntPtrConstant(0));
6470
6471 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006472 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006473
6474 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00006475 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00006476
Owen Anderson825b72b2009-08-11 20:47:22 +00006477 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006478 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00006479 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00006480 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006481 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00006482 }
6483
6484 // Handle final rounding.
6485 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00006486}
6487
Dan Gohmand858e902010-04-17 15:26:15 +00006488SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
6489 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00006490 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006491 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006492
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006493 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00006494 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
6495 // the optimization here.
6496 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00006497 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00006498
Owen Andersone50ed302009-08-10 22:56:29 +00006499 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006500 EVT DstVT = Op.getValueType();
6501 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006502 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006503 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006504 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00006505
6506 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00006507 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006508 if (SrcVT == MVT::i32) {
6509 SDValue WordOff = DAG.getConstant(4, getPointerTy());
6510 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
6511 getPointerTy(), StackSlot, WordOff);
6512 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006513 StackSlot, MachinePointerInfo(),
6514 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006515 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006516 OffsetSlot, MachinePointerInfo(),
6517 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006518 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
6519 return Fild;
6520 }
6521
6522 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
6523 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006524 StackSlot, MachinePointerInfo(),
6525 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006526 // For i64 source, we need to add the appropriate power of 2 if the input
6527 // was negative. This is the same as the optimization in
6528 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
6529 // we must be careful to do the computation in x87 extended precision, not
6530 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00006531 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6532 MachineMemOperand *MMO =
6533 DAG.getMachineFunction()
6534 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6535 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006536
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006537 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
6538 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006539 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
6540 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006541
6542 APInt FF(32, 0x5F800000ULL);
6543
6544 // Check whether the sign bit is set.
6545 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
6546 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
6547 ISD::SETLT);
6548
6549 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
6550 SDValue FudgePtr = DAG.getConstantPool(
6551 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
6552 getPointerTy());
6553
6554 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
6555 SDValue Zero = DAG.getIntPtrConstant(0);
6556 SDValue Four = DAG.getIntPtrConstant(4);
6557 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
6558 Zero, Four);
6559 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
6560
6561 // Load the value out, extending it from f32 to f80.
6562 // FIXME: Avoid the extend by constructing the right constant pool?
Evan Chengbcc80172010-07-07 22:15:37 +00006563 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, MVT::f80, dl, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00006564 FudgePtr, MachinePointerInfo::getConstantPool(),
6565 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006566 // Extend everything to 80 bits to force it to be done on x87.
6567 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
6568 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00006569}
6570
Dan Gohman475871a2008-07-27 21:46:04 +00006571std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00006572FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00006573 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00006574
Owen Andersone50ed302009-08-10 22:56:29 +00006575 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00006576
6577 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006578 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
6579 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00006580 }
6581
Owen Anderson825b72b2009-08-11 20:47:22 +00006582 assert(DstTy.getSimpleVT() <= MVT::i64 &&
6583 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00006584 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00006585
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006586 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006587 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00006588 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006589 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00006590 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006591 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00006592 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006593 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006594
Evan Cheng87c89352007-10-15 20:11:21 +00006595 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
6596 // stack slot.
6597 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00006598 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00006599 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006600 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00006601
Michael J. Spencerec38de22010-10-10 22:04:20 +00006602
6603
Evan Cheng0db9fe62006-04-25 20:13:52 +00006604 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00006605 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00006606 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00006607 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
6608 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
6609 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006610 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006611
Dan Gohman475871a2008-07-27 21:46:04 +00006612 SDValue Chain = DAG.getEntryNode();
6613 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00006614 EVT TheVT = Op.getOperand(0).getValueType();
6615 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006616 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00006617 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006618 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006619 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00006620 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00006621 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00006622 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00006623 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00006624
Chris Lattner492a43e2010-09-22 01:28:21 +00006625 MachineMemOperand *MMO =
6626 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6627 MachineMemOperand::MOLoad, MemSize, MemSize);
6628 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
6629 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006630 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00006631 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006632 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
6633 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006634
Chris Lattner07290932010-09-22 01:05:16 +00006635 MachineMemOperand *MMO =
6636 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6637 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006638
Evan Cheng0db9fe62006-04-25 20:13:52 +00006639 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00006640 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00006641 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
6642 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00006643
Chris Lattner27a6c732007-11-24 07:07:01 +00006644 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006645}
6646
Dan Gohmand858e902010-04-17 15:26:15 +00006647SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
6648 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00006649 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006650 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006651
Eli Friedman948e95a2009-05-23 09:59:16 +00006652 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00006653 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00006654 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
6655 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00006656
Chris Lattner27a6c732007-11-24 07:07:01 +00006657 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006658 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006659 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00006660}
6661
Dan Gohmand858e902010-04-17 15:26:15 +00006662SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
6663 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00006664 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
6665 SDValue FIST = Vals.first, StackSlot = Vals.second;
6666 assert(FIST.getNode() && "Unexpected failure");
6667
6668 // Load the result.
6669 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006670 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006671}
6672
Dan Gohmand858e902010-04-17 15:26:15 +00006673SDValue X86TargetLowering::LowerFABS(SDValue Op,
6674 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006675 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006676 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006677 EVT VT = Op.getValueType();
6678 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006679 if (VT.isVector())
6680 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006681 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006682 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006683 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00006684 CV.push_back(C);
6685 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006686 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006687 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00006688 CV.push_back(C);
6689 CV.push_back(C);
6690 CV.push_back(C);
6691 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006692 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006693 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006694 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006695 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006696 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006697 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006698 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006699}
6700
Dan Gohmand858e902010-04-17 15:26:15 +00006701SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006702 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006703 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006704 EVT VT = Op.getValueType();
6705 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00006706 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00006707 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006708 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006709 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006710 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00006711 CV.push_back(C);
6712 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006713 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006714 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00006715 CV.push_back(C);
6716 CV.push_back(C);
6717 CV.push_back(C);
6718 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006719 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006720 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006721 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006722 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006723 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006724 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006725 if (VT.isVector()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006726 return DAG.getNode(ISD::BITCAST, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00006727 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006728 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006729 Op.getOperand(0)),
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006730 DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00006731 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006732 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00006733 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006734}
6735
Dan Gohmand858e902010-04-17 15:26:15 +00006736SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006737 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00006738 SDValue Op0 = Op.getOperand(0);
6739 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006740 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006741 EVT VT = Op.getValueType();
6742 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00006743
6744 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006745 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006746 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006747 SrcVT = VT;
6748 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006749 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006750 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006751 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006752 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006753 }
6754
6755 // At this point the operands and the result should have the same
6756 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00006757
Evan Cheng68c47cb2007-01-05 07:55:56 +00006758 // First get the sign bit of second operand.
6759 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006760 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006761 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
6762 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006763 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006764 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
6765 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6766 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6767 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006768 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006769 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006770 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006771 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006772 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006773 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006774 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006775
6776 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006777 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006778 // Op0 is MVT::f32, Op1 is MVT::f64.
6779 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
6780 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
6781 DAG.getConstant(32, MVT::i32));
Wesley Peckbf17cfa2010-11-23 03:31:01 +00006782 SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
Owen Anderson825b72b2009-08-11 20:47:22 +00006783 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00006784 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006785 }
6786
Evan Cheng73d6cf12007-01-05 21:37:56 +00006787 // Clear first operand sign bit.
6788 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00006789 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006790 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
6791 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006792 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006793 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
6794 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6795 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6796 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006797 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006798 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006799 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006800 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006801 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006802 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006803 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006804
6805 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00006806 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006807}
6808
Dan Gohman076aee32009-03-04 19:44:21 +00006809/// Emit nodes that will be selected as "test Op0,Op0", or something
6810/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006811SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006812 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006813 DebugLoc dl = Op.getDebugLoc();
6814
Dan Gohman31125812009-03-07 01:58:32 +00006815 // CF and OF aren't always set the way we want. Determine which
6816 // of these we need.
6817 bool NeedCF = false;
6818 bool NeedOF = false;
6819 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006820 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00006821 case X86::COND_A: case X86::COND_AE:
6822 case X86::COND_B: case X86::COND_BE:
6823 NeedCF = true;
6824 break;
6825 case X86::COND_G: case X86::COND_GE:
6826 case X86::COND_L: case X86::COND_LE:
6827 case X86::COND_O: case X86::COND_NO:
6828 NeedOF = true;
6829 break;
Dan Gohman31125812009-03-07 01:58:32 +00006830 }
6831
Dan Gohman076aee32009-03-04 19:44:21 +00006832 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00006833 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
6834 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006835 if (Op.getResNo() != 0 || NeedOF || NeedCF)
6836 // Emit a CMP with 0, which is the TEST pattern.
6837 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6838 DAG.getConstant(0, Op.getValueType()));
6839
6840 unsigned Opcode = 0;
6841 unsigned NumOperands = 0;
6842 switch (Op.getNode()->getOpcode()) {
6843 case ISD::ADD:
6844 // Due to an isel shortcoming, be conservative if this add is likely to be
6845 // selected as part of a load-modify-store instruction. When the root node
6846 // in a match is a store, isel doesn't know how to remap non-chain non-flag
6847 // uses of other nodes in the match, such as the ADD in this case. This
6848 // leads to the ADD being left around and reselected, with the result being
6849 // two adds in the output. Alas, even if none our users are stores, that
6850 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
6851 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
6852 // climbing the DAG back to the root, and it doesn't seem to be worth the
6853 // effort.
6854 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00006855 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006856 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
6857 goto default_case;
6858
6859 if (ConstantSDNode *C =
6860 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
6861 // An add of one will be selected as an INC.
6862 if (C->getAPIntValue() == 1) {
6863 Opcode = X86ISD::INC;
6864 NumOperands = 1;
6865 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00006866 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006867
6868 // An add of negative one (subtract of one) will be selected as a DEC.
6869 if (C->getAPIntValue().isAllOnesValue()) {
6870 Opcode = X86ISD::DEC;
6871 NumOperands = 1;
6872 break;
6873 }
Dan Gohman076aee32009-03-04 19:44:21 +00006874 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006875
6876 // Otherwise use a regular EFLAGS-setting add.
6877 Opcode = X86ISD::ADD;
6878 NumOperands = 2;
6879 break;
6880 case ISD::AND: {
6881 // If the primary and result isn't used, don't bother using X86ISD::AND,
6882 // because a TEST instruction will be better.
6883 bool NonFlagUse = false;
6884 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6885 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
6886 SDNode *User = *UI;
6887 unsigned UOpNo = UI.getOperandNo();
6888 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
6889 // Look pass truncate.
6890 UOpNo = User->use_begin().getOperandNo();
6891 User = *User->use_begin();
6892 }
6893
6894 if (User->getOpcode() != ISD::BRCOND &&
6895 User->getOpcode() != ISD::SETCC &&
6896 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
6897 NonFlagUse = true;
6898 break;
6899 }
Dan Gohman076aee32009-03-04 19:44:21 +00006900 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006901
6902 if (!NonFlagUse)
6903 break;
6904 }
6905 // FALL THROUGH
6906 case ISD::SUB:
6907 case ISD::OR:
6908 case ISD::XOR:
6909 // Due to the ISEL shortcoming noted above, be conservative if this op is
6910 // likely to be selected as part of a load-modify-store instruction.
6911 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6912 UE = Op.getNode()->use_end(); UI != UE; ++UI)
6913 if (UI->getOpcode() == ISD::STORE)
6914 goto default_case;
6915
6916 // Otherwise use a regular EFLAGS-setting instruction.
6917 switch (Op.getNode()->getOpcode()) {
6918 default: llvm_unreachable("unexpected operator!");
6919 case ISD::SUB: Opcode = X86ISD::SUB; break;
6920 case ISD::OR: Opcode = X86ISD::OR; break;
6921 case ISD::XOR: Opcode = X86ISD::XOR; break;
6922 case ISD::AND: Opcode = X86ISD::AND; break;
6923 }
6924
6925 NumOperands = 2;
6926 break;
6927 case X86ISD::ADD:
6928 case X86ISD::SUB:
6929 case X86ISD::INC:
6930 case X86ISD::DEC:
6931 case X86ISD::OR:
6932 case X86ISD::XOR:
6933 case X86ISD::AND:
6934 return SDValue(Op.getNode(), 1);
6935 default:
6936 default_case:
6937 break;
Dan Gohman076aee32009-03-04 19:44:21 +00006938 }
6939
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006940 if (Opcode == 0)
6941 // Emit a CMP with 0, which is the TEST pattern.
6942 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6943 DAG.getConstant(0, Op.getValueType()));
6944
6945 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
6946 SmallVector<SDValue, 4> Ops;
6947 for (unsigned i = 0; i != NumOperands; ++i)
6948 Ops.push_back(Op.getOperand(i));
6949
6950 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
6951 DAG.ReplaceAllUsesWith(Op, New);
6952 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00006953}
6954
6955/// Emit nodes that will be selected as "cmp Op0,Op1", or something
6956/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006957SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006958 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006959 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
6960 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00006961 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00006962
6963 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00006964 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00006965}
6966
Evan Chengd40d03e2010-01-06 19:38:29 +00006967/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
6968/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00006969SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
6970 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006971 SDValue Op0 = And.getOperand(0);
6972 SDValue Op1 = And.getOperand(1);
6973 if (Op0.getOpcode() == ISD::TRUNCATE)
6974 Op0 = Op0.getOperand(0);
6975 if (Op1.getOpcode() == ISD::TRUNCATE)
6976 Op1 = Op1.getOperand(0);
6977
Evan Chengd40d03e2010-01-06 19:38:29 +00006978 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006979 if (Op1.getOpcode() == ISD::SHL)
6980 std::swap(Op0, Op1);
6981 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006982 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
6983 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006984 // If we looked past a truncate, check that it's only truncating away
6985 // known zeros.
6986 unsigned BitWidth = Op0.getValueSizeInBits();
6987 unsigned AndBitWidth = And.getValueSizeInBits();
6988 if (BitWidth > AndBitWidth) {
6989 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
6990 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
6991 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
6992 return SDValue();
6993 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006994 LHS = Op1;
6995 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00006996 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006997 } else if (Op1.getOpcode() == ISD::Constant) {
6998 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
6999 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00007000 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
7001 LHS = AndLHS.getOperand(0);
7002 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007003 }
Evan Chengd40d03e2010-01-06 19:38:29 +00007004 }
Evan Cheng0488db92007-09-25 01:57:46 +00007005
Evan Chengd40d03e2010-01-06 19:38:29 +00007006 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00007007 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00007008 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00007009 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00007010 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00007011 // Also promote i16 to i32 for performance / code size reason.
7012 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00007013 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00007014 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00007015
Evan Chengd40d03e2010-01-06 19:38:29 +00007016 // If the operand types disagree, extend the shift amount to match. Since
7017 // BT ignores high bits (like shifts) we can use anyextend.
7018 if (LHS.getValueType() != RHS.getValueType())
7019 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00007020
Evan Chengd40d03e2010-01-06 19:38:29 +00007021 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
7022 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
7023 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7024 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00007025 }
7026
Evan Cheng54de3ea2010-01-05 06:52:31 +00007027 return SDValue();
7028}
7029
Dan Gohmand858e902010-04-17 15:26:15 +00007030SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00007031 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7032 SDValue Op0 = Op.getOperand(0);
7033 SDValue Op1 = Op.getOperand(1);
7034 DebugLoc dl = Op.getDebugLoc();
7035 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7036
7037 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007038 // Lower (X & (1 << N)) == 0 to BT(X, N).
7039 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7040 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
Chris Lattner481eebc2010-12-19 21:23:48 +00007041 if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007042 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007043 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007044 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7045 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7046 if (NewSetCC.getNode())
7047 return NewSetCC;
7048 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007049
Chris Lattner481eebc2010-12-19 21:23:48 +00007050 // Look for X == 0, X == 1, X != 0, or X != 1. We can simplify some forms of
7051 // these.
7052 if (Op1.getOpcode() == ISD::Constant &&
Evan Cheng2c755ba2010-02-27 07:36:59 +00007053 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
7054 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7055 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
Chris Lattner481eebc2010-12-19 21:23:48 +00007056
7057 // If the input is a setcc, then reuse the input setcc or use a new one with
7058 // the inverted condition.
7059 if (Op0.getOpcode() == X86ISD::SETCC) {
7060 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7061 bool Invert = (CC == ISD::SETNE) ^
7062 cast<ConstantSDNode>(Op1)->isNullValue();
7063 if (!Invert) return Op0;
7064
Evan Cheng2c755ba2010-02-27 07:36:59 +00007065 CCode = X86::GetOppositeBranchCondition(CCode);
Chris Lattner481eebc2010-12-19 21:23:48 +00007066 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7067 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7068 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00007069 }
7070
Evan Chenge5b51ac2010-04-17 06:13:15 +00007071 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007072 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007073 if (X86CC == X86::COND_INVALID)
7074 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007075
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007076 SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00007077 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
Chris Lattnerc19d1c32010-12-19 22:08:31 +00007078 DAG.getConstant(X86CC, MVT::i8), EFLAGS);
Evan Cheng0488db92007-09-25 01:57:46 +00007079}
7080
Dan Gohmand858e902010-04-17 15:26:15 +00007081SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007082 SDValue Cond;
7083 SDValue Op0 = Op.getOperand(0);
7084 SDValue Op1 = Op.getOperand(1);
7085 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007086 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007087 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7088 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007089 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007090
7091 if (isFP) {
7092 unsigned SSECC = 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007093 EVT VT0 = Op0.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00007094 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
7095 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007096 bool Swap = false;
7097
7098 switch (SetCCOpcode) {
7099 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007100 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007101 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007102 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007103 case ISD::SETGT: Swap = true; // Fallthrough
7104 case ISD::SETLT:
7105 case ISD::SETOLT: SSECC = 1; break;
7106 case ISD::SETOGE:
7107 case ISD::SETGE: Swap = true; // Fallthrough
7108 case ISD::SETLE:
7109 case ISD::SETOLE: SSECC = 2; break;
7110 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007111 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007112 case ISD::SETNE: SSECC = 4; break;
7113 case ISD::SETULE: Swap = true;
7114 case ISD::SETUGE: SSECC = 5; break;
7115 case ISD::SETULT: Swap = true;
7116 case ISD::SETUGT: SSECC = 6; break;
7117 case ISD::SETO: SSECC = 7; break;
7118 }
7119 if (Swap)
7120 std::swap(Op0, Op1);
7121
Nate Begemanfb8ead02008-07-25 19:05:58 +00007122 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007123 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007124 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007125 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007126 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7127 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007128 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007129 }
7130 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007131 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007132 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7133 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007134 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007135 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007136 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007137 }
7138 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007139 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007140 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007141
Nate Begeman30a0de92008-07-17 16:51:19 +00007142 // We are handling one of the integer comparisons here. Since SSE only has
7143 // GT and EQ comparisons for integer, swapping operands and multiple
7144 // operations may be required for some comparisons.
7145 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7146 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007147
Owen Anderson825b72b2009-08-11 20:47:22 +00007148 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007149 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007150 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007151 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007152 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7153 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00007154 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007155
Nate Begeman30a0de92008-07-17 16:51:19 +00007156 switch (SetCCOpcode) {
7157 default: break;
7158 case ISD::SETNE: Invert = true;
7159 case ISD::SETEQ: Opc = EQOpc; break;
7160 case ISD::SETLT: Swap = true;
7161 case ISD::SETGT: Opc = GTOpc; break;
7162 case ISD::SETGE: Swap = true;
7163 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
7164 case ISD::SETULT: Swap = true;
7165 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
7166 case ISD::SETUGE: Swap = true;
7167 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
7168 }
7169 if (Swap)
7170 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007171
Nate Begeman30a0de92008-07-17 16:51:19 +00007172 // Since SSE has no unsigned integer comparisons, we need to flip the sign
7173 // bits of the inputs before performing those operations.
7174 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00007175 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00007176 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
7177 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00007178 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00007179 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
7180 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00007181 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
7182 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00007183 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007184
Dale Johannesenace16102009-02-03 19:33:06 +00007185 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00007186
7187 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00007188 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00007189 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00007190
Nate Begeman30a0de92008-07-17 16:51:19 +00007191 return Result;
7192}
Evan Cheng0488db92007-09-25 01:57:46 +00007193
Evan Cheng370e5342008-12-03 08:38:43 +00007194// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00007195static bool isX86LogicalCmp(SDValue Op) {
7196 unsigned Opc = Op.getNode()->getOpcode();
7197 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
7198 return true;
7199 if (Op.getResNo() == 1 &&
7200 (Opc == X86ISD::ADD ||
7201 Opc == X86ISD::SUB ||
Chris Lattner5b856542010-12-20 00:59:46 +00007202 Opc == X86ISD::ADC ||
7203 Opc == X86ISD::SBB ||
Dan Gohman076aee32009-03-04 19:44:21 +00007204 Opc == X86ISD::SMUL ||
7205 Opc == X86ISD::UMUL ||
7206 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00007207 Opc == X86ISD::DEC ||
7208 Opc == X86ISD::OR ||
7209 Opc == X86ISD::XOR ||
7210 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00007211 return true;
7212
Chris Lattner9637d5b2010-12-05 07:49:54 +00007213 if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
7214 return true;
7215
Dan Gohman076aee32009-03-04 19:44:21 +00007216 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00007217}
7218
Chris Lattnera2b56002010-12-05 01:23:24 +00007219static bool isZero(SDValue V) {
7220 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
7221 return C && C->isNullValue();
7222}
7223
Chris Lattner96908b12010-12-05 02:00:51 +00007224static bool isAllOnes(SDValue V) {
7225 ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
7226 return C && C->isAllOnesValue();
7227}
7228
Dan Gohmand858e902010-04-17 15:26:15 +00007229SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007230 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007231 SDValue Cond = Op.getOperand(0);
Chris Lattnera2b56002010-12-05 01:23:24 +00007232 SDValue Op1 = Op.getOperand(1);
7233 SDValue Op2 = Op.getOperand(2);
7234 DebugLoc DL = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007235 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00007236
Dan Gohman1a492952009-10-20 16:22:37 +00007237 if (Cond.getOpcode() == ISD::SETCC) {
7238 SDValue NewCond = LowerSETCC(Cond, DAG);
7239 if (NewCond.getNode())
7240 Cond = NewCond;
7241 }
Evan Cheng734503b2006-09-11 02:19:56 +00007242
Chris Lattnera2b56002010-12-05 01:23:24 +00007243 // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00007244 // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
Chris Lattnera2b56002010-12-05 01:23:24 +00007245 // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
Chris Lattner96908b12010-12-05 02:00:51 +00007246 // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007247 if (Cond.getOpcode() == X86ISD::SETCC &&
Chris Lattner96908b12010-12-05 02:00:51 +00007248 Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
7249 isZero(Cond.getOperand(1).getOperand(1))) {
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007250 SDValue Cmp = Cond.getOperand(1);
Chris Lattnera2b56002010-12-05 01:23:24 +00007251
7252 unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
7253
Chris Lattner96908b12010-12-05 02:00:51 +00007254 if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
7255 (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
7256 SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
Chris Lattnera2b56002010-12-05 01:23:24 +00007257
7258 SDValue CmpOp0 = Cmp.getOperand(0);
7259 Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
7260 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
7261
Chris Lattner96908b12010-12-05 02:00:51 +00007262 SDValue Res = // Res = 0 or -1.
Chris Lattnera2b56002010-12-05 01:23:24 +00007263 DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
7264 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
Chris Lattner96908b12010-12-05 02:00:51 +00007265
7266 if (isAllOnes(Op1) != (CondCode == X86::COND_E))
7267 Res = DAG.getNOT(DL, Res, Res.getValueType());
7268
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007269 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
Chris Lattnera2b56002010-12-05 01:23:24 +00007270 if (N2C == 0 || !N2C->isNullValue())
7271 Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
7272 return Res;
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007273 }
7274 }
7275
Chris Lattnera2b56002010-12-05 01:23:24 +00007276 // Look past (and (setcc_carry (cmp ...)), 1).
Evan Chengad9c0a32009-12-15 00:53:42 +00007277 if (Cond.getOpcode() == ISD::AND &&
7278 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7279 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007280 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007281 Cond = Cond.getOperand(0);
7282 }
7283
Evan Cheng3f41d662007-10-08 22:16:29 +00007284 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7285 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007286 if (Cond.getOpcode() == X86ISD::SETCC ||
7287 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007288 CC = Cond.getOperand(0);
7289
Dan Gohman475871a2008-07-27 21:46:04 +00007290 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007291 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00007292 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00007293
Evan Cheng3f41d662007-10-08 22:16:29 +00007294 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007295 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00007296 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00007297 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00007298
Chris Lattnerd1980a52009-03-12 06:52:53 +00007299 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
7300 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00007301 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007302 addTest = false;
7303 }
7304 }
7305
7306 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007307 // Look pass the truncate.
7308 if (Cond.getOpcode() == ISD::TRUNCATE)
7309 Cond = Cond.getOperand(0);
7310
7311 // We know the result of AND is compared against zero. Try to match
7312 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007313 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Chris Lattnera2b56002010-12-05 01:23:24 +00007314 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
Evan Chengd40d03e2010-01-06 19:38:29 +00007315 if (NewSetCC.getNode()) {
7316 CC = NewSetCC.getOperand(0);
7317 Cond = NewSetCC.getOperand(1);
7318 addTest = false;
7319 }
7320 }
7321 }
7322
7323 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007324 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007325 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007326 }
7327
Evan Cheng0488db92007-09-25 01:57:46 +00007328 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
7329 // condition is true.
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007330 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
7331 SDValue Ops[] = { Op2, Op1, CC, Cond };
Chris Lattnera2b56002010-12-05 01:23:24 +00007332 return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00007333}
7334
Evan Cheng370e5342008-12-03 08:38:43 +00007335// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
7336// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
7337// from the AND / OR.
7338static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
7339 Opc = Op.getOpcode();
7340 if (Opc != ISD::OR && Opc != ISD::AND)
7341 return false;
7342 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7343 Op.getOperand(0).hasOneUse() &&
7344 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
7345 Op.getOperand(1).hasOneUse());
7346}
7347
Evan Cheng961d6d42009-02-02 08:19:07 +00007348// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
7349// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00007350static bool isXor1OfSetCC(SDValue Op) {
7351 if (Op.getOpcode() != ISD::XOR)
7352 return false;
7353 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7354 if (N1C && N1C->getAPIntValue() == 1) {
7355 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7356 Op.getOperand(0).hasOneUse();
7357 }
7358 return false;
7359}
7360
Dan Gohmand858e902010-04-17 15:26:15 +00007361SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007362 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007363 SDValue Chain = Op.getOperand(0);
7364 SDValue Cond = Op.getOperand(1);
7365 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007366 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007367 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00007368
Dan Gohman1a492952009-10-20 16:22:37 +00007369 if (Cond.getOpcode() == ISD::SETCC) {
7370 SDValue NewCond = LowerSETCC(Cond, DAG);
7371 if (NewCond.getNode())
7372 Cond = NewCond;
7373 }
Chris Lattnere55484e2008-12-25 05:34:37 +00007374#if 0
7375 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00007376 else if (Cond.getOpcode() == X86ISD::ADD ||
7377 Cond.getOpcode() == X86ISD::SUB ||
7378 Cond.getOpcode() == X86ISD::SMUL ||
7379 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00007380 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00007381#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00007382
Evan Chengad9c0a32009-12-15 00:53:42 +00007383 // Look pass (and (setcc_carry (cmp ...)), 1).
7384 if (Cond.getOpcode() == ISD::AND &&
7385 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7386 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007387 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007388 Cond = Cond.getOperand(0);
7389 }
7390
Evan Cheng3f41d662007-10-08 22:16:29 +00007391 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7392 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007393 if (Cond.getOpcode() == X86ISD::SETCC ||
7394 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007395 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007396
Dan Gohman475871a2008-07-27 21:46:04 +00007397 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007398 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00007399 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00007400 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00007401 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007402 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00007403 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00007404 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007405 default: break;
7406 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00007407 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00007408 // These can only come from an arithmetic instruction with overflow,
7409 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007410 Cond = Cond.getNode()->getOperand(1);
7411 addTest = false;
7412 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00007413 }
Evan Cheng0488db92007-09-25 01:57:46 +00007414 }
Evan Cheng370e5342008-12-03 08:38:43 +00007415 } else {
7416 unsigned CondOpc;
7417 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
7418 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00007419 if (CondOpc == ISD::OR) {
7420 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
7421 // two branches instead of an explicit OR instruction with a
7422 // separate test.
7423 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007424 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00007425 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007426 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007427 Chain, Dest, CC, Cmp);
7428 CC = Cond.getOperand(1).getOperand(0);
7429 Cond = Cmp;
7430 addTest = false;
7431 }
7432 } else { // ISD::AND
7433 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
7434 // two branches instead of an explicit AND instruction with a
7435 // separate test. However, we only do this if this block doesn't
7436 // have a fall-through edge, because this requires an explicit
7437 // jmp when the condition is false.
7438 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007439 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00007440 Op.getNode()->hasOneUse()) {
7441 X86::CondCode CCode =
7442 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7443 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007444 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00007445 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00007446 // Look for an unconditional branch following this conditional branch.
7447 // We need this because we need to reverse the successors in order
7448 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00007449 if (User->getOpcode() == ISD::BR) {
7450 SDValue FalseBB = User->getOperand(1);
7451 SDNode *NewBR =
7452 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00007453 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00007454 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00007455 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00007456
Dale Johannesene4d209d2009-02-03 20:21:25 +00007457 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007458 Chain, Dest, CC, Cmp);
7459 X86::CondCode CCode =
7460 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
7461 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007462 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00007463 Cond = Cmp;
7464 addTest = false;
7465 }
7466 }
Dan Gohman279c22e2008-10-21 03:29:32 +00007467 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00007468 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
7469 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
7470 // It should be transformed during dag combiner except when the condition
7471 // is set by a arithmetics with overflow node.
7472 X86::CondCode CCode =
7473 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7474 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007475 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00007476 Cond = Cond.getOperand(0).getOperand(1);
7477 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00007478 }
Evan Cheng0488db92007-09-25 01:57:46 +00007479 }
7480
7481 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007482 // Look pass the truncate.
7483 if (Cond.getOpcode() == ISD::TRUNCATE)
7484 Cond = Cond.getOperand(0);
7485
7486 // We know the result of AND is compared against zero. Try to match
7487 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007488 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007489 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7490 if (NewSetCC.getNode()) {
7491 CC = NewSetCC.getOperand(0);
7492 Cond = NewSetCC.getOperand(1);
7493 addTest = false;
7494 }
7495 }
7496 }
7497
7498 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007499 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007500 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007501 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00007502 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00007503 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007504}
7505
Anton Korobeynikove060b532007-04-17 19:34:00 +00007506
7507// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
7508// Calls to _alloca is needed to probe the stack when allocating more than 4k
7509// bytes in one go. Touching the stack at 4K increments is necessary to ensure
7510// that the guard pages used by the OS virtual memory manager are allocated in
7511// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00007512SDValue
7513X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007514 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00007515 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007516 "This should be used only on Windows targets");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007517 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007518
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007519 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007520 SDValue Chain = Op.getOperand(0);
7521 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007522 // FIXME: Ensure alignment here
7523
Dan Gohman475871a2008-07-27 21:46:04 +00007524 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007525
Owen Anderson825b72b2009-08-11 20:47:22 +00007526 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007527
Dale Johannesendd64c412009-02-04 00:33:20 +00007528 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007529 Flag = Chain.getValue(1);
7530
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007531 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007532
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007533 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007534 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007535
Dale Johannesendd64c412009-02-04 00:33:20 +00007536 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007537
Dan Gohman475871a2008-07-27 21:46:04 +00007538 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00007539 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007540}
7541
Dan Gohmand858e902010-04-17 15:26:15 +00007542SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00007543 MachineFunction &MF = DAG.getMachineFunction();
7544 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
7545
Dan Gohman69de1932008-02-06 22:27:42 +00007546 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00007547 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00007548
Anton Korobeynikove7beda12010-10-03 22:52:07 +00007549 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00007550 // vastart just stores the address of the VarArgsFrameIndex slot into the
7551 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00007552 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7553 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007554 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
7555 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007556 }
7557
7558 // __va_list_tag:
7559 // gp_offset (0 - 6 * 8)
7560 // fp_offset (48 - 48 + 8 * 16)
7561 // overflow_arg_area (point to parameters coming in memory).
7562 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00007563 SmallVector<SDValue, 8> MemOps;
7564 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00007565 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007566 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007567 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
7568 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007569 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007570 MemOps.push_back(Store);
7571
7572 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007573 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007574 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00007575 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007576 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
7577 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007578 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007579 MemOps.push_back(Store);
7580
7581 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00007582 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007583 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00007584 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7585 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007586 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
7587 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00007588 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007589 MemOps.push_back(Store);
7590
7591 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00007592 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007593 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00007594 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
7595 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007596 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
7597 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007598 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00007599 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00007600 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00007601}
7602
Dan Gohmand858e902010-04-17 15:26:15 +00007603SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00007604 assert(Subtarget->is64Bit() &&
7605 "LowerVAARG only handles 64-bit va_arg!");
7606 assert((Subtarget->isTargetLinux() ||
7607 Subtarget->isTargetDarwin()) &&
7608 "Unhandled target in LowerVAARG");
7609 assert(Op.getNode()->getNumOperands() == 4);
7610 SDValue Chain = Op.getOperand(0);
7611 SDValue SrcPtr = Op.getOperand(1);
7612 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
7613 unsigned Align = Op.getConstantOperandVal(3);
7614 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00007615
Dan Gohman320afb82010-10-12 18:00:49 +00007616 EVT ArgVT = Op.getNode()->getValueType(0);
7617 const Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
7618 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
7619 uint8_t ArgMode;
7620
7621 // Decide which area this value should be read from.
7622 // TODO: Implement the AMD64 ABI in its entirety. This simple
7623 // selection mechanism works only for the basic types.
7624 if (ArgVT == MVT::f80) {
7625 llvm_unreachable("va_arg for f80 not yet implemented");
7626 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
7627 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
7628 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
7629 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
7630 } else {
7631 llvm_unreachable("Unhandled argument type in LowerVAARG");
7632 }
7633
7634 if (ArgMode == 2) {
7635 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00007636 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00007637 !(DAG.getMachineFunction()
7638 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
Nate Begeman2ea8ee72010-12-10 00:26:57 +00007639 Subtarget->hasXMM());
Dan Gohman320afb82010-10-12 18:00:49 +00007640 }
7641
7642 // Insert VAARG_64 node into the DAG
7643 // VAARG_64 returns two values: Variable Argument Address, Chain
7644 SmallVector<SDValue, 11> InstOps;
7645 InstOps.push_back(Chain);
7646 InstOps.push_back(SrcPtr);
7647 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
7648 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
7649 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
7650 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
7651 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
7652 VTs, &InstOps[0], InstOps.size(),
7653 MVT::i64,
7654 MachinePointerInfo(SV),
7655 /*Align=*/0,
7656 /*Volatile=*/false,
7657 /*ReadMem=*/true,
7658 /*WriteMem=*/true);
7659 Chain = VAARG.getValue(1);
7660
7661 // Load the next argument and return it
7662 return DAG.getLoad(ArgVT, dl,
7663 Chain,
7664 VAARG,
7665 MachinePointerInfo(),
7666 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00007667}
7668
Dan Gohmand858e902010-04-17 15:26:15 +00007669SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00007670 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00007671 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00007672 SDValue Chain = Op.getOperand(0);
7673 SDValue DstPtr = Op.getOperand(1);
7674 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00007675 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
7676 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00007677 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00007678
Chris Lattnere72f2022010-09-21 05:40:29 +00007679 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00007680 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007681 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00007682 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00007683}
7684
Dan Gohman475871a2008-07-27 21:46:04 +00007685SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007686X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007687 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007688 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007689 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00007690 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00007691 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00007692 case Intrinsic::x86_sse_comieq_ss:
7693 case Intrinsic::x86_sse_comilt_ss:
7694 case Intrinsic::x86_sse_comile_ss:
7695 case Intrinsic::x86_sse_comigt_ss:
7696 case Intrinsic::x86_sse_comige_ss:
7697 case Intrinsic::x86_sse_comineq_ss:
7698 case Intrinsic::x86_sse_ucomieq_ss:
7699 case Intrinsic::x86_sse_ucomilt_ss:
7700 case Intrinsic::x86_sse_ucomile_ss:
7701 case Intrinsic::x86_sse_ucomigt_ss:
7702 case Intrinsic::x86_sse_ucomige_ss:
7703 case Intrinsic::x86_sse_ucomineq_ss:
7704 case Intrinsic::x86_sse2_comieq_sd:
7705 case Intrinsic::x86_sse2_comilt_sd:
7706 case Intrinsic::x86_sse2_comile_sd:
7707 case Intrinsic::x86_sse2_comigt_sd:
7708 case Intrinsic::x86_sse2_comige_sd:
7709 case Intrinsic::x86_sse2_comineq_sd:
7710 case Intrinsic::x86_sse2_ucomieq_sd:
7711 case Intrinsic::x86_sse2_ucomilt_sd:
7712 case Intrinsic::x86_sse2_ucomile_sd:
7713 case Intrinsic::x86_sse2_ucomigt_sd:
7714 case Intrinsic::x86_sse2_ucomige_sd:
7715 case Intrinsic::x86_sse2_ucomineq_sd: {
7716 unsigned Opc = 0;
7717 ISD::CondCode CC = ISD::SETCC_INVALID;
7718 switch (IntNo) {
7719 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007720 case Intrinsic::x86_sse_comieq_ss:
7721 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007722 Opc = X86ISD::COMI;
7723 CC = ISD::SETEQ;
7724 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007725 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007726 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007727 Opc = X86ISD::COMI;
7728 CC = ISD::SETLT;
7729 break;
7730 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007731 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007732 Opc = X86ISD::COMI;
7733 CC = ISD::SETLE;
7734 break;
7735 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007736 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007737 Opc = X86ISD::COMI;
7738 CC = ISD::SETGT;
7739 break;
7740 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007741 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007742 Opc = X86ISD::COMI;
7743 CC = ISD::SETGE;
7744 break;
7745 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007746 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007747 Opc = X86ISD::COMI;
7748 CC = ISD::SETNE;
7749 break;
7750 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007751 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007752 Opc = X86ISD::UCOMI;
7753 CC = ISD::SETEQ;
7754 break;
7755 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007756 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007757 Opc = X86ISD::UCOMI;
7758 CC = ISD::SETLT;
7759 break;
7760 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007761 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007762 Opc = X86ISD::UCOMI;
7763 CC = ISD::SETLE;
7764 break;
7765 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007766 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007767 Opc = X86ISD::UCOMI;
7768 CC = ISD::SETGT;
7769 break;
7770 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007771 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007772 Opc = X86ISD::UCOMI;
7773 CC = ISD::SETGE;
7774 break;
7775 case Intrinsic::x86_sse_ucomineq_ss:
7776 case Intrinsic::x86_sse2_ucomineq_sd:
7777 Opc = X86ISD::UCOMI;
7778 CC = ISD::SETNE;
7779 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007780 }
Evan Cheng734503b2006-09-11 02:19:56 +00007781
Dan Gohman475871a2008-07-27 21:46:04 +00007782 SDValue LHS = Op.getOperand(1);
7783 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00007784 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007785 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007786 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
7787 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7788 DAG.getConstant(X86CC, MVT::i8), Cond);
7789 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00007790 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007791 // ptest and testp intrinsics. The intrinsic these come from are designed to
7792 // return an integer value, not just an instruction so lower it to the ptest
7793 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00007794 case Intrinsic::x86_sse41_ptestz:
7795 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007796 case Intrinsic::x86_sse41_ptestnzc:
7797 case Intrinsic::x86_avx_ptestz_256:
7798 case Intrinsic::x86_avx_ptestc_256:
7799 case Intrinsic::x86_avx_ptestnzc_256:
7800 case Intrinsic::x86_avx_vtestz_ps:
7801 case Intrinsic::x86_avx_vtestc_ps:
7802 case Intrinsic::x86_avx_vtestnzc_ps:
7803 case Intrinsic::x86_avx_vtestz_pd:
7804 case Intrinsic::x86_avx_vtestc_pd:
7805 case Intrinsic::x86_avx_vtestnzc_pd:
7806 case Intrinsic::x86_avx_vtestz_ps_256:
7807 case Intrinsic::x86_avx_vtestc_ps_256:
7808 case Intrinsic::x86_avx_vtestnzc_ps_256:
7809 case Intrinsic::x86_avx_vtestz_pd_256:
7810 case Intrinsic::x86_avx_vtestc_pd_256:
7811 case Intrinsic::x86_avx_vtestnzc_pd_256: {
7812 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00007813 unsigned X86CC = 0;
7814 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00007815 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007816 case Intrinsic::x86_avx_vtestz_ps:
7817 case Intrinsic::x86_avx_vtestz_pd:
7818 case Intrinsic::x86_avx_vtestz_ps_256:
7819 case Intrinsic::x86_avx_vtestz_pd_256:
7820 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007821 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007822 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007823 // ZF = 1
7824 X86CC = X86::COND_E;
7825 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007826 case Intrinsic::x86_avx_vtestc_ps:
7827 case Intrinsic::x86_avx_vtestc_pd:
7828 case Intrinsic::x86_avx_vtestc_ps_256:
7829 case Intrinsic::x86_avx_vtestc_pd_256:
7830 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007831 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007832 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007833 // CF = 1
7834 X86CC = X86::COND_B;
7835 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007836 case Intrinsic::x86_avx_vtestnzc_ps:
7837 case Intrinsic::x86_avx_vtestnzc_pd:
7838 case Intrinsic::x86_avx_vtestnzc_ps_256:
7839 case Intrinsic::x86_avx_vtestnzc_pd_256:
7840 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00007841 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007842 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007843 // ZF and CF = 0
7844 X86CC = X86::COND_A;
7845 break;
7846 }
Eric Christopherfd179292009-08-27 18:07:15 +00007847
Eric Christopher71c67532009-07-29 00:28:05 +00007848 SDValue LHS = Op.getOperand(1);
7849 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007850 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
7851 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00007852 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
7853 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
7854 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00007855 }
Evan Cheng5759f972008-05-04 09:15:50 +00007856
7857 // Fix vector shift instructions where the last operand is a non-immediate
7858 // i32 value.
7859 case Intrinsic::x86_sse2_pslli_w:
7860 case Intrinsic::x86_sse2_pslli_d:
7861 case Intrinsic::x86_sse2_pslli_q:
7862 case Intrinsic::x86_sse2_psrli_w:
7863 case Intrinsic::x86_sse2_psrli_d:
7864 case Intrinsic::x86_sse2_psrli_q:
7865 case Intrinsic::x86_sse2_psrai_w:
7866 case Intrinsic::x86_sse2_psrai_d:
7867 case Intrinsic::x86_mmx_pslli_w:
7868 case Intrinsic::x86_mmx_pslli_d:
7869 case Intrinsic::x86_mmx_pslli_q:
7870 case Intrinsic::x86_mmx_psrli_w:
7871 case Intrinsic::x86_mmx_psrli_d:
7872 case Intrinsic::x86_mmx_psrli_q:
7873 case Intrinsic::x86_mmx_psrai_w:
7874 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00007875 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00007876 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00007877 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00007878
7879 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00007880 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007881 switch (IntNo) {
7882 case Intrinsic::x86_sse2_pslli_w:
7883 NewIntNo = Intrinsic::x86_sse2_psll_w;
7884 break;
7885 case Intrinsic::x86_sse2_pslli_d:
7886 NewIntNo = Intrinsic::x86_sse2_psll_d;
7887 break;
7888 case Intrinsic::x86_sse2_pslli_q:
7889 NewIntNo = Intrinsic::x86_sse2_psll_q;
7890 break;
7891 case Intrinsic::x86_sse2_psrli_w:
7892 NewIntNo = Intrinsic::x86_sse2_psrl_w;
7893 break;
7894 case Intrinsic::x86_sse2_psrli_d:
7895 NewIntNo = Intrinsic::x86_sse2_psrl_d;
7896 break;
7897 case Intrinsic::x86_sse2_psrli_q:
7898 NewIntNo = Intrinsic::x86_sse2_psrl_q;
7899 break;
7900 case Intrinsic::x86_sse2_psrai_w:
7901 NewIntNo = Intrinsic::x86_sse2_psra_w;
7902 break;
7903 case Intrinsic::x86_sse2_psrai_d:
7904 NewIntNo = Intrinsic::x86_sse2_psra_d;
7905 break;
7906 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00007907 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007908 switch (IntNo) {
7909 case Intrinsic::x86_mmx_pslli_w:
7910 NewIntNo = Intrinsic::x86_mmx_psll_w;
7911 break;
7912 case Intrinsic::x86_mmx_pslli_d:
7913 NewIntNo = Intrinsic::x86_mmx_psll_d;
7914 break;
7915 case Intrinsic::x86_mmx_pslli_q:
7916 NewIntNo = Intrinsic::x86_mmx_psll_q;
7917 break;
7918 case Intrinsic::x86_mmx_psrli_w:
7919 NewIntNo = Intrinsic::x86_mmx_psrl_w;
7920 break;
7921 case Intrinsic::x86_mmx_psrli_d:
7922 NewIntNo = Intrinsic::x86_mmx_psrl_d;
7923 break;
7924 case Intrinsic::x86_mmx_psrli_q:
7925 NewIntNo = Intrinsic::x86_mmx_psrl_q;
7926 break;
7927 case Intrinsic::x86_mmx_psrai_w:
7928 NewIntNo = Intrinsic::x86_mmx_psra_w;
7929 break;
7930 case Intrinsic::x86_mmx_psrai_d:
7931 NewIntNo = Intrinsic::x86_mmx_psra_d;
7932 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00007933 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00007934 }
7935 break;
7936 }
7937 }
Mon P Wangefa42202009-09-03 19:56:25 +00007938
7939 // The vector shift intrinsics with scalars uses 32b shift amounts but
7940 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
7941 // to be zero.
7942 SDValue ShOps[4];
7943 ShOps[0] = ShAmt;
7944 ShOps[1] = DAG.getConstant(0, MVT::i32);
7945 if (ShAmtVT == MVT::v4i32) {
7946 ShOps[2] = DAG.getUNDEF(MVT::i32);
7947 ShOps[3] = DAG.getUNDEF(MVT::i32);
7948 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
7949 } else {
7950 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00007951// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00007952 }
7953
Owen Andersone50ed302009-08-10 22:56:29 +00007954 EVT VT = Op.getValueType();
Wesley Peckbf17cfa2010-11-23 03:31:01 +00007955 ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007956 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007957 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00007958 Op.getOperand(1), ShAmt);
7959 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00007960 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007961}
Evan Cheng72261582005-12-20 06:22:03 +00007962
Dan Gohmand858e902010-04-17 15:26:15 +00007963SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
7964 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00007965 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7966 MFI->setReturnAddressIsTaken(true);
7967
Bill Wendling64e87322009-01-16 19:25:27 +00007968 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007969 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00007970
7971 if (Depth > 0) {
7972 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
7973 SDValue Offset =
7974 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007975 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007976 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007977 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007978 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00007979 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00007980 }
7981
7982 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00007983 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00007984 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007985 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00007986}
7987
Dan Gohmand858e902010-04-17 15:26:15 +00007988SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00007989 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7990 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00007991
Owen Andersone50ed302009-08-10 22:56:29 +00007992 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007993 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00007994 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
7995 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00007996 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00007997 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00007998 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
7999 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00008000 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00008001 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00008002}
8003
Dan Gohman475871a2008-07-27 21:46:04 +00008004SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008005 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008006 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008007}
8008
Dan Gohmand858e902010-04-17 15:26:15 +00008009SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008010 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00008011 SDValue Chain = Op.getOperand(0);
8012 SDValue Offset = Op.getOperand(1);
8013 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008014 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008015
Dan Gohmand8816272010-08-11 18:14:00 +00008016 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
8017 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
8018 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008019 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008020
Dan Gohmand8816272010-08-11 18:14:00 +00008021 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
8022 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008023 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00008024 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
8025 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00008026 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008027 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008028
Dale Johannesene4d209d2009-02-03 20:21:25 +00008029 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008030 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00008031 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008032}
8033
Dan Gohman475871a2008-07-27 21:46:04 +00008034SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008035 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00008036 SDValue Root = Op.getOperand(0);
8037 SDValue Trmp = Op.getOperand(1); // trampoline
8038 SDValue FPtr = Op.getOperand(2); // nested function
8039 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008040 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008041
Dan Gohman69de1932008-02-06 22:27:42 +00008042 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008043
8044 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00008045 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00008046
8047 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00008048 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
8049 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00008050
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008051 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
8052 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00008053
8054 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
8055
8056 // Load the pointer to the nested function into R11.
8057 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00008058 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008059 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008060 Addr, MachinePointerInfo(TrmpAddr),
8061 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008062
Owen Anderson825b72b2009-08-11 20:47:22 +00008063 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8064 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008065 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8066 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00008067 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008068
8069 // Load the 'nest' parameter value into R10.
8070 // R10 is specified in X86CallingConv.td
8071 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00008072 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8073 DAG.getConstant(10, MVT::i64));
8074 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008075 Addr, MachinePointerInfo(TrmpAddr, 10),
8076 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008077
Owen Anderson825b72b2009-08-11 20:47:22 +00008078 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8079 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008080 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8081 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00008082 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008083
8084 // Jump to the nested function.
8085 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00008086 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8087 DAG.getConstant(20, MVT::i64));
8088 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008089 Addr, MachinePointerInfo(TrmpAddr, 20),
8090 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008091
8092 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008093 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8094 DAG.getConstant(22, MVT::i64));
8095 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008096 MachinePointerInfo(TrmpAddr, 22),
8097 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008098
Dan Gohman475871a2008-07-27 21:46:04 +00008099 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008100 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008101 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008102 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008103 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008104 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008105 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008106 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008107
8108 switch (CC) {
8109 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008110 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008111 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008112 case CallingConv::X86_StdCall: {
8113 // Pass 'nest' parameter in ECX.
8114 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008115 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008116
8117 // Check that ECX wasn't needed by an 'inreg' parameter.
8118 const FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008119 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008120
Chris Lattner58d74912008-03-12 17:45:29 +00008121 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008122 unsigned InRegCount = 0;
8123 unsigned Idx = 1;
8124
8125 for (FunctionType::param_iterator I = FTy->param_begin(),
8126 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008127 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008128 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008129 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008130
8131 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00008132 report_fatal_error("Nest register in use - reduce number of inreg"
8133 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008134 }
8135 }
8136 break;
8137 }
8138 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00008139 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00008140 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008141 // Pass 'nest' parameter in EAX.
8142 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008143 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008144 break;
8145 }
8146
Dan Gohman475871a2008-07-27 21:46:04 +00008147 SDValue OutChains[4];
8148 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008149
Owen Anderson825b72b2009-08-11 20:47:22 +00008150 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8151 DAG.getConstant(10, MVT::i32));
8152 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008153
Chris Lattnera62fe662010-02-05 19:20:30 +00008154 // This is storing the opcode for MOV32ri.
8155 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008156 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00008157 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008158 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008159 Trmp, MachinePointerInfo(TrmpAddr),
8160 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008161
Owen Anderson825b72b2009-08-11 20:47:22 +00008162 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8163 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008164 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
8165 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00008166 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008167
Chris Lattnera62fe662010-02-05 19:20:30 +00008168 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00008169 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8170 DAG.getConstant(5, MVT::i32));
8171 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008172 MachinePointerInfo(TrmpAddr, 5),
8173 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008174
Owen Anderson825b72b2009-08-11 20:47:22 +00008175 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8176 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008177 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
8178 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00008179 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008180
Dan Gohman475871a2008-07-27 21:46:04 +00008181 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008182 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008183 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008184 }
8185}
8186
Dan Gohmand858e902010-04-17 15:26:15 +00008187SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
8188 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008189 /*
8190 The rounding mode is in bits 11:10 of FPSR, and has the following
8191 settings:
8192 00 Round to nearest
8193 01 Round to -inf
8194 10 Round to +inf
8195 11 Round to 0
8196
8197 FLT_ROUNDS, on the other hand, expects the following:
8198 -1 Undefined
8199 0 Round to 0
8200 1 Round to nearest
8201 2 Round to +inf
8202 3 Round to -inf
8203
8204 To perform the conversion, we do:
8205 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
8206 */
8207
8208 MachineFunction &MF = DAG.getMachineFunction();
8209 const TargetMachine &TM = MF.getTarget();
8210 const TargetFrameInfo &TFI = *TM.getFrameInfo();
8211 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008212 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00008213 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008214
8215 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00008216 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008217 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008218
Michael J. Spencerec38de22010-10-10 22:04:20 +00008219
Chris Lattner2156b792010-09-22 01:11:26 +00008220 MachineMemOperand *MMO =
8221 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8222 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008223
Chris Lattner2156b792010-09-22 01:11:26 +00008224 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
8225 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
8226 DAG.getVTList(MVT::Other),
8227 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008228
8229 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00008230 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00008231 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008232
8233 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00008234 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00008235 DAG.getNode(ISD::SRL, DL, MVT::i16,
8236 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008237 CWD, DAG.getConstant(0x800, MVT::i16)),
8238 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00008239 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00008240 DAG.getNode(ISD::SRL, DL, MVT::i16,
8241 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008242 CWD, DAG.getConstant(0x400, MVT::i16)),
8243 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008244
Dan Gohman475871a2008-07-27 21:46:04 +00008245 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00008246 DAG.getNode(ISD::AND, DL, MVT::i16,
8247 DAG.getNode(ISD::ADD, DL, MVT::i16,
8248 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00008249 DAG.getConstant(1, MVT::i16)),
8250 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008251
8252
Duncan Sands83ec4b62008-06-06 12:08:01 +00008253 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00008254 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008255}
8256
Dan Gohmand858e902010-04-17 15:26:15 +00008257SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008258 EVT VT = Op.getValueType();
8259 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008260 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008261 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008262
8263 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008264 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00008265 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00008266 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008267 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008268 }
Evan Cheng18efe262007-12-14 02:13:44 +00008269
Evan Cheng152804e2007-12-14 08:30:15 +00008270 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008271 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008272 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008273
8274 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008275 SDValue Ops[] = {
8276 Op,
8277 DAG.getConstant(NumBits+NumBits-1, OpVT),
8278 DAG.getConstant(X86::COND_E, MVT::i8),
8279 Op.getValue(1)
8280 };
8281 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008282
8283 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00008284 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00008285
Owen Anderson825b72b2009-08-11 20:47:22 +00008286 if (VT == MVT::i8)
8287 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008288 return Op;
8289}
8290
Dan Gohmand858e902010-04-17 15:26:15 +00008291SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008292 EVT VT = Op.getValueType();
8293 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008294 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008295 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008296
8297 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008298 if (VT == MVT::i8) {
8299 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008300 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008301 }
Evan Cheng152804e2007-12-14 08:30:15 +00008302
8303 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008304 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008305 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008306
8307 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008308 SDValue Ops[] = {
8309 Op,
8310 DAG.getConstant(NumBits, OpVT),
8311 DAG.getConstant(X86::COND_E, MVT::i8),
8312 Op.getValue(1)
8313 };
8314 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008315
Owen Anderson825b72b2009-08-11 20:47:22 +00008316 if (VT == MVT::i8)
8317 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008318 return Op;
8319}
8320
Dan Gohmand858e902010-04-17 15:26:15 +00008321SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008322 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00008323 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008324 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008325
Mon P Wangaf9b9522008-12-18 21:42:19 +00008326 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
8327 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
8328 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
8329 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
8330 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
8331 //
8332 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
8333 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
8334 // return AloBlo + AloBhi + AhiBlo;
8335
8336 SDValue A = Op.getOperand(0);
8337 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008338
Dale Johannesene4d209d2009-02-03 20:21:25 +00008339 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008340 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8341 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008342 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008343 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8344 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008345 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008346 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008347 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008348 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008349 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008350 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008351 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008352 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008353 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008354 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008355 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8356 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008357 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008358 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8359 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008360 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
8361 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008362 return Res;
8363}
8364
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008365SDValue X86TargetLowering::LowerSHL(SDValue Op, SelectionDAG &DAG) const {
8366 EVT VT = Op.getValueType();
8367 DebugLoc dl = Op.getDebugLoc();
8368 SDValue R = Op.getOperand(0);
8369
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008370 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008371
Nate Begeman51409212010-07-28 00:21:48 +00008372 assert(Subtarget->hasSSE41() && "Cannot lower SHL without SSE4.1 or later");
8373
8374 if (VT == MVT::v4i32) {
8375 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8376 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8377 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
8378
8379 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008380
Nate Begeman51409212010-07-28 00:21:48 +00008381 std::vector<Constant*> CV(4, CI);
8382 Constant *C = ConstantVector::get(CV);
8383 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8384 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008385 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008386 false, false, 16);
8387
8388 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008389 Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
Nate Begeman51409212010-07-28 00:21:48 +00008390 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
8391 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
8392 }
8393 if (VT == MVT::v16i8) {
8394 // a = a << 5;
8395 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8396 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8397 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
8398
8399 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
8400 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
8401
8402 std::vector<Constant*> CVM1(16, CM1);
8403 std::vector<Constant*> CVM2(16, CM2);
8404 Constant *C = ConstantVector::get(CVM1);
8405 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8406 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008407 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008408 false, false, 16);
8409
8410 // r = pblendv(r, psllw(r & (char16)15, 4), a);
8411 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8412 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8413 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8414 DAG.getConstant(4, MVT::i32));
8415 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8416 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8417 R, M, Op);
8418 // a += a
8419 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008420
Nate Begeman51409212010-07-28 00:21:48 +00008421 C = ConstantVector::get(CVM2);
8422 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8423 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008424 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008425 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008426
Nate Begeman51409212010-07-28 00:21:48 +00008427 // r = pblendv(r, psllw(r & (char16)63, 2), a);
8428 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8429 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8430 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8431 DAG.getConstant(2, MVT::i32));
8432 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8433 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8434 R, M, Op);
8435 // a += a
8436 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008437
Nate Begeman51409212010-07-28 00:21:48 +00008438 // return pblendv(r, r+r, a);
8439 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8440 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8441 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
8442 return R;
8443 }
8444 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008445}
Mon P Wangaf9b9522008-12-18 21:42:19 +00008446
Dan Gohmand858e902010-04-17 15:26:15 +00008447SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00008448 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
8449 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00008450 // looks for this combo and may remove the "setcc" instruction if the "setcc"
8451 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00008452 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00008453 SDValue LHS = N->getOperand(0);
8454 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00008455 unsigned BaseOp = 0;
8456 unsigned Cond = 0;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008457 DebugLoc DL = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00008458 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008459 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00008460 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00008461 // A subtract of one will be selected as a INC. Note that INC doesn't
8462 // set CF, so we can't do this for UADDO.
8463 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8464 if (C->getAPIntValue() == 1) {
8465 BaseOp = X86ISD::INC;
8466 Cond = X86::COND_O;
8467 break;
8468 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008469 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00008470 Cond = X86::COND_O;
8471 break;
8472 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008473 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00008474 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008475 break;
8476 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00008477 // A subtract of one will be selected as a DEC. Note that DEC doesn't
8478 // set CF, so we can't do this for USUBO.
8479 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8480 if (C->getAPIntValue() == 1) {
8481 BaseOp = X86ISD::DEC;
8482 Cond = X86::COND_O;
8483 break;
8484 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008485 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00008486 Cond = X86::COND_O;
8487 break;
8488 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008489 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00008490 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008491 break;
8492 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008493 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00008494 Cond = X86::COND_O;
8495 break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008496 case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
8497 SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
8498 MVT::i32);
8499 SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
8500
8501 SDValue SetCC =
8502 DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
8503 DAG.getConstant(X86::COND_O, MVT::i32),
8504 SDValue(Sum.getNode(), 2));
8505
8506 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
8507 return Sum;
8508 }
Bill Wendling74c37652008-12-09 22:08:41 +00008509 }
Bill Wendling3fafd932008-11-26 22:37:40 +00008510
Bill Wendling61edeb52008-12-02 01:06:39 +00008511 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008512 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008513 SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00008514
Bill Wendling61edeb52008-12-02 01:06:39 +00008515 SDValue SetCC =
Chris Lattnerb20e0b12010-12-05 07:30:36 +00008516 DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
8517 DAG.getConstant(Cond, MVT::i32),
8518 SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00008519
Bill Wendling61edeb52008-12-02 01:06:39 +00008520 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
8521 return Sum;
Bill Wendling41ea7e72008-11-24 19:21:46 +00008522}
8523
Eric Christopher9a9d2752010-07-22 02:48:34 +00008524SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
8525 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008526
Eric Christopherb6729dc2010-08-04 23:03:04 +00008527 if (!Subtarget->hasSSE2()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00008528 SDValue Chain = Op.getOperand(0);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008529 SDValue Zero = DAG.getConstant(0,
Eric Christopherb6729dc2010-08-04 23:03:04 +00008530 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00008531 SDValue Ops[] = {
8532 DAG.getRegister(X86::ESP, MVT::i32), // Base
8533 DAG.getTargetConstant(1, MVT::i8), // Scale
8534 DAG.getRegister(0, MVT::i32), // Index
8535 DAG.getTargetConstant(0, MVT::i32), // Disp
8536 DAG.getRegister(0, MVT::i32), // Segment.
8537 Zero,
8538 Chain
8539 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008540 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00008541 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
8542 array_lengthof(Ops));
8543 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00008544 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008545
Eric Christopher9a9d2752010-07-22 02:48:34 +00008546 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00008547 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00008548 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008549
Chris Lattner132929a2010-08-14 17:26:09 +00008550 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
8551 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
8552 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
8553 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008554
Chris Lattner132929a2010-08-14 17:26:09 +00008555 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
8556 if (!Op1 && !Op2 && !Op3 && Op4)
8557 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008558
Chris Lattner132929a2010-08-14 17:26:09 +00008559 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
8560 if (Op1 && !Op2 && !Op3 && !Op4)
8561 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008562
8563 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00008564 // (MFENCE)>;
8565 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00008566}
8567
Dan Gohmand858e902010-04-17 15:26:15 +00008568SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008569 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008570 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00008571 unsigned Reg = 0;
8572 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008573 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008574 default:
8575 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008576 case MVT::i8: Reg = X86::AL; size = 1; break;
8577 case MVT::i16: Reg = X86::AX; size = 2; break;
8578 case MVT::i32: Reg = X86::EAX; size = 4; break;
8579 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00008580 assert(Subtarget->is64Bit() && "Node not type legal!");
8581 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00008582 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008583 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008584 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00008585 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00008586 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008587 Op.getOperand(1),
8588 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00008589 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008590 cpIn.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008591 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008592 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
8593 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
8594 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00008595 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008596 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00008597 return cpOut;
8598}
8599
Duncan Sands1607f052008-12-01 11:39:25 +00008600SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008601 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00008602 assert(Subtarget->is64Bit() && "Result not type legalized?");
Owen Anderson825b72b2009-08-11 20:47:22 +00008603 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008604 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008605 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008606 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008607 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
8608 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00008609 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00008610 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
8611 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00008612 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00008613 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00008614 rdx.getValue(1)
8615 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008616 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008617}
8618
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008619SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
Dale Johannesen7d07b482010-05-21 00:52:33 +00008620 SelectionDAG &DAG) const {
8621 EVT SrcVT = Op.getOperand(0).getValueType();
8622 EVT DstVT = Op.getValueType();
Chris Lattner2a786eb2010-12-19 20:19:20 +00008623 assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
8624 Subtarget->hasMMX() && "Unexpected custom BITCAST");
Michael J. Spencerec38de22010-10-10 22:04:20 +00008625 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00008626 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008627 "Unexpected custom BITCAST");
Dale Johannesen7d07b482010-05-21 00:52:33 +00008628 // i64 <=> MMX conversions are Legal.
8629 if (SrcVT==MVT::i64 && DstVT.isVector())
8630 return Op;
8631 if (DstVT==MVT::i64 && SrcVT.isVector())
8632 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00008633 // MMX <=> MMX conversions are Legal.
8634 if (SrcVT.isVector() && DstVT.isVector())
8635 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00008636 // All other conversions need to be expanded.
8637 return SDValue();
8638}
Chris Lattner5b856542010-12-20 00:59:46 +00008639
Dan Gohmand858e902010-04-17 15:26:15 +00008640SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008641 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008642 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008643 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008644 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00008645 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008646 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008647 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008648 Node->getOperand(0),
8649 Node->getOperand(1), negOp,
8650 cast<AtomicSDNode>(Node)->getSrcValue(),
8651 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00008652}
8653
Chris Lattner5b856542010-12-20 00:59:46 +00008654static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
8655 EVT VT = Op.getNode()->getValueType(0);
8656
8657 // Let legalize expand this if it isn't a legal type yet.
8658 if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
8659 return SDValue();
8660
8661 SDVTList VTs = DAG.getVTList(VT, MVT::i32);
8662
8663 unsigned Opc;
8664 bool ExtraOp = false;
8665 switch (Op.getOpcode()) {
8666 default: assert(0 && "Invalid code");
8667 case ISD::ADDC: Opc = X86ISD::ADD; break;
8668 case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
8669 case ISD::SUBC: Opc = X86ISD::SUB; break;
8670 case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
8671 }
8672
8673 if (!ExtraOp)
8674 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
8675 Op.getOperand(1));
8676 return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
8677 Op.getOperand(1), Op.getOperand(2));
8678}
8679
Evan Cheng0db9fe62006-04-25 20:13:52 +00008680/// LowerOperation - Provide custom lowering hooks for some operations.
8681///
Dan Gohmand858e902010-04-17 15:26:15 +00008682SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008683 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008684 default: llvm_unreachable("Should not custom lower this!");
Eric Christopher9a9d2752010-07-22 02:48:34 +00008685 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008686 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
8687 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008688 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00008689 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008690 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
8691 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
8692 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
8693 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
8694 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
8695 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008696 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00008697 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00008698 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008699 case ISD::SHL_PARTS:
8700 case ISD::SRA_PARTS:
8701 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
8702 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008703 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008704 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00008705 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008706 case ISD::FABS: return LowerFABS(Op, DAG);
8707 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008708 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008709 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00008710 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008711 case ISD::SELECT: return LowerSELECT(Op, DAG);
8712 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008713 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008714 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00008715 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00008716 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008717 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008718 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
8719 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008720 case ISD::FRAME_TO_ARGS_OFFSET:
8721 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008722 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008723 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008724 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00008725 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00008726 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
8727 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008728 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008729 case ISD::SHL: return LowerSHL(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00008730 case ISD::SADDO:
8731 case ISD::UADDO:
8732 case ISD::SSUBO:
8733 case ISD::USUBO:
8734 case ISD::SMULO:
8735 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00008736 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Wesley Peckbf17cfa2010-11-23 03:31:01 +00008737 case ISD::BITCAST: return LowerBITCAST(Op, DAG);
Chris Lattner5b856542010-12-20 00:59:46 +00008738 case ISD::ADDC:
8739 case ISD::ADDE:
8740 case ISD::SUBC:
8741 case ISD::SUBE: return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008742 }
Chris Lattner27a6c732007-11-24 07:07:01 +00008743}
8744
Duncan Sands1607f052008-12-01 11:39:25 +00008745void X86TargetLowering::
8746ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008747 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008748 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008749 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00008750 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00008751
8752 SDValue Chain = Node->getOperand(0);
8753 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008754 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008755 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008756 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008757 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00008758 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00008759 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00008760 SDValue Result =
8761 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
8762 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00008763 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008764 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008765 Results.push_back(Result.getValue(2));
8766}
8767
Duncan Sands126d9072008-07-04 11:47:58 +00008768/// ReplaceNodeResults - Replace a node with an illegal result type
8769/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00008770void X86TargetLowering::ReplaceNodeResults(SDNode *N,
8771 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008772 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00008773 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00008774 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00008775 default:
Duncan Sands1607f052008-12-01 11:39:25 +00008776 assert(false && "Do not know how to custom type legalize this operation!");
8777 return;
Chris Lattner5b856542010-12-20 00:59:46 +00008778 case ISD::ADDC:
8779 case ISD::ADDE:
8780 case ISD::SUBC:
8781 case ISD::SUBE:
8782 // We don't want to expand or promote these.
8783 return;
Duncan Sands1607f052008-12-01 11:39:25 +00008784 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00008785 std::pair<SDValue,SDValue> Vals =
8786 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00008787 SDValue FIST = Vals.first, StackSlot = Vals.second;
8788 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00008789 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00008790 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00008791 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
8792 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00008793 }
8794 return;
8795 }
8796 case ISD::READCYCLECOUNTER: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008797 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008798 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008799 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008800 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00008801 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00008802 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008803 eax.getValue(2));
8804 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
8805 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00008806 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008807 Results.push_back(edx.getValue(1));
8808 return;
8809 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008810 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00008811 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008812 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00008813 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008814 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8815 DAG.getConstant(0, MVT::i32));
8816 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8817 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008818 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
8819 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008820 cpInL.getValue(1));
8821 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008822 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8823 DAG.getConstant(0, MVT::i32));
8824 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8825 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008826 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00008827 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008828 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008829 swapInL.getValue(1));
8830 SDValue Ops[] = { swapInH.getValue(0),
8831 N->getOperand(1),
8832 swapInH.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008833 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +00008834 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
8835 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
8836 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +00008837 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008838 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008839 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008840 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00008841 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008842 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008843 Results.push_back(cpOutH.getValue(1));
8844 return;
8845 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008846 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00008847 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
8848 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008849 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00008850 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
8851 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008852 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00008853 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
8854 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008855 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00008856 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
8857 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008858 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00008859 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
8860 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008861 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00008862 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
8863 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008864 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00008865 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
8866 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00008867 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008868}
8869
Evan Cheng72261582005-12-20 06:22:03 +00008870const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
8871 switch (Opcode) {
8872 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00008873 case X86ISD::BSF: return "X86ISD::BSF";
8874 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00008875 case X86ISD::SHLD: return "X86ISD::SHLD";
8876 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00008877 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008878 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00008879 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008880 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00008881 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00008882 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00008883 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
8884 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
8885 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00008886 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00008887 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00008888 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00008889 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00008890 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00008891 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00008892 case X86ISD::COMI: return "X86ISD::COMI";
8893 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00008894 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00008895 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Evan Cheng72261582005-12-20 06:22:03 +00008896 case X86ISD::CMOV: return "X86ISD::CMOV";
8897 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00008898 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00008899 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
8900 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00008901 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00008902 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00008903 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008904 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00008905 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008906 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
8907 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00008908 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00008909 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Nate Begemanb65c1752010-12-17 22:55:37 +00008910 case X86ISD::PANDN: return "X86ISD::PANDN";
8911 case X86ISD::PSIGNB: return "X86ISD::PSIGNB";
8912 case X86ISD::PSIGNW: return "X86ISD::PSIGNW";
8913 case X86ISD::PSIGND: return "X86ISD::PSIGND";
Evan Cheng8ca29322006-11-10 21:43:37 +00008914 case X86ISD::FMAX: return "X86ISD::FMAX";
8915 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00008916 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
8917 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008918 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00008919 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008920 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00008921 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008922 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00008923 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
8924 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008925 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
8926 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
8927 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
8928 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
8929 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
8930 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00008931 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
8932 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00008933 case X86ISD::VSHL: return "X86ISD::VSHL";
8934 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00008935 case X86ISD::CMPPD: return "X86ISD::CMPPD";
8936 case X86ISD::CMPPS: return "X86ISD::CMPPS";
8937 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
8938 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
8939 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
8940 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
8941 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
8942 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
8943 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
8944 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008945 case X86ISD::ADD: return "X86ISD::ADD";
8946 case X86ISD::SUB: return "X86ISD::SUB";
Chris Lattner5b856542010-12-20 00:59:46 +00008947 case X86ISD::ADC: return "X86ISD::ADC";
8948 case X86ISD::SBB: return "X86ISD::SBB";
Bill Wendlingd350e022008-12-12 21:15:41 +00008949 case X86ISD::SMUL: return "X86ISD::SMUL";
8950 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00008951 case X86ISD::INC: return "X86ISD::INC";
8952 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +00008953 case X86ISD::OR: return "X86ISD::OR";
8954 case X86ISD::XOR: return "X86ISD::XOR";
8955 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +00008956 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +00008957 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008958 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008959 case X86ISD::PALIGN: return "X86ISD::PALIGN";
8960 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
8961 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
8962 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
8963 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
8964 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
8965 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
8966 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
8967 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008968 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00008969 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008970 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00008971 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
8972 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008973 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
8974 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
8975 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
8976 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
8977 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
8978 case X86ISD::MOVSD: return "X86ISD::MOVSD";
8979 case X86ISD::MOVSS: return "X86ISD::MOVSS";
8980 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
8981 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
8982 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
8983 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
8984 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
8985 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
8986 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
8987 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
8988 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
8989 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
8990 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
8991 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +00008992 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +00008993 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008994 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Evan Cheng72261582005-12-20 06:22:03 +00008995 }
8996}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00008997
Chris Lattnerc9addb72007-03-30 23:15:24 +00008998// isLegalAddressingMode - Return true if the addressing mode represented
8999// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00009000bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerc9addb72007-03-30 23:15:24 +00009001 const Type *Ty) const {
9002 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009003 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +00009004 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +00009005
Chris Lattnerc9addb72007-03-30 23:15:24 +00009006 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009007 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +00009008 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00009009
Chris Lattnerc9addb72007-03-30 23:15:24 +00009010 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +00009011 unsigned GVFlags =
9012 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009013
Chris Lattnerdfed4132009-07-10 07:38:24 +00009014 // If a reference to this global requires an extra load, we can't fold it.
9015 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +00009016 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009017
Chris Lattnerdfed4132009-07-10 07:38:24 +00009018 // If BaseGV requires a register for the PIC base, we cannot also have a
9019 // BaseReg specified.
9020 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +00009021 return false;
Evan Cheng52787842007-08-01 23:46:47 +00009022
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009023 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +00009024 if ((M != CodeModel::Small || R != Reloc::Static) &&
9025 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00009026 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00009027 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009028
Chris Lattnerc9addb72007-03-30 23:15:24 +00009029 switch (AM.Scale) {
9030 case 0:
9031 case 1:
9032 case 2:
9033 case 4:
9034 case 8:
9035 // These scales always work.
9036 break;
9037 case 3:
9038 case 5:
9039 case 9:
9040 // These scales are formed with basereg+scalereg. Only accept if there is
9041 // no basereg yet.
9042 if (AM.HasBaseReg)
9043 return false;
9044 break;
9045 default: // Other stuff never works.
9046 return false;
9047 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009048
Chris Lattnerc9addb72007-03-30 23:15:24 +00009049 return true;
9050}
9051
9052
Evan Cheng2bd122c2007-10-26 01:56:11 +00009053bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00009054 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +00009055 return false;
Evan Chenge127a732007-10-29 07:57:50 +00009056 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
9057 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00009058 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00009059 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00009060 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +00009061}
9062
Owen Andersone50ed302009-08-10 22:56:29 +00009063bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00009064 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009065 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00009066 unsigned NumBits1 = VT1.getSizeInBits();
9067 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00009068 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009069 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00009070 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00009071}
Evan Cheng2bd122c2007-10-26 01:56:11 +00009072
Dan Gohman97121ba2009-04-08 00:15:30 +00009073bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00009074 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00009075 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00009076}
9077
Owen Andersone50ed302009-08-10 22:56:29 +00009078bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00009079 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00009080 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00009081}
9082
Owen Andersone50ed302009-08-10 22:56:29 +00009083bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +00009084 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +00009085 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +00009086}
9087
Evan Cheng60c07e12006-07-05 22:17:51 +00009088/// isShuffleMaskLegal - Targets can use this to indicate that they only
9089/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
9090/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
9091/// are assumed to be legal.
9092bool
Eric Christopherfd179292009-08-27 18:07:15 +00009093X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +00009094 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +00009095 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +00009096 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +00009097 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +00009098
Nate Begemana09008b2009-10-19 02:17:23 +00009099 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +00009100 return (VT.getVectorNumElements() == 2 ||
9101 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
9102 isMOVLMask(M, VT) ||
9103 isSHUFPMask(M, VT) ||
9104 isPSHUFDMask(M, VT) ||
9105 isPSHUFHWMask(M, VT) ||
9106 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +00009107 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +00009108 isUNPCKLMask(M, VT) ||
9109 isUNPCKHMask(M, VT) ||
9110 isUNPCKL_v_undef_Mask(M, VT) ||
9111 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009112}
9113
Dan Gohman7d8143f2008-04-09 20:09:42 +00009114bool
Nate Begeman5a5ca152009-04-29 05:20:52 +00009115X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +00009116 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00009117 unsigned NumElts = VT.getVectorNumElements();
9118 // FIXME: This collection of masks seems suspect.
9119 if (NumElts == 2)
9120 return true;
9121 if (NumElts == 4 && VT.getSizeInBits() == 128) {
9122 return (isMOVLMask(Mask, VT) ||
9123 isCommutedMOVLMask(Mask, VT, true) ||
9124 isSHUFPMask(Mask, VT) ||
9125 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009126 }
9127 return false;
9128}
9129
9130//===----------------------------------------------------------------------===//
9131// X86 Scheduler Hooks
9132//===----------------------------------------------------------------------===//
9133
Mon P Wang63307c32008-05-05 19:05:59 +00009134// private utility function
9135MachineBasicBlock *
9136X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
9137 MachineBasicBlock *MBB,
9138 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009139 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009140 unsigned LoadOpc,
9141 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009142 unsigned notOpc,
9143 unsigned EAXreg,
9144 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009145 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009146 // For the atomic bitwise operator, we generate
9147 // thisMBB:
9148 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009149 // ld t1 = [bitinstr.addr]
9150 // op t2 = t1, [bitinstr.val]
9151 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009152 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9153 // bz newMBB
9154 // fallthrough -->nextMBB
9155 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9156 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009157 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009158 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009159
Mon P Wang63307c32008-05-05 19:05:59 +00009160 /// First build the CFG
9161 MachineFunction *F = MBB->getParent();
9162 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009163 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9164 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9165 F->insert(MBBIter, newMBB);
9166 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009167
Dan Gohman14152b42010-07-06 20:24:04 +00009168 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9169 nextMBB->splice(nextMBB->begin(), thisMBB,
9170 llvm::next(MachineBasicBlock::iterator(bInstr)),
9171 thisMBB->end());
9172 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009173
Mon P Wang63307c32008-05-05 19:05:59 +00009174 // Update thisMBB to fall through to newMBB
9175 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009176
Mon P Wang63307c32008-05-05 19:05:59 +00009177 // newMBB jumps to itself and fall through to nextMBB
9178 newMBB->addSuccessor(nextMBB);
9179 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009180
Mon P Wang63307c32008-05-05 19:05:59 +00009181 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009182 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009183 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +00009184 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009185 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009186 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009187 int numArgs = bInstr->getNumOperands() - 1;
9188 for (int i=0; i < numArgs; ++i)
9189 argOpers[i] = &bInstr->getOperand(i+1);
9190
9191 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009192 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009193 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009194
Dale Johannesen140be2d2008-08-19 18:47:28 +00009195 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009196 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009197 for (int i=0; i <= lastAddrIndx; ++i)
9198 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009199
Dale Johannesen140be2d2008-08-19 18:47:28 +00009200 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009201 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009202 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009203 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009204 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009205 tt = t1;
9206
Dale Johannesen140be2d2008-08-19 18:47:28 +00009207 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00009208 assert((argOpers[valArgIndx]->isReg() ||
9209 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009210 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00009211 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009212 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009213 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009214 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009215 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00009216 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009217
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009218 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00009219 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009220
Dale Johannesene4d209d2009-02-03 20:21:25 +00009221 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00009222 for (int i=0; i <= lastAddrIndx; ++i)
9223 (*MIB).addOperand(*argOpers[i]);
9224 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00009225 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009226 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9227 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +00009228
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009229 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +00009230 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009231
Mon P Wang63307c32008-05-05 19:05:59 +00009232 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009233 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009234
Dan Gohman14152b42010-07-06 20:24:04 +00009235 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009236 return nextMBB;
9237}
9238
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00009239// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +00009240MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009241X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
9242 MachineBasicBlock *MBB,
9243 unsigned regOpcL,
9244 unsigned regOpcH,
9245 unsigned immOpcL,
9246 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009247 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009248 // For the atomic bitwise operator, we generate
9249 // thisMBB (instructions are in pairs, except cmpxchg8b)
9250 // ld t1,t2 = [bitinstr.addr]
9251 // newMBB:
9252 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
9253 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +00009254 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009255 // mov ECX, EBX <- t5, t6
9256 // mov EAX, EDX <- t1, t2
9257 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
9258 // mov t3, t4 <- EAX, EDX
9259 // bz newMBB
9260 // result in out1, out2
9261 // fallthrough -->nextMBB
9262
9263 const TargetRegisterClass *RC = X86::GR32RegisterClass;
9264 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009265 const unsigned NotOpc = X86::NOT32r;
9266 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9267 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9268 MachineFunction::iterator MBBIter = MBB;
9269 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009270
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009271 /// First build the CFG
9272 MachineFunction *F = MBB->getParent();
9273 MachineBasicBlock *thisMBB = MBB;
9274 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9275 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9276 F->insert(MBBIter, newMBB);
9277 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009278
Dan Gohman14152b42010-07-06 20:24:04 +00009279 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9280 nextMBB->splice(nextMBB->begin(), thisMBB,
9281 llvm::next(MachineBasicBlock::iterator(bInstr)),
9282 thisMBB->end());
9283 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009284
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009285 // Update thisMBB to fall through to newMBB
9286 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009287
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009288 // newMBB jumps to itself and fall through to nextMBB
9289 newMBB->addSuccessor(nextMBB);
9290 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009291
Dale Johannesene4d209d2009-02-03 20:21:25 +00009292 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009293 // Insert instructions into newMBB based on incoming instruction
9294 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009295 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009296 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009297 MachineOperand& dest1Oper = bInstr->getOperand(0);
9298 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009299 MachineOperand* argOpers[2 + X86::AddrNumOperands];
9300 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009301 argOpers[i] = &bInstr->getOperand(i+2);
9302
Dan Gohman71ea4e52010-05-14 21:01:44 +00009303 // We use some of the operands multiple times, so conservatively just
9304 // clear any kill flags that might be present.
9305 if (argOpers[i]->isReg() && argOpers[i]->isUse())
9306 argOpers[i]->setIsKill(false);
9307 }
9308
Evan Chengad5b52f2010-01-08 19:14:57 +00009309 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009310 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +00009311
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009312 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009313 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009314 for (int i=0; i <= lastAddrIndx; ++i)
9315 (*MIB).addOperand(*argOpers[i]);
9316 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009317 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +00009318 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +00009319 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009320 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +00009321 MachineOperand newOp3 = *(argOpers[3]);
9322 if (newOp3.isImm())
9323 newOp3.setImm(newOp3.getImm()+4);
9324 else
9325 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009326 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +00009327 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009328
9329 // t3/4 are defined later, at the bottom of the loop
9330 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
9331 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009332 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009333 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009334 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009335 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
9336
Evan Cheng306b4ca2010-01-08 23:41:50 +00009337 // The subsequent operations should be using the destination registers of
9338 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +00009339 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009340 t1 = F->getRegInfo().createVirtualRegister(RC);
9341 t2 = F->getRegInfo().createVirtualRegister(RC);
9342 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
9343 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009344 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009345 t1 = dest1Oper.getReg();
9346 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009347 }
9348
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009349 int valArgIndx = lastAddrIndx + 1;
9350 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +00009351 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009352 "invalid operand");
9353 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
9354 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009355 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009356 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009357 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009358 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +00009359 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009360 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009361 (*MIB).addOperand(*argOpers[valArgIndx]);
9362 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009363 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009364 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009365 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009366 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009367 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009368 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009369 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +00009370 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009371 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009372 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009373
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009374 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009375 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009376 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009377 MIB.addReg(t2);
9378
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009379 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009380 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009381 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009382 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +00009383
Dale Johannesene4d209d2009-02-03 20:21:25 +00009384 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009385 for (int i=0; i <= lastAddrIndx; ++i)
9386 (*MIB).addOperand(*argOpers[i]);
9387
9388 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009389 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9390 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009391
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009392 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009393 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009394 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009395 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009396
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009397 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009398 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009399
Dan Gohman14152b42010-07-06 20:24:04 +00009400 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009401 return nextMBB;
9402}
9403
9404// private utility function
9405MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +00009406X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
9407 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009408 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009409 // For the atomic min/max operator, we generate
9410 // thisMBB:
9411 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009412 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +00009413 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +00009414 // cmp t1, t2
9415 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +00009416 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009417 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9418 // bz newMBB
9419 // fallthrough -->nextMBB
9420 //
9421 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9422 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009423 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009424 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009425
Mon P Wang63307c32008-05-05 19:05:59 +00009426 /// First build the CFG
9427 MachineFunction *F = MBB->getParent();
9428 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009429 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9430 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9431 F->insert(MBBIter, newMBB);
9432 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009433
Dan Gohman14152b42010-07-06 20:24:04 +00009434 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9435 nextMBB->splice(nextMBB->begin(), thisMBB,
9436 llvm::next(MachineBasicBlock::iterator(mInstr)),
9437 thisMBB->end());
9438 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009439
Mon P Wang63307c32008-05-05 19:05:59 +00009440 // Update thisMBB to fall through to newMBB
9441 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009442
Mon P Wang63307c32008-05-05 19:05:59 +00009443 // newMBB jumps to newMBB and fall through to nextMBB
9444 newMBB->addSuccessor(nextMBB);
9445 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009446
Dale Johannesene4d209d2009-02-03 20:21:25 +00009447 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009448 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009449 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009450 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +00009451 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009452 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009453 int numArgs = mInstr->getNumOperands() - 1;
9454 for (int i=0; i < numArgs; ++i)
9455 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009456
Mon P Wang63307c32008-05-05 19:05:59 +00009457 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009458 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009459 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009460
Mon P Wangab3e7472008-05-05 22:56:23 +00009461 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009462 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009463 for (int i=0; i <= lastAddrIndx; ++i)
9464 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +00009465
Mon P Wang63307c32008-05-05 19:05:59 +00009466 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +00009467 assert((argOpers[valArgIndx]->isReg() ||
9468 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009469 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +00009470
9471 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +00009472 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009473 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +00009474 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009475 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009476 (*MIB).addOperand(*argOpers[valArgIndx]);
9477
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009478 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +00009479 MIB.addReg(t1);
9480
Dale Johannesene4d209d2009-02-03 20:21:25 +00009481 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +00009482 MIB.addReg(t1);
9483 MIB.addReg(t2);
9484
9485 // Generate movc
9486 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009487 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +00009488 MIB.addReg(t2);
9489 MIB.addReg(t1);
9490
9491 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +00009492 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +00009493 for (int i=0; i <= lastAddrIndx; ++i)
9494 (*MIB).addOperand(*argOpers[i]);
9495 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +00009496 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009497 (*MIB).setMemRefs(mInstr->memoperands_begin(),
9498 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00009499
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009500 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +00009501 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009502
Mon P Wang63307c32008-05-05 19:05:59 +00009503 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009504 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009505
Dan Gohman14152b42010-07-06 20:24:04 +00009506 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009507 return nextMBB;
9508}
9509
Eric Christopherf83a5de2009-08-27 18:08:16 +00009510// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009511// or XMM0_V32I8 in AVX all of this code can be replaced with that
9512// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009513MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +00009514X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +00009515 unsigned numArgs, bool memArg) const {
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009516 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
9517 "Target must have SSE4.2 or AVX features enabled");
9518
Eric Christopherb120ab42009-08-18 22:50:32 +00009519 DebugLoc dl = MI->getDebugLoc();
9520 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
Eric Christopherb120ab42009-08-18 22:50:32 +00009521 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009522 if (!Subtarget->hasAVX()) {
9523 if (memArg)
9524 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
9525 else
9526 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
9527 } else {
9528 if (memArg)
9529 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
9530 else
9531 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
9532 }
Eric Christopherb120ab42009-08-18 22:50:32 +00009533
Eric Christopher41c902f2010-11-30 08:20:21 +00009534 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
Eric Christopherb120ab42009-08-18 22:50:32 +00009535 for (unsigned i = 0; i < numArgs; ++i) {
9536 MachineOperand &Op = MI->getOperand(i+1);
Eric Christopherb120ab42009-08-18 22:50:32 +00009537 if (!(Op.isReg() && Op.isImplicit()))
9538 MIB.addOperand(Op);
9539 }
Eric Christopher41c902f2010-11-30 08:20:21 +00009540 BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
Eric Christopherb120ab42009-08-18 22:50:32 +00009541 .addReg(X86::XMM0);
9542
Dan Gohman14152b42010-07-06 20:24:04 +00009543 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +00009544 return BB;
9545}
9546
9547MachineBasicBlock *
Eric Christopher228232b2010-11-30 07:20:12 +00009548X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +00009549 DebugLoc dl = MI->getDebugLoc();
9550 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9551
9552 // Address into RAX/EAX, other two args into ECX, EDX.
9553 unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
9554 unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
9555 MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
9556 for (int i = 0; i < X86::AddrNumOperands; ++i)
Eric Christopher82be2202010-11-30 08:10:28 +00009557 MIB.addOperand(MI->getOperand(i));
Eric Christopher228232b2010-11-30 07:20:12 +00009558
9559 unsigned ValOps = X86::AddrNumOperands;
9560 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
9561 .addReg(MI->getOperand(ValOps).getReg());
9562 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
9563 .addReg(MI->getOperand(ValOps+1).getReg());
9564
9565 // The instruction doesn't actually take any operands though.
9566 BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
9567
9568 MI->eraseFromParent(); // The pseudo is gone now.
9569 return BB;
9570}
9571
9572MachineBasicBlock *
9573X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
Eric Christopher228232b2010-11-30 07:20:12 +00009574 DebugLoc dl = MI->getDebugLoc();
9575 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9576
9577 // First arg in ECX, the second in EAX.
9578 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
9579 .addReg(MI->getOperand(0).getReg());
9580 BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
9581 .addReg(MI->getOperand(1).getReg());
9582
9583 // The instruction doesn't actually take any operands though.
9584 BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
9585
9586 MI->eraseFromParent(); // The pseudo is gone now.
9587 return BB;
9588}
9589
9590MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +00009591X86TargetLowering::EmitVAARG64WithCustomInserter(
9592 MachineInstr *MI,
9593 MachineBasicBlock *MBB) const {
9594 // Emit va_arg instruction on X86-64.
9595
9596 // Operands to this pseudo-instruction:
9597 // 0 ) Output : destination address (reg)
9598 // 1-5) Input : va_list address (addr, i64mem)
9599 // 6 ) ArgSize : Size (in bytes) of vararg type
9600 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
9601 // 8 ) Align : Alignment of type
9602 // 9 ) EFLAGS (implicit-def)
9603
9604 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
9605 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
9606
9607 unsigned DestReg = MI->getOperand(0).getReg();
9608 MachineOperand &Base = MI->getOperand(1);
9609 MachineOperand &Scale = MI->getOperand(2);
9610 MachineOperand &Index = MI->getOperand(3);
9611 MachineOperand &Disp = MI->getOperand(4);
9612 MachineOperand &Segment = MI->getOperand(5);
9613 unsigned ArgSize = MI->getOperand(6).getImm();
9614 unsigned ArgMode = MI->getOperand(7).getImm();
9615 unsigned Align = MI->getOperand(8).getImm();
9616
9617 // Memory Reference
9618 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
9619 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
9620 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
9621
9622 // Machine Information
9623 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9624 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
9625 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
9626 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
9627 DebugLoc DL = MI->getDebugLoc();
9628
9629 // struct va_list {
9630 // i32 gp_offset
9631 // i32 fp_offset
9632 // i64 overflow_area (address)
9633 // i64 reg_save_area (address)
9634 // }
9635 // sizeof(va_list) = 24
9636 // alignment(va_list) = 8
9637
9638 unsigned TotalNumIntRegs = 6;
9639 unsigned TotalNumXMMRegs = 8;
9640 bool UseGPOffset = (ArgMode == 1);
9641 bool UseFPOffset = (ArgMode == 2);
9642 unsigned MaxOffset = TotalNumIntRegs * 8 +
9643 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
9644
9645 /* Align ArgSize to a multiple of 8 */
9646 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
9647 bool NeedsAlign = (Align > 8);
9648
9649 MachineBasicBlock *thisMBB = MBB;
9650 MachineBasicBlock *overflowMBB;
9651 MachineBasicBlock *offsetMBB;
9652 MachineBasicBlock *endMBB;
9653
9654 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
9655 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
9656 unsigned OffsetReg = 0;
9657
9658 if (!UseGPOffset && !UseFPOffset) {
9659 // If we only pull from the overflow region, we don't create a branch.
9660 // We don't need to alter control flow.
9661 OffsetDestReg = 0; // unused
9662 OverflowDestReg = DestReg;
9663
9664 offsetMBB = NULL;
9665 overflowMBB = thisMBB;
9666 endMBB = thisMBB;
9667 } else {
9668 // First emit code to check if gp_offset (or fp_offset) is below the bound.
9669 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
9670 // If not, pull from overflow_area. (branch to overflowMBB)
9671 //
9672 // thisMBB
9673 // | .
9674 // | .
9675 // offsetMBB overflowMBB
9676 // | .
9677 // | .
9678 // endMBB
9679
9680 // Registers for the PHI in endMBB
9681 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
9682 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
9683
9684 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9685 MachineFunction *MF = MBB->getParent();
9686 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9687 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9688 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9689
9690 MachineFunction::iterator MBBIter = MBB;
9691 ++MBBIter;
9692
9693 // Insert the new basic blocks
9694 MF->insert(MBBIter, offsetMBB);
9695 MF->insert(MBBIter, overflowMBB);
9696 MF->insert(MBBIter, endMBB);
9697
9698 // Transfer the remainder of MBB and its successor edges to endMBB.
9699 endMBB->splice(endMBB->begin(), thisMBB,
9700 llvm::next(MachineBasicBlock::iterator(MI)),
9701 thisMBB->end());
9702 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
9703
9704 // Make offsetMBB and overflowMBB successors of thisMBB
9705 thisMBB->addSuccessor(offsetMBB);
9706 thisMBB->addSuccessor(overflowMBB);
9707
9708 // endMBB is a successor of both offsetMBB and overflowMBB
9709 offsetMBB->addSuccessor(endMBB);
9710 overflowMBB->addSuccessor(endMBB);
9711
9712 // Load the offset value into a register
9713 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
9714 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
9715 .addOperand(Base)
9716 .addOperand(Scale)
9717 .addOperand(Index)
9718 .addDisp(Disp, UseFPOffset ? 4 : 0)
9719 .addOperand(Segment)
9720 .setMemRefs(MMOBegin, MMOEnd);
9721
9722 // Check if there is enough room left to pull this argument.
9723 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
9724 .addReg(OffsetReg)
9725 .addImm(MaxOffset + 8 - ArgSizeA8);
9726
9727 // Branch to "overflowMBB" if offset >= max
9728 // Fall through to "offsetMBB" otherwise
9729 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
9730 .addMBB(overflowMBB);
9731 }
9732
9733 // In offsetMBB, emit code to use the reg_save_area.
9734 if (offsetMBB) {
9735 assert(OffsetReg != 0);
9736
9737 // Read the reg_save_area address.
9738 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
9739 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
9740 .addOperand(Base)
9741 .addOperand(Scale)
9742 .addOperand(Index)
9743 .addDisp(Disp, 16)
9744 .addOperand(Segment)
9745 .setMemRefs(MMOBegin, MMOEnd);
9746
9747 // Zero-extend the offset
9748 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
9749 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
9750 .addImm(0)
9751 .addReg(OffsetReg)
9752 .addImm(X86::sub_32bit);
9753
9754 // Add the offset to the reg_save_area to get the final address.
9755 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
9756 .addReg(OffsetReg64)
9757 .addReg(RegSaveReg);
9758
9759 // Compute the offset for the next argument
9760 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
9761 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
9762 .addReg(OffsetReg)
9763 .addImm(UseFPOffset ? 16 : 8);
9764
9765 // Store it back into the va_list.
9766 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
9767 .addOperand(Base)
9768 .addOperand(Scale)
9769 .addOperand(Index)
9770 .addDisp(Disp, UseFPOffset ? 4 : 0)
9771 .addOperand(Segment)
9772 .addReg(NextOffsetReg)
9773 .setMemRefs(MMOBegin, MMOEnd);
9774
9775 // Jump to endMBB
9776 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
9777 .addMBB(endMBB);
9778 }
9779
9780 //
9781 // Emit code to use overflow area
9782 //
9783
9784 // Load the overflow_area address into a register.
9785 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
9786 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
9787 .addOperand(Base)
9788 .addOperand(Scale)
9789 .addOperand(Index)
9790 .addDisp(Disp, 8)
9791 .addOperand(Segment)
9792 .setMemRefs(MMOBegin, MMOEnd);
9793
9794 // If we need to align it, do so. Otherwise, just copy the address
9795 // to OverflowDestReg.
9796 if (NeedsAlign) {
9797 // Align the overflow address
9798 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
9799 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
9800
9801 // aligned_addr = (addr + (align-1)) & ~(align-1)
9802 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
9803 .addReg(OverflowAddrReg)
9804 .addImm(Align-1);
9805
9806 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
9807 .addReg(TmpReg)
9808 .addImm(~(uint64_t)(Align-1));
9809 } else {
9810 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
9811 .addReg(OverflowAddrReg);
9812 }
9813
9814 // Compute the next overflow address after this argument.
9815 // (the overflow address should be kept 8-byte aligned)
9816 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
9817 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
9818 .addReg(OverflowDestReg)
9819 .addImm(ArgSizeA8);
9820
9821 // Store the new overflow address.
9822 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
9823 .addOperand(Base)
9824 .addOperand(Scale)
9825 .addOperand(Index)
9826 .addDisp(Disp, 8)
9827 .addOperand(Segment)
9828 .addReg(NextAddrReg)
9829 .setMemRefs(MMOBegin, MMOEnd);
9830
9831 // If we branched, emit the PHI to the front of endMBB.
9832 if (offsetMBB) {
9833 BuildMI(*endMBB, endMBB->begin(), DL,
9834 TII->get(X86::PHI), DestReg)
9835 .addReg(OffsetDestReg).addMBB(offsetMBB)
9836 .addReg(OverflowDestReg).addMBB(overflowMBB);
9837 }
9838
9839 // Erase the pseudo instruction
9840 MI->eraseFromParent();
9841
9842 return endMBB;
9843}
9844
9845MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +00009846X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
9847 MachineInstr *MI,
9848 MachineBasicBlock *MBB) const {
9849 // Emit code to save XMM registers to the stack. The ABI says that the
9850 // number of registers to save is given in %al, so it's theoretically
9851 // possible to do an indirect jump trick to avoid saving all of them,
9852 // however this code takes a simpler approach and just executes all
9853 // of the stores if %al is non-zero. It's less code, and it's probably
9854 // easier on the hardware branch predictor, and stores aren't all that
9855 // expensive anyway.
9856
9857 // Create the new basic blocks. One block contains all the XMM stores,
9858 // and one block is the final destination regardless of whether any
9859 // stores were performed.
9860 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9861 MachineFunction *F = MBB->getParent();
9862 MachineFunction::iterator MBBIter = MBB;
9863 ++MBBIter;
9864 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
9865 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
9866 F->insert(MBBIter, XMMSaveMBB);
9867 F->insert(MBBIter, EndMBB);
9868
Dan Gohman14152b42010-07-06 20:24:04 +00009869 // Transfer the remainder of MBB and its successor edges to EndMBB.
9870 EndMBB->splice(EndMBB->begin(), MBB,
9871 llvm::next(MachineBasicBlock::iterator(MI)),
9872 MBB->end());
9873 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
9874
Dan Gohmand6708ea2009-08-15 01:38:56 +00009875 // The original block will now fall through to the XMM save block.
9876 MBB->addSuccessor(XMMSaveMBB);
9877 // The XMMSaveMBB will fall through to the end block.
9878 XMMSaveMBB->addSuccessor(EndMBB);
9879
9880 // Now add the instructions.
9881 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9882 DebugLoc DL = MI->getDebugLoc();
9883
9884 unsigned CountReg = MI->getOperand(0).getReg();
9885 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
9886 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
9887
9888 if (!Subtarget->isTargetWin64()) {
9889 // If %al is 0, branch around the XMM save block.
9890 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009891 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009892 MBB->addSuccessor(EndMBB);
9893 }
9894
9895 // In the XMM save block, save all the XMM argument registers.
9896 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
9897 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +00009898 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +00009899 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +00009900 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +00009901 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +00009902 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009903 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
9904 .addFrameIndex(RegSaveFrameIndex)
9905 .addImm(/*Scale=*/1)
9906 .addReg(/*IndexReg=*/0)
9907 .addImm(/*Disp=*/Offset)
9908 .addReg(/*Segment=*/0)
9909 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +00009910 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009911 }
9912
Dan Gohman14152b42010-07-06 20:24:04 +00009913 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009914
9915 return EndMBB;
9916}
Mon P Wang63307c32008-05-05 19:05:59 +00009917
Evan Cheng60c07e12006-07-05 22:17:51 +00009918MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +00009919X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009920 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +00009921 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9922 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00009923
Chris Lattner52600972009-09-02 05:57:00 +00009924 // To "insert" a SELECT_CC instruction, we actually have to insert the
9925 // diamond control-flow pattern. The incoming instruction knows the
9926 // destination vreg to set, the condition code register to branch on, the
9927 // true/false values to select between, and a branch opcode to use.
9928 const BasicBlock *LLVM_BB = BB->getBasicBlock();
9929 MachineFunction::iterator It = BB;
9930 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +00009931
Chris Lattner52600972009-09-02 05:57:00 +00009932 // thisMBB:
9933 // ...
9934 // TrueVal = ...
9935 // cmpTY ccX, r1, r2
9936 // bCC copy1MBB
9937 // fallthrough --> copy0MBB
9938 MachineBasicBlock *thisMBB = BB;
9939 MachineFunction *F = BB->getParent();
9940 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
9941 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +00009942 F->insert(It, copy0MBB);
9943 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +00009944
Bill Wendling730c07e2010-06-25 20:48:10 +00009945 // If the EFLAGS register isn't dead in the terminator, then claim that it's
9946 // live into the sink and copy blocks.
9947 const MachineFunction *MF = BB->getParent();
9948 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
9949 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +00009950
Dan Gohman14152b42010-07-06 20:24:04 +00009951 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
9952 const MachineOperand &MO = MI->getOperand(I);
9953 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +00009954 unsigned Reg = MO.getReg();
9955 if (Reg != X86::EFLAGS) continue;
9956 copy0MBB->addLiveIn(Reg);
9957 sinkMBB->addLiveIn(Reg);
9958 }
9959
Dan Gohman14152b42010-07-06 20:24:04 +00009960 // Transfer the remainder of BB and its successor edges to sinkMBB.
9961 sinkMBB->splice(sinkMBB->begin(), BB,
9962 llvm::next(MachineBasicBlock::iterator(MI)),
9963 BB->end());
9964 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
9965
9966 // Add the true and fallthrough blocks as its successors.
9967 BB->addSuccessor(copy0MBB);
9968 BB->addSuccessor(sinkMBB);
9969
9970 // Create the conditional branch instruction.
9971 unsigned Opc =
9972 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
9973 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
9974
Chris Lattner52600972009-09-02 05:57:00 +00009975 // copy0MBB:
9976 // %FalseValue = ...
9977 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +00009978 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00009979
Chris Lattner52600972009-09-02 05:57:00 +00009980 // sinkMBB:
9981 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
9982 // ...
Dan Gohman14152b42010-07-06 20:24:04 +00009983 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
9984 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +00009985 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
9986 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
9987
Dan Gohman14152b42010-07-06 20:24:04 +00009988 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +00009989 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +00009990}
9991
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009992MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009993X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009994 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009995 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9996 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009997
9998 // The lowering is pretty easy: we're just emitting the call to _alloca. The
9999 // non-trivial part is impdef of ESP.
10000 // FIXME: The code should be tweaked as soon as we'll try to do codegen for
10001 // mingw-w64.
10002
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010003 const char *StackProbeSymbol =
10004 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
10005
Dan Gohman14152b42010-07-06 20:24:04 +000010006 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010007 .addExternalSymbol(StackProbeSymbol)
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010008 .addReg(X86::EAX, RegState::Implicit)
10009 .addReg(X86::ESP, RegState::Implicit)
10010 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
Anton Korobeynikov9f7f83b2010-08-25 07:50:11 +000010011 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
10012 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010013
Dan Gohman14152b42010-07-06 20:24:04 +000010014 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +000010015 return BB;
10016}
Chris Lattner52600972009-09-02 05:57:00 +000010017
10018MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +000010019X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
10020 MachineBasicBlock *BB) const {
10021 // This is pretty easy. We're taking the value that we received from
10022 // our load from the relocation, sticking it in either RDI (x86-64)
10023 // or EAX and doing an indirect call. The return value will then
10024 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +000010025 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +000010026 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +000010027 DebugLoc DL = MI->getDebugLoc();
10028 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +000010029
10030 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +000010031 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +000010032
Eric Christopher30ef0e52010-06-03 04:07:48 +000010033 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +000010034 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10035 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +000010036 .addReg(X86::RIP)
10037 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010038 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000010039 MI->getOperand(3).getTargetFlags())
10040 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +000010041 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +000010042 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +000010043 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +000010044 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10045 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +000010046 .addReg(0)
10047 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010048 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +000010049 MI->getOperand(3).getTargetFlags())
10050 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000010051 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000010052 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010053 } else {
Dan Gohman14152b42010-07-06 20:24:04 +000010054 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10055 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +000010056 .addReg(TII->getGlobalBaseReg(F))
10057 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +000010058 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +000010059 MI->getOperand(3).getTargetFlags())
10060 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +000010061 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +000010062 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010063 }
Michael J. Spencerec38de22010-10-10 22:04:20 +000010064
Dan Gohman14152b42010-07-06 20:24:04 +000010065 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +000010066 return BB;
10067}
10068
10069MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +000010070X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010071 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +000010072 switch (MI->getOpcode()) {
10073 default: assert(false && "Unexpected instr type to insert");
Michael J. Spencere9c253e2010-10-21 01:41:01 +000010074 case X86::WIN_ALLOCA:
10075 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +000010076 case X86::TLSCall_32:
10077 case X86::TLSCall_64:
10078 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +000010079 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +000010080 case X86::CMOV_FR32:
10081 case X86::CMOV_FR64:
10082 case X86::CMOV_V4F32:
10083 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +000010084 case X86::CMOV_V2I64:
Chris Lattner314a1132010-03-14 18:31:44 +000010085 case X86::CMOV_GR16:
10086 case X86::CMOV_GR32:
10087 case X86::CMOV_RFP32:
10088 case X86::CMOV_RFP64:
10089 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +000010090 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010091
Dale Johannesen849f2142007-07-03 00:53:03 +000010092 case X86::FP32_TO_INT16_IN_MEM:
10093 case X86::FP32_TO_INT32_IN_MEM:
10094 case X86::FP32_TO_INT64_IN_MEM:
10095 case X86::FP64_TO_INT16_IN_MEM:
10096 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +000010097 case X86::FP64_TO_INT64_IN_MEM:
10098 case X86::FP80_TO_INT16_IN_MEM:
10099 case X86::FP80_TO_INT32_IN_MEM:
10100 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +000010101 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10102 DebugLoc DL = MI->getDebugLoc();
10103
Evan Cheng60c07e12006-07-05 22:17:51 +000010104 // Change the floating point control register to use "round towards zero"
10105 // mode when truncating to an integer value.
10106 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +000010107 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +000010108 addFrameReference(BuildMI(*BB, MI, DL,
10109 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010110
10111 // Load the old value of the high byte of the control word...
10112 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +000010113 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +000010114 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +000010115 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010116
10117 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +000010118 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010119 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +000010120
10121 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +000010122 addFrameReference(BuildMI(*BB, MI, DL,
10123 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010124
10125 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +000010126 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +000010127 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +000010128
10129 // Get the X86 opcode to use.
10130 unsigned Opc;
10131 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +000010132 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +000010133 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
10134 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
10135 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
10136 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
10137 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
10138 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000010139 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
10140 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
10141 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000010142 }
10143
10144 X86AddressMode AM;
10145 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000010146 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010147 AM.BaseType = X86AddressMode::RegBase;
10148 AM.Base.Reg = Op.getReg();
10149 } else {
10150 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000010151 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000010152 }
10153 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000010154 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010155 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010156 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000010157 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010158 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010159 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000010160 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010161 AM.GV = Op.getGlobal();
10162 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000010163 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010164 }
Dan Gohman14152b42010-07-06 20:24:04 +000010165 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010166 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000010167
10168 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000010169 addFrameReference(BuildMI(*BB, MI, DL,
10170 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010171
Dan Gohman14152b42010-07-06 20:24:04 +000010172 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000010173 return BB;
10174 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010175 // String/text processing lowering.
10176 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010177 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010178 return EmitPCMP(MI, BB, 3, false /* in-mem */);
10179 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010180 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010181 return EmitPCMP(MI, BB, 3, true /* in-mem */);
10182 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010183 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010184 return EmitPCMP(MI, BB, 5, false /* in mem */);
10185 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010186 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010187 return EmitPCMP(MI, BB, 5, true /* in mem */);
10188
Eric Christopher228232b2010-11-30 07:20:12 +000010189 // Thread synchronization.
10190 case X86::MONITOR:
10191 return EmitMonitor(MI, BB);
10192 case X86::MWAIT:
10193 return EmitMwait(MI, BB);
10194
Eric Christopherb120ab42009-08-18 22:50:32 +000010195 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000010196 case X86::ATOMAND32:
10197 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010198 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010199 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010200 X86::NOT32r, X86::EAX,
10201 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010202 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000010203 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
10204 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010205 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010206 X86::NOT32r, X86::EAX,
10207 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010208 case X86::ATOMXOR32:
10209 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010210 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010211 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010212 X86::NOT32r, X86::EAX,
10213 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010214 case X86::ATOMNAND32:
10215 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010216 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010217 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010218 X86::NOT32r, X86::EAX,
10219 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000010220 case X86::ATOMMIN32:
10221 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
10222 case X86::ATOMMAX32:
10223 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
10224 case X86::ATOMUMIN32:
10225 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
10226 case X86::ATOMUMAX32:
10227 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000010228
10229 case X86::ATOMAND16:
10230 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10231 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010232 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010233 X86::NOT16r, X86::AX,
10234 X86::GR16RegisterClass);
10235 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000010236 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010237 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010238 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010239 X86::NOT16r, X86::AX,
10240 X86::GR16RegisterClass);
10241 case X86::ATOMXOR16:
10242 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
10243 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010244 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010245 X86::NOT16r, X86::AX,
10246 X86::GR16RegisterClass);
10247 case X86::ATOMNAND16:
10248 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10249 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010250 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010251 X86::NOT16r, X86::AX,
10252 X86::GR16RegisterClass, true);
10253 case X86::ATOMMIN16:
10254 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
10255 case X86::ATOMMAX16:
10256 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
10257 case X86::ATOMUMIN16:
10258 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
10259 case X86::ATOMUMAX16:
10260 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
10261
10262 case X86::ATOMAND8:
10263 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10264 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010265 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010266 X86::NOT8r, X86::AL,
10267 X86::GR8RegisterClass);
10268 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000010269 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010270 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010271 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010272 X86::NOT8r, X86::AL,
10273 X86::GR8RegisterClass);
10274 case X86::ATOMXOR8:
10275 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
10276 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010277 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010278 X86::NOT8r, X86::AL,
10279 X86::GR8RegisterClass);
10280 case X86::ATOMNAND8:
10281 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10282 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010283 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010284 X86::NOT8r, X86::AL,
10285 X86::GR8RegisterClass, true);
10286 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010287 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000010288 case X86::ATOMAND64:
10289 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010290 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010291 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010292 X86::NOT64r, X86::RAX,
10293 X86::GR64RegisterClass);
10294 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000010295 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
10296 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010297 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010298 X86::NOT64r, X86::RAX,
10299 X86::GR64RegisterClass);
10300 case X86::ATOMXOR64:
10301 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010302 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010303 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010304 X86::NOT64r, X86::RAX,
10305 X86::GR64RegisterClass);
10306 case X86::ATOMNAND64:
10307 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
10308 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010309 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010310 X86::NOT64r, X86::RAX,
10311 X86::GR64RegisterClass, true);
10312 case X86::ATOMMIN64:
10313 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
10314 case X86::ATOMMAX64:
10315 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
10316 case X86::ATOMUMIN64:
10317 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
10318 case X86::ATOMUMAX64:
10319 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010320
10321 // This group does 64-bit operations on a 32-bit host.
10322 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010323 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010324 X86::AND32rr, X86::AND32rr,
10325 X86::AND32ri, X86::AND32ri,
10326 false);
10327 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010328 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010329 X86::OR32rr, X86::OR32rr,
10330 X86::OR32ri, X86::OR32ri,
10331 false);
10332 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010333 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010334 X86::XOR32rr, X86::XOR32rr,
10335 X86::XOR32ri, X86::XOR32ri,
10336 false);
10337 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010338 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010339 X86::AND32rr, X86::AND32rr,
10340 X86::AND32ri, X86::AND32ri,
10341 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010342 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010343 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010344 X86::ADD32rr, X86::ADC32rr,
10345 X86::ADD32ri, X86::ADC32ri,
10346 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010347 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010348 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010349 X86::SUB32rr, X86::SBB32rr,
10350 X86::SUB32ri, X86::SBB32ri,
10351 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000010352 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010353 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000010354 X86::MOV32rr, X86::MOV32rr,
10355 X86::MOV32ri, X86::MOV32ri,
10356 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010357 case X86::VASTART_SAVE_XMM_REGS:
10358 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000010359
10360 case X86::VAARG_64:
10361 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010362 }
10363}
10364
10365//===----------------------------------------------------------------------===//
10366// X86 Optimization Hooks
10367//===----------------------------------------------------------------------===//
10368
Dan Gohman475871a2008-07-27 21:46:04 +000010369void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000010370 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010371 APInt &KnownZero,
10372 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000010373 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000010374 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010375 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000010376 assert((Opc >= ISD::BUILTIN_OP_END ||
10377 Opc == ISD::INTRINSIC_WO_CHAIN ||
10378 Opc == ISD::INTRINSIC_W_CHAIN ||
10379 Opc == ISD::INTRINSIC_VOID) &&
10380 "Should use MaskedValueIsZero if you don't know whether Op"
10381 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010382
Dan Gohmanf4f92f52008-02-13 23:07:24 +000010383 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010384 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000010385 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010386 case X86ISD::ADD:
10387 case X86ISD::SUB:
Chris Lattner5b856542010-12-20 00:59:46 +000010388 case X86ISD::ADC:
10389 case X86ISD::SBB:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010390 case X86ISD::SMUL:
10391 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000010392 case X86ISD::INC:
10393 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000010394 case X86ISD::OR:
10395 case X86ISD::XOR:
10396 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010397 // These nodes' second result is a boolean.
10398 if (Op.getResNo() == 0)
10399 break;
10400 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010401 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010402 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
10403 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000010404 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010405 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010406}
Chris Lattner259e97c2006-01-31 19:43:35 +000010407
Owen Andersonbc146b02010-09-21 20:42:50 +000010408unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
10409 unsigned Depth) const {
10410 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
10411 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
10412 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010413
Owen Andersonbc146b02010-09-21 20:42:50 +000010414 // Fallback case.
10415 return 1;
10416}
10417
Evan Cheng206ee9d2006-07-07 08:33:52 +000010418/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000010419/// node is a GlobalAddress + offset.
10420bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000010421 const GlobalValue* &GA,
10422 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000010423 if (N->getOpcode() == X86ISD::Wrapper) {
10424 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000010425 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000010426 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000010427 return true;
10428 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000010429 }
Evan Chengad4196b2008-05-12 19:56:52 +000010430 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000010431}
10432
Evan Cheng206ee9d2006-07-07 08:33:52 +000010433/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
10434/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
10435/// if the load addresses are consecutive, non-overlapping, and in the right
Nate Begemanfdea31a2010-03-24 20:49:50 +000010436/// order.
Dan Gohman475871a2008-07-27 21:46:04 +000010437static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Mon P Wanga0fd0d52010-12-19 23:55:53 +000010438 TargetLowering::DAGCombinerInfo &DCI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010439 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000010440 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000010441
Eli Friedman7a5e5552009-06-07 06:52:44 +000010442 if (VT.getSizeInBits() != 128)
10443 return SDValue();
10444
Mon P Wanga0fd0d52010-12-19 23:55:53 +000010445 // Don't create instructions with illegal types after legalize types has run.
10446 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
10447 if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
10448 return SDValue();
10449
Nate Begemanfdea31a2010-03-24 20:49:50 +000010450 SmallVector<SDValue, 16> Elts;
10451 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000010452 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000010453
Nate Begemanfdea31a2010-03-24 20:49:50 +000010454 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000010455}
Evan Chengd880b972008-05-09 21:53:03 +000010456
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000010457/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
10458/// generation and convert it from being a bunch of shuffles and extracts
10459/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010460static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
10461 const TargetLowering &TLI) {
10462 SDValue InputVector = N->getOperand(0);
10463
10464 // Only operate on vectors of 4 elements, where the alternative shuffling
10465 // gets to be more expensive.
10466 if (InputVector.getValueType() != MVT::v4i32)
10467 return SDValue();
10468
10469 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
10470 // single use which is a sign-extend or zero-extend, and all elements are
10471 // used.
10472 SmallVector<SDNode *, 4> Uses;
10473 unsigned ExtractedElements = 0;
10474 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
10475 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
10476 if (UI.getUse().getResNo() != InputVector.getResNo())
10477 return SDValue();
10478
10479 SDNode *Extract = *UI;
10480 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
10481 return SDValue();
10482
10483 if (Extract->getValueType(0) != MVT::i32)
10484 return SDValue();
10485 if (!Extract->hasOneUse())
10486 return SDValue();
10487 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
10488 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
10489 return SDValue();
10490 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
10491 return SDValue();
10492
10493 // Record which element was extracted.
10494 ExtractedElements |=
10495 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
10496
10497 Uses.push_back(Extract);
10498 }
10499
10500 // If not all the elements were used, this may not be worthwhile.
10501 if (ExtractedElements != 15)
10502 return SDValue();
10503
10504 // Ok, we've now decided to do the transformation.
10505 DebugLoc dl = InputVector.getDebugLoc();
10506
10507 // Store the value to a temporary stack slot.
10508 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010509 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
10510 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010511
10512 // Replace each use (extract) with a load of the appropriate element.
10513 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
10514 UE = Uses.end(); UI != UE; ++UI) {
10515 SDNode *Extract = *UI;
10516
10517 // Compute the element's address.
10518 SDValue Idx = Extract->getOperand(1);
10519 unsigned EltSize =
10520 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
10521 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
10522 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
10523
Eric Christopher90eb4022010-07-22 00:26:08 +000010524 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(),
Chris Lattner51abfe42010-09-21 06:02:19 +000010525 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010526
10527 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000010528 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000010529 ScalarAddr, MachinePointerInfo(),
10530 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010531
10532 // Replace the exact with the load.
10533 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
10534 }
10535
10536 // The replacement was made in place; don't return anything.
10537 return SDValue();
10538}
10539
Chris Lattner83e6c992006-10-04 06:57:07 +000010540/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000010541static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000010542 const X86Subtarget *Subtarget) {
10543 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000010544 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000010545 // Get the LHS/RHS of the select.
10546 SDValue LHS = N->getOperand(1);
10547 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010548
Dan Gohman670e5392009-09-21 18:03:22 +000010549 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000010550 // instructions match the semantics of the common C idiom x<y?x:y but not
10551 // x<=y?x:y, because of how they handle negative zero (which can be
10552 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000010553 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000010554 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000010555 Cond.getOpcode() == ISD::SETCC) {
10556 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010557
Chris Lattner47b4ce82009-03-11 05:48:52 +000010558 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000010559 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000010560 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
10561 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010562 switch (CC) {
10563 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010564 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010565 // Converting this to a min would handle NaNs incorrectly, and swapping
10566 // the operands would cause it to handle comparisons between positive
10567 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010568 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010569 if (!UnsafeFPMath &&
10570 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10571 break;
10572 std::swap(LHS, RHS);
10573 }
Dan Gohman670e5392009-09-21 18:03:22 +000010574 Opcode = X86ISD::FMIN;
10575 break;
10576 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010577 // Converting this to a min would handle comparisons between positive
10578 // and negative zero incorrectly.
10579 if (!UnsafeFPMath &&
10580 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
10581 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010582 Opcode = X86ISD::FMIN;
10583 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010584 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010585 // Converting this to a min would handle both negative zeros and NaNs
10586 // incorrectly, but we can swap the operands to fix both.
10587 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010588 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010589 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010590 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010591 Opcode = X86ISD::FMIN;
10592 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010593
Dan Gohman670e5392009-09-21 18:03:22 +000010594 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010595 // Converting this to a max would handle comparisons between positive
10596 // and negative zero incorrectly.
10597 if (!UnsafeFPMath &&
10598 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS))
10599 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010600 Opcode = X86ISD::FMAX;
10601 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010602 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010603 // Converting this to a max would handle NaNs incorrectly, and swapping
10604 // the operands would cause it to handle comparisons between positive
10605 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010606 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010607 if (!UnsafeFPMath &&
10608 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10609 break;
10610 std::swap(LHS, RHS);
10611 }
Dan Gohman670e5392009-09-21 18:03:22 +000010612 Opcode = X86ISD::FMAX;
10613 break;
10614 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010615 // Converting this to a max would handle both negative zeros and NaNs
10616 // incorrectly, but we can swap the operands to fix both.
10617 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010618 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010619 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010620 case ISD::SETGE:
10621 Opcode = X86ISD::FMAX;
10622 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000010623 }
Dan Gohman670e5392009-09-21 18:03:22 +000010624 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000010625 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
10626 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010627 switch (CC) {
10628 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010629 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010630 // Converting this to a min would handle comparisons between positive
10631 // and negative zero incorrectly, and swapping the operands would
10632 // cause it to handle NaNs incorrectly.
10633 if (!UnsafeFPMath &&
10634 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000010635 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010636 break;
10637 std::swap(LHS, RHS);
10638 }
Dan Gohman670e5392009-09-21 18:03:22 +000010639 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000010640 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010641 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010642 // Converting this to a min would handle NaNs incorrectly.
10643 if (!UnsafeFPMath &&
10644 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
10645 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010646 Opcode = X86ISD::FMIN;
10647 break;
10648 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010649 // Converting this to a min would handle both negative zeros and NaNs
10650 // incorrectly, but we can swap the operands to fix both.
10651 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010652 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010653 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010654 case ISD::SETGE:
10655 Opcode = X86ISD::FMIN;
10656 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010657
Dan Gohman670e5392009-09-21 18:03:22 +000010658 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010659 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010660 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010661 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010662 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000010663 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010664 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010665 // Converting this to a max would handle comparisons between positive
10666 // and negative zero incorrectly, and swapping the operands would
10667 // cause it to handle NaNs incorrectly.
10668 if (!UnsafeFPMath &&
10669 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000010670 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010671 break;
10672 std::swap(LHS, RHS);
10673 }
Dan Gohman670e5392009-09-21 18:03:22 +000010674 Opcode = X86ISD::FMAX;
10675 break;
10676 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010677 // Converting this to a max would handle both negative zeros and NaNs
10678 // incorrectly, but we can swap the operands to fix both.
10679 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010680 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010681 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010682 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010683 Opcode = X86ISD::FMAX;
10684 break;
10685 }
Chris Lattner83e6c992006-10-04 06:57:07 +000010686 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010687
Chris Lattner47b4ce82009-03-11 05:48:52 +000010688 if (Opcode)
10689 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000010690 }
Eric Christopherfd179292009-08-27 18:07:15 +000010691
Chris Lattnerd1980a52009-03-12 06:52:53 +000010692 // If this is a select between two integer constants, try to do some
10693 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000010694 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
10695 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000010696 // Don't do this for crazy integer types.
10697 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
10698 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000010699 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010700 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000010701
Chris Lattnercee56e72009-03-13 05:53:31 +000010702 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000010703 // Efficiently invertible.
10704 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
10705 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
10706 isa<ConstantSDNode>(Cond.getOperand(1))))) {
10707 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000010708 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000010709 }
Eric Christopherfd179292009-08-27 18:07:15 +000010710
Chris Lattnerd1980a52009-03-12 06:52:53 +000010711 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010712 if (FalseC->getAPIntValue() == 0 &&
10713 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000010714 if (NeedsCondInvert) // Invert the condition if needed.
10715 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10716 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010717
Chris Lattnerd1980a52009-03-12 06:52:53 +000010718 // Zero extend the condition if needed.
10719 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010720
Chris Lattnercee56e72009-03-13 05:53:31 +000010721 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000010722 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010723 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010724 }
Eric Christopherfd179292009-08-27 18:07:15 +000010725
Chris Lattner97a29a52009-03-13 05:22:11 +000010726 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000010727 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000010728 if (NeedsCondInvert) // Invert the condition if needed.
10729 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10730 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010731
Chris Lattner97a29a52009-03-13 05:22:11 +000010732 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010733 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10734 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010735 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000010736 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000010737 }
Eric Christopherfd179292009-08-27 18:07:15 +000010738
Chris Lattnercee56e72009-03-13 05:53:31 +000010739 // Optimize cases that will turn into an LEA instruction. This requires
10740 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010741 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010742 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010743 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010744
Chris Lattnercee56e72009-03-13 05:53:31 +000010745 bool isFastMultiplier = false;
10746 if (Diff < 10) {
10747 switch ((unsigned char)Diff) {
10748 default: break;
10749 case 1: // result = add base, cond
10750 case 2: // result = lea base( , cond*2)
10751 case 3: // result = lea base(cond, cond*2)
10752 case 4: // result = lea base( , cond*4)
10753 case 5: // result = lea base(cond, cond*4)
10754 case 8: // result = lea base( , cond*8)
10755 case 9: // result = lea base(cond, cond*8)
10756 isFastMultiplier = true;
10757 break;
10758 }
10759 }
Eric Christopherfd179292009-08-27 18:07:15 +000010760
Chris Lattnercee56e72009-03-13 05:53:31 +000010761 if (isFastMultiplier) {
10762 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10763 if (NeedsCondInvert) // Invert the condition if needed.
10764 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10765 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010766
Chris Lattnercee56e72009-03-13 05:53:31 +000010767 // Zero extend the condition if needed.
10768 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10769 Cond);
10770 // Scale the condition by the difference.
10771 if (Diff != 1)
10772 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10773 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010774
Chris Lattnercee56e72009-03-13 05:53:31 +000010775 // Add the base if non-zero.
10776 if (FalseC->getAPIntValue() != 0)
10777 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10778 SDValue(FalseC, 0));
10779 return Cond;
10780 }
Eric Christopherfd179292009-08-27 18:07:15 +000010781 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010782 }
10783 }
Eric Christopherfd179292009-08-27 18:07:15 +000010784
Dan Gohman475871a2008-07-27 21:46:04 +000010785 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000010786}
10787
Chris Lattnerd1980a52009-03-12 06:52:53 +000010788/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
10789static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
10790 TargetLowering::DAGCombinerInfo &DCI) {
10791 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000010792
Chris Lattnerd1980a52009-03-12 06:52:53 +000010793 // If the flag operand isn't dead, don't touch this CMOV.
10794 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
10795 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000010796
Chris Lattnerd1980a52009-03-12 06:52:53 +000010797 // If this is a select between two integer constants, try to do some
10798 // optimizations. Note that the operands are ordered the opposite of SELECT
10799 // operands.
10800 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
10801 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
10802 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
10803 // larger than FalseC (the false value).
10804 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010805
Chris Lattnerd1980a52009-03-12 06:52:53 +000010806 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
10807 CC = X86::GetOppositeBranchCondition(CC);
10808 std::swap(TrueC, FalseC);
10809 }
Eric Christopherfd179292009-08-27 18:07:15 +000010810
Chris Lattnerd1980a52009-03-12 06:52:53 +000010811 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010812 // This is efficient for any integer data type (including i8/i16) and
10813 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010814 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
10815 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010816 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10817 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010818
Chris Lattnerd1980a52009-03-12 06:52:53 +000010819 // Zero extend the condition if needed.
10820 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010821
Chris Lattnerd1980a52009-03-12 06:52:53 +000010822 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
10823 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010824 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010825 if (N->getNumValues() == 2) // Dead flag value?
10826 return DCI.CombineTo(N, Cond, SDValue());
10827 return Cond;
10828 }
Eric Christopherfd179292009-08-27 18:07:15 +000010829
Chris Lattnercee56e72009-03-13 05:53:31 +000010830 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
10831 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000010832 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
10833 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010834 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10835 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010836
Chris Lattner97a29a52009-03-13 05:22:11 +000010837 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010838 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10839 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010840 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10841 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000010842
Chris Lattner97a29a52009-03-13 05:22:11 +000010843 if (N->getNumValues() == 2) // Dead flag value?
10844 return DCI.CombineTo(N, Cond, SDValue());
10845 return Cond;
10846 }
Eric Christopherfd179292009-08-27 18:07:15 +000010847
Chris Lattnercee56e72009-03-13 05:53:31 +000010848 // Optimize cases that will turn into an LEA instruction. This requires
10849 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010850 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010851 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010852 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010853
Chris Lattnercee56e72009-03-13 05:53:31 +000010854 bool isFastMultiplier = false;
10855 if (Diff < 10) {
10856 switch ((unsigned char)Diff) {
10857 default: break;
10858 case 1: // result = add base, cond
10859 case 2: // result = lea base( , cond*2)
10860 case 3: // result = lea base(cond, cond*2)
10861 case 4: // result = lea base( , cond*4)
10862 case 5: // result = lea base(cond, cond*4)
10863 case 8: // result = lea base( , cond*8)
10864 case 9: // result = lea base(cond, cond*8)
10865 isFastMultiplier = true;
10866 break;
10867 }
10868 }
Eric Christopherfd179292009-08-27 18:07:15 +000010869
Chris Lattnercee56e72009-03-13 05:53:31 +000010870 if (isFastMultiplier) {
10871 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10872 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010873 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10874 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000010875 // Zero extend the condition if needed.
10876 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10877 Cond);
10878 // Scale the condition by the difference.
10879 if (Diff != 1)
10880 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10881 DAG.getConstant(Diff, Cond.getValueType()));
10882
10883 // Add the base if non-zero.
10884 if (FalseC->getAPIntValue() != 0)
10885 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10886 SDValue(FalseC, 0));
10887 if (N->getNumValues() == 2) // Dead flag value?
10888 return DCI.CombineTo(N, Cond, SDValue());
10889 return Cond;
10890 }
Eric Christopherfd179292009-08-27 18:07:15 +000010891 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010892 }
10893 }
10894 return SDValue();
10895}
10896
10897
Evan Cheng0b0cd912009-03-28 05:57:29 +000010898/// PerformMulCombine - Optimize a single multiply with constant into two
10899/// in order to implement it with two cheaper instructions, e.g.
10900/// LEA + SHL, LEA + LEA.
10901static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
10902 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000010903 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
10904 return SDValue();
10905
Owen Andersone50ed302009-08-10 22:56:29 +000010906 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000010907 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000010908 return SDValue();
10909
10910 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
10911 if (!C)
10912 return SDValue();
10913 uint64_t MulAmt = C->getZExtValue();
10914 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
10915 return SDValue();
10916
10917 uint64_t MulAmt1 = 0;
10918 uint64_t MulAmt2 = 0;
10919 if ((MulAmt % 9) == 0) {
10920 MulAmt1 = 9;
10921 MulAmt2 = MulAmt / 9;
10922 } else if ((MulAmt % 5) == 0) {
10923 MulAmt1 = 5;
10924 MulAmt2 = MulAmt / 5;
10925 } else if ((MulAmt % 3) == 0) {
10926 MulAmt1 = 3;
10927 MulAmt2 = MulAmt / 3;
10928 }
10929 if (MulAmt2 &&
10930 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
10931 DebugLoc DL = N->getDebugLoc();
10932
10933 if (isPowerOf2_64(MulAmt2) &&
10934 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
10935 // If second multiplifer is pow2, issue it first. We want the multiply by
10936 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
10937 // is an add.
10938 std::swap(MulAmt1, MulAmt2);
10939
10940 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000010941 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010942 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000010943 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000010944 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010945 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000010946 DAG.getConstant(MulAmt1, VT));
10947
Eric Christopherfd179292009-08-27 18:07:15 +000010948 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010949 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000010950 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000010951 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010952 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000010953 DAG.getConstant(MulAmt2, VT));
10954
10955 // Do not add new nodes to DAG combiner worklist.
10956 DCI.CombineTo(N, NewMul, false);
10957 }
10958 return SDValue();
10959}
10960
Evan Chengad9c0a32009-12-15 00:53:42 +000010961static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
10962 SDValue N0 = N->getOperand(0);
10963 SDValue N1 = N->getOperand(1);
10964 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
10965 EVT VT = N0.getValueType();
10966
10967 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
10968 // since the result of setcc_c is all zero's or all ones.
10969 if (N1C && N0.getOpcode() == ISD::AND &&
10970 N0.getOperand(1).getOpcode() == ISD::Constant) {
10971 SDValue N00 = N0.getOperand(0);
10972 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
10973 ((N00.getOpcode() == ISD::ANY_EXTEND ||
10974 N00.getOpcode() == ISD::ZERO_EXTEND) &&
10975 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
10976 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
10977 APInt ShAmt = N1C->getAPIntValue();
10978 Mask = Mask.shl(ShAmt);
10979 if (Mask != 0)
10980 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
10981 N00, DAG.getConstant(Mask, VT));
10982 }
10983 }
10984
10985 return SDValue();
10986}
Evan Cheng0b0cd912009-03-28 05:57:29 +000010987
Nate Begeman740ab032009-01-26 00:52:55 +000010988/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
10989/// when possible.
10990static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
10991 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000010992 EVT VT = N->getValueType(0);
10993 if (!VT.isVector() && VT.isInteger() &&
10994 N->getOpcode() == ISD::SHL)
10995 return PerformSHLCombine(N, DAG);
10996
Nate Begeman740ab032009-01-26 00:52:55 +000010997 // On X86 with SSE2 support, we can transform this to a vector shift if
10998 // all elements are shifted by the same amount. We can't do this in legalize
10999 // because the a constant vector is typically transformed to a constant pool
11000 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011001 if (!Subtarget->hasSSE2())
11002 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000011003
Owen Anderson825b72b2009-08-11 20:47:22 +000011004 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011005 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000011006
Mon P Wang3becd092009-01-28 08:12:05 +000011007 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000011008 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000011009 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000011010 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000011011 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
11012 unsigned NumElts = VT.getVectorNumElements();
11013 unsigned i = 0;
11014 for (; i != NumElts; ++i) {
11015 SDValue Arg = ShAmtOp.getOperand(i);
11016 if (Arg.getOpcode() == ISD::UNDEF) continue;
11017 BaseShAmt = Arg;
11018 break;
11019 }
11020 for (; i != NumElts; ++i) {
11021 SDValue Arg = ShAmtOp.getOperand(i);
11022 if (Arg.getOpcode() == ISD::UNDEF) continue;
11023 if (Arg != BaseShAmt) {
11024 return SDValue();
11025 }
11026 }
11027 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000011028 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000011029 SDValue InVec = ShAmtOp.getOperand(0);
11030 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
11031 unsigned NumElts = InVec.getValueType().getVectorNumElements();
11032 unsigned i = 0;
11033 for (; i != NumElts; ++i) {
11034 SDValue Arg = InVec.getOperand(i);
11035 if (Arg.getOpcode() == ISD::UNDEF) continue;
11036 BaseShAmt = Arg;
11037 break;
11038 }
11039 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
11040 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000011041 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000011042 if (C->getZExtValue() == SplatIdx)
11043 BaseShAmt = InVec.getOperand(1);
11044 }
11045 }
11046 if (BaseShAmt.getNode() == 0)
11047 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
11048 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000011049 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011050 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000011051
Mon P Wangefa42202009-09-03 19:56:25 +000011052 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000011053 if (EltVT.bitsGT(MVT::i32))
11054 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
11055 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000011056 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000011057
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011058 // The shift amount is identical so we can do a vector shift.
11059 SDValue ValOp = N->getOperand(0);
11060 switch (N->getOpcode()) {
11061 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000011062 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011063 break;
11064 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000011065 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011066 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011067 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011068 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011069 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011070 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011071 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011072 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011073 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011074 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011075 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011076 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011077 break;
11078 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000011079 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011080 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011081 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011082 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011083 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011084 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011085 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011086 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011087 break;
11088 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000011089 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011090 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011091 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011092 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011093 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011094 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011095 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011096 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000011097 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000011098 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000011099 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000011100 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000011101 break;
Nate Begeman740ab032009-01-26 00:52:55 +000011102 }
11103 return SDValue();
11104}
11105
Nate Begemanb65c1752010-12-17 22:55:37 +000011106
11107static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
11108 TargetLowering::DAGCombinerInfo &DCI,
11109 const X86Subtarget *Subtarget) {
11110 if (DCI.isBeforeLegalizeOps())
11111 return SDValue();
11112
11113 // Want to form PANDN nodes, in the hopes of then easily combining them with
11114 // OR and AND nodes to form PBLEND/PSIGN.
11115 EVT VT = N->getValueType(0);
11116 if (VT != MVT::v2i64)
11117 return SDValue();
11118
11119 SDValue N0 = N->getOperand(0);
11120 SDValue N1 = N->getOperand(1);
11121 DebugLoc DL = N->getDebugLoc();
11122
11123 // Check LHS for vnot
11124 if (N0.getOpcode() == ISD::XOR &&
11125 ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
11126 return DAG.getNode(X86ISD::PANDN, DL, VT, N0.getOperand(0), N1);
11127
11128 // Check RHS for vnot
11129 if (N1.getOpcode() == ISD::XOR &&
11130 ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
11131 return DAG.getNode(X86ISD::PANDN, DL, VT, N1.getOperand(0), N0);
11132
11133 return SDValue();
11134}
11135
Evan Cheng760d1942010-01-04 21:22:48 +000011136static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000011137 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000011138 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000011139 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000011140 return SDValue();
11141
Evan Cheng760d1942010-01-04 21:22:48 +000011142 EVT VT = N->getValueType(0);
Nate Begemanb65c1752010-12-17 22:55:37 +000011143 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64 && VT != MVT::v2i64)
Evan Cheng760d1942010-01-04 21:22:48 +000011144 return SDValue();
11145
Evan Cheng760d1942010-01-04 21:22:48 +000011146 SDValue N0 = N->getOperand(0);
11147 SDValue N1 = N->getOperand(1);
Nate Begemanb65c1752010-12-17 22:55:37 +000011148
11149 // look for psign/blend
11150 if (Subtarget->hasSSSE3()) {
11151 if (VT == MVT::v2i64) {
11152 // Canonicalize pandn to RHS
11153 if (N0.getOpcode() == X86ISD::PANDN)
11154 std::swap(N0, N1);
11155 // or (and (m, x), (pandn m, y))
11156 if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::PANDN) {
11157 SDValue Mask = N1.getOperand(0);
11158 SDValue X = N1.getOperand(1);
11159 SDValue Y;
11160 if (N0.getOperand(0) == Mask)
11161 Y = N0.getOperand(1);
11162 if (N0.getOperand(1) == Mask)
11163 Y = N0.getOperand(0);
11164
11165 // Check to see if the mask appeared in both the AND and PANDN and
11166 if (!Y.getNode())
11167 return SDValue();
11168
11169 // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
11170 if (Mask.getOpcode() != ISD::BITCAST ||
11171 X.getOpcode() != ISD::BITCAST ||
11172 Y.getOpcode() != ISD::BITCAST)
11173 return SDValue();
11174
11175 // Look through mask bitcast.
11176 Mask = Mask.getOperand(0);
11177 EVT MaskVT = Mask.getValueType();
11178
11179 // Validate that the Mask operand is a vector sra node. The sra node
11180 // will be an intrinsic.
11181 if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
11182 return SDValue();
11183
11184 // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
11185 // there is no psrai.b
11186 switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
11187 case Intrinsic::x86_sse2_psrai_w:
11188 case Intrinsic::x86_sse2_psrai_d:
11189 break;
11190 default: return SDValue();
11191 }
11192
11193 // Check that the SRA is all signbits.
11194 SDValue SraC = Mask.getOperand(2);
11195 unsigned SraAmt = cast<ConstantSDNode>(SraC)->getZExtValue();
11196 unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
11197 if ((SraAmt + 1) != EltBits)
11198 return SDValue();
11199
11200 DebugLoc DL = N->getDebugLoc();
11201
11202 // Now we know we at least have a plendvb with the mask val. See if
11203 // we can form a psignb/w/d.
11204 // psign = x.type == y.type == mask.type && y = sub(0, x);
11205 X = X.getOperand(0);
11206 Y = Y.getOperand(0);
11207 if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
11208 ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
11209 X.getValueType() == MaskVT && X.getValueType() == Y.getValueType()){
11210 unsigned Opc = 0;
11211 switch (EltBits) {
11212 case 8: Opc = X86ISD::PSIGNB; break;
11213 case 16: Opc = X86ISD::PSIGNW; break;
11214 case 32: Opc = X86ISD::PSIGND; break;
11215 default: break;
11216 }
11217 if (Opc) {
11218 SDValue Sign = DAG.getNode(Opc, DL, MaskVT, X, Mask.getOperand(1));
11219 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Sign);
11220 }
11221 }
11222 // PBLENDVB only available on SSE 4.1
11223 if (!Subtarget->hasSSE41())
11224 return SDValue();
11225
11226 unsigned IID = Intrinsic::x86_sse41_pblendvb;
11227 X = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, X);
11228 Y = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Y);
11229 Mask = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Mask);
11230 Mask = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, MVT::v16i8,
11231 DAG.getConstant(IID, MVT::i32), X, Y, Mask);
11232 return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Mask);
11233 }
11234 }
11235 }
11236
11237 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
Evan Cheng760d1942010-01-04 21:22:48 +000011238 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
11239 std::swap(N0, N1);
11240 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
11241 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000011242 if (!N0.hasOneUse() || !N1.hasOneUse())
11243 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000011244
11245 SDValue ShAmt0 = N0.getOperand(1);
11246 if (ShAmt0.getValueType() != MVT::i8)
11247 return SDValue();
11248 SDValue ShAmt1 = N1.getOperand(1);
11249 if (ShAmt1.getValueType() != MVT::i8)
11250 return SDValue();
11251 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
11252 ShAmt0 = ShAmt0.getOperand(0);
11253 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
11254 ShAmt1 = ShAmt1.getOperand(0);
11255
11256 DebugLoc DL = N->getDebugLoc();
11257 unsigned Opc = X86ISD::SHLD;
11258 SDValue Op0 = N0.getOperand(0);
11259 SDValue Op1 = N1.getOperand(0);
11260 if (ShAmt0.getOpcode() == ISD::SUB) {
11261 Opc = X86ISD::SHRD;
11262 std::swap(Op0, Op1);
11263 std::swap(ShAmt0, ShAmt1);
11264 }
11265
Evan Cheng8b1190a2010-04-28 01:18:01 +000011266 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000011267 if (ShAmt1.getOpcode() == ISD::SUB) {
11268 SDValue Sum = ShAmt1.getOperand(0);
11269 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000011270 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
11271 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
11272 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
11273 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000011274 return DAG.getNode(Opc, DL, VT,
11275 Op0, Op1,
11276 DAG.getNode(ISD::TRUNCATE, DL,
11277 MVT::i8, ShAmt0));
11278 }
11279 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
11280 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
11281 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000011282 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000011283 return DAG.getNode(Opc, DL, VT,
11284 N0.getOperand(0), N1.getOperand(0),
11285 DAG.getNode(ISD::TRUNCATE, DL,
11286 MVT::i8, ShAmt0));
11287 }
Nate Begemanb65c1752010-12-17 22:55:37 +000011288
Evan Cheng760d1942010-01-04 21:22:48 +000011289 return SDValue();
11290}
11291
Chris Lattner149a4e52008-02-22 02:09:43 +000011292/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011293static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000011294 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +000011295 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
11296 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000011297 // A preferable solution to the general problem is to figure out the right
11298 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000011299
11300 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +000011301 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +000011302 EVT VT = St->getValue().getValueType();
Evan Cheng536e6672009-03-12 05:59:15 +000011303 if (VT.getSizeInBits() != 64)
11304 return SDValue();
11305
Devang Patel578efa92009-06-05 21:57:13 +000011306 const Function *F = DAG.getMachineFunction().getFunction();
11307 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000011308 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000011309 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000011310 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000011311 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000011312 isa<LoadSDNode>(St->getValue()) &&
11313 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
11314 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011315 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011316 LoadSDNode *Ld = 0;
11317 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000011318 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000011319 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011320 // Must be a store of a load. We currently handle two cases: the load
11321 // is a direct child, and it's under an intervening TokenFactor. It is
11322 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000011323 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000011324 Ld = cast<LoadSDNode>(St->getChain());
11325 else if (St->getValue().hasOneUse() &&
11326 ChainVal->getOpcode() == ISD::TokenFactor) {
11327 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011328 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000011329 TokenFactorIndex = i;
11330 Ld = cast<LoadSDNode>(St->getValue());
11331 } else
11332 Ops.push_back(ChainVal->getOperand(i));
11333 }
11334 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000011335
Evan Cheng536e6672009-03-12 05:59:15 +000011336 if (!Ld || !ISD::isNormalLoad(Ld))
11337 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011338
Evan Cheng536e6672009-03-12 05:59:15 +000011339 // If this is not the MMX case, i.e. we are just turning i64 load/store
11340 // into f64 load/store, avoid the transformation if there are multiple
11341 // uses of the loaded value.
11342 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
11343 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011344
Evan Cheng536e6672009-03-12 05:59:15 +000011345 DebugLoc LdDL = Ld->getDebugLoc();
11346 DebugLoc StDL = N->getDebugLoc();
11347 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
11348 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
11349 // pair instead.
11350 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011351 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000011352 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
11353 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011354 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011355 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000011356 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000011357 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000011358 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000011359 Ops.size());
11360 }
Evan Cheng536e6672009-03-12 05:59:15 +000011361 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011362 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011363 St->isVolatile(), St->isNonTemporal(),
11364 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000011365 }
Evan Cheng536e6672009-03-12 05:59:15 +000011366
11367 // Otherwise, lower to two pairs of 32-bit loads / stores.
11368 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011369 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
11370 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011371
Owen Anderson825b72b2009-08-11 20:47:22 +000011372 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011373 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011374 Ld->isVolatile(), Ld->isNonTemporal(),
11375 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000011376 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011377 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000011378 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011379 MinAlign(Ld->getAlignment(), 4));
11380
11381 SDValue NewChain = LoLd.getValue(1);
11382 if (TokenFactorIndex != -1) {
11383 Ops.push_back(LoLd);
11384 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000011385 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000011386 Ops.size());
11387 }
11388
11389 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011390 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
11391 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011392
11393 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011394 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011395 St->isVolatile(), St->isNonTemporal(),
11396 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011397 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011398 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000011399 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011400 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011401 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000011402 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000011403 }
Dan Gohman475871a2008-07-27 21:46:04 +000011404 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000011405}
11406
Chris Lattner6cf73262008-01-25 06:14:17 +000011407/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
11408/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011409static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000011410 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
11411 // F[X]OR(0.0, x) -> x
11412 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000011413 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11414 if (C->getValueAPF().isPosZero())
11415 return N->getOperand(1);
11416 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11417 if (C->getValueAPF().isPosZero())
11418 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000011419 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011420}
11421
11422/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011423static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000011424 // FAND(0.0, x) -> 0.0
11425 // FAND(x, 0.0) -> 0.0
11426 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11427 if (C->getValueAPF().isPosZero())
11428 return N->getOperand(0);
11429 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11430 if (C->getValueAPF().isPosZero())
11431 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000011432 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011433}
11434
Dan Gohmane5af2d32009-01-29 01:59:02 +000011435static SDValue PerformBTCombine(SDNode *N,
11436 SelectionDAG &DAG,
11437 TargetLowering::DAGCombinerInfo &DCI) {
11438 // BT ignores high bits in the bit index operand.
11439 SDValue Op1 = N->getOperand(1);
11440 if (Op1.hasOneUse()) {
11441 unsigned BitWidth = Op1.getValueSizeInBits();
11442 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
11443 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011444 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
11445 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000011446 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000011447 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
11448 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
11449 DCI.CommitTargetLoweringOpt(TLO);
11450 }
11451 return SDValue();
11452}
Chris Lattner83e6c992006-10-04 06:57:07 +000011453
Eli Friedman7a5e5552009-06-07 06:52:44 +000011454static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
11455 SDValue Op = N->getOperand(0);
Wesley Peckbf17cfa2010-11-23 03:31:01 +000011456 if (Op.getOpcode() == ISD::BITCAST)
Eli Friedman7a5e5552009-06-07 06:52:44 +000011457 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000011458 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000011459 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000011460 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000011461 OpVT.getVectorElementType().getSizeInBits()) {
Wesley Peckbf17cfa2010-11-23 03:31:01 +000011462 return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
Eli Friedman7a5e5552009-06-07 06:52:44 +000011463 }
11464 return SDValue();
11465}
11466
Evan Cheng2e489c42009-12-16 00:53:11 +000011467static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
11468 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
11469 // (and (i32 x86isd::setcc_carry), 1)
11470 // This eliminates the zext. This transformation is necessary because
11471 // ISD::SETCC is always legalized to i8.
11472 DebugLoc dl = N->getDebugLoc();
11473 SDValue N0 = N->getOperand(0);
11474 EVT VT = N->getValueType(0);
11475 if (N0.getOpcode() == ISD::AND &&
11476 N0.hasOneUse() &&
11477 N0.getOperand(0).hasOneUse()) {
11478 SDValue N00 = N0.getOperand(0);
11479 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
11480 return SDValue();
11481 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
11482 if (!C || C->getZExtValue() != 1)
11483 return SDValue();
11484 return DAG.getNode(ISD::AND, dl, VT,
11485 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
11486 N00.getOperand(0), N00.getOperand(1)),
11487 DAG.getConstant(1, VT));
11488 }
11489
11490 return SDValue();
11491}
11492
Chris Lattnerc19d1c32010-12-19 22:08:31 +000011493// Optimize RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
11494static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
11495 unsigned X86CC = N->getConstantOperandVal(0);
11496 SDValue EFLAG = N->getOperand(1);
11497 DebugLoc DL = N->getDebugLoc();
11498
11499 // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
11500 // a zext and produces an all-ones bit which is more useful than 0/1 in some
11501 // cases.
11502 if (X86CC == X86::COND_B)
11503 return DAG.getNode(ISD::AND, DL, MVT::i8,
11504 DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
11505 DAG.getConstant(X86CC, MVT::i8), EFLAG),
11506 DAG.getConstant(1, MVT::i8));
11507
11508 return SDValue();
11509}
11510
Dan Gohman475871a2008-07-27 21:46:04 +000011511SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000011512 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011513 SelectionDAG &DAG = DCI.DAG;
11514 switch (N->getOpcode()) {
11515 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011516 case ISD::EXTRACT_VECTOR_ELT:
Chris Lattnerc19d1c32010-12-19 22:08:31 +000011517 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000011518 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011519 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000011520 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000011521 case ISD::SHL:
11522 case ISD::SRA:
11523 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Nate Begemanb65c1752010-12-17 22:55:37 +000011524 case ISD::AND: return PerformAndCombine(N, DAG, DCI, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000011525 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000011526 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000011527 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000011528 case X86ISD::FOR: return PerformFORCombine(N, DAG);
11529 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000011530 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000011531 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000011532 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Chris Lattnerc19d1c32010-12-19 22:08:31 +000011533 case X86ISD::SETCC: return PerformSETCCCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011534 case X86ISD::SHUFPS: // Handle all target specific shuffles
11535 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000011536 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011537 case X86ISD::PUNPCKHBW:
11538 case X86ISD::PUNPCKHWD:
11539 case X86ISD::PUNPCKHDQ:
11540 case X86ISD::PUNPCKHQDQ:
11541 case X86ISD::UNPCKHPS:
11542 case X86ISD::UNPCKHPD:
11543 case X86ISD::PUNPCKLBW:
11544 case X86ISD::PUNPCKLWD:
11545 case X86ISD::PUNPCKLDQ:
11546 case X86ISD::PUNPCKLQDQ:
11547 case X86ISD::UNPCKLPS:
11548 case X86ISD::UNPCKLPD:
11549 case X86ISD::MOVHLPS:
11550 case X86ISD::MOVLHPS:
11551 case X86ISD::PSHUFD:
11552 case X86ISD::PSHUFHW:
11553 case X86ISD::PSHUFLW:
11554 case X86ISD::MOVSS:
11555 case X86ISD::MOVSD:
Mon P Wanga0fd0d52010-12-19 23:55:53 +000011556 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011557 }
11558
Dan Gohman475871a2008-07-27 21:46:04 +000011559 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011560}
11561
Evan Chenge5b51ac2010-04-17 06:13:15 +000011562/// isTypeDesirableForOp - Return true if the target has native support for
11563/// the specified value type and it is 'desirable' to use the type for the
11564/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
11565/// instruction encodings are longer and some i16 instructions are slow.
11566bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
11567 if (!isTypeLegal(VT))
11568 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011569 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000011570 return true;
11571
11572 switch (Opc) {
11573 default:
11574 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000011575 case ISD::LOAD:
11576 case ISD::SIGN_EXTEND:
11577 case ISD::ZERO_EXTEND:
11578 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000011579 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000011580 case ISD::SRL:
11581 case ISD::SUB:
11582 case ISD::ADD:
11583 case ISD::MUL:
11584 case ISD::AND:
11585 case ISD::OR:
11586 case ISD::XOR:
11587 return false;
11588 }
11589}
11590
11591/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000011592/// beneficial for dag combiner to promote the specified node. If true, it
11593/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000011594bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011595 EVT VT = Op.getValueType();
11596 if (VT != MVT::i16)
11597 return false;
11598
Evan Cheng4c26e932010-04-19 19:29:22 +000011599 bool Promote = false;
11600 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011601 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000011602 default: break;
11603 case ISD::LOAD: {
11604 LoadSDNode *LD = cast<LoadSDNode>(Op);
11605 // If the non-extending load has a single use and it's not live out, then it
11606 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011607 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
11608 Op.hasOneUse()*/) {
11609 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
11610 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
11611 // The only case where we'd want to promote LOAD (rather then it being
11612 // promoted as an operand is when it's only use is liveout.
11613 if (UI->getOpcode() != ISD::CopyToReg)
11614 return false;
11615 }
11616 }
Evan Cheng4c26e932010-04-19 19:29:22 +000011617 Promote = true;
11618 break;
11619 }
11620 case ISD::SIGN_EXTEND:
11621 case ISD::ZERO_EXTEND:
11622 case ISD::ANY_EXTEND:
11623 Promote = true;
11624 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011625 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011626 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000011627 SDValue N0 = Op.getOperand(0);
11628 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000011629 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000011630 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011631 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011632 break;
11633 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000011634 case ISD::ADD:
11635 case ISD::MUL:
11636 case ISD::AND:
11637 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000011638 case ISD::XOR:
11639 Commute = true;
11640 // fallthrough
11641 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011642 SDValue N0 = Op.getOperand(0);
11643 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000011644 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011645 return false;
11646 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000011647 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011648 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000011649 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011650 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011651 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011652 }
11653 }
11654
11655 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000011656 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011657}
11658
Evan Cheng60c07e12006-07-05 22:17:51 +000011659//===----------------------------------------------------------------------===//
11660// X86 Inline Assembly Support
11661//===----------------------------------------------------------------------===//
11662
Chris Lattnerb8105652009-07-20 17:51:36 +000011663static bool LowerToBSwap(CallInst *CI) {
11664 // FIXME: this should verify that we are targetting a 486 or better. If not,
11665 // we will turn this bswap into something that will be lowered to logical ops
11666 // instead of emitting the bswap asm. For now, we don't support 486 or lower
11667 // so don't worry about this.
Eric Christopherfd179292009-08-27 18:07:15 +000011668
Chris Lattnerb8105652009-07-20 17:51:36 +000011669 // Verify this is a simple bswap.
Gabor Greife1c2b9c2010-06-30 13:03:37 +000011670 if (CI->getNumArgOperands() != 1 ||
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011671 CI->getType() != CI->getArgOperand(0)->getType() ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011672 !CI->getType()->isIntegerTy())
Chris Lattnerb8105652009-07-20 17:51:36 +000011673 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011674
Chris Lattnerb8105652009-07-20 17:51:36 +000011675 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
11676 if (!Ty || Ty->getBitWidth() % 16 != 0)
11677 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011678
Chris Lattnerb8105652009-07-20 17:51:36 +000011679 // Okay, we can do this xform, do so now.
11680 const Type *Tys[] = { Ty };
11681 Module *M = CI->getParent()->getParent()->getParent();
11682 Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 1);
Eric Christopherfd179292009-08-27 18:07:15 +000011683
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011684 Value *Op = CI->getArgOperand(0);
Chris Lattnerb8105652009-07-20 17:51:36 +000011685 Op = CallInst::Create(Int, Op, CI->getName(), CI);
Eric Christopherfd179292009-08-27 18:07:15 +000011686
Chris Lattnerb8105652009-07-20 17:51:36 +000011687 CI->replaceAllUsesWith(Op);
11688 CI->eraseFromParent();
11689 return true;
11690}
11691
11692bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
11693 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
John Thompson44ab89e2010-10-29 17:29:13 +000011694 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
Chris Lattnerb8105652009-07-20 17:51:36 +000011695
11696 std::string AsmStr = IA->getAsmString();
11697
11698 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011699 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000011700 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000011701
11702 switch (AsmPieces.size()) {
11703 default: return false;
11704 case 1:
11705 AsmStr = AsmPieces[0];
11706 AsmPieces.clear();
11707 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
11708
11709 // bswap $0
11710 if (AsmPieces.size() == 2 &&
11711 (AsmPieces[0] == "bswap" ||
11712 AsmPieces[0] == "bswapq" ||
11713 AsmPieces[0] == "bswapl") &&
11714 (AsmPieces[1] == "$0" ||
11715 AsmPieces[1] == "${0:q}")) {
11716 // No need to check constraints, nothing other than the equivalent of
11717 // "=r,0" would be valid here.
11718 return LowerToBSwap(CI);
11719 }
11720 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011721 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011722 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011723 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011724 AsmPieces[1] == "$$8," &&
11725 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011726 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
11727 AsmPieces.clear();
Benjamin Kramer018cbd52010-03-12 13:54:59 +000011728 const std::string &Constraints = IA->getConstraintString();
11729 SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000011730 std::sort(AsmPieces.begin(), AsmPieces.end());
11731 if (AsmPieces.size() == 4 &&
11732 AsmPieces[0] == "~{cc}" &&
11733 AsmPieces[1] == "~{dirflag}" &&
11734 AsmPieces[2] == "~{flags}" &&
11735 AsmPieces[3] == "~{fpsr}") {
11736 return LowerToBSwap(CI);
11737 }
Chris Lattnerb8105652009-07-20 17:51:36 +000011738 }
11739 break;
11740 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000011741 if (CI->getType()->isIntegerTy(32) &&
11742 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
11743 SmallVector<StringRef, 4> Words;
11744 SplitString(AsmPieces[0], Words, " \t,");
11745 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
11746 Words[2] == "${0:w}") {
11747 Words.clear();
11748 SplitString(AsmPieces[1], Words, " \t,");
11749 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
11750 Words[2] == "$0") {
11751 Words.clear();
11752 SplitString(AsmPieces[2], Words, " \t,");
11753 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
11754 Words[2] == "${0:w}") {
11755 AsmPieces.clear();
11756 const std::string &Constraints = IA->getConstraintString();
11757 SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
11758 std::sort(AsmPieces.begin(), AsmPieces.end());
11759 if (AsmPieces.size() == 4 &&
11760 AsmPieces[0] == "~{cc}" &&
11761 AsmPieces[1] == "~{dirflag}" &&
11762 AsmPieces[2] == "~{flags}" &&
11763 AsmPieces[3] == "~{fpsr}") {
11764 return LowerToBSwap(CI);
11765 }
11766 }
11767 }
11768 }
11769 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011770 if (CI->getType()->isIntegerTy(64) &&
Owen Anderson1d0be152009-08-13 21:58:54 +000011771 Constraints.size() >= 2 &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011772 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
11773 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
11774 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011775 SmallVector<StringRef, 4> Words;
Chris Lattnerb8105652009-07-20 17:51:36 +000011776 SplitString(AsmPieces[0], Words, " \t");
11777 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
11778 Words.clear();
11779 SplitString(AsmPieces[1], Words, " \t");
11780 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
11781 Words.clear();
11782 SplitString(AsmPieces[2], Words, " \t,");
11783 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
11784 Words[2] == "%edx") {
11785 return LowerToBSwap(CI);
11786 }
11787 }
11788 }
11789 }
11790 break;
11791 }
11792 return false;
11793}
11794
11795
11796
Chris Lattnerf4dff842006-07-11 02:54:03 +000011797/// getConstraintType - Given a constraint letter, return the type of
11798/// constraint it is for this target.
11799X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000011800X86TargetLowering::getConstraintType(const std::string &Constraint) const {
11801 if (Constraint.size() == 1) {
11802 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000011803 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000011804 case 'q':
11805 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000011806 case 'f':
11807 case 't':
11808 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000011809 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000011810 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000011811 case 'Y':
11812 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000011813 case 'a':
11814 case 'b':
11815 case 'c':
11816 case 'd':
11817 case 'S':
11818 case 'D':
11819 case 'A':
11820 return C_Register;
11821 case 'I':
11822 case 'J':
11823 case 'K':
11824 case 'L':
11825 case 'M':
11826 case 'N':
11827 case 'G':
11828 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000011829 case 'e':
11830 case 'Z':
11831 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000011832 default:
11833 break;
11834 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000011835 }
Chris Lattner4234f572007-03-25 02:14:49 +000011836 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000011837}
11838
John Thompson44ab89e2010-10-29 17:29:13 +000011839/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000011840/// This object must already have been set up with the operand type
11841/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000011842TargetLowering::ConstraintWeight
11843 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000011844 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000011845 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011846 Value *CallOperandVal = info.CallOperandVal;
11847 // If we don't have a value, we can't do a match,
11848 // but allow it at the lowest weight.
11849 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000011850 return CW_Default;
11851 const Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000011852 // Look at the constraint type.
11853 switch (*constraint) {
11854 default:
John Thompson44ab89e2010-10-29 17:29:13 +000011855 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
11856 case 'R':
11857 case 'q':
11858 case 'Q':
11859 case 'a':
11860 case 'b':
11861 case 'c':
11862 case 'd':
11863 case 'S':
11864 case 'D':
11865 case 'A':
11866 if (CallOperandVal->getType()->isIntegerTy())
11867 weight = CW_SpecificReg;
11868 break;
11869 case 'f':
11870 case 't':
11871 case 'u':
11872 if (type->isFloatingPointTy())
11873 weight = CW_SpecificReg;
11874 break;
11875 case 'y':
Chris Lattner2a786eb2010-12-19 20:19:20 +000011876 if (type->isX86_MMXTy() && Subtarget->hasMMX())
John Thompson44ab89e2010-10-29 17:29:13 +000011877 weight = CW_SpecificReg;
11878 break;
11879 case 'x':
11880 case 'Y':
Nate Begeman2ea8ee72010-12-10 00:26:57 +000011881 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
John Thompson44ab89e2010-10-29 17:29:13 +000011882 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011883 break;
11884 case 'I':
11885 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
11886 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000011887 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011888 }
11889 break;
John Thompson44ab89e2010-10-29 17:29:13 +000011890 case 'J':
11891 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11892 if (C->getZExtValue() <= 63)
11893 weight = CW_Constant;
11894 }
11895 break;
11896 case 'K':
11897 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11898 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
11899 weight = CW_Constant;
11900 }
11901 break;
11902 case 'L':
11903 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11904 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
11905 weight = CW_Constant;
11906 }
11907 break;
11908 case 'M':
11909 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11910 if (C->getZExtValue() <= 3)
11911 weight = CW_Constant;
11912 }
11913 break;
11914 case 'N':
11915 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11916 if (C->getZExtValue() <= 0xff)
11917 weight = CW_Constant;
11918 }
11919 break;
11920 case 'G':
11921 case 'C':
11922 if (dyn_cast<ConstantFP>(CallOperandVal)) {
11923 weight = CW_Constant;
11924 }
11925 break;
11926 case 'e':
11927 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11928 if ((C->getSExtValue() >= -0x80000000LL) &&
11929 (C->getSExtValue() <= 0x7fffffffLL))
11930 weight = CW_Constant;
11931 }
11932 break;
11933 case 'Z':
11934 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11935 if (C->getZExtValue() <= 0xffffffff)
11936 weight = CW_Constant;
11937 }
11938 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011939 }
11940 return weight;
11941}
11942
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011943/// LowerXConstraint - try to replace an X constraint, which matches anything,
11944/// with another that has more specific requirements based on the type of the
11945/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000011946const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000011947LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000011948 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
11949 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000011950 if (ConstraintVT.isFloatingPoint()) {
Nate Begeman2ea8ee72010-12-10 00:26:57 +000011951 if (Subtarget->hasXMMInt())
Chris Lattner5e764232008-04-26 23:02:14 +000011952 return "Y";
Nate Begeman2ea8ee72010-12-10 00:26:57 +000011953 if (Subtarget->hasXMM())
Chris Lattner5e764232008-04-26 23:02:14 +000011954 return "x";
11955 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011956
Chris Lattner5e764232008-04-26 23:02:14 +000011957 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011958}
11959
Chris Lattner48884cd2007-08-25 00:47:38 +000011960/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
11961/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000011962void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattner48884cd2007-08-25 00:47:38 +000011963 char Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000011964 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000011965 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000011966 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000011967
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011968 switch (Constraint) {
11969 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000011970 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000011971 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011972 if (C->getZExtValue() <= 31) {
11973 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011974 break;
11975 }
Devang Patel84f7fd22007-03-17 00:13:28 +000011976 }
Chris Lattner48884cd2007-08-25 00:47:38 +000011977 return;
Evan Cheng364091e2008-09-22 23:57:37 +000011978 case 'J':
11979 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011980 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000011981 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11982 break;
11983 }
11984 }
11985 return;
11986 case 'K':
11987 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011988 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000011989 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11990 break;
11991 }
11992 }
11993 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000011994 case 'N':
11995 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011996 if (C->getZExtValue() <= 255) {
11997 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011998 break;
11999 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000012000 }
Chris Lattner48884cd2007-08-25 00:47:38 +000012001 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000012002 case 'e': {
12003 // 32-bit signed value
12004 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000012005 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
12006 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000012007 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000012008 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000012009 break;
12010 }
12011 // FIXME gcc accepts some relocatable values here too, but only in certain
12012 // memory models; it's complicated.
12013 }
12014 return;
12015 }
12016 case 'Z': {
12017 // 32-bit unsigned value
12018 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000012019 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
12020 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000012021 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
12022 break;
12023 }
12024 }
12025 // FIXME gcc accepts some relocatable values here too, but only in certain
12026 // memory models; it's complicated.
12027 return;
12028 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000012029 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000012030 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000012031 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000012032 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000012033 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000012034 break;
12035 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012036
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000012037 // In any sort of PIC mode addresses need to be computed at runtime by
12038 // adding in a register or some sort of table lookup. These can't
12039 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000012040 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000012041 return;
12042
Chris Lattnerdc43a882007-05-03 16:52:29 +000012043 // If we are in non-pic codegen mode, we allow the address of a global (with
12044 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000012045 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000012046 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000012047
Chris Lattner49921962009-05-08 18:23:14 +000012048 // Match either (GA), (GA+C), (GA+C1+C2), etc.
12049 while (1) {
12050 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
12051 Offset += GA->getOffset();
12052 break;
12053 } else if (Op.getOpcode() == ISD::ADD) {
12054 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
12055 Offset += C->getZExtValue();
12056 Op = Op.getOperand(0);
12057 continue;
12058 }
12059 } else if (Op.getOpcode() == ISD::SUB) {
12060 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
12061 Offset += -C->getZExtValue();
12062 Op = Op.getOperand(0);
12063 continue;
12064 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000012065 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000012066
Chris Lattner49921962009-05-08 18:23:14 +000012067 // Otherwise, this isn't something we can handle, reject it.
12068 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000012069 }
Eric Christopherfd179292009-08-27 18:07:15 +000012070
Dan Gohman46510a72010-04-15 01:51:59 +000012071 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000012072 // If we require an extra load to get this address, as in PIC mode, we
12073 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000012074 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
12075 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000012076 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000012077
Devang Patel0d881da2010-07-06 22:08:15 +000012078 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
12079 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000012080 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000012081 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000012082 }
Scott Michelfdc40a02009-02-17 22:15:04 +000012083
Gabor Greifba36cb52008-08-28 21:40:38 +000012084 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000012085 Ops.push_back(Result);
12086 return;
12087 }
Dale Johannesen1784d162010-06-25 21:55:36 +000012088 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000012089}
12090
Chris Lattner259e97c2006-01-31 19:43:35 +000012091std::vector<unsigned> X86TargetLowering::
Chris Lattner1efa40f2006-02-22 00:56:39 +000012092getRegClassForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000012093 EVT VT) const {
Chris Lattner259e97c2006-01-31 19:43:35 +000012094 if (Constraint.size() == 1) {
12095 // FIXME: not handling fp-stack yet!
Chris Lattner259e97c2006-01-31 19:43:35 +000012096 switch (Constraint[0]) { // GCC X86 Constraint Letters
Chris Lattnerf4dff842006-07-11 02:54:03 +000012097 default: break; // Unknown constraint letter
Evan Cheng47e9fab2009-07-17 22:13:25 +000012098 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
12099 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012100 if (VT == MVT::i32)
Evan Cheng47e9fab2009-07-17 22:13:25 +000012101 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX,
12102 X86::ESI, X86::EDI, X86::R8D, X86::R9D,
12103 X86::R10D,X86::R11D,X86::R12D,
12104 X86::R13D,X86::R14D,X86::R15D,
12105 X86::EBP, X86::ESP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012106 else if (VT == MVT::i16)
Evan Cheng47e9fab2009-07-17 22:13:25 +000012107 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX,
12108 X86::SI, X86::DI, X86::R8W,X86::R9W,
12109 X86::R10W,X86::R11W,X86::R12W,
12110 X86::R13W,X86::R14W,X86::R15W,
12111 X86::BP, X86::SP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012112 else if (VT == MVT::i8)
Evan Cheng47e9fab2009-07-17 22:13:25 +000012113 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL,
12114 X86::SIL, X86::DIL, X86::R8B,X86::R9B,
12115 X86::R10B,X86::R11B,X86::R12B,
12116 X86::R13B,X86::R14B,X86::R15B,
12117 X86::BPL, X86::SPL, 0);
12118
Owen Anderson825b72b2009-08-11 20:47:22 +000012119 else if (VT == MVT::i64)
Evan Cheng47e9fab2009-07-17 22:13:25 +000012120 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX,
12121 X86::RSI, X86::RDI, X86::R8, X86::R9,
12122 X86::R10, X86::R11, X86::R12,
12123 X86::R13, X86::R14, X86::R15,
12124 X86::RBP, X86::RSP, 0);
12125
12126 break;
12127 }
Eric Christopherfd179292009-08-27 18:07:15 +000012128 // 32-bit fallthrough
Chris Lattner259e97c2006-01-31 19:43:35 +000012129 case 'Q': // Q_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000012130 if (VT == MVT::i32)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000012131 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012132 else if (VT == MVT::i16)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000012133 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012134 else if (VT == MVT::i8)
Evan Cheng12914382007-08-13 23:27:11 +000012135 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000012136 else if (VT == MVT::i64)
Chris Lattner03e6c702007-11-04 06:51:12 +000012137 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
12138 break;
Chris Lattner259e97c2006-01-31 19:43:35 +000012139 }
12140 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012141
Chris Lattner1efa40f2006-02-22 00:56:39 +000012142 return std::vector<unsigned>();
Chris Lattner259e97c2006-01-31 19:43:35 +000012143}
Chris Lattnerf76d1802006-07-31 23:26:50 +000012144
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012145std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000012146X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000012147 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000012148 // First, see if this is a constraint that directly corresponds to an LLVM
12149 // register class.
12150 if (Constraint.size() == 1) {
12151 // GCC Constraint Letters
12152 switch (Constraint[0]) {
12153 default: break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000012154 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000012155 case 'l': // INDEX_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000012156 if (VT == MVT::i8)
Chris Lattner0f65cad2007-04-09 05:49:22 +000012157 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000012158 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000012159 return std::make_pair(0U, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000012160 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000012161 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000012162 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000012163 case 'R': // LEGACY_REGS
12164 if (VT == MVT::i8)
12165 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
12166 if (VT == MVT::i16)
12167 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
12168 if (VT == MVT::i32 || !Subtarget->is64Bit())
12169 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
12170 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000012171 case 'f': // FP Stack registers.
12172 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
12173 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000012174 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000012175 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000012176 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000012177 return std::make_pair(0U, X86::RFP64RegisterClass);
12178 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000012179 case 'y': // MMX_REGS if MMX allowed.
12180 if (!Subtarget->hasMMX()) break;
12181 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000012182 case 'Y': // SSE_REGS if SSE2 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012183 if (!Subtarget->hasXMMInt()) break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000012184 // FALL THROUGH.
12185 case 'x': // SSE_REGS if SSE1 allowed
Nate Begeman2ea8ee72010-12-10 00:26:57 +000012186 if (!Subtarget->hasXMM()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000012187
Owen Anderson825b72b2009-08-11 20:47:22 +000012188 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000012189 default: break;
12190 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000012191 case MVT::f32:
12192 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000012193 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000012194 case MVT::f64:
12195 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000012196 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000012197 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000012198 case MVT::v16i8:
12199 case MVT::v8i16:
12200 case MVT::v4i32:
12201 case MVT::v2i64:
12202 case MVT::v4f32:
12203 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000012204 return std::make_pair(0U, X86::VR128RegisterClass);
12205 }
Chris Lattnerad043e82007-04-09 05:11:28 +000012206 break;
12207 }
12208 }
Scott Michelfdc40a02009-02-17 22:15:04 +000012209
Chris Lattnerf76d1802006-07-31 23:26:50 +000012210 // Use the default implementation in TargetLowering to convert the register
12211 // constraint into a member of a register class.
12212 std::pair<unsigned, const TargetRegisterClass*> Res;
12213 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000012214
12215 // Not found as a standard register?
12216 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000012217 // Map st(0) -> st(7) -> ST0
12218 if (Constraint.size() == 7 && Constraint[0] == '{' &&
12219 tolower(Constraint[1]) == 's' &&
12220 tolower(Constraint[2]) == 't' &&
12221 Constraint[3] == '(' &&
12222 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
12223 Constraint[5] == ')' &&
12224 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000012225
Chris Lattner56d77c72009-09-13 22:41:48 +000012226 Res.first = X86::ST0+Constraint[4]-'0';
12227 Res.second = X86::RFP80RegisterClass;
12228 return Res;
12229 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000012230
Chris Lattner56d77c72009-09-13 22:41:48 +000012231 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000012232 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000012233 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000012234 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000012235 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000012236 }
Chris Lattner56d77c72009-09-13 22:41:48 +000012237
12238 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000012239 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000012240 Res.first = X86::EFLAGS;
12241 Res.second = X86::CCRRegisterClass;
12242 return Res;
12243 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000012244
Dale Johannesen330169f2008-11-13 21:52:36 +000012245 // 'A' means EAX + EDX.
12246 if (Constraint == "A") {
12247 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000012248 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000012249 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000012250 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000012251 return Res;
12252 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012253
Chris Lattnerf76d1802006-07-31 23:26:50 +000012254 // Otherwise, check to see if this is a register class of the wrong value
12255 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
12256 // turn into {ax},{dx}.
12257 if (Res.second->hasType(VT))
12258 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012259
Chris Lattnerf76d1802006-07-31 23:26:50 +000012260 // All of the single-register GCC register classes map their values onto
12261 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
12262 // really want an 8-bit or 32-bit register, map to the appropriate register
12263 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000012264 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000012265 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012266 unsigned DestReg = 0;
12267 switch (Res.first) {
12268 default: break;
12269 case X86::AX: DestReg = X86::AL; break;
12270 case X86::DX: DestReg = X86::DL; break;
12271 case X86::CX: DestReg = X86::CL; break;
12272 case X86::BX: DestReg = X86::BL; break;
12273 }
12274 if (DestReg) {
12275 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012276 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012277 }
Owen Anderson825b72b2009-08-11 20:47:22 +000012278 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012279 unsigned DestReg = 0;
12280 switch (Res.first) {
12281 default: break;
12282 case X86::AX: DestReg = X86::EAX; break;
12283 case X86::DX: DestReg = X86::EDX; break;
12284 case X86::CX: DestReg = X86::ECX; break;
12285 case X86::BX: DestReg = X86::EBX; break;
12286 case X86::SI: DestReg = X86::ESI; break;
12287 case X86::DI: DestReg = X86::EDI; break;
12288 case X86::BP: DestReg = X86::EBP; break;
12289 case X86::SP: DestReg = X86::ESP; break;
12290 }
12291 if (DestReg) {
12292 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012293 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012294 }
Owen Anderson825b72b2009-08-11 20:47:22 +000012295 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012296 unsigned DestReg = 0;
12297 switch (Res.first) {
12298 default: break;
12299 case X86::AX: DestReg = X86::RAX; break;
12300 case X86::DX: DestReg = X86::RDX; break;
12301 case X86::CX: DestReg = X86::RCX; break;
12302 case X86::BX: DestReg = X86::RBX; break;
12303 case X86::SI: DestReg = X86::RSI; break;
12304 case X86::DI: DestReg = X86::RDI; break;
12305 case X86::BP: DestReg = X86::RBP; break;
12306 case X86::SP: DestReg = X86::RSP; break;
12307 }
12308 if (DestReg) {
12309 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012310 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012311 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000012312 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000012313 } else if (Res.second == X86::FR32RegisterClass ||
12314 Res.second == X86::FR64RegisterClass ||
12315 Res.second == X86::VR128RegisterClass) {
12316 // Handle references to XMM physical registers that got mapped into the
12317 // wrong class. This can happen with constraints like {xmm0} where the
12318 // target independent register mapper will just pick the first match it can
12319 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000012320 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012321 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000012322 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012323 Res.second = X86::FR64RegisterClass;
12324 else if (X86::VR128RegisterClass->hasType(VT))
12325 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000012326 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012327
Chris Lattnerf76d1802006-07-31 23:26:50 +000012328 return Res;
12329}