blob: 1c5c5108ae1d433e6ef1a37cebd1e8e450d604bb [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
Mon P Wang3c81d352008-11-23 04:37:22 +000058static cl::opt<bool>
Mon P Wang9f22a4a2008-11-24 02:10:43 +000059DisableMMX("disable-mmx", cl::Hidden, cl::desc("Disable use of MMX"));
Mon P Wang3c81d352008-11-23 04:37:22 +000060
Evan Cheng10e86422008-04-25 19:11:04 +000061// Forward declarations.
Owen Andersone50ed302009-08-10 22:56:29 +000062static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +000063 SDValue V2);
Evan Cheng10e86422008-04-25 19:11:04 +000064
Chris Lattnerf0144122009-07-28 03:13:23 +000065static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
Michael J. Spencerec38de22010-10-10 22:04:20 +000066
Eric Christopher62f35a22010-07-05 19:26:33 +000067 bool is64Bit = TM.getSubtarget<X86Subtarget>().is64Bit();
Michael J. Spencerec38de22010-10-10 22:04:20 +000068
Eric Christopher62f35a22010-07-05 19:26:33 +000069 if (TM.getSubtarget<X86Subtarget>().isTargetDarwin()) {
70 if (is64Bit) return new X8664_MachoTargetObjectFile();
Anton Korobeynikov293d5922010-02-21 20:28:15 +000071 return new TargetLoweringObjectFileMachO();
Eric Christopher62f35a22010-07-05 19:26:33 +000072 } else if (TM.getSubtarget<X86Subtarget>().isTargetELF() ){
73 if (is64Bit) return new X8664_ELFTargetObjectFile(TM);
Anton Korobeynikov9184b252010-02-15 22:35:59 +000074 return new X8632_ELFTargetObjectFile(TM);
Eric Christopher62f35a22010-07-05 19:26:33 +000075 } else if (TM.getSubtarget<X86Subtarget>().isTargetCOFF()) {
Chris Lattnerf0144122009-07-28 03:13:23 +000076 return new TargetLoweringObjectFileCOFF();
Michael J. Spencerec38de22010-10-10 22:04:20 +000077 }
Eric Christopher62f35a22010-07-05 19:26:33 +000078 llvm_unreachable("unknown subtarget type");
Chris Lattnerf0144122009-07-28 03:13:23 +000079}
80
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +000081X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
Chris Lattnerf0144122009-07-28 03:13:23 +000082 : TargetLowering(TM, createTLOF(TM)) {
Evan Cheng559806f2006-01-27 08:10:46 +000083 Subtarget = &TM.getSubtarget<X86Subtarget>();
Dale Johannesenf1fc3a82007-09-23 14:52:20 +000084 X86ScalarSSEf64 = Subtarget->hasSSE2();
85 X86ScalarSSEf32 = Subtarget->hasSSE1();
Evan Cheng25ab6902006-09-08 06:48:29 +000086 X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000087
Anton Korobeynikov2365f512007-07-14 14:06:15 +000088 RegInfo = TM.getRegisterInfo();
Anton Korobeynikovbff66b02008-09-09 18:22:57 +000089 TD = getTargetData();
Anton Korobeynikov2365f512007-07-14 14:06:15 +000090
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000091 // Set up the TargetLowering object.
92
93 // X86 is weird, it always uses i8 for shift amounts and setcc results.
Owen Anderson825b72b2009-08-11 20:47:22 +000094 setShiftAmountType(MVT::i8);
Duncan Sands03228082008-11-23 15:47:28 +000095 setBooleanContents(ZeroOrOneBooleanContent);
Evan Cheng211ffa12010-05-19 20:19:50 +000096 setSchedulingPreference(Sched::RegPressure);
Evan Cheng25ab6902006-09-08 06:48:29 +000097 setStackPointerRegisterToSaveRestore(X86StackPtr);
Evan Cheng714554d2006-03-16 21:47:42 +000098
Michael J. Spencer92bf38c2010-10-10 23:11:06 +000099 if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000100 // Setup Windows compiler runtime calls.
101 setLibcallName(RTLIB::SDIV_I64, "_alldiv");
Michael J. Spencer335b8062010-10-11 05:29:15 +0000102 setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
103 setLibcallName(RTLIB::FPTOUINT_F64_I64, "_ftol2");
Michael J. Spencer94f7eeb2010-10-19 07:32:52 +0000104 setLibcallName(RTLIB::FPTOUINT_F32_I64, "_ftol2");
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000105 setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer335b8062010-10-11 05:29:15 +0000106 setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
Michael J. Spencer6dad10e2010-10-27 18:52:38 +0000107 setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::C);
108 setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::C);
Michael J. Spencer1802a9f2010-10-10 22:04:34 +0000109 }
110
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000111 if (Subtarget->isTargetDarwin()) {
Evan Chengdf57fa02006-03-17 20:31:41 +0000112 // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000113 setUseUnderscoreSetJmp(false);
114 setUseUnderscoreLongJmp(false);
Anton Korobeynikov317848f2007-01-03 11:43:14 +0000115 } else if (Subtarget->isTargetMingw()) {
Anton Korobeynikovd27a2582006-12-10 23:12:42 +0000116 // MS runtime is weird: it exports _setjmp, but longjmp!
117 setUseUnderscoreSetJmp(true);
118 setUseUnderscoreLongJmp(false);
119 } else {
120 setUseUnderscoreSetJmp(true);
121 setUseUnderscoreLongJmp(true);
122 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000123
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000124 // Set up the register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000125 addRegisterClass(MVT::i8, X86::GR8RegisterClass);
Dan Gohman71edb242010-04-30 18:30:26 +0000126 addRegisterClass(MVT::i16, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +0000127 addRegisterClass(MVT::i32, X86::GR32RegisterClass);
Evan Cheng25ab6902006-09-08 06:48:29 +0000128 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000129 addRegisterClass(MVT::i64, X86::GR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000130
Owen Anderson825b72b2009-08-11 20:47:22 +0000131 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Evan Chengc5484282006-10-04 00:56:09 +0000132
Scott Michelfdc40a02009-02-17 22:15:04 +0000133 // We don't accept any truncstore of integer registers.
Owen Anderson825b72b2009-08-11 20:47:22 +0000134 setTruncStoreAction(MVT::i64, MVT::i32, Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000135 setTruncStoreAction(MVT::i64, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000136 setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000137 setTruncStoreAction(MVT::i32, MVT::i16, Expand);
Owen Anderson825b72b2009-08-11 20:47:22 +0000138 setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
139 setTruncStoreAction(MVT::i16, MVT::i8, Expand);
Evan Cheng7f042682008-10-15 02:05:31 +0000140
141 // SETOEQ and SETUNE require checking two conditions.
Owen Anderson825b72b2009-08-11 20:47:22 +0000142 setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
143 setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
144 setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
145 setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
146 setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
147 setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
Chris Lattnerddf89562008-01-17 19:59:44 +0000148
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000149 // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
150 // operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000151 setOperationAction(ISD::UINT_TO_FP , MVT::i1 , Promote);
152 setOperationAction(ISD::UINT_TO_FP , MVT::i8 , Promote);
153 setOperationAction(ISD::UINT_TO_FP , MVT::i16 , Promote);
Evan Cheng6892f282006-01-17 02:32:49 +0000154
Evan Cheng25ab6902006-09-08 06:48:29 +0000155 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000156 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Promote);
157 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Expand);
Eli Friedman948e95a2009-05-23 09:59:16 +0000158 } else if (!UseSoftFloat) {
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000159 // We have an algorithm for SSE2->double, and we turn this into a
160 // 64-bit FILD followed by conditional FADD for other targets.
161 setOperationAction(ISD::UINT_TO_FP , MVT::i64 , Custom);
Eli Friedman948e95a2009-05-23 09:59:16 +0000162 // We have an algorithm for SSE2, and we turn this into a 64-bit
163 // FILD for other targets.
Dale Johannesen8d908eb2010-05-15 18:51:12 +0000164 setOperationAction(ISD::UINT_TO_FP , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000165 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000166
167 // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
168 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000169 setOperationAction(ISD::SINT_TO_FP , MVT::i1 , Promote);
170 setOperationAction(ISD::SINT_TO_FP , MVT::i8 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000171
Devang Patel6a784892009-06-05 18:48:29 +0000172 if (!UseSoftFloat) {
Bill Wendling105be5a2009-03-13 08:41:47 +0000173 // SSE has no i16 to fp conversion, only i32
174 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000175 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
Bill Wendling105be5a2009-03-13 08:41:47 +0000176 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000177 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000178 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000179 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Custom);
180 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Custom);
Bill Wendling105be5a2009-03-13 08:41:47 +0000181 }
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000182 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000183 setOperationAction(ISD::SINT_TO_FP , MVT::i16 , Promote);
184 setOperationAction(ISD::SINT_TO_FP , MVT::i32 , Promote);
Evan Cheng5298bcc2006-02-17 07:01:52 +0000185 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000186
Dale Johannesen73328d12007-09-19 23:55:34 +0000187 // In 32-bit mode these are custom lowered. In 64-bit mode F32 and F64
188 // are Legal, f80 is custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000189 setOperationAction(ISD::FP_TO_SINT , MVT::i64 , Custom);
190 setOperationAction(ISD::SINT_TO_FP , MVT::i64 , Custom);
Evan Cheng6dab0532006-01-30 08:02:57 +0000191
Evan Cheng02568ff2006-01-30 22:13:22 +0000192 // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
193 // this operation.
Owen Anderson825b72b2009-08-11 20:47:22 +0000194 setOperationAction(ISD::FP_TO_SINT , MVT::i1 , Promote);
195 setOperationAction(ISD::FP_TO_SINT , MVT::i8 , Promote);
Evan Cheng02568ff2006-01-30 22:13:22 +0000196
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000197 if (X86ScalarSSEf32) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000198 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Promote);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000199 // f32 and f64 cases are Legal, f80 case is not
Owen Anderson825b72b2009-08-11 20:47:22 +0000200 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Evan Cheng02568ff2006-01-30 22:13:22 +0000201 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000202 setOperationAction(ISD::FP_TO_SINT , MVT::i16 , Custom);
203 setOperationAction(ISD::FP_TO_SINT , MVT::i32 , Custom);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000204 }
205
206 // Handle FP_TO_UINT by promoting the destination to a larger signed
207 // conversion.
Owen Anderson825b72b2009-08-11 20:47:22 +0000208 setOperationAction(ISD::FP_TO_UINT , MVT::i1 , Promote);
209 setOperationAction(ISD::FP_TO_UINT , MVT::i8 , Promote);
210 setOperationAction(ISD::FP_TO_UINT , MVT::i16 , Promote);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000211
Evan Cheng25ab6902006-09-08 06:48:29 +0000212 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000213 setOperationAction(ISD::FP_TO_UINT , MVT::i64 , Expand);
214 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Promote);
Eli Friedman948e95a2009-05-23 09:59:16 +0000215 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000216 if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
Evan Cheng25ab6902006-09-08 06:48:29 +0000217 // Expand FP_TO_UINT into a select.
218 // FIXME: We would like to use a Custom expander here eventually to do
219 // the optimal thing for SSE vs. the default expansion in the legalizer.
Owen Anderson825b72b2009-08-11 20:47:22 +0000220 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000221 else
Eli Friedman948e95a2009-05-23 09:59:16 +0000222 // With SSE3 we can use fisttpll to convert to a signed i64; without
223 // SSE, we're stuck with a fistpll.
Owen Anderson825b72b2009-08-11 20:47:22 +0000224 setOperationAction(ISD::FP_TO_UINT , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000225 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000226
Chris Lattner399610a2006-12-05 18:22:22 +0000227 // TODO: when we have SSE, these could be more efficient, by using movd/movq.
Michael J. Spencerec38de22010-10-10 22:04:20 +0000228 if (!X86ScalarSSEf64) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000229 setOperationAction(ISD::BIT_CONVERT , MVT::f32 , Expand);
230 setOperationAction(ISD::BIT_CONVERT , MVT::i32 , Expand);
Dale Johannesene39859a2010-05-21 18:40:15 +0000231 if (Subtarget->is64Bit()) {
Dale Johannesen7d07b482010-05-21 00:52:33 +0000232 setOperationAction(ISD::BIT_CONVERT , MVT::f64 , Expand);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000233 // Without SSE, i64->f64 goes through memory.
234 setOperationAction(ISD::BIT_CONVERT , MVT::i64 , Expand);
Dale Johannesen7d07b482010-05-21 00:52:33 +0000235 }
Chris Lattnerf3597a12006-12-05 18:45:06 +0000236 }
Chris Lattner21f66852005-12-23 05:15:23 +0000237
Dan Gohmanb00ee212008-02-18 19:34:53 +0000238 // Scalar integer divide and remainder are lowered to use operations that
239 // produce two results, to match the available instructions. This exposes
240 // the two-result form to trivial CSE, which is able to combine x/y and x%y
241 // into a single instruction.
242 //
243 // Scalar integer multiply-high is also lowered to use two-result
244 // operations, to match the available instructions. However, plain multiply
245 // (low) operations are left as Legal, as there are single-result
246 // instructions for this in x86. Using the two-result multiply instructions
247 // when both high and low results are needed must be arranged by dagcombine.
Owen Anderson825b72b2009-08-11 20:47:22 +0000248 setOperationAction(ISD::MULHS , MVT::i8 , Expand);
249 setOperationAction(ISD::MULHU , MVT::i8 , Expand);
250 setOperationAction(ISD::SDIV , MVT::i8 , Expand);
251 setOperationAction(ISD::UDIV , MVT::i8 , Expand);
252 setOperationAction(ISD::SREM , MVT::i8 , Expand);
253 setOperationAction(ISD::UREM , MVT::i8 , Expand);
254 setOperationAction(ISD::MULHS , MVT::i16 , Expand);
255 setOperationAction(ISD::MULHU , MVT::i16 , Expand);
256 setOperationAction(ISD::SDIV , MVT::i16 , Expand);
257 setOperationAction(ISD::UDIV , MVT::i16 , Expand);
258 setOperationAction(ISD::SREM , MVT::i16 , Expand);
259 setOperationAction(ISD::UREM , MVT::i16 , Expand);
260 setOperationAction(ISD::MULHS , MVT::i32 , Expand);
261 setOperationAction(ISD::MULHU , MVT::i32 , Expand);
262 setOperationAction(ISD::SDIV , MVT::i32 , Expand);
263 setOperationAction(ISD::UDIV , MVT::i32 , Expand);
264 setOperationAction(ISD::SREM , MVT::i32 , Expand);
265 setOperationAction(ISD::UREM , MVT::i32 , Expand);
266 setOperationAction(ISD::MULHS , MVT::i64 , Expand);
267 setOperationAction(ISD::MULHU , MVT::i64 , Expand);
268 setOperationAction(ISD::SDIV , MVT::i64 , Expand);
269 setOperationAction(ISD::UDIV , MVT::i64 , Expand);
270 setOperationAction(ISD::SREM , MVT::i64 , Expand);
271 setOperationAction(ISD::UREM , MVT::i64 , Expand);
Dan Gohmana37c9f72007-09-25 18:23:27 +0000272
Owen Anderson825b72b2009-08-11 20:47:22 +0000273 setOperationAction(ISD::BR_JT , MVT::Other, Expand);
274 setOperationAction(ISD::BRCOND , MVT::Other, Custom);
275 setOperationAction(ISD::BR_CC , MVT::Other, Expand);
276 setOperationAction(ISD::SELECT_CC , MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000277 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000278 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
279 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
280 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
281 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1 , Expand);
282 setOperationAction(ISD::FP_ROUND_INREG , MVT::f32 , Expand);
283 setOperationAction(ISD::FREM , MVT::f32 , Expand);
284 setOperationAction(ISD::FREM , MVT::f64 , Expand);
285 setOperationAction(ISD::FREM , MVT::f80 , Expand);
286 setOperationAction(ISD::FLT_ROUNDS_ , MVT::i32 , Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000287
Owen Anderson825b72b2009-08-11 20:47:22 +0000288 setOperationAction(ISD::CTPOP , MVT::i8 , Expand);
289 setOperationAction(ISD::CTTZ , MVT::i8 , Custom);
290 setOperationAction(ISD::CTLZ , MVT::i8 , Custom);
291 setOperationAction(ISD::CTPOP , MVT::i16 , Expand);
Dan Gohman71edb242010-04-30 18:30:26 +0000292 setOperationAction(ISD::CTTZ , MVT::i16 , Custom);
293 setOperationAction(ISD::CTLZ , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000294 setOperationAction(ISD::CTPOP , MVT::i32 , Expand);
295 setOperationAction(ISD::CTTZ , MVT::i32 , Custom);
296 setOperationAction(ISD::CTLZ , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000297 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000298 setOperationAction(ISD::CTPOP , MVT::i64 , Expand);
299 setOperationAction(ISD::CTTZ , MVT::i64 , Custom);
300 setOperationAction(ISD::CTLZ , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000301 }
302
Owen Anderson825b72b2009-08-11 20:47:22 +0000303 setOperationAction(ISD::READCYCLECOUNTER , MVT::i64 , Custom);
304 setOperationAction(ISD::BSWAP , MVT::i16 , Expand);
Nate Begeman35ef9132006-01-11 21:21:00 +0000305
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000306 // These should be promoted to a larger select which is supported.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000307 setOperationAction(ISD::SELECT , MVT::i1 , Promote);
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000308 // X86 wants to expand cmov itself.
Dan Gohmancbbea0f2009-08-27 00:14:12 +0000309 setOperationAction(ISD::SELECT , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000310 setOperationAction(ISD::SELECT , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000311 setOperationAction(ISD::SELECT , MVT::i32 , Custom);
312 setOperationAction(ISD::SELECT , MVT::f32 , Custom);
313 setOperationAction(ISD::SELECT , MVT::f64 , Custom);
314 setOperationAction(ISD::SELECT , MVT::f80 , Custom);
315 setOperationAction(ISD::SETCC , MVT::i8 , Custom);
Dan Gohman71edb242010-04-30 18:30:26 +0000316 setOperationAction(ISD::SETCC , MVT::i16 , Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000317 setOperationAction(ISD::SETCC , MVT::i32 , Custom);
318 setOperationAction(ISD::SETCC , MVT::f32 , Custom);
319 setOperationAction(ISD::SETCC , MVT::f64 , Custom);
320 setOperationAction(ISD::SETCC , MVT::f80 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000321 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000322 setOperationAction(ISD::SELECT , MVT::i64 , Custom);
323 setOperationAction(ISD::SETCC , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000324 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000325 setOperationAction(ISD::EH_RETURN , MVT::Other, Custom);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000326
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000327 // Darwin ABI issue.
Owen Anderson825b72b2009-08-11 20:47:22 +0000328 setOperationAction(ISD::ConstantPool , MVT::i32 , Custom);
329 setOperationAction(ISD::JumpTable , MVT::i32 , Custom);
330 setOperationAction(ISD::GlobalAddress , MVT::i32 , Custom);
331 setOperationAction(ISD::GlobalTLSAddress, MVT::i32 , Custom);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +0000332 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000333 setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
334 setOperationAction(ISD::ExternalSymbol , MVT::i32 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000335 setOperationAction(ISD::BlockAddress , MVT::i32 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000336 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000337 setOperationAction(ISD::ConstantPool , MVT::i64 , Custom);
338 setOperationAction(ISD::JumpTable , MVT::i64 , Custom);
339 setOperationAction(ISD::GlobalAddress , MVT::i64 , Custom);
340 setOperationAction(ISD::ExternalSymbol, MVT::i64 , Custom);
Dan Gohmanf705adb2009-10-30 01:28:02 +0000341 setOperationAction(ISD::BlockAddress , MVT::i64 , Custom);
Evan Cheng25ab6902006-09-08 06:48:29 +0000342 }
Nate Begeman4c5dcf52006-02-17 00:03:04 +0000343 // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
Owen Anderson825b72b2009-08-11 20:47:22 +0000344 setOperationAction(ISD::SHL_PARTS , MVT::i32 , Custom);
345 setOperationAction(ISD::SRA_PARTS , MVT::i32 , Custom);
346 setOperationAction(ISD::SRL_PARTS , MVT::i32 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000347 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000348 setOperationAction(ISD::SHL_PARTS , MVT::i64 , Custom);
349 setOperationAction(ISD::SRA_PARTS , MVT::i64 , Custom);
350 setOperationAction(ISD::SRL_PARTS , MVT::i64 , Custom);
Dan Gohman4c1fa612008-03-03 22:22:09 +0000351 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000352
Evan Chengd2cde682008-03-10 19:38:10 +0000353 if (Subtarget->hasSSE1())
Owen Anderson825b72b2009-08-11 20:47:22 +0000354 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
Evan Cheng27b7db52008-03-08 00:58:38 +0000355
Eric Christopher9a9d2752010-07-22 02:48:34 +0000356 // We may not have a libcall for MEMBARRIER so we should lower this.
357 setOperationAction(ISD::MEMBARRIER , MVT::Other, Custom);
Michael J. Spencerec38de22010-10-10 22:04:20 +0000358
Jim Grosbachf1ab49e2010-06-23 16:25:07 +0000359 // On X86 and X86-64, atomic operations are lowered to locked instructions.
360 // Locked instructions, in turn, have implicit fence semantics (all memory
361 // operations are flushed before issuing the locked instruction, and they
362 // are not buffered), so we can fold away the common pattern of
363 // fence-atomic-fence.
364 setShouldFoldAtomicFences(true);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000365
Mon P Wang63307c32008-05-05 19:05:59 +0000366 // Expand certain atomics
Owen Anderson825b72b2009-08-11 20:47:22 +0000367 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, Custom);
368 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i16, Custom);
369 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom);
370 setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom);
Bill Wendling5bf1b4e2008-08-20 00:28:16 +0000371
Owen Anderson825b72b2009-08-11 20:47:22 +0000372 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i8, Custom);
373 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i16, Custom);
374 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Custom);
375 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
Andrew Lenharthd497d9f2008-02-16 14:46:26 +0000376
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000377 if (!Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000378 setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
379 setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
380 setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
381 setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
382 setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
383 setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
384 setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000385 }
386
Evan Cheng3c992d22006-03-07 02:02:57 +0000387 // FIXME - use subtarget debug flags
Anton Korobeynikovab4022f2006-10-31 08:31:24 +0000388 if (!Subtarget->isTargetDarwin() &&
389 !Subtarget->isTargetELF() &&
Dan Gohman44066042008-07-01 00:05:16 +0000390 !Subtarget->isTargetCygMing()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000391 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
Dan Gohman44066042008-07-01 00:05:16 +0000392 }
Chris Lattnerf73bae12005-11-29 06:16:21 +0000393
Owen Anderson825b72b2009-08-11 20:47:22 +0000394 setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
395 setOperationAction(ISD::EHSELECTION, MVT::i64, Expand);
396 setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
397 setOperationAction(ISD::EHSELECTION, MVT::i32, Expand);
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000398 if (Subtarget->is64Bit()) {
Anton Korobeynikovce3b4652007-05-02 19:53:33 +0000399 setExceptionPointerRegister(X86::RAX);
400 setExceptionSelectorRegister(X86::RDX);
401 } else {
402 setExceptionPointerRegister(X86::EAX);
403 setExceptionSelectorRegister(X86::EDX);
404 }
Owen Anderson825b72b2009-08-11 20:47:22 +0000405 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
406 setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
Anton Korobeynikov260a6b82008-09-08 21:12:11 +0000407
Owen Anderson825b72b2009-08-11 20:47:22 +0000408 setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
Duncan Sandsb116fac2007-07-27 20:02:49 +0000409
Owen Anderson825b72b2009-08-11 20:47:22 +0000410 setOperationAction(ISD::TRAP, MVT::Other, Legal);
Anton Korobeynikov66fac792008-01-15 07:02:33 +0000411
Nate Begemanacc398c2006-01-25 18:21:52 +0000412 // VASTART needs to be custom lowered to use the VarArgsFrameIndex
Owen Anderson825b72b2009-08-11 20:47:22 +0000413 setOperationAction(ISD::VASTART , MVT::Other, Custom);
414 setOperationAction(ISD::VAEND , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000415 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000416 setOperationAction(ISD::VAARG , MVT::Other, Custom);
417 setOperationAction(ISD::VACOPY , MVT::Other, Custom);
Dan Gohman9018e832008-05-10 01:26:14 +0000418 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +0000419 setOperationAction(ISD::VAARG , MVT::Other, Expand);
420 setOperationAction(ISD::VACOPY , MVT::Other, Expand);
Dan Gohman9018e832008-05-10 01:26:14 +0000421 }
Evan Chengae642192007-03-02 23:16:35 +0000422
Owen Anderson825b72b2009-08-11 20:47:22 +0000423 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
424 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
Evan Cheng25ab6902006-09-08 06:48:29 +0000425 if (Subtarget->is64Bit())
Owen Anderson825b72b2009-08-11 20:47:22 +0000426 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
Michael J. Spencere9c253e2010-10-21 01:41:01 +0000427 if (Subtarget->isTargetCygMing() || Subtarget->isTargetWindows())
Owen Anderson825b72b2009-08-11 20:47:22 +0000428 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +0000429 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000430 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
Chris Lattnerb99329e2006-01-13 02:42:53 +0000431
Evan Chengc7ce29b2009-02-13 22:36:38 +0000432 if (!UseSoftFloat && X86ScalarSSEf64) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000433 // f32 and f64 use SSE.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000434 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000435 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
436 addRegisterClass(MVT::f64, X86::FR64RegisterClass);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000437
Evan Cheng223547a2006-01-31 22:28:30 +0000438 // Use ANDPD to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000439 setOperationAction(ISD::FABS , MVT::f64, Custom);
440 setOperationAction(ISD::FABS , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000441
442 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000443 setOperationAction(ISD::FNEG , MVT::f64, Custom);
444 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Evan Cheng223547a2006-01-31 22:28:30 +0000445
Evan Cheng68c47cb2007-01-05 07:55:56 +0000446 // Use ANDPD and ORPD to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000447 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
448 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Evan Cheng68c47cb2007-01-05 07:55:56 +0000449
Evan Chengd25e9e82006-02-02 00:28:23 +0000450 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000451 setOperationAction(ISD::FSIN , MVT::f64, Expand);
452 setOperationAction(ISD::FCOS , MVT::f64, Expand);
453 setOperationAction(ISD::FSIN , MVT::f32, Expand);
454 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000455
Chris Lattnera54aa942006-01-29 06:26:08 +0000456 // Expand FP immediates into loads from the stack, except for the special
457 // cases we handle.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000458 addLegalFPImmediate(APFloat(+0.0)); // xorpd
459 addLegalFPImmediate(APFloat(+0.0f)); // xorps
Evan Chengc7ce29b2009-02-13 22:36:38 +0000460 } else if (!UseSoftFloat && X86ScalarSSEf32) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000461 // Use SSE for f32, x87 for f64.
462 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000463 addRegisterClass(MVT::f32, X86::FR32RegisterClass);
464 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000465
466 // Use ANDPS to simulate FABS.
Owen Anderson825b72b2009-08-11 20:47:22 +0000467 setOperationAction(ISD::FABS , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000468
469 // Use XORP to simulate FNEG.
Owen Anderson825b72b2009-08-11 20:47:22 +0000470 setOperationAction(ISD::FNEG , MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000471
Owen Anderson825b72b2009-08-11 20:47:22 +0000472 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000473
474 // Use ANDPS and ORPS to simulate FCOPYSIGN.
Owen Anderson825b72b2009-08-11 20:47:22 +0000475 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
476 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000477
478 // We don't support sin/cos/fmod
Owen Anderson825b72b2009-08-11 20:47:22 +0000479 setOperationAction(ISD::FSIN , MVT::f32, Expand);
480 setOperationAction(ISD::FCOS , MVT::f32, Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000481
Nate Begemane1795842008-02-14 08:57:00 +0000482 // Special cases we handle for FP constants.
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000483 addLegalFPImmediate(APFloat(+0.0f)); // xorps
484 addLegalFPImmediate(APFloat(+0.0)); // FLD0
485 addLegalFPImmediate(APFloat(+1.0)); // FLD1
486 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
487 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
488
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000489 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000490 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
491 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000492 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000493 } else if (!UseSoftFloat) {
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000494 // f32 and f64 in x87.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000495 // Set up the FP register classes.
Owen Anderson825b72b2009-08-11 20:47:22 +0000496 addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
497 addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000498
Owen Anderson825b72b2009-08-11 20:47:22 +0000499 setOperationAction(ISD::UNDEF, MVT::f64, Expand);
500 setOperationAction(ISD::UNDEF, MVT::f32, Expand);
501 setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
502 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Dale Johannesen5411a392007-08-09 01:04:01 +0000503
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000504 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000505 setOperationAction(ISD::FSIN , MVT::f64 , Expand);
506 setOperationAction(ISD::FCOS , MVT::f64 , Expand);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000507 }
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000508 addLegalFPImmediate(APFloat(+0.0)); // FLD0
509 addLegalFPImmediate(APFloat(+1.0)); // FLD1
510 addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
511 addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
Dale Johannesenf1fc3a82007-09-23 14:52:20 +0000512 addLegalFPImmediate(APFloat(+0.0f)); // FLD0
513 addLegalFPImmediate(APFloat(+1.0f)); // FLD1
514 addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
515 addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000516 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000517
Dale Johannesen59a58732007-08-05 18:49:15 +0000518 // Long double always uses X87.
Evan Cheng92722532009-03-26 23:06:32 +0000519 if (!UseSoftFloat) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000520 addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
521 setOperationAction(ISD::UNDEF, MVT::f80, Expand);
522 setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000523 {
524 bool ignored;
525 APFloat TmpFlt(+0.0);
526 TmpFlt.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
527 &ignored);
528 addLegalFPImmediate(TmpFlt); // FLD0
529 TmpFlt.changeSign();
530 addLegalFPImmediate(TmpFlt); // FLD0/FCHS
531 APFloat TmpFlt2(+1.0);
532 TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
533 &ignored);
534 addLegalFPImmediate(TmpFlt2); // FLD1
535 TmpFlt2.changeSign();
536 addLegalFPImmediate(TmpFlt2); // FLD1/FCHS
537 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000538
Evan Chengc7ce29b2009-02-13 22:36:38 +0000539 if (!UnsafeFPMath) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000540 setOperationAction(ISD::FSIN , MVT::f80 , Expand);
541 setOperationAction(ISD::FCOS , MVT::f80 , Expand);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000542 }
Dale Johannesen2f429012007-09-26 21:10:55 +0000543 }
Dale Johannesen59a58732007-08-05 18:49:15 +0000544
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000545 // Always use a library call for pow.
Owen Anderson825b72b2009-08-11 20:47:22 +0000546 setOperationAction(ISD::FPOW , MVT::f32 , Expand);
547 setOperationAction(ISD::FPOW , MVT::f64 , Expand);
548 setOperationAction(ISD::FPOW , MVT::f80 , Expand);
Dan Gohmanf96e4de2007-10-11 23:21:31 +0000549
Owen Anderson825b72b2009-08-11 20:47:22 +0000550 setOperationAction(ISD::FLOG, MVT::f80, Expand);
551 setOperationAction(ISD::FLOG2, MVT::f80, Expand);
552 setOperationAction(ISD::FLOG10, MVT::f80, Expand);
553 setOperationAction(ISD::FEXP, MVT::f80, Expand);
554 setOperationAction(ISD::FEXP2, MVT::f80, Expand);
Dale Johannesen7794f2a2008-09-04 00:47:13 +0000555
Mon P Wangf007a8b2008-11-06 05:31:54 +0000556 // First set operation action for all vector types to either promote
Mon P Wang0c397192008-10-30 08:01:45 +0000557 // (for widening) or expand (for scalarization). Then we will selectively
558 // turn on ones that can be effectively codegen'd.
Owen Anderson825b72b2009-08-11 20:47:22 +0000559 for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
560 VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
561 setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
562 setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
563 setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
564 setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
565 setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
566 setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
567 setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
568 setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
569 setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
570 setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
571 setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
572 setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
573 setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
574 setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
575 setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
576 setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
577 setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
578 setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
579 setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
580 setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
581 setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
582 setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
583 setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
584 setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
585 setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
586 setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
587 setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
588 setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
589 setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
590 setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
591 setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
592 setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
593 setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
594 setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
595 setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
596 setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
597 setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
598 setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
599 setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
600 setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
601 setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
602 setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
603 setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
604 setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
605 setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
606 setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
607 setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
608 setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
Dan Gohman87862e72009-12-11 21:31:27 +0000609 setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
Dan Gohman2e141d72009-12-14 23:40:38 +0000610 setOperationAction(ISD::TRUNCATE, (MVT::SimpleValueType)VT, Expand);
611 setOperationAction(ISD::SIGN_EXTEND, (MVT::SimpleValueType)VT, Expand);
612 setOperationAction(ISD::ZERO_EXTEND, (MVT::SimpleValueType)VT, Expand);
613 setOperationAction(ISD::ANY_EXTEND, (MVT::SimpleValueType)VT, Expand);
614 for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
615 InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
616 setTruncStoreAction((MVT::SimpleValueType)VT,
617 (MVT::SimpleValueType)InnerVT, Expand);
618 setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
619 setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
620 setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
Evan Chengd30bf012006-03-01 01:11:20 +0000621 }
622
Evan Chengc7ce29b2009-02-13 22:36:38 +0000623 // FIXME: In order to prevent SSE instructions being expanded to MMX ones
624 // with -msoft-float, disable use of MMX as well.
Evan Cheng92722532009-03-26 23:06:32 +0000625 if (!UseSoftFloat && !DisableMMX && Subtarget->hasMMX()) {
Dale Johannesene93d99c2010-10-20 21:32:10 +0000626 addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
Dale Johannesen0488fb62010-09-30 23:57:10 +0000627 // No operations on x86mmx supported, everything uses intrinsics.
Evan Cheng470a6ad2006-02-22 02:26:30 +0000628 }
629
Dale Johannesen0488fb62010-09-30 23:57:10 +0000630 // MMX-sized vectors (other than x86mmx) are expected to be expanded
631 // into smaller operations.
632 setOperationAction(ISD::MULHS, MVT::v8i8, Expand);
633 setOperationAction(ISD::MULHS, MVT::v4i16, Expand);
634 setOperationAction(ISD::MULHS, MVT::v2i32, Expand);
635 setOperationAction(ISD::MULHS, MVT::v1i64, Expand);
636 setOperationAction(ISD::AND, MVT::v8i8, Expand);
637 setOperationAction(ISD::AND, MVT::v4i16, Expand);
638 setOperationAction(ISD::AND, MVT::v2i32, Expand);
639 setOperationAction(ISD::AND, MVT::v1i64, Expand);
640 setOperationAction(ISD::OR, MVT::v8i8, Expand);
641 setOperationAction(ISD::OR, MVT::v4i16, Expand);
642 setOperationAction(ISD::OR, MVT::v2i32, Expand);
643 setOperationAction(ISD::OR, MVT::v1i64, Expand);
644 setOperationAction(ISD::XOR, MVT::v8i8, Expand);
645 setOperationAction(ISD::XOR, MVT::v4i16, Expand);
646 setOperationAction(ISD::XOR, MVT::v2i32, Expand);
647 setOperationAction(ISD::XOR, MVT::v1i64, Expand);
648 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i8, Expand);
649 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v4i16, Expand);
650 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v2i32, Expand);
651 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v1i64, Expand);
652 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v1i64, Expand);
653 setOperationAction(ISD::SELECT, MVT::v8i8, Expand);
654 setOperationAction(ISD::SELECT, MVT::v4i16, Expand);
655 setOperationAction(ISD::SELECT, MVT::v2i32, Expand);
656 setOperationAction(ISD::SELECT, MVT::v1i64, Expand);
657 setOperationAction(ISD::BIT_CONVERT, MVT::v8i8, Expand);
658 setOperationAction(ISD::BIT_CONVERT, MVT::v4i16, Expand);
659 setOperationAction(ISD::BIT_CONVERT, MVT::v2i32, Expand);
660 setOperationAction(ISD::BIT_CONVERT, MVT::v1i64, Expand);
661
Evan Cheng92722532009-03-26 23:06:32 +0000662 if (!UseSoftFloat && Subtarget->hasSSE1()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000663 addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000664
Owen Anderson825b72b2009-08-11 20:47:22 +0000665 setOperationAction(ISD::FADD, MVT::v4f32, Legal);
666 setOperationAction(ISD::FSUB, MVT::v4f32, Legal);
667 setOperationAction(ISD::FMUL, MVT::v4f32, Legal);
668 setOperationAction(ISD::FDIV, MVT::v4f32, Legal);
669 setOperationAction(ISD::FSQRT, MVT::v4f32, Legal);
670 setOperationAction(ISD::FNEG, MVT::v4f32, Custom);
671 setOperationAction(ISD::LOAD, MVT::v4f32, Legal);
672 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f32, Custom);
673 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f32, Custom);
674 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
675 setOperationAction(ISD::SELECT, MVT::v4f32, Custom);
676 setOperationAction(ISD::VSETCC, MVT::v4f32, Custom);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000677 }
678
Evan Cheng92722532009-03-26 23:06:32 +0000679 if (!UseSoftFloat && Subtarget->hasSSE2()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000680 addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
Evan Chengc7ce29b2009-02-13 22:36:38 +0000681
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000682 // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
683 // registers cannot be used even for integer operations.
Owen Anderson825b72b2009-08-11 20:47:22 +0000684 addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
685 addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
686 addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
687 addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000688
Owen Anderson825b72b2009-08-11 20:47:22 +0000689 setOperationAction(ISD::ADD, MVT::v16i8, Legal);
690 setOperationAction(ISD::ADD, MVT::v8i16, Legal);
691 setOperationAction(ISD::ADD, MVT::v4i32, Legal);
692 setOperationAction(ISD::ADD, MVT::v2i64, Legal);
693 setOperationAction(ISD::MUL, MVT::v2i64, Custom);
694 setOperationAction(ISD::SUB, MVT::v16i8, Legal);
695 setOperationAction(ISD::SUB, MVT::v8i16, Legal);
696 setOperationAction(ISD::SUB, MVT::v4i32, Legal);
697 setOperationAction(ISD::SUB, MVT::v2i64, Legal);
698 setOperationAction(ISD::MUL, MVT::v8i16, Legal);
699 setOperationAction(ISD::FADD, MVT::v2f64, Legal);
700 setOperationAction(ISD::FSUB, MVT::v2f64, Legal);
701 setOperationAction(ISD::FMUL, MVT::v2f64, Legal);
702 setOperationAction(ISD::FDIV, MVT::v2f64, Legal);
703 setOperationAction(ISD::FSQRT, MVT::v2f64, Legal);
704 setOperationAction(ISD::FNEG, MVT::v2f64, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000705
Owen Anderson825b72b2009-08-11 20:47:22 +0000706 setOperationAction(ISD::VSETCC, MVT::v2f64, Custom);
707 setOperationAction(ISD::VSETCC, MVT::v16i8, Custom);
708 setOperationAction(ISD::VSETCC, MVT::v8i16, Custom);
709 setOperationAction(ISD::VSETCC, MVT::v4i32, Custom);
Nate Begemanc2616e42008-05-12 20:34:32 +0000710
Owen Anderson825b72b2009-08-11 20:47:22 +0000711 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i8, Custom);
712 setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v8i16, Custom);
713 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
714 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
715 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Evan Chengf7c378e2006-04-10 07:23:14 +0000716
Mon P Wangeb38ebf2010-01-24 00:05:03 +0000717 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2f64, Custom);
718 setOperationAction(ISD::CONCAT_VECTORS, MVT::v2i64, Custom);
719 setOperationAction(ISD::CONCAT_VECTORS, MVT::v16i8, Custom);
720 setOperationAction(ISD::CONCAT_VECTORS, MVT::v8i16, Custom);
721 setOperationAction(ISD::CONCAT_VECTORS, MVT::v4i32, Custom);
722
Evan Cheng2c3ae372006-04-12 21:21:57 +0000723 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
Owen Anderson825b72b2009-08-11 20:47:22 +0000724 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
725 EVT VT = (MVT::SimpleValueType)i;
Nate Begeman844e0f92007-12-11 01:41:33 +0000726 // Do not attempt to custom lower non-power-of-2 vectors
Duncan Sands83ec4b62008-06-06 12:08:01 +0000727 if (!isPowerOf2_32(VT.getVectorNumElements()))
Nate Begeman844e0f92007-12-11 01:41:33 +0000728 continue;
David Greene9b9838d2009-06-29 16:47:10 +0000729 // Do not attempt to custom lower non-128-bit vectors
730 if (!VT.is128BitVector())
731 continue;
Owen Anderson825b72b2009-08-11 20:47:22 +0000732 setOperationAction(ISD::BUILD_VECTOR,
733 VT.getSimpleVT().SimpleTy, Custom);
734 setOperationAction(ISD::VECTOR_SHUFFLE,
735 VT.getSimpleVT().SimpleTy, Custom);
736 setOperationAction(ISD::EXTRACT_VECTOR_ELT,
737 VT.getSimpleVT().SimpleTy, Custom);
Evan Cheng2c3ae372006-04-12 21:21:57 +0000738 }
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000739
Owen Anderson825b72b2009-08-11 20:47:22 +0000740 setOperationAction(ISD::BUILD_VECTOR, MVT::v2f64, Custom);
741 setOperationAction(ISD::BUILD_VECTOR, MVT::v2i64, Custom);
742 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2f64, Custom);
743 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v2i64, Custom);
744 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2f64, Custom);
745 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
Bill Wendlingf9abd7e2009-03-11 22:30:01 +0000746
Nate Begemancdd1eec2008-02-12 22:51:28 +0000747 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000748 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Custom);
749 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
Nate Begemancdd1eec2008-02-12 22:51:28 +0000750 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000751
Anton Korobeynikov12c49af2006-11-21 00:01:06 +0000752 // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
Owen Anderson825b72b2009-08-11 20:47:22 +0000753 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
754 MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
Owen Andersone50ed302009-08-10 22:56:29 +0000755 EVT VT = SVT;
David Greene9b9838d2009-06-29 16:47:10 +0000756
757 // Do not attempt to promote non-128-bit vectors
Chris Lattner32b4b5a2010-07-05 05:53:14 +0000758 if (!VT.is128BitVector())
David Greene9b9838d2009-06-29 16:47:10 +0000759 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +0000760
Owen Andersond6662ad2009-08-10 20:46:15 +0000761 setOperationAction(ISD::AND, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000762 AddPromotedToType (ISD::AND, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000763 setOperationAction(ISD::OR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000764 AddPromotedToType (ISD::OR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000765 setOperationAction(ISD::XOR, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000766 AddPromotedToType (ISD::XOR, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000767 setOperationAction(ISD::LOAD, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000768 AddPromotedToType (ISD::LOAD, SVT, MVT::v2i64);
Owen Andersond6662ad2009-08-10 20:46:15 +0000769 setOperationAction(ISD::SELECT, SVT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000770 AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
Evan Chengf7c378e2006-04-10 07:23:14 +0000771 }
Evan Cheng2c3ae372006-04-12 21:21:57 +0000772
Owen Anderson825b72b2009-08-11 20:47:22 +0000773 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000774
Evan Cheng2c3ae372006-04-12 21:21:57 +0000775 // Custom lower v2i64 and v2f64 selects.
Owen Anderson825b72b2009-08-11 20:47:22 +0000776 setOperationAction(ISD::LOAD, MVT::v2f64, Legal);
777 setOperationAction(ISD::LOAD, MVT::v2i64, Legal);
778 setOperationAction(ISD::SELECT, MVT::v2f64, Custom);
779 setOperationAction(ISD::SELECT, MVT::v2i64, Custom);
Scott Michelfdc40a02009-02-17 22:15:04 +0000780
Owen Anderson825b72b2009-08-11 20:47:22 +0000781 setOperationAction(ISD::FP_TO_SINT, MVT::v4i32, Legal);
782 setOperationAction(ISD::SINT_TO_FP, MVT::v4i32, Legal);
Evan Cheng470a6ad2006-02-22 02:26:30 +0000783 }
Evan Chengc7ce29b2009-02-13 22:36:38 +0000784
Nate Begeman14d12ca2008-02-11 04:19:36 +0000785 if (Subtarget->hasSSE41()) {
Dale Johannesen54feef22010-05-27 20:12:41 +0000786 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
787 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
788 setOperationAction(ISD::FTRUNC, MVT::f32, Legal);
789 setOperationAction(ISD::FRINT, MVT::f32, Legal);
790 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
791 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
792 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
793 setOperationAction(ISD::FTRUNC, MVT::f64, Legal);
794 setOperationAction(ISD::FRINT, MVT::f64, Legal);
795 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
796
Nate Begeman14d12ca2008-02-11 04:19:36 +0000797 // FIXME: Do we need to handle scalar-to-vector here?
Owen Anderson825b72b2009-08-11 20:47:22 +0000798 setOperationAction(ISD::MUL, MVT::v4i32, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000799
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000800 // Can turn SHL into an integer multiply.
801 setOperationAction(ISD::SHL, MVT::v4i32, Custom);
Nate Begeman51409212010-07-28 00:21:48 +0000802 setOperationAction(ISD::SHL, MVT::v16i8, Custom);
Nate Begemanbdcb5af2010-07-27 22:37:06 +0000803
Nate Begeman14d12ca2008-02-11 04:19:36 +0000804 // i8 and i16 vectors are custom , because the source register and source
805 // source memory operand types are not the same width. f32 vectors are
806 // custom since the immediate controlling the insert encodes additional
807 // information.
Owen Anderson825b72b2009-08-11 20:47:22 +0000808 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i8, Custom);
809 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i16, Custom);
810 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i32, Custom);
811 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000812
Owen Anderson825b72b2009-08-11 20:47:22 +0000813 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
814 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
815 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
816 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000817
818 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000819 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v2i64, Legal);
820 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
Nate Begeman14d12ca2008-02-11 04:19:36 +0000821 }
822 }
Evan Cheng470a6ad2006-02-22 02:26:30 +0000823
Nate Begeman30a0de92008-07-17 16:51:19 +0000824 if (Subtarget->hasSSE42()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000825 setOperationAction(ISD::VSETCC, MVT::v2i64, Custom);
Nate Begeman30a0de92008-07-17 16:51:19 +0000826 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000827
David Greene9b9838d2009-06-29 16:47:10 +0000828 if (!UseSoftFloat && Subtarget->hasAVX()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000829 addRegisterClass(MVT::v8f32, X86::VR256RegisterClass);
830 addRegisterClass(MVT::v4f64, X86::VR256RegisterClass);
831 addRegisterClass(MVT::v8i32, X86::VR256RegisterClass);
832 addRegisterClass(MVT::v4i64, X86::VR256RegisterClass);
Bruno Cardoso Lopes405f11b2010-08-10 01:43:16 +0000833 addRegisterClass(MVT::v32i8, X86::VR256RegisterClass);
David Greened94c1012009-06-29 22:50:51 +0000834
Owen Anderson825b72b2009-08-11 20:47:22 +0000835 setOperationAction(ISD::LOAD, MVT::v8f32, Legal);
836 setOperationAction(ISD::LOAD, MVT::v8i32, Legal);
837 setOperationAction(ISD::LOAD, MVT::v4f64, Legal);
838 setOperationAction(ISD::LOAD, MVT::v4i64, Legal);
839 setOperationAction(ISD::FADD, MVT::v8f32, Legal);
840 setOperationAction(ISD::FSUB, MVT::v8f32, Legal);
841 setOperationAction(ISD::FMUL, MVT::v8f32, Legal);
842 setOperationAction(ISD::FDIV, MVT::v8f32, Legal);
843 setOperationAction(ISD::FSQRT, MVT::v8f32, Legal);
844 setOperationAction(ISD::FNEG, MVT::v8f32, Custom);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +0000845 setOperationAction(ISD::BUILD_VECTOR, MVT::v8f32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000846 //setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v8f32, Custom);
847 //setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8f32, Custom);
848 //setOperationAction(ISD::SELECT, MVT::v8f32, Custom);
849 //setOperationAction(ISD::VSETCC, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000850
851 // Operations to consider commented out -v16i16 v32i8
Owen Anderson825b72b2009-08-11 20:47:22 +0000852 //setOperationAction(ISD::ADD, MVT::v16i16, Legal);
853 setOperationAction(ISD::ADD, MVT::v8i32, Custom);
854 setOperationAction(ISD::ADD, MVT::v4i64, Custom);
855 //setOperationAction(ISD::SUB, MVT::v32i8, Legal);
856 //setOperationAction(ISD::SUB, MVT::v16i16, Legal);
857 setOperationAction(ISD::SUB, MVT::v8i32, Custom);
858 setOperationAction(ISD::SUB, MVT::v4i64, Custom);
859 //setOperationAction(ISD::MUL, MVT::v16i16, Legal);
860 setOperationAction(ISD::FADD, MVT::v4f64, Legal);
861 setOperationAction(ISD::FSUB, MVT::v4f64, Legal);
862 setOperationAction(ISD::FMUL, MVT::v4f64, Legal);
863 setOperationAction(ISD::FDIV, MVT::v4f64, Legal);
864 setOperationAction(ISD::FSQRT, MVT::v4f64, Legal);
865 setOperationAction(ISD::FNEG, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000866
Owen Anderson825b72b2009-08-11 20:47:22 +0000867 setOperationAction(ISD::VSETCC, MVT::v4f64, Custom);
868 // setOperationAction(ISD::VSETCC, MVT::v32i8, Custom);
869 // setOperationAction(ISD::VSETCC, MVT::v16i16, Custom);
870 setOperationAction(ISD::VSETCC, MVT::v8i32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000871
Owen Anderson825b72b2009-08-11 20:47:22 +0000872 // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v32i8, Custom);
873 // setOperationAction(ISD::SCALAR_TO_VECTOR, MVT::v16i16, Custom);
874 // setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v16i16, Custom);
875 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8i32, Custom);
876 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v8f32, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000877
Owen Anderson825b72b2009-08-11 20:47:22 +0000878 setOperationAction(ISD::BUILD_VECTOR, MVT::v4f64, Custom);
879 setOperationAction(ISD::BUILD_VECTOR, MVT::v4i64, Custom);
880 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4f64, Custom);
881 setOperationAction(ISD::VECTOR_SHUFFLE, MVT::v4i64, Custom);
882 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4f64, Custom);
883 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f64, Custom);
David Greene9b9838d2009-06-29 16:47:10 +0000884
885#if 0
886 // Not sure we want to do this since there are no 256-bit integer
887 // operations in AVX
888
889 // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
890 // This includes 256-bit vectors
Owen Anderson825b72b2009-08-11 20:47:22 +0000891 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; ++i) {
892 EVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000893
894 // Do not attempt to custom lower non-power-of-2 vectors
895 if (!isPowerOf2_32(VT.getVectorNumElements()))
896 continue;
897
898 setOperationAction(ISD::BUILD_VECTOR, VT, Custom);
899 setOperationAction(ISD::VECTOR_SHUFFLE, VT, Custom);
900 setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
901 }
902
903 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000904 setOperationAction(ISD::INSERT_VECTOR_ELT, MVT::v4i64, Custom);
905 setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i64, Custom);
Eric Christopherfd179292009-08-27 18:07:15 +0000906 }
David Greene9b9838d2009-06-29 16:47:10 +0000907#endif
908
909#if 0
910 // Not sure we want to do this since there are no 256-bit integer
911 // operations in AVX
912
913 // Promote v32i8, v16i16, v8i32 load, select, and, or, xor to v4i64.
914 // Including 256-bit vectors
Owen Anderson825b72b2009-08-11 20:47:22 +0000915 for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v4i64; i++) {
916 EVT VT = (MVT::SimpleValueType)i;
David Greene9b9838d2009-06-29 16:47:10 +0000917
918 if (!VT.is256BitVector()) {
919 continue;
920 }
921 setOperationAction(ISD::AND, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000922 AddPromotedToType (ISD::AND, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000923 setOperationAction(ISD::OR, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000924 AddPromotedToType (ISD::OR, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000925 setOperationAction(ISD::XOR, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000926 AddPromotedToType (ISD::XOR, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000927 setOperationAction(ISD::LOAD, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000928 AddPromotedToType (ISD::LOAD, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000929 setOperationAction(ISD::SELECT, VT, Promote);
Owen Anderson825b72b2009-08-11 20:47:22 +0000930 AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
David Greene9b9838d2009-06-29 16:47:10 +0000931 }
932
Owen Anderson825b72b2009-08-11 20:47:22 +0000933 setTruncStoreAction(MVT::f64, MVT::f32, Expand);
David Greene9b9838d2009-06-29 16:47:10 +0000934#endif
935 }
936
Evan Cheng6be2c582006-04-05 23:38:46 +0000937 // We want to custom lower some of our intrinsics.
Owen Anderson825b72b2009-08-11 20:47:22 +0000938 setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
Evan Cheng6be2c582006-04-05 23:38:46 +0000939
Bill Wendling74c37652008-12-09 22:08:41 +0000940 // Add/Sub/Mul with overflow operations are custom lowered.
Owen Anderson825b72b2009-08-11 20:47:22 +0000941 setOperationAction(ISD::SADDO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000942 setOperationAction(ISD::UADDO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000943 setOperationAction(ISD::SSUBO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000944 setOperationAction(ISD::USUBO, MVT::i32, Custom);
Owen Anderson825b72b2009-08-11 20:47:22 +0000945 setOperationAction(ISD::SMULO, MVT::i32, Custom);
Dan Gohman71c62a22010-06-02 19:13:40 +0000946
Eli Friedman962f5492010-06-02 19:35:46 +0000947 // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
948 // handle type legalization for these operations here.
Dan Gohman71c62a22010-06-02 19:13:40 +0000949 //
Eli Friedman962f5492010-06-02 19:35:46 +0000950 // FIXME: We really should do custom legalization for addition and
951 // subtraction on x86-32 once PR3203 is fixed. We really can't do much better
952 // than generic legalization for 64-bit multiplication-with-overflow, though.
Eli Friedmana993f0a2010-06-02 00:27:18 +0000953 if (Subtarget->is64Bit()) {
954 setOperationAction(ISD::SADDO, MVT::i64, Custom);
955 setOperationAction(ISD::UADDO, MVT::i64, Custom);
956 setOperationAction(ISD::SSUBO, MVT::i64, Custom);
957 setOperationAction(ISD::USUBO, MVT::i64, Custom);
958 setOperationAction(ISD::SMULO, MVT::i64, Custom);
959 }
Bill Wendling41ea7e72008-11-24 19:21:46 +0000960
Evan Chengd54f2d52009-03-31 19:38:51 +0000961 if (!Subtarget->is64Bit()) {
962 // These libcalls are not available in 32-bit.
963 setLibcallName(RTLIB::SHL_I128, 0);
964 setLibcallName(RTLIB::SRL_I128, 0);
965 setLibcallName(RTLIB::SRA_I128, 0);
966 }
967
Evan Cheng206ee9d2006-07-07 08:33:52 +0000968 // We have target-specific dag combine patterns for the following nodes:
969 setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
Dan Gohman1bbf72b2010-03-15 23:23:03 +0000970 setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
Evan Chengd880b972008-05-09 21:53:03 +0000971 setTargetDAGCombine(ISD::BUILD_VECTOR);
Chris Lattner83e6c992006-10-04 06:57:07 +0000972 setTargetDAGCombine(ISD::SELECT);
Nate Begeman740ab032009-01-26 00:52:55 +0000973 setTargetDAGCombine(ISD::SHL);
974 setTargetDAGCombine(ISD::SRA);
975 setTargetDAGCombine(ISD::SRL);
Evan Cheng760d1942010-01-04 21:22:48 +0000976 setTargetDAGCombine(ISD::OR);
Chris Lattner149a4e52008-02-22 02:09:43 +0000977 setTargetDAGCombine(ISD::STORE);
Evan Cheng2e489c42009-12-16 00:53:11 +0000978 setTargetDAGCombine(ISD::ZERO_EXTEND);
Evan Cheng0b0cd912009-03-28 05:57:29 +0000979 if (Subtarget->is64Bit())
980 setTargetDAGCombine(ISD::MUL);
Evan Cheng206ee9d2006-07-07 08:33:52 +0000981
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000982 computeRegisterProperties();
983
Evan Cheng87ed7162006-02-14 08:25:08 +0000984 // FIXME: These should be based on subtarget info. Plus, the values should
985 // be smaller when we are in optimizing for size mode.
Dan Gohman87060f52008-06-30 21:00:56 +0000986 maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
Evan Cheng255f20f2010-04-01 06:04:33 +0000987 maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
Dan Gohman87060f52008-06-30 21:00:56 +0000988 maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
Evan Chengfb8075d2008-02-28 00:43:03 +0000989 setPrefLoopAlignment(16);
Evan Cheng6ebf7bc2009-05-13 21:42:09 +0000990 benefitFromCodePlacementOpt = true;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000991}
992
Scott Michel5b8f82e2008-03-10 15:42:14 +0000993
Owen Anderson825b72b2009-08-11 20:47:22 +0000994MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
995 return MVT::i8;
Scott Michel5b8f82e2008-03-10 15:42:14 +0000996}
997
998
Evan Cheng29286502008-01-23 23:17:41 +0000999/// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1000/// the desired ByVal argument alignment.
1001static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
1002 if (MaxAlign == 16)
1003 return;
1004 if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1005 if (VTy->getBitWidth() == 128)
1006 MaxAlign = 16;
Evan Cheng29286502008-01-23 23:17:41 +00001007 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1008 unsigned EltAlign = 0;
1009 getMaxByValAlign(ATy->getElementType(), EltAlign);
1010 if (EltAlign > MaxAlign)
1011 MaxAlign = EltAlign;
1012 } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
1013 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1014 unsigned EltAlign = 0;
1015 getMaxByValAlign(STy->getElementType(i), EltAlign);
1016 if (EltAlign > MaxAlign)
1017 MaxAlign = EltAlign;
1018 if (MaxAlign == 16)
1019 break;
1020 }
1021 }
1022 return;
1023}
1024
1025/// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1026/// function arguments in the caller parameter area. For X86, aggregates
Dale Johannesen0c191872008-02-08 19:48:20 +00001027/// that contain SSE vectors are placed at 16-byte boundaries while the rest
1028/// are at 4-byte boundaries.
Evan Cheng29286502008-01-23 23:17:41 +00001029unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
Evan Cheng1887c1c2008-08-21 21:00:15 +00001030 if (Subtarget->is64Bit()) {
1031 // Max of 8 and alignment of type.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00001032 unsigned TyAlign = TD->getABITypeAlignment(Ty);
Evan Cheng1887c1c2008-08-21 21:00:15 +00001033 if (TyAlign > 8)
1034 return TyAlign;
1035 return 8;
1036 }
1037
Evan Cheng29286502008-01-23 23:17:41 +00001038 unsigned Align = 4;
Dale Johannesen0c191872008-02-08 19:48:20 +00001039 if (Subtarget->hasSSE1())
1040 getMaxByValAlign(Ty, Align);
Evan Cheng29286502008-01-23 23:17:41 +00001041 return Align;
1042}
Chris Lattner2b02a442007-02-25 08:29:00 +00001043
Evan Chengf0df0312008-05-15 08:39:06 +00001044/// getOptimalMemOpType - Returns the target specific optimal type for load
Evan Chengc3b0c342010-04-08 07:37:57 +00001045/// and store operations as a result of memset, memcpy, and memmove
1046/// lowering. If DstAlign is zero that means it's safe to destination
1047/// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1048/// means there isn't a need to check it against alignment requirement,
1049/// probably because the source does not need to be loaded. If
1050/// 'NonScalarIntSafe' is true, that means it's safe to return a
1051/// non-scalar-integer type, e.g. empty string source, constant, or loaded
1052/// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1053/// constant so it does not need to be loaded.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001054/// It returns EVT::Other if the type should be determined using generic
1055/// target-independent logic.
Owen Andersone50ed302009-08-10 22:56:29 +00001056EVT
Evan Cheng255f20f2010-04-01 06:04:33 +00001057X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1058 unsigned DstAlign, unsigned SrcAlign,
Evan Chengf28f8bc2010-04-02 19:36:14 +00001059 bool NonScalarIntSafe,
Evan Chengc3b0c342010-04-08 07:37:57 +00001060 bool MemcpyStrSrc,
Dan Gohman37f32ee2010-04-16 20:11:05 +00001061 MachineFunction &MF) const {
Chris Lattner4002a1b2008-10-28 05:49:35 +00001062 // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1063 // linux. This is because the stack realignment code can't handle certain
1064 // cases like PR2962. This should be removed when PR2962 is fixed.
Dan Gohman37f32ee2010-04-16 20:11:05 +00001065 const Function *F = MF.getFunction();
Evan Chengf28f8bc2010-04-02 19:36:14 +00001066 if (NonScalarIntSafe &&
1067 !F->hasFnAttr(Attribute::NoImplicitFloat)) {
Evan Cheng255f20f2010-04-01 06:04:33 +00001068 if (Size >= 16 &&
1069 (Subtarget->isUnalignedMemAccessFast() ||
Chandler Carruthae1d41c2010-04-02 01:31:24 +00001070 ((DstAlign == 0 || DstAlign >= 16) &&
1071 (SrcAlign == 0 || SrcAlign >= 16))) &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001072 Subtarget->getStackAlignment() >= 16) {
1073 if (Subtarget->hasSSE2())
1074 return MVT::v4i32;
Evan Chengf28f8bc2010-04-02 19:36:14 +00001075 if (Subtarget->hasSSE1())
Evan Cheng255f20f2010-04-01 06:04:33 +00001076 return MVT::v4f32;
Evan Chengc3b0c342010-04-08 07:37:57 +00001077 } else if (!MemcpyStrSrc && Size >= 8 &&
Evan Cheng3ea97552010-04-01 20:27:45 +00001078 !Subtarget->is64Bit() &&
Evan Cheng255f20f2010-04-01 06:04:33 +00001079 Subtarget->getStackAlignment() >= 8 &&
Evan Chengc3b0c342010-04-08 07:37:57 +00001080 Subtarget->hasSSE2()) {
1081 // Do not use f64 to lower memcpy if source is string constant. It's
1082 // better to use i32 to avoid the loads.
Evan Cheng255f20f2010-04-01 06:04:33 +00001083 return MVT::f64;
Evan Chengc3b0c342010-04-08 07:37:57 +00001084 }
Chris Lattner4002a1b2008-10-28 05:49:35 +00001085 }
Evan Chengf0df0312008-05-15 08:39:06 +00001086 if (Subtarget->is64Bit() && Size >= 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00001087 return MVT::i64;
1088 return MVT::i32;
Evan Chengf0df0312008-05-15 08:39:06 +00001089}
1090
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001091/// getJumpTableEncoding - Return the entry encoding for a jump table in the
1092/// current function. The returned value is a member of the
1093/// MachineJumpTableInfo::JTEntryKind enum.
1094unsigned X86TargetLowering::getJumpTableEncoding() const {
1095 // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1096 // symbol.
1097 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1098 Subtarget->isPICStyleGOT())
Chris Lattnerc64daab2010-01-26 05:02:42 +00001099 return MachineJumpTableInfo::EK_Custom32;
Michael J. Spencerec38de22010-10-10 22:04:20 +00001100
Chris Lattner5e1df8d2010-01-25 23:38:14 +00001101 // Otherwise, use the normal jump table encoding heuristics.
1102 return TargetLowering::getJumpTableEncoding();
1103}
1104
Chris Lattner589c6f62010-01-26 06:28:43 +00001105/// getPICBaseSymbol - Return the X86-32 PIC base.
1106MCSymbol *
1107X86TargetLowering::getPICBaseSymbol(const MachineFunction *MF,
1108 MCContext &Ctx) const {
1109 const MCAsmInfo &MAI = *getTargetMachine().getMCAsmInfo();
Chris Lattner9b97a732010-03-30 18:10:53 +00001110 return Ctx.GetOrCreateSymbol(Twine(MAI.getPrivateGlobalPrefix())+
1111 Twine(MF->getFunctionNumber())+"$pb");
Chris Lattner589c6f62010-01-26 06:28:43 +00001112}
1113
1114
Chris Lattnerc64daab2010-01-26 05:02:42 +00001115const MCExpr *
1116X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1117 const MachineBasicBlock *MBB,
1118 unsigned uid,MCContext &Ctx) const{
1119 assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1120 Subtarget->isPICStyleGOT());
1121 // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1122 // entries.
Daniel Dunbar4e815f82010-03-15 23:51:06 +00001123 return MCSymbolRefExpr::Create(MBB->getSymbol(),
1124 MCSymbolRefExpr::VK_GOTOFF, Ctx);
Chris Lattnerc64daab2010-01-26 05:02:42 +00001125}
1126
Evan Chengcc415862007-11-09 01:32:10 +00001127/// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1128/// jumptable.
Dan Gohman475871a2008-07-27 21:46:04 +00001129SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
Chris Lattner589c6f62010-01-26 06:28:43 +00001130 SelectionDAG &DAG) const {
Chris Lattnere4df7562009-07-09 03:15:51 +00001131 if (!Subtarget->is64Bit())
Dale Johannesenb300d2a2009-02-07 00:55:49 +00001132 // This doesn't have DebugLoc associated with it, but is not really the
1133 // same as a Register.
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00001134 return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
Evan Chengcc415862007-11-09 01:32:10 +00001135 return Table;
1136}
1137
Chris Lattner589c6f62010-01-26 06:28:43 +00001138/// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1139/// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1140/// MCExpr.
1141const MCExpr *X86TargetLowering::
1142getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1143 MCContext &Ctx) const {
1144 // X86-64 uses RIP relative addressing based on the jump table label.
1145 if (Subtarget->isPICStyleRIPRel())
1146 return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1147
1148 // Otherwise, the reference is relative to the PIC base.
1149 return MCSymbolRefExpr::Create(getPICBaseSymbol(MF, Ctx), Ctx);
1150}
1151
Bill Wendlingb4202b82009-07-01 18:50:55 +00001152/// getFunctionAlignment - Return the Log2 alignment of this function.
Bill Wendling20c568f2009-06-30 22:38:32 +00001153unsigned X86TargetLowering::getFunctionAlignment(const Function *F) const {
Dan Gohman25103a22009-08-18 00:20:06 +00001154 return F->hasFnAttr(Attribute::OptimizeForSize) ? 0 : 4;
Bill Wendling20c568f2009-06-30 22:38:32 +00001155}
1156
Evan Chengdee81012010-07-26 21:50:05 +00001157std::pair<const TargetRegisterClass*, uint8_t>
1158X86TargetLowering::findRepresentativeClass(EVT VT) const{
1159 const TargetRegisterClass *RRC = 0;
1160 uint8_t Cost = 1;
1161 switch (VT.getSimpleVT().SimpleTy) {
1162 default:
1163 return TargetLowering::findRepresentativeClass(VT);
1164 case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1165 RRC = (Subtarget->is64Bit()
1166 ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1167 break;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001168 case MVT::x86mmx:
Evan Chengdee81012010-07-26 21:50:05 +00001169 RRC = X86::VR64RegisterClass;
1170 break;
1171 case MVT::f32: case MVT::f64:
1172 case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1173 case MVT::v4f32: case MVT::v2f64:
1174 case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1175 case MVT::v4f64:
1176 RRC = X86::VR128RegisterClass;
1177 break;
1178 }
1179 return std::make_pair(RRC, Cost);
1180}
1181
Evan Cheng70017e42010-07-24 00:39:05 +00001182unsigned
1183X86TargetLowering::getRegPressureLimit(const TargetRegisterClass *RC,
1184 MachineFunction &MF) const {
1185 unsigned FPDiff = RegInfo->hasFP(MF) ? 1 : 0;
1186 switch (RC->getID()) {
1187 default:
1188 return 0;
1189 case X86::GR32RegClassID:
1190 return 4 - FPDiff;
1191 case X86::GR64RegClassID:
1192 return 8 - FPDiff;
1193 case X86::VR128RegClassID:
1194 return Subtarget->is64Bit() ? 10 : 4;
1195 case X86::VR64RegClassID:
1196 return 4;
1197 }
1198}
1199
Eric Christopherf7a0c7b2010-07-06 05:18:56 +00001200bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1201 unsigned &Offset) const {
1202 if (!Subtarget->isTargetLinux())
1203 return false;
1204
1205 if (Subtarget->is64Bit()) {
1206 // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1207 Offset = 0x28;
1208 if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1209 AddressSpace = 256;
1210 else
1211 AddressSpace = 257;
1212 } else {
1213 // %gs:0x14 on i386
1214 Offset = 0x14;
1215 AddressSpace = 256;
1216 }
1217 return true;
1218}
1219
1220
Chris Lattner2b02a442007-02-25 08:29:00 +00001221//===----------------------------------------------------------------------===//
1222// Return Value Calling Convention Implementation
1223//===----------------------------------------------------------------------===//
1224
Chris Lattner59ed56b2007-02-28 04:55:35 +00001225#include "X86GenCallingConv.inc"
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001226
Michael J. Spencerec38de22010-10-10 22:04:20 +00001227bool
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001228X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv, bool isVarArg,
Dan Gohman84023e02010-07-10 09:00:22 +00001229 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001230 LLVMContext &Context) const {
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001231 SmallVector<CCValAssign, 16> RVLocs;
1232 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Dan Gohmanc9af33c2010-07-06 22:19:37 +00001233 RVLocs, Context);
Dan Gohman84023e02010-07-10 09:00:22 +00001234 return CCInfo.CheckReturn(Outs, RetCC_X86);
Kenneth Uildriksb4997ae2009-11-07 02:11:54 +00001235}
1236
Dan Gohman98ca4f22009-08-05 01:29:28 +00001237SDValue
1238X86TargetLowering::LowerReturn(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001239 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001240 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001241 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohmand858e902010-04-17 15:26:15 +00001242 DebugLoc dl, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00001243 MachineFunction &MF = DAG.getMachineFunction();
1244 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001245
Chris Lattner9774c912007-02-27 05:28:59 +00001246 SmallVector<CCValAssign, 16> RVLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001247 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1248 RVLocs, *DAG.getContext());
1249 CCInfo.AnalyzeReturn(Outs, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001250
Evan Chengdcea1632010-02-04 02:40:39 +00001251 // Add the regs to the liveout set for the function.
1252 MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1253 for (unsigned i = 0; i != RVLocs.size(); ++i)
1254 if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1255 MRI.addLiveOut(RVLocs[i].getLocReg());
Scott Michelfdc40a02009-02-17 22:15:04 +00001256
Dan Gohman475871a2008-07-27 21:46:04 +00001257 SDValue Flag;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001258
Dan Gohman475871a2008-07-27 21:46:04 +00001259 SmallVector<SDValue, 6> RetOps;
Chris Lattner447ff682008-03-11 03:23:40 +00001260 RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1261 // Operand #1 = Bytes To Pop
Dan Gohman1e93df62010-04-17 14:41:14 +00001262 RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1263 MVT::i16));
Scott Michelfdc40a02009-02-17 22:15:04 +00001264
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001265 // Copy the result values into the output registers.
Chris Lattner8e6da152008-03-10 21:08:41 +00001266 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1267 CCValAssign &VA = RVLocs[i];
1268 assert(VA.isRegLoc() && "Can only return in registers!");
Dan Gohmanc9403652010-07-07 15:54:55 +00001269 SDValue ValToCopy = OutVals[i];
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001270 EVT ValVT = ValToCopy.getValueType();
1271
Dale Johannesenc4510512010-09-24 19:05:48 +00001272 // If this is x86-64, and we disabled SSE, we can't return FP values,
1273 // or SSE or MMX vectors.
1274 if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1275 VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1276 (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001277 report_fatal_error("SSE register return with SSE disabled");
1278 }
1279 // Likewise we can't return F64 values with SSE1 only. gcc does so, but
1280 // llvm-gcc has never done it right and no one has noticed, so this
1281 // should be OK for now.
1282 if (ValVT == MVT::f64 &&
Chris Lattner83069682010-08-26 05:51:22 +00001283 (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
Dale Johannesenc76d23f2010-07-23 00:30:35 +00001284 report_fatal_error("SSE2 register return with SSE2 disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00001285
Chris Lattner447ff682008-03-11 03:23:40 +00001286 // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1287 // the RET instruction and handled by the FP Stackifier.
Dan Gohman37eed792009-02-04 17:28:58 +00001288 if (VA.getLocReg() == X86::ST0 ||
1289 VA.getLocReg() == X86::ST1) {
Chris Lattner447ff682008-03-11 03:23:40 +00001290 // If this is a copy from an xmm register to ST(0), use an FPExtend to
1291 // change the value to the FP stack register class.
Dan Gohman37eed792009-02-04 17:28:58 +00001292 if (isScalarFPTypeInSSEReg(VA.getValVT()))
Owen Anderson825b72b2009-08-11 20:47:22 +00001293 ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
Chris Lattner447ff682008-03-11 03:23:40 +00001294 RetOps.push_back(ValToCopy);
1295 // Don't emit a copytoreg.
1296 continue;
1297 }
Dale Johannesena68f9012008-06-24 22:01:44 +00001298
Evan Cheng242b38b2009-02-23 09:03:22 +00001299 // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1300 // which is returned in RAX / RDX.
Evan Cheng6140a8b2009-02-22 08:05:12 +00001301 if (Subtarget->is64Bit()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001302 if (ValVT == MVT::x86mmx) {
Chris Lattner97a2a562010-08-26 05:24:29 +00001303 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001304 ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, ValToCopy);
Eric Christopher90eb4022010-07-22 00:26:08 +00001305 ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1306 ValToCopy);
Chris Lattner97a2a562010-08-26 05:24:29 +00001307 // If we don't have SSE2 available, convert to v4f32 so the generated
1308 // register is legal.
1309 if (!Subtarget->hasSSE2())
1310 ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32,ValToCopy);
1311 }
Evan Cheng242b38b2009-02-23 09:03:22 +00001312 }
Evan Cheng6140a8b2009-02-22 08:05:12 +00001313 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00001314
Dale Johannesendd64c412009-02-04 00:33:20 +00001315 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001316 Flag = Chain.getValue(1);
1317 }
Dan Gohman61a92132008-04-21 23:59:07 +00001318
1319 // The x86-64 ABI for returning structs by value requires that we copy
1320 // the sret argument into %rax for the return. We saved the argument into
1321 // a virtual register in the entry block, so now we copy the value out
1322 // and into %rax.
1323 if (Subtarget->is64Bit() &&
1324 DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1325 MachineFunction &MF = DAG.getMachineFunction();
1326 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1327 unsigned Reg = FuncInfo->getSRetReturnReg();
Michael J. Spencerec38de22010-10-10 22:04:20 +00001328 assert(Reg &&
Zhongxing Xuc2798a12010-05-26 08:10:02 +00001329 "SRetReturnReg should have been set in LowerFormalArguments().");
Dale Johannesendd64c412009-02-04 00:33:20 +00001330 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Dan Gohman61a92132008-04-21 23:59:07 +00001331
Dale Johannesendd64c412009-02-04 00:33:20 +00001332 Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
Dan Gohman61a92132008-04-21 23:59:07 +00001333 Flag = Chain.getValue(1);
Dan Gohman00326812009-10-12 16:36:12 +00001334
1335 // RAX now acts like a return value.
Evan Chengdcea1632010-02-04 02:40:39 +00001336 MRI.addLiveOut(X86::RAX);
Dan Gohman61a92132008-04-21 23:59:07 +00001337 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001338
Chris Lattner447ff682008-03-11 03:23:40 +00001339 RetOps[0] = Chain; // Update chain.
1340
1341 // Add the flag if we have it.
Gabor Greifba36cb52008-08-28 21:40:38 +00001342 if (Flag.getNode())
Chris Lattner447ff682008-03-11 03:23:40 +00001343 RetOps.push_back(Flag);
Scott Michelfdc40a02009-02-17 22:15:04 +00001344
1345 return DAG.getNode(X86ISD::RET_FLAG, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001346 MVT::Other, &RetOps[0], RetOps.size());
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001347}
1348
Dan Gohman98ca4f22009-08-05 01:29:28 +00001349/// LowerCallResult - Lower the result values of a call into the
1350/// appropriate copies out of appropriate physical registers.
1351///
1352SDValue
1353X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001354 CallingConv::ID CallConv, bool isVarArg,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001355 const SmallVectorImpl<ISD::InputArg> &Ins,
1356 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001357 SmallVectorImpl<SDValue> &InVals) const {
Chris Lattner2a9bdd72007-02-25 09:12:39 +00001358
Chris Lattnere32bbf62007-02-28 07:09:55 +00001359 // Assign locations to each value returned by this call.
Chris Lattner9774c912007-02-27 05:28:59 +00001360 SmallVector<CCValAssign, 16> RVLocs;
Torok Edwin3f142c32009-02-01 18:15:56 +00001361 bool Is64Bit = Subtarget->is64Bit();
Dan Gohman98ca4f22009-08-05 01:29:28 +00001362 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
Owen Andersone922c022009-07-22 00:24:57 +00001363 RVLocs, *DAG.getContext());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001364 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001365
Chris Lattner3085e152007-02-25 08:59:22 +00001366 // Copy all of the result registers out of their specified physreg.
Chris Lattner8e6da152008-03-10 21:08:41 +00001367 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dan Gohman37eed792009-02-04 17:28:58 +00001368 CCValAssign &VA = RVLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001369 EVT CopyVT = VA.getValVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00001370
Torok Edwin3f142c32009-02-01 18:15:56 +00001371 // If this is x86-64, and we disabled SSE, we can't return FP values
Owen Anderson825b72b2009-08-11 20:47:22 +00001372 if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
Dan Gohman98ca4f22009-08-05 01:29:28 +00001373 ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
Chris Lattner75361b62010-04-07 22:58:41 +00001374 report_fatal_error("SSE register return with SSE disabled");
Torok Edwin3f142c32009-02-01 18:15:56 +00001375 }
1376
Evan Cheng79fb3b42009-02-20 20:43:02 +00001377 SDValue Val;
Jakob Stoklund Olesend737fca2010-07-10 04:04:25 +00001378
1379 // If this is a call to a function that returns an fp value on the floating
1380 // point stack, we must guarantee the the value is popped from the stack, so
1381 // a CopyFromReg is not good enough - the copy instruction may be eliminated
1382 // if the return value is not used. We use the FpGET_ST0 instructions
1383 // instead.
1384 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1385 // If we prefer to use the value in xmm registers, copy it out as f80 and
1386 // use a truncate to move it from fp stack reg to xmm reg.
1387 if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1388 bool isST0 = VA.getLocReg() == X86::ST0;
1389 unsigned Opc = 0;
1390 if (CopyVT == MVT::f32) Opc = isST0 ? X86::FpGET_ST0_32:X86::FpGET_ST1_32;
1391 if (CopyVT == MVT::f64) Opc = isST0 ? X86::FpGET_ST0_64:X86::FpGET_ST1_64;
1392 if (CopyVT == MVT::f80) Opc = isST0 ? X86::FpGET_ST0_80:X86::FpGET_ST1_80;
1393 SDValue Ops[] = { Chain, InFlag };
1394 Chain = SDValue(DAG.getMachineNode(Opc, dl, CopyVT, MVT::Other, MVT::Flag,
1395 Ops, 2), 1);
1396 Val = Chain.getValue(0);
1397
1398 // Round the f80 to the right size, which also moves it to the appropriate
1399 // xmm register.
1400 if (CopyVT != VA.getValVT())
1401 Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1402 // This truncation won't change the value.
1403 DAG.getIntPtrConstant(1));
1404 } else if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
Evan Cheng242b38b2009-02-23 09:03:22 +00001405 // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64.
1406 if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1407 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001408 MVT::v2i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001409 Val = Chain.getValue(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00001410 Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1411 Val, DAG.getConstant(0, MVT::i64));
Evan Cheng242b38b2009-02-23 09:03:22 +00001412 } else {
1413 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
Owen Anderson825b72b2009-08-11 20:47:22 +00001414 MVT::i64, InFlag).getValue(1);
Evan Cheng242b38b2009-02-23 09:03:22 +00001415 Val = Chain.getValue(0);
1416 }
Evan Cheng79fb3b42009-02-20 20:43:02 +00001417 Val = DAG.getNode(ISD::BIT_CONVERT, dl, CopyVT, Val);
1418 } else {
1419 Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1420 CopyVT, InFlag).getValue(1);
1421 Val = Chain.getValue(0);
1422 }
Chris Lattner8e6da152008-03-10 21:08:41 +00001423 InFlag = Chain.getValue(2);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001424 InVals.push_back(Val);
Chris Lattner3085e152007-02-25 08:59:22 +00001425 }
Duncan Sands4bdcb612008-07-02 17:40:58 +00001426
Dan Gohman98ca4f22009-08-05 01:29:28 +00001427 return Chain;
Chris Lattner2b02a442007-02-25 08:29:00 +00001428}
1429
1430
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001431//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001432// C & StdCall & Fast Calling Convention implementation
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001433//===----------------------------------------------------------------------===//
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001434// StdCall calling convention seems to be standard for many Windows' API
1435// routines and around. It differs from C calling convention just a little:
1436// callee should clean up the stack, not caller. Symbols should be also
1437// decorated in some fancy way :) It doesn't support any vector arguments.
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00001438// For info on fast calling convention see Fast Calling Convention (tail call)
1439// implementation LowerX86_32FastCCCallTo.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001440
Dan Gohman98ca4f22009-08-05 01:29:28 +00001441/// CallIsStructReturn - Determines whether a call uses struct return
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001442/// semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001443static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1444 if (Outs.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001445 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001446
Dan Gohman98ca4f22009-08-05 01:29:28 +00001447 return Outs[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001448}
1449
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001450/// ArgsAreStructReturn - Determines whether a function uses struct
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001451/// return semantics.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001452static bool
1453ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1454 if (Ins.empty())
Gordon Henriksen86737662008-01-05 16:56:59 +00001455 return false;
Duncan Sands276dcbd2008-03-21 09:14:45 +00001456
Dan Gohman98ca4f22009-08-05 01:29:28 +00001457 return Ins[0].Flags.isSRet();
Gordon Henriksen86737662008-01-05 16:56:59 +00001458}
1459
Arnold Schwaighofer16a3e522008-02-26 17:50:59 +00001460/// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1461/// by "Src" to address "Dst" with size and alignment information specified by
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001462/// the specific parameter attribute. The copy will be passed as a byval
1463/// function parameter.
Scott Michelfdc40a02009-02-17 22:15:04 +00001464static SDValue
Dan Gohman475871a2008-07-27 21:46:04 +00001465CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
Dale Johannesendd64c412009-02-04 00:33:20 +00001466 ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1467 DebugLoc dl) {
Chris Lattnere72f2022010-09-21 05:40:29 +00001468 SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
Michael J. Spencerec38de22010-10-10 22:04:20 +00001469
Dale Johannesendd64c412009-02-04 00:33:20 +00001470 return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
Mon P Wang20adc9d2010-04-04 03:10:48 +00001471 /*isVolatile*/false, /*AlwaysInline=*/true,
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001472 MachinePointerInfo(), MachinePointerInfo());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00001473}
1474
Chris Lattner29689432010-03-11 00:22:57 +00001475/// IsTailCallConvention - Return true if the calling convention is one that
1476/// supports tail call optimization.
1477static bool IsTailCallConvention(CallingConv::ID CC) {
1478 return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1479}
1480
Evan Cheng0c439eb2010-01-27 00:07:07 +00001481/// FuncIsMadeTailCallSafe - Return true if the function is being made into
1482/// a tailcall target by changing its ABI.
1483static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
Chris Lattner29689432010-03-11 00:22:57 +00001484 return GuaranteedTailCallOpt && IsTailCallConvention(CC);
Evan Cheng0c439eb2010-01-27 00:07:07 +00001485}
1486
Dan Gohman98ca4f22009-08-05 01:29:28 +00001487SDValue
1488X86TargetLowering::LowerMemArgument(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001489 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001490 const SmallVectorImpl<ISD::InputArg> &Ins,
1491 DebugLoc dl, SelectionDAG &DAG,
1492 const CCValAssign &VA,
1493 MachineFrameInfo *MFI,
Dan Gohmand858e902010-04-17 15:26:15 +00001494 unsigned i) const {
Rafael Espindola7effac52007-09-14 15:48:13 +00001495 // Create the nodes corresponding to a load from this parameter slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001496 ISD::ArgFlagsTy Flags = Ins[i].Flags;
Evan Cheng0c439eb2010-01-27 00:07:07 +00001497 bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
Duncan Sands276dcbd2008-03-21 09:14:45 +00001498 bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
Anton Korobeynikov22472762009-08-14 18:19:10 +00001499 EVT ValVT;
1500
1501 // If value is passed by pointer we have address passed instead of the value
1502 // itself.
1503 if (VA.getLocInfo() == CCValAssign::Indirect)
1504 ValVT = VA.getLocVT();
1505 else
1506 ValVT = VA.getValVT();
Evan Chenge70bb592008-01-10 02:24:25 +00001507
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001508 // FIXME: For now, all byval parameter objects are marked mutable. This can be
Scott Michelfdc40a02009-02-17 22:15:04 +00001509 // changed with more analysis.
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00001510 // In case of tail call optimization mark all arguments mutable. Since they
1511 // could be overwritten by lowering of arguments in case of a tail call.
Evan Cheng90567c32010-02-02 23:58:13 +00001512 if (Flags.isByVal()) {
1513 int FI = MFI->CreateFixedObject(Flags.getByValSize(),
Evan Chenged2ae132010-07-03 00:40:23 +00001514 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001515 return DAG.getFrameIndex(FI, getPointerTy());
1516 } else {
1517 int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
Evan Chenged2ae132010-07-03 00:40:23 +00001518 VA.getLocMemOffset(), isImmutable);
Evan Cheng90567c32010-02-02 23:58:13 +00001519 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1520 return DAG.getLoad(ValVT, dl, Chain, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001521 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001522 false, false, 0);
Evan Cheng90567c32010-02-02 23:58:13 +00001523 }
Rafael Espindola7effac52007-09-14 15:48:13 +00001524}
1525
Dan Gohman475871a2008-07-27 21:46:04 +00001526SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001527X86TargetLowering::LowerFormalArguments(SDValue Chain,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001528 CallingConv::ID CallConv,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001529 bool isVarArg,
1530 const SmallVectorImpl<ISD::InputArg> &Ins,
1531 DebugLoc dl,
1532 SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001533 SmallVectorImpl<SDValue> &InVals)
1534 const {
Evan Cheng1bc78042006-04-26 01:20:17 +00001535 MachineFunction &MF = DAG.getMachineFunction();
Gordon Henriksen86737662008-01-05 16:56:59 +00001536 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
Scott Michelfdc40a02009-02-17 22:15:04 +00001537
Gordon Henriksen86737662008-01-05 16:56:59 +00001538 const Function* Fn = MF.getFunction();
1539 if (Fn->hasExternalLinkage() &&
1540 Subtarget->isTargetCygMing() &&
1541 Fn->getName() == "main")
1542 FuncInfo->setForceFramePointer(true);
1543
Evan Cheng1bc78042006-04-26 01:20:17 +00001544 MachineFrameInfo *MFI = MF.getFrameInfo();
Gordon Henriksen86737662008-01-05 16:56:59 +00001545 bool Is64Bit = Subtarget->is64Bit();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001546 bool IsWin64 = Subtarget->isTargetWin64();
Gordon Henriksenae636f82008-01-03 16:47:34 +00001547
Chris Lattner29689432010-03-11 00:22:57 +00001548 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1549 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001550
Chris Lattner638402b2007-02-28 07:00:42 +00001551 // Assign locations to all of the incoming arguments.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001552 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001553 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1554 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00001555 CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001556
Chris Lattnerf39f7712007-02-28 05:46:49 +00001557 unsigned LastVal = ~0U;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001558 SDValue ArgValue;
Chris Lattnerf39f7712007-02-28 05:46:49 +00001559 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1560 CCValAssign &VA = ArgLocs[i];
1561 // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1562 // places.
1563 assert(VA.getValNo() != LastVal &&
1564 "Don't support value assigned to multiple locs yet");
1565 LastVal = VA.getValNo();
Scott Michelfdc40a02009-02-17 22:15:04 +00001566
Chris Lattnerf39f7712007-02-28 05:46:49 +00001567 if (VA.isRegLoc()) {
Owen Andersone50ed302009-08-10 22:56:29 +00001568 EVT RegVT = VA.getLocVT();
Devang Patel8a84e442009-01-05 17:31:22 +00001569 TargetRegisterClass *RC = NULL;
Owen Anderson825b72b2009-08-11 20:47:22 +00001570 if (RegVT == MVT::i32)
Chris Lattnerf39f7712007-02-28 05:46:49 +00001571 RC = X86::GR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001572 else if (Is64Bit && RegVT == MVT::i64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001573 RC = X86::GR64RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001574 else if (RegVT == MVT::f32)
Gordon Henriksen86737662008-01-05 16:56:59 +00001575 RC = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +00001576 else if (RegVT == MVT::f64)
Gordon Henriksen86737662008-01-05 16:56:59 +00001577 RC = X86::FR64RegisterClass;
Bruno Cardoso Lopesac098352010-08-05 23:35:51 +00001578 else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1579 RC = X86::VR256RegisterClass;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001580 else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
Evan Chengee472b12008-04-25 07:56:45 +00001581 RC = X86::VR128RegisterClass;
Dale Johannesen0488fb62010-09-30 23:57:10 +00001582 else if (RegVT == MVT::x86mmx)
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001583 RC = X86::VR64RegisterClass;
1584 else
Torok Edwinc23197a2009-07-14 16:55:14 +00001585 llvm_unreachable("Unknown argument type!");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001586
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001587 unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
Dan Gohman98ca4f22009-08-05 01:29:28 +00001588 ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001589
Chris Lattnerf39f7712007-02-28 05:46:49 +00001590 // If this is an 8 or 16-bit value, it is really passed promoted to 32
1591 // bits. Insert an assert[sz]ext to capture this, then truncate to the
1592 // right size.
1593 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001594 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001595 DAG.getValueType(VA.getValVT()));
1596 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesenace16102009-02-03 19:33:06 +00001597 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Chris Lattnerf39f7712007-02-28 05:46:49 +00001598 DAG.getValueType(VA.getValVT()));
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001599 else if (VA.getLocInfo() == CCValAssign::BCvt)
Anton Korobeynikov6dde14b2009-08-03 08:14:14 +00001600 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getValVT(), ArgValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00001601
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001602 if (VA.isExtInLoc()) {
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001603 // Handle MMX values passed in XMM regs.
1604 if (RegVT.isVector()) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00001605 ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1606 ArgValue);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001607 } else
1608 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Evan Cheng44c0fd12008-04-25 20:13:28 +00001609 }
Chris Lattnerf39f7712007-02-28 05:46:49 +00001610 } else {
1611 assert(VA.isMemLoc());
Dan Gohman98ca4f22009-08-05 01:29:28 +00001612 ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
Evan Cheng1bc78042006-04-26 01:20:17 +00001613 }
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001614
1615 // If value is passed via pointer - do a load.
1616 if (VA.getLocInfo() == CCValAssign::Indirect)
Chris Lattner51abfe42010-09-21 06:02:19 +00001617 ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1618 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001619
Dan Gohman98ca4f22009-08-05 01:29:28 +00001620 InVals.push_back(ArgValue);
Evan Cheng1bc78042006-04-26 01:20:17 +00001621 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001622
Dan Gohman61a92132008-04-21 23:59:07 +00001623 // The x86-64 ABI for returning structs by value requires that we copy
1624 // the sret argument into %rax for the return. Save the argument into
1625 // a virtual register so that we can access it from the return points.
Dan Gohman7e77b0f2009-08-01 19:14:37 +00001626 if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
Dan Gohman61a92132008-04-21 23:59:07 +00001627 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1628 unsigned Reg = FuncInfo->getSRetReturnReg();
1629 if (!Reg) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001630 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
Dan Gohman61a92132008-04-21 23:59:07 +00001631 FuncInfo->setSRetReturnReg(Reg);
1632 }
Dan Gohman98ca4f22009-08-05 01:29:28 +00001633 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
Owen Anderson825b72b2009-08-11 20:47:22 +00001634 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
Dan Gohman61a92132008-04-21 23:59:07 +00001635 }
1636
Chris Lattnerf39f7712007-02-28 05:46:49 +00001637 unsigned StackSize = CCInfo.getNextStackOffset();
Evan Cheng0c439eb2010-01-27 00:07:07 +00001638 // Align stack specially for tail calls.
1639 if (FuncIsMadeTailCallSafe(CallConv))
Gordon Henriksenae636f82008-01-03 16:47:34 +00001640 StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
Evan Cheng25caf632006-05-23 21:06:34 +00001641
Evan Cheng1bc78042006-04-26 01:20:17 +00001642 // If the function takes variable number of arguments, make a frame index for
1643 // the start of the first vararg value... for expansion of llvm.va_start.
Gordon Henriksenae636f82008-01-03 16:47:34 +00001644 if (isVarArg) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001645 if (!IsWin64 && (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1646 CallConv != CallingConv::X86_ThisCall))) {
Jakob Stoklund Olesenb2eeed72010-07-29 17:42:27 +00001647 FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
Gordon Henriksen86737662008-01-05 16:56:59 +00001648 }
1649 if (Is64Bit) {
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001650 unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1651
1652 // FIXME: We should really autogenerate these arrays
1653 static const unsigned GPR64ArgRegsWin64[] = {
1654 X86::RCX, X86::RDX, X86::R8, X86::R9
Gordon Henriksen86737662008-01-05 16:56:59 +00001655 };
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001656 static const unsigned GPR64ArgRegs64Bit[] = {
1657 X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1658 };
1659 static const unsigned XMMArgRegs64Bit[] = {
Gordon Henriksen86737662008-01-05 16:56:59 +00001660 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1661 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1662 };
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001663 const unsigned *GPR64ArgRegs;
1664 unsigned NumXMMRegs = 0;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001665
1666 if (IsWin64) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001667 // The XMM registers which might contain var arg parameters are shadowed
1668 // in their paired GPR. So we only need to save the GPR to their home
1669 // slots.
1670 TotalNumIntRegs = 4;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001671 GPR64ArgRegs = GPR64ArgRegsWin64;
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001672 } else {
1673 TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1674 GPR64ArgRegs = GPR64ArgRegs64Bit;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001675
1676 NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001677 }
1678 unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1679 TotalNumIntRegs);
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001680
Devang Patel578efa92009-06-05 21:57:13 +00001681 bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
Evan Chengc7ce29b2009-02-13 22:36:38 +00001682 assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
Torok Edwin3f142c32009-02-01 18:15:56 +00001683 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001684 assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
Evan Chengc7ce29b2009-02-13 22:36:38 +00001685 "SSE register cannot be used when SSE is disabled!");
Devang Patel578efa92009-06-05 21:57:13 +00001686 if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasSSE1())
Torok Edwin3f142c32009-02-01 18:15:56 +00001687 // Kernel mode asks for SSE to be disabled, so don't push them
1688 // on the stack.
1689 TotalNumXMMRegs = 0;
Bill Wendlingf9abd7e2009-03-11 22:30:01 +00001690
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001691 if (IsWin64) {
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001692 const TargetFrameInfo &TFI = *getTargetMachine().getFrameInfo();
1693 // Get to the caller-allocated home save location. Add 8 to account
1694 // for the return address.
1695 int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001696 FuncInfo->setRegSaveFrameIndex(
Cameron Esfahaniec37b002010-10-08 19:24:18 +00001697 MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001698 FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
1699 } else {
1700 // For X86-64, if there are vararg parameters that are passed via
1701 // registers, then we must store them to their spots on the stack so they
1702 // may be loaded by deferencing the result of va_next.
1703 FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1704 FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1705 FuncInfo->setRegSaveFrameIndex(
1706 MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
Dan Gohman1e93df62010-04-17 14:41:14 +00001707 false));
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001708 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001709
Gordon Henriksen86737662008-01-05 16:56:59 +00001710 // Store the integer parameter registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001711 SmallVector<SDValue, 8> MemOps;
Dan Gohman1e93df62010-04-17 14:41:14 +00001712 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1713 getPointerTy());
1714 unsigned Offset = FuncInfo->getVarArgsGPOffset();
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001715 for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
Dan Gohmand6708ea2009-08-15 01:38:56 +00001716 SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1717 DAG.getIntPtrConstant(Offset));
Bob Wilson998e1252009-04-20 18:36:57 +00001718 unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
1719 X86::GR64RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +00001720 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
Dan Gohman475871a2008-07-27 21:46:04 +00001721 SDValue Store =
Dale Johannesenace16102009-02-03 19:33:06 +00001722 DAG.getStore(Val.getValue(1), dl, Val, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00001723 MachinePointerInfo::getFixedStack(
1724 FuncInfo->getRegSaveFrameIndex(), Offset),
1725 false, false, 0);
Gordon Henriksen86737662008-01-05 16:56:59 +00001726 MemOps.push_back(Store);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001727 Offset += 8;
Gordon Henriksen86737662008-01-05 16:56:59 +00001728 }
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00001729
Dan Gohmanface41a2009-08-16 21:24:25 +00001730 if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1731 // Now store the XMM (fp + vector) parameter registers.
1732 SmallVector<SDValue, 11> SaveXMMOps;
1733 SaveXMMOps.push_back(Chain);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001734
Dan Gohmanface41a2009-08-16 21:24:25 +00001735 unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
1736 SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1737 SaveXMMOps.push_back(ALVal);
Dan Gohmand6708ea2009-08-15 01:38:56 +00001738
Dan Gohman1e93df62010-04-17 14:41:14 +00001739 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1740 FuncInfo->getRegSaveFrameIndex()));
1741 SaveXMMOps.push_back(DAG.getIntPtrConstant(
1742 FuncInfo->getVarArgsFPOffset()));
Dan Gohmand6708ea2009-08-15 01:38:56 +00001743
Dan Gohmanface41a2009-08-16 21:24:25 +00001744 for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
Anton Korobeynikove7beda12010-10-03 22:52:07 +00001745 unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
Dan Gohmanface41a2009-08-16 21:24:25 +00001746 X86::VR128RegisterClass);
1747 SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1748 SaveXMMOps.push_back(Val);
1749 }
1750 MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1751 MVT::Other,
1752 &SaveXMMOps[0], SaveXMMOps.size()));
Gordon Henriksen86737662008-01-05 16:56:59 +00001753 }
Dan Gohmanface41a2009-08-16 21:24:25 +00001754
1755 if (!MemOps.empty())
1756 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1757 &MemOps[0], MemOps.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00001758 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001759 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001760
Gordon Henriksen86737662008-01-05 16:56:59 +00001761 // Some CCs need callee pop.
Dan Gohman4d3d6e12010-05-27 18:43:40 +00001762 if (Subtarget->IsCalleePop(isVarArg, CallConv)) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001763 FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001764 } else {
Dan Gohman1e93df62010-04-17 14:41:14 +00001765 FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
Chris Lattnerf39f7712007-02-28 05:46:49 +00001766 // If this is an sret function, the return should pop the hidden pointer.
Chris Lattner29689432010-03-11 00:22:57 +00001767 if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
Dan Gohman1e93df62010-04-17 14:41:14 +00001768 FuncInfo->setBytesToPopOnReturn(4);
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00001769 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00001770
Gordon Henriksen86737662008-01-05 16:56:59 +00001771 if (!Is64Bit) {
Dan Gohman1e93df62010-04-17 14:41:14 +00001772 // RegSaveFrameIndex is X86-64 only.
1773 FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001774 if (CallConv == CallingConv::X86_FastCall ||
1775 CallConv == CallingConv::X86_ThisCall)
Dan Gohman1e93df62010-04-17 14:41:14 +00001776 // fastcc functions can't have varargs.
1777 FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
Gordon Henriksen86737662008-01-05 16:56:59 +00001778 }
Evan Cheng25caf632006-05-23 21:06:34 +00001779
Dan Gohman98ca4f22009-08-05 01:29:28 +00001780 return Chain;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001781}
1782
Dan Gohman475871a2008-07-27 21:46:04 +00001783SDValue
Dan Gohman98ca4f22009-08-05 01:29:28 +00001784X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1785 SDValue StackPtr, SDValue Arg,
1786 DebugLoc dl, SelectionDAG &DAG,
Evan Chengdffbd832008-01-10 00:09:10 +00001787 const CCValAssign &VA,
Dan Gohmand858e902010-04-17 15:26:15 +00001788 ISD::ArgFlagsTy Flags) const {
Anton Korobeynikovc7c62bb2010-09-02 22:31:32 +00001789 const unsigned FirstStackArgOffset = (Subtarget->isTargetWin64() ? 32 : 0);
1790 unsigned LocMemOffset = FirstStackArgOffset + VA.getLocMemOffset();
Dan Gohman475871a2008-07-27 21:46:04 +00001791 SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
Dale Johannesenace16102009-02-03 19:33:06 +00001792 PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001793 if (Flags.isByVal())
Dale Johannesendd64c412009-02-04 00:33:20 +00001794 return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
Chris Lattnerfc448ff2010-09-21 18:51:21 +00001795
1796 return DAG.getStore(Chain, dl, Arg, PtrOff,
1797 MachinePointerInfo::getStack(LocMemOffset),
David Greene67c9d422010-02-15 16:53:33 +00001798 false, false, 0);
Evan Chengdffbd832008-01-10 00:09:10 +00001799}
1800
Bill Wendling64e87322009-01-16 19:25:27 +00001801/// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001802/// optimization is performed and it is required.
Scott Michelfdc40a02009-02-17 22:15:04 +00001803SDValue
1804X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
Evan Chengddc419c2010-01-26 19:04:47 +00001805 SDValue &OutRetAddr, SDValue Chain,
1806 bool IsTailCall, bool Is64Bit,
Dan Gohmand858e902010-04-17 15:26:15 +00001807 int FPDiff, DebugLoc dl) const {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001808 // Adjust the Return address stack slot.
Owen Andersone50ed302009-08-10 22:56:29 +00001809 EVT VT = getPointerTy();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001810 OutRetAddr = getReturnAddressFrameIndex(DAG);
Bill Wendling64e87322009-01-16 19:25:27 +00001811
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001812 // Load the "old" Return address.
Chris Lattner51abfe42010-09-21 06:02:19 +00001813 OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1814 false, false, 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001815 return SDValue(OutRetAddr.getNode(), 1);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001816}
1817
1818/// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1819/// optimization is performed and it is required (FPDiff!=0).
Scott Michelfdc40a02009-02-17 22:15:04 +00001820static SDValue
1821EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
Dan Gohman475871a2008-07-27 21:46:04 +00001822 SDValue Chain, SDValue RetAddrFrIdx,
Dale Johannesenace16102009-02-03 19:33:06 +00001823 bool Is64Bit, int FPDiff, DebugLoc dl) {
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001824 // Store the return address to the appropriate stack slot.
1825 if (!FPDiff) return Chain;
1826 // Calculate the new stack slot for the return address.
1827 int SlotSize = Is64Bit ? 8 : 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00001828 int NewReturnAddrFI =
Evan Chenged2ae132010-07-03 00:40:23 +00001829 MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
Owen Anderson825b72b2009-08-11 20:47:22 +00001830 EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
Dan Gohman475871a2008-07-27 21:46:04 +00001831 SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00001832 Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00001833 MachinePointerInfo::getFixedStack(NewReturnAddrFI),
David Greene67c9d422010-02-15 16:53:33 +00001834 false, false, 0);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001835 return Chain;
1836}
1837
Dan Gohman98ca4f22009-08-05 01:29:28 +00001838SDValue
Evan Cheng022d9e12010-02-02 23:55:14 +00001839X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001840 CallingConv::ID CallConv, bool isVarArg,
Evan Cheng0c439eb2010-01-27 00:07:07 +00001841 bool &isTailCall,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001842 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00001843 const SmallVectorImpl<SDValue> &OutVals,
Dan Gohman98ca4f22009-08-05 01:29:28 +00001844 const SmallVectorImpl<ISD::InputArg> &Ins,
1845 DebugLoc dl, SelectionDAG &DAG,
Dan Gohmand858e902010-04-17 15:26:15 +00001846 SmallVectorImpl<SDValue> &InVals) const {
Dan Gohman98ca4f22009-08-05 01:29:28 +00001847 MachineFunction &MF = DAG.getMachineFunction();
1848 bool Is64Bit = Subtarget->is64Bit();
1849 bool IsStructRet = CallIsStructReturn(Outs);
Evan Cheng5f941932010-02-05 02:21:12 +00001850 bool IsSibcall = false;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001851
Evan Cheng5f941932010-02-05 02:21:12 +00001852 if (isTailCall) {
Evan Cheng0c439eb2010-01-27 00:07:07 +00001853 // Check if it's really possible to do a tail call.
Evan Chenga375d472010-03-15 18:54:48 +00001854 isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1855 isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
Dan Gohmanc9403652010-07-07 15:54:55 +00001856 Outs, OutVals, Ins, DAG);
Evan Chengf22f9b32010-02-06 03:28:46 +00001857
1858 // Sibcalls are automatically detected tailcalls which do not require
1859 // ABI changes.
Dan Gohman1797ed52010-02-08 20:27:50 +00001860 if (!GuaranteedTailCallOpt && isTailCall)
Evan Cheng5f941932010-02-05 02:21:12 +00001861 IsSibcall = true;
Evan Chengf22f9b32010-02-06 03:28:46 +00001862
1863 if (isTailCall)
1864 ++NumTailCalls;
Evan Cheng5f941932010-02-05 02:21:12 +00001865 }
Evan Cheng0c439eb2010-01-27 00:07:07 +00001866
Chris Lattner29689432010-03-11 00:22:57 +00001867 assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1868 "Var args not supported with calling convention fastcc or ghc");
Gordon Henriksenae636f82008-01-03 16:47:34 +00001869
Chris Lattner638402b2007-02-28 07:00:42 +00001870 // Analyze operands of the call, assigning locations to each operand.
Chris Lattner423c5f42007-02-28 05:31:48 +00001871 SmallVector<CCValAssign, 16> ArgLocs;
Dan Gohman98ca4f22009-08-05 01:29:28 +00001872 CCState CCInfo(CallConv, isVarArg, getTargetMachine(),
1873 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00001874 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Scott Michelfdc40a02009-02-17 22:15:04 +00001875
Chris Lattner423c5f42007-02-28 05:31:48 +00001876 // Get a count of how many bytes are to be pushed on the stack.
1877 unsigned NumBytes = CCInfo.getNextStackOffset();
Evan Chengf22f9b32010-02-06 03:28:46 +00001878 if (IsSibcall)
Evan Chengb2c92902010-02-02 02:22:50 +00001879 // This is a sibcall. The memory operands are available in caller's
1880 // own caller's stack.
1881 NumBytes = 0;
Chris Lattner29689432010-03-11 00:22:57 +00001882 else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
Evan Chengf22f9b32010-02-06 03:28:46 +00001883 NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001884
Gordon Henriksen86737662008-01-05 16:56:59 +00001885 int FPDiff = 0;
Evan Chengf22f9b32010-02-06 03:28:46 +00001886 if (isTailCall && !IsSibcall) {
Gordon Henriksen86737662008-01-05 16:56:59 +00001887 // Lower arguments at fp - stackoffset + fpdiff.
Scott Michelfdc40a02009-02-17 22:15:04 +00001888 unsigned NumBytesCallerPushed =
Gordon Henriksen86737662008-01-05 16:56:59 +00001889 MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1890 FPDiff = NumBytesCallerPushed - NumBytes;
1891
1892 // Set the delta of movement of the returnaddr stackslot.
1893 // But only set if delta is greater than previous delta.
1894 if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1895 MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1896 }
1897
Evan Chengf22f9b32010-02-06 03:28:46 +00001898 if (!IsSibcall)
1899 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001900
Dan Gohman475871a2008-07-27 21:46:04 +00001901 SDValue RetAddrFrIdx;
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00001902 // Load return adress for tail calls.
Evan Chengf22f9b32010-02-06 03:28:46 +00001903 if (isTailCall && FPDiff)
1904 Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
1905 Is64Bit, FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00001906
Dan Gohman475871a2008-07-27 21:46:04 +00001907 SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1908 SmallVector<SDValue, 8> MemOpChains;
1909 SDValue StackPtr;
Chris Lattner423c5f42007-02-28 05:31:48 +00001910
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001911 // Walk the register/memloc assignments, inserting copies/loads. In the case
1912 // of tail call optimization arguments are handle later.
Chris Lattner423c5f42007-02-28 05:31:48 +00001913 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1914 CCValAssign &VA = ArgLocs[i];
Owen Andersone50ed302009-08-10 22:56:29 +00001915 EVT RegVT = VA.getLocVT();
Dan Gohmanc9403652010-07-07 15:54:55 +00001916 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00001917 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Dan Gohman095cc292008-09-13 01:54:27 +00001918 bool isByVal = Flags.isByVal();
Scott Michelfdc40a02009-02-17 22:15:04 +00001919
Chris Lattner423c5f42007-02-28 05:31:48 +00001920 // Promote the value if needed.
1921 switch (VA.getLocInfo()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00001922 default: llvm_unreachable("Unknown loc info!");
Chris Lattner423c5f42007-02-28 05:31:48 +00001923 case CCValAssign::Full: break;
1924 case CCValAssign::SExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001925 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001926 break;
1927 case CCValAssign::ZExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001928 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001929 break;
1930 case CCValAssign::AExt:
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001931 if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
1932 // Special case: passing MMX values in XMM registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00001933 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
1934 Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
1935 Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
Anton Korobeynikov80cb8aa2009-08-03 08:13:24 +00001936 } else
1937 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
1938 break;
1939 case CCValAssign::BCvt:
1940 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, RegVT, Arg);
Chris Lattner423c5f42007-02-28 05:31:48 +00001941 break;
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001942 case CCValAssign::Indirect: {
1943 // Store the argument.
1944 SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
Evan Chengff89dcb2009-10-18 18:16:27 +00001945 int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001946 Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00001947 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00001948 false, false, 0);
Anton Korobeynikov4ab15532009-08-03 08:13:56 +00001949 Arg = SpillSlot;
1950 break;
1951 }
Evan Cheng6b5783d2006-05-25 18:56:34 +00001952 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001953
Chris Lattner423c5f42007-02-28 05:31:48 +00001954 if (VA.isRegLoc()) {
1955 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Anton Korobeynikovc52bedb2010-08-27 14:43:06 +00001956 if (isVarArg && Subtarget->isTargetWin64()) {
1957 // Win64 ABI requires argument XMM reg to be copied to the corresponding
1958 // shadow reg if callee is a varargs function.
1959 unsigned ShadowReg = 0;
1960 switch (VA.getLocReg()) {
1961 case X86::XMM0: ShadowReg = X86::RCX; break;
1962 case X86::XMM1: ShadowReg = X86::RDX; break;
1963 case X86::XMM2: ShadowReg = X86::R8; break;
1964 case X86::XMM3: ShadowReg = X86::R9; break;
1965 }
1966 if (ShadowReg)
1967 RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
1968 }
Evan Chengf22f9b32010-02-06 03:28:46 +00001969 } else if (!IsSibcall && (!isTailCall || isByVal)) {
Evan Cheng5f941932010-02-05 02:21:12 +00001970 assert(VA.isMemLoc());
1971 if (StackPtr.getNode() == 0)
1972 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
1973 MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
1974 dl, DAG, VA, Flags));
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001975 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001976 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001977
Evan Cheng32fe1032006-05-25 00:59:30 +00001978 if (!MemOpChains.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00001979 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001980 &MemOpChains[0], MemOpChains.size());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001981
Evan Cheng347d5f72006-04-28 21:29:37 +00001982 // Build a sequence of copy-to-reg nodes chained together with token chain
1983 // and flag operands which copy the outgoing args into registers.
Dan Gohman475871a2008-07-27 21:46:04 +00001984 SDValue InFlag;
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001985 // Tail call byval lowering might overwrite argument registers so in case of
1986 // tail call optimization the copies to registers are lowered later.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001987 if (!isTailCall)
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001988 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001989 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00001990 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00001991 InFlag = Chain.getValue(1);
1992 }
Gordon Henriksen86737662008-01-05 16:56:59 +00001993
Chris Lattner88e1fd52009-07-09 04:24:46 +00001994 if (Subtarget->isPICStyleGOT()) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00001995 // ELF / PIC requires GOT in the EBX register before function calls via PLT
1996 // GOT pointer.
Dan Gohman98ca4f22009-08-05 01:29:28 +00001997 if (!isTailCall) {
Chris Lattnerb133a0a2009-07-09 02:55:47 +00001998 Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
1999 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00002000 DebugLoc(), getPointerTy()),
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002001 InFlag);
2002 InFlag = Chain.getValue(1);
2003 } else {
2004 // If we are tail calling and generating PIC/GOT style code load the
2005 // address of the callee into ECX. The value in ecx is used as target of
2006 // the tail jump. This is done to circumvent the ebx/callee-saved problem
2007 // for tail calls on PIC/GOT architectures. Normally we would just put the
2008 // address of GOT into ebx and then call target@PLT. But for tail calls
2009 // ebx would be restored (since ebx is callee saved) before jumping to the
2010 // target@PLT.
2011
2012 // Note: The actual moving to ECX is done further down.
2013 GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2014 if (G && !G->getGlobal()->hasHiddenVisibility() &&
2015 !G->getGlobal()->hasProtectedVisibility())
2016 Callee = LowerGlobalAddress(Callee, DAG);
2017 else if (isa<ExternalSymbolSDNode>(Callee))
Chris Lattner15a380a2009-07-09 04:39:06 +00002018 Callee = LowerExternalSymbol(Callee, DAG);
Chris Lattnerb133a0a2009-07-09 02:55:47 +00002019 }
Anton Korobeynikov7f705592007-01-12 19:20:47 +00002020 }
Gordon Henriksenae636f82008-01-03 16:47:34 +00002021
Nate Begemanc8ea6732010-07-21 20:49:52 +00002022 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64()) {
Gordon Henriksen86737662008-01-05 16:56:59 +00002023 // From AMD64 ABI document:
2024 // For calls that may call functions that use varargs or stdargs
2025 // (prototype-less calls or calls to functions containing ellipsis (...) in
2026 // the declaration) %al is used as hidden argument to specify the number
2027 // of SSE registers used. The contents of %al do not need to match exactly
2028 // the number of registers, but must be an ubound on the number of SSE
2029 // registers used and is in the range 0 - 8 inclusive.
Anton Korobeynikov998a5bc2008-04-27 23:15:03 +00002030
Gordon Henriksen86737662008-01-05 16:56:59 +00002031 // Count the number of XMM registers allocated.
2032 static const unsigned XMMArgRegs[] = {
2033 X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2034 X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2035 };
2036 unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
Scott Michelfdc40a02009-02-17 22:15:04 +00002037 assert((Subtarget->hasSSE1() || !NumXMMRegs)
Torok Edwin3f142c32009-02-01 18:15:56 +00002038 && "SSE registers cannot be used when SSE is disabled");
Scott Michelfdc40a02009-02-17 22:15:04 +00002039
Dale Johannesendd64c412009-02-04 00:33:20 +00002040 Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
Owen Anderson825b72b2009-08-11 20:47:22 +00002041 DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002042 InFlag = Chain.getValue(1);
2043 }
2044
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002045
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002046 // For tail calls lower the arguments to the 'real' stack slot.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002047 if (isTailCall) {
2048 // Force all the incoming stack arguments to be loaded from the stack
2049 // before any new outgoing arguments are stored to the stack, because the
2050 // outgoing stack slots may alias the incoming argument stack slots, and
2051 // the alias isn't otherwise explicit. This is slightly more conservative
2052 // than necessary, because it means that each store effectively depends
2053 // on every argument instead of just those arguments it would clobber.
2054 SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2055
Dan Gohman475871a2008-07-27 21:46:04 +00002056 SmallVector<SDValue, 8> MemOpChains2;
2057 SDValue FIN;
Gordon Henriksen86737662008-01-05 16:56:59 +00002058 int FI = 0;
Arnold Schwaighofer865c6812008-02-26 09:19:59 +00002059 // Do not flag preceeding copytoreg stuff together with the following stuff.
Dan Gohman475871a2008-07-27 21:46:04 +00002060 InFlag = SDValue();
Dan Gohman1797ed52010-02-08 20:27:50 +00002061 if (GuaranteedTailCallOpt) {
Evan Chengb2c92902010-02-02 02:22:50 +00002062 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2063 CCValAssign &VA = ArgLocs[i];
2064 if (VA.isRegLoc())
2065 continue;
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002066 assert(VA.isMemLoc());
Dan Gohmanc9403652010-07-07 15:54:55 +00002067 SDValue Arg = OutVals[i];
Dan Gohman98ca4f22009-08-05 01:29:28 +00002068 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Gordon Henriksen86737662008-01-05 16:56:59 +00002069 // Create frame index.
2070 int32_t Offset = VA.getLocMemOffset()+FPDiff;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002071 uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
Evan Chenged2ae132010-07-03 00:40:23 +00002072 FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002073 FIN = DAG.getFrameIndex(FI, getPointerTy());
Arnold Schwaighoferc8ab8cd2008-01-11 16:49:42 +00002074
Duncan Sands276dcbd2008-03-21 09:14:45 +00002075 if (Flags.isByVal()) {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002076 // Copy relative to framepointer.
Dan Gohman475871a2008-07-27 21:46:04 +00002077 SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
Gabor Greifba36cb52008-08-28 21:40:38 +00002078 if (StackPtr.getNode() == 0)
Scott Michelfdc40a02009-02-17 22:15:04 +00002079 StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
Dale Johannesendd64c412009-02-04 00:33:20 +00002080 getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00002081 Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002082
Dan Gohman98ca4f22009-08-05 01:29:28 +00002083 MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2084 ArgChain,
Dale Johannesendd64c412009-02-04 00:33:20 +00002085 Flags, DAG, dl));
Gordon Henriksen86737662008-01-05 16:56:59 +00002086 } else {
Evan Cheng8e5712b2008-01-12 01:08:07 +00002087 // Store relative to framepointer.
Dan Gohman69de1932008-02-06 22:27:42 +00002088 MemOpChains2.push_back(
Dan Gohman98ca4f22009-08-05 01:29:28 +00002089 DAG.getStore(ArgChain, dl, Arg, FIN,
Chris Lattnere8639032010-09-21 06:22:23 +00002090 MachinePointerInfo::getFixedStack(FI),
David Greene67c9d422010-02-15 16:53:33 +00002091 false, false, 0));
Scott Michelfdc40a02009-02-17 22:15:04 +00002092 }
Gordon Henriksen86737662008-01-05 16:56:59 +00002093 }
2094 }
2095
2096 if (!MemOpChains2.empty())
Owen Anderson825b72b2009-08-11 20:47:22 +00002097 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Arnold Schwaighofer719eb022008-01-11 14:34:56 +00002098 &MemOpChains2[0], MemOpChains2.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002099
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002100 // Copy arguments to their registers.
2101 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002102 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Dale Johannesendd64c412009-02-04 00:33:20 +00002103 RegsToPass[i].second, InFlag);
Arnold Schwaighofer30e62c02008-04-30 09:16:33 +00002104 InFlag = Chain.getValue(1);
2105 }
Dan Gohman475871a2008-07-27 21:46:04 +00002106 InFlag =SDValue();
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002107
Gordon Henriksen86737662008-01-05 16:56:59 +00002108 // Store the return address to the appropriate stack slot.
Arnold Schwaighofer4b5324a2008-04-12 18:11:06 +00002109 Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
Dale Johannesenace16102009-02-03 19:33:06 +00002110 FPDiff, dl);
Gordon Henriksen86737662008-01-05 16:56:59 +00002111 }
2112
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002113 if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2114 assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2115 // In the 64-bit large code model, we have to make all calls
2116 // through a register, since the call instruction's 32-bit
2117 // pc-relative offset may not be large enough to hold the whole
2118 // address.
2119 } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002120 // If the callee is a GlobalAddress node (quite common, every direct call
2121 // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2122 // it.
2123
Anton Korobeynikov2b2bc682006-12-22 22:29:05 +00002124 // We should use extra load for direct calls to dllimported functions in
2125 // non-JIT mode.
Dan Gohman46510a72010-04-15 01:51:59 +00002126 const GlobalValue *GV = G->getGlobal();
Chris Lattner754b7652009-07-10 05:48:03 +00002127 if (!GV->hasDLLImportLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002128 unsigned char OpFlags = 0;
Eric Christopherfd179292009-08-27 18:07:15 +00002129
Chris Lattner48a7d022009-07-09 05:02:21 +00002130 // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2131 // external symbols most go through the PLT in PIC mode. If the symbol
2132 // has hidden or protected visibility, or if it is static or local, then
2133 // we don't need to use the PLT - we can directly call it.
2134 if (Subtarget->isTargetELF() &&
2135 getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002136 GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002137 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002138 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002139 (GV->isDeclaration() || GV->isWeakForLinker()) &&
2140 Subtarget->getDarwinVers() < 9) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002141 // PC-relative references to external symbols should go through $stub,
2142 // unless we're building with the leopard linker or later, which
2143 // automatically synthesizes these stubs.
2144 OpFlags = X86II::MO_DARWIN_STUB;
2145 }
Chris Lattner48a7d022009-07-09 05:02:21 +00002146
Devang Patel0d881da2010-07-06 22:08:15 +00002147 Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
Chris Lattner48a7d022009-07-09 05:02:21 +00002148 G->getOffset(), OpFlags);
2149 }
Bill Wendling056292f2008-09-16 21:48:12 +00002150 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002151 unsigned char OpFlags = 0;
2152
2153 // On ELF targets, in either X86-64 or X86-32 mode, direct calls to external
2154 // symbols should go through the PLT.
2155 if (Subtarget->isTargetELF() &&
Chris Lattner74e726e2009-07-09 05:27:35 +00002156 getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Chris Lattner48a7d022009-07-09 05:02:21 +00002157 OpFlags = X86II::MO_PLT;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00002158 } else if (Subtarget->isPICStyleStubAny() &&
Chris Lattner80945782010-09-27 06:34:01 +00002159 Subtarget->getDarwinVers() < 9) {
Chris Lattner74e726e2009-07-09 05:27:35 +00002160 // PC-relative references to external symbols should go through $stub,
2161 // unless we're building with the leopard linker or later, which
2162 // automatically synthesizes these stubs.
2163 OpFlags = X86II::MO_DARWIN_STUB;
2164 }
Eric Christopherfd179292009-08-27 18:07:15 +00002165
Chris Lattner48a7d022009-07-09 05:02:21 +00002166 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2167 OpFlags);
Jeffrey Yasskind1ba06b2009-11-16 22:41:33 +00002168 }
2169
Chris Lattnerd96d0722007-02-25 06:40:16 +00002170 // Returns a chain & a flag for retval copy to use.
Owen Anderson825b72b2009-08-11 20:47:22 +00002171 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00002172 SmallVector<SDValue, 8> Ops;
Gordon Henriksen86737662008-01-05 16:56:59 +00002173
Evan Chengf22f9b32010-02-06 03:28:46 +00002174 if (!IsSibcall && isTailCall) {
Dale Johannesene8d72302009-02-06 23:05:02 +00002175 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2176 DAG.getIntPtrConstant(0, true), InFlag);
Gordon Henriksen86737662008-01-05 16:56:59 +00002177 InFlag = Chain.getValue(1);
Gordon Henriksen86737662008-01-05 16:56:59 +00002178 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002179
Nate Begeman4c5dcf52006-02-17 00:03:04 +00002180 Ops.push_back(Chain);
2181 Ops.push_back(Callee);
Evan Chengb69d1132006-06-14 18:17:40 +00002182
Dan Gohman98ca4f22009-08-05 01:29:28 +00002183 if (isTailCall)
Owen Anderson825b72b2009-08-11 20:47:22 +00002184 Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
Evan Chengf4684712007-02-21 21:18:14 +00002185
Gordon Henriksen86737662008-01-05 16:56:59 +00002186 // Add argument registers to the end of the list so that they are known live
2187 // into the call.
Evan Cheng9b449442008-01-07 23:08:23 +00002188 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2189 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2190 RegsToPass[i].second.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00002191
Evan Cheng586ccac2008-03-18 23:36:35 +00002192 // Add an implicit use GOT pointer in EBX.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002193 if (!isTailCall && Subtarget->isPICStyleGOT())
Evan Cheng586ccac2008-03-18 23:36:35 +00002194 Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2195
Anton Korobeynikov3a1e54a2010-08-17 21:06:07 +00002196 // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
2197 if (Is64Bit && isVarArg && !Subtarget->isTargetWin64())
Owen Anderson825b72b2009-08-11 20:47:22 +00002198 Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
Evan Cheng586ccac2008-03-18 23:36:35 +00002199
Gabor Greifba36cb52008-08-28 21:40:38 +00002200 if (InFlag.getNode())
Evan Cheng347d5f72006-04-28 21:29:37 +00002201 Ops.push_back(InFlag);
Gordon Henriksenae636f82008-01-03 16:47:34 +00002202
Dan Gohman98ca4f22009-08-05 01:29:28 +00002203 if (isTailCall) {
Dale Johannesen88004c22010-06-05 00:30:45 +00002204 // We used to do:
2205 //// If this is the first return lowered for this function, add the regs
2206 //// to the liveout set for the function.
2207 // This isn't right, although it's probably harmless on x86; liveouts
2208 // should be computed from returns not tail calls. Consider a void
2209 // function making a tail call to a function returning int.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002210 return DAG.getNode(X86ISD::TC_RETURN, dl,
2211 NodeTys, &Ops[0], Ops.size());
Gordon Henriksen86737662008-01-05 16:56:59 +00002212 }
2213
Dale Johannesenace16102009-02-03 19:33:06 +00002214 Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
Evan Cheng347d5f72006-04-28 21:29:37 +00002215 InFlag = Chain.getValue(1);
Evan Chengd90eb7f2006-01-05 00:27:02 +00002216
Chris Lattner2d297092006-05-23 18:50:38 +00002217 // Create the CALLSEQ_END node.
Gordon Henriksen86737662008-01-05 16:56:59 +00002218 unsigned NumBytesForCalleeToPush;
Dan Gohman4d3d6e12010-05-27 18:43:40 +00002219 if (Subtarget->IsCalleePop(isVarArg, CallConv))
Gordon Henriksen86737662008-01-05 16:56:59 +00002220 NumBytesForCalleeToPush = NumBytes; // Callee pops everything
Chris Lattner29689432010-03-11 00:22:57 +00002221 else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
Dan Gohmanf451cb82010-02-10 16:03:48 +00002222 // If this is a call to a struct-return function, the callee
Anton Korobeynikovb10308e2007-01-28 13:31:35 +00002223 // pops the hidden struct pointer, so we have to push it back.
2224 // This is common for Darwin/X86, Linux & Mingw32 targets.
Gordon Henriksenae636f82008-01-03 16:47:34 +00002225 NumBytesForCalleeToPush = 4;
Gordon Henriksen86737662008-01-05 16:56:59 +00002226 else
Gordon Henriksenae636f82008-01-03 16:47:34 +00002227 NumBytesForCalleeToPush = 0; // Callee pops nothing.
Scott Michelfdc40a02009-02-17 22:15:04 +00002228
Gordon Henriksenae636f82008-01-03 16:47:34 +00002229 // Returns a flag for retval copy to use.
Evan Chengf22f9b32010-02-06 03:28:46 +00002230 if (!IsSibcall) {
2231 Chain = DAG.getCALLSEQ_END(Chain,
2232 DAG.getIntPtrConstant(NumBytes, true),
2233 DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2234 true),
2235 InFlag);
2236 InFlag = Chain.getValue(1);
2237 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002238
Chris Lattner3085e152007-02-25 08:59:22 +00002239 // Handle result values, copying them out of physregs into vregs that we
2240 // return.
Dan Gohman98ca4f22009-08-05 01:29:28 +00002241 return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2242 Ins, dl, DAG, InVals);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002243}
2244
Evan Cheng25ab6902006-09-08 06:48:29 +00002245
2246//===----------------------------------------------------------------------===//
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002247// Fast Calling Convention (tail call) implementation
2248//===----------------------------------------------------------------------===//
2249
2250// Like std call, callee cleans arguments, convention except that ECX is
2251// reserved for storing the tail called function address. Only 2 registers are
2252// free for argument passing (inreg). Tail call optimization is performed
2253// provided:
2254// * tailcallopt is enabled
2255// * caller/callee are fastcc
Arnold Schwaighofera2a4b472008-02-26 10:21:54 +00002256// On X86_64 architecture with GOT-style position independent code only local
2257// (within module) calls are supported at the moment.
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002258// To keep the stack aligned according to platform abi the function
2259// GetAlignedArgumentStackSize ensures that argument delta is always multiples
2260// of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002261// If a tail called function callee has more arguments than the caller the
2262// caller needs to make sure that there is room to move the RETADDR to. This is
Arnold Schwaighofer48abc5c2007-10-12 21:30:57 +00002263// achieved by reserving an area the size of the argument delta right after the
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002264// original REtADDR, but before the saved framepointer or the spilled registers
2265// e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2266// stack layout:
2267// arg1
2268// arg2
2269// RETADDR
Scott Michelfdc40a02009-02-17 22:15:04 +00002270// [ new RETADDR
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002271// move area ]
2272// (possible EBP)
2273// ESI
2274// EDI
2275// local1 ..
2276
2277/// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2278/// for a 16 byte align requirement.
Dan Gohmand858e902010-04-17 15:26:15 +00002279unsigned
2280X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2281 SelectionDAG& DAG) const {
Evan Chenge9ac9e62008-09-07 09:07:23 +00002282 MachineFunction &MF = DAG.getMachineFunction();
2283 const TargetMachine &TM = MF.getTarget();
2284 const TargetFrameInfo &TFI = *TM.getFrameInfo();
2285 unsigned StackAlignment = TFI.getStackAlignment();
Scott Michelfdc40a02009-02-17 22:15:04 +00002286 uint64_t AlignMask = StackAlignment - 1;
Evan Chenge9ac9e62008-09-07 09:07:23 +00002287 int64_t Offset = StackSize;
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00002288 uint64_t SlotSize = TD->getPointerSize();
Evan Chenge9ac9e62008-09-07 09:07:23 +00002289 if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2290 // Number smaller than 12 so just add the difference.
2291 Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2292 } else {
2293 // Mask out lower bits, add stackalignment once plus the 12 bytes.
Scott Michelfdc40a02009-02-17 22:15:04 +00002294 Offset = ((~AlignMask) & Offset) + StackAlignment +
Evan Chenge9ac9e62008-09-07 09:07:23 +00002295 (StackAlignment-SlotSize);
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002296 }
Evan Chenge9ac9e62008-09-07 09:07:23 +00002297 return Offset;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002298}
2299
Evan Cheng5f941932010-02-05 02:21:12 +00002300/// MatchingStackOffset - Return true if the given stack call argument is
2301/// already available in the same position (relatively) of the caller's
2302/// incoming argument stack.
2303static
2304bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2305 MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2306 const X86InstrInfo *TII) {
Evan Cheng4cae1332010-03-05 08:38:04 +00002307 unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2308 int FI = INT_MAX;
Evan Cheng5f941932010-02-05 02:21:12 +00002309 if (Arg.getOpcode() == ISD::CopyFromReg) {
2310 unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2311 if (!VR || TargetRegisterInfo::isPhysicalRegister(VR))
2312 return false;
2313 MachineInstr *Def = MRI->getVRegDef(VR);
2314 if (!Def)
2315 return false;
2316 if (!Flags.isByVal()) {
2317 if (!TII->isLoadFromStackSlot(Def, FI))
2318 return false;
2319 } else {
2320 unsigned Opcode = Def->getOpcode();
2321 if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2322 Def->getOperand(1).isFI()) {
2323 FI = Def->getOperand(1).getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002324 Bytes = Flags.getByValSize();
Evan Cheng5f941932010-02-05 02:21:12 +00002325 } else
2326 return false;
2327 }
Evan Cheng4cae1332010-03-05 08:38:04 +00002328 } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2329 if (Flags.isByVal())
2330 // ByVal argument is passed in as a pointer but it's now being
Evan Cheng10718492010-03-05 19:55:55 +00002331 // dereferenced. e.g.
Evan Cheng4cae1332010-03-05 08:38:04 +00002332 // define @foo(%struct.X* %A) {
2333 // tail call @bar(%struct.X* byval %A)
2334 // }
Evan Cheng5f941932010-02-05 02:21:12 +00002335 return false;
2336 SDValue Ptr = Ld->getBasePtr();
2337 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2338 if (!FINode)
2339 return false;
2340 FI = FINode->getIndex();
Evan Cheng4cae1332010-03-05 08:38:04 +00002341 } else
2342 return false;
Evan Cheng5f941932010-02-05 02:21:12 +00002343
Evan Cheng4cae1332010-03-05 08:38:04 +00002344 assert(FI != INT_MAX);
Evan Cheng5f941932010-02-05 02:21:12 +00002345 if (!MFI->isFixedObjectIndex(FI))
2346 return false;
Evan Cheng4cae1332010-03-05 08:38:04 +00002347 return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
Evan Cheng5f941932010-02-05 02:21:12 +00002348}
2349
Dan Gohman98ca4f22009-08-05 01:29:28 +00002350/// IsEligibleForTailCallOptimization - Check whether the call is eligible
2351/// for tail call optimization. Targets which want to do tail call
2352/// optimization should implement this function.
2353bool
2354X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002355 CallingConv::ID CalleeCC,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002356 bool isVarArg,
Evan Chenga375d472010-03-15 18:54:48 +00002357 bool isCalleeStructRet,
2358 bool isCallerStructRet,
Evan Chengb1712452010-01-27 06:25:16 +00002359 const SmallVectorImpl<ISD::OutputArg> &Outs,
Dan Gohmanc9403652010-07-07 15:54:55 +00002360 const SmallVectorImpl<SDValue> &OutVals,
Evan Chengb1712452010-01-27 06:25:16 +00002361 const SmallVectorImpl<ISD::InputArg> &Ins,
Dan Gohman98ca4f22009-08-05 01:29:28 +00002362 SelectionDAG& DAG) const {
Chris Lattner29689432010-03-11 00:22:57 +00002363 if (!IsTailCallConvention(CalleeCC) &&
Evan Chengb1712452010-01-27 06:25:16 +00002364 CalleeCC != CallingConv::C)
2365 return false;
2366
Evan Cheng7096ae42010-01-29 06:45:59 +00002367 // If -tailcallopt is specified, make fastcc functions tail-callable.
Evan Cheng2c12cb42010-03-26 16:26:03 +00002368 const MachineFunction &MF = DAG.getMachineFunction();
Evan Cheng7096ae42010-01-29 06:45:59 +00002369 const Function *CallerF = DAG.getMachineFunction().getFunction();
Evan Cheng13617962010-04-30 01:12:32 +00002370 CallingConv::ID CallerCC = CallerF->getCallingConv();
2371 bool CCMatch = CallerCC == CalleeCC;
2372
Dan Gohman1797ed52010-02-08 20:27:50 +00002373 if (GuaranteedTailCallOpt) {
Evan Cheng13617962010-04-30 01:12:32 +00002374 if (IsTailCallConvention(CalleeCC) && CCMatch)
Evan Cheng843bd692010-01-31 06:44:49 +00002375 return true;
2376 return false;
2377 }
2378
Dale Johannesen2f05cc02010-05-28 23:24:28 +00002379 // Look for obvious safe cases to perform tail call optimization that do not
2380 // require ABI changes. This is what gcc calls sibcall.
Evan Chengb2c92902010-02-02 02:22:50 +00002381
Evan Cheng2c12cb42010-03-26 16:26:03 +00002382 // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2383 // emit a special epilogue.
2384 if (RegInfo->needsStackRealignment(MF))
2385 return false;
2386
Eric Christopher90eb4022010-07-22 00:26:08 +00002387 // Do not sibcall optimize vararg calls unless the call site is not passing
2388 // any arguments.
Evan Cheng3c262ee2010-03-26 02:13:13 +00002389 if (isVarArg && !Outs.empty())
Evan Cheng843bd692010-01-31 06:44:49 +00002390 return false;
2391
Evan Chenga375d472010-03-15 18:54:48 +00002392 // Also avoid sibcall optimization if either caller or callee uses struct
2393 // return semantics.
2394 if (isCalleeStructRet || isCallerStructRet)
2395 return false;
2396
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002397 // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2398 // Therefore if it's not used by the call it is not safe to optimize this into
2399 // a sibcall.
2400 bool Unused = false;
2401 for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2402 if (!Ins[i].Used) {
2403 Unused = true;
2404 break;
2405 }
2406 }
2407 if (Unused) {
2408 SmallVector<CCValAssign, 16> RVLocs;
2409 CCState CCInfo(CalleeCC, false, getTargetMachine(),
2410 RVLocs, *DAG.getContext());
2411 CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
Evan Cheng13617962010-04-30 01:12:32 +00002412 for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
Evan Chengf5b9d6c2010-03-20 02:58:15 +00002413 CCValAssign &VA = RVLocs[i];
2414 if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2415 return false;
2416 }
2417 }
2418
Evan Cheng13617962010-04-30 01:12:32 +00002419 // If the calling conventions do not match, then we'd better make sure the
2420 // results are returned in the same way as what the caller expects.
2421 if (!CCMatch) {
2422 SmallVector<CCValAssign, 16> RVLocs1;
2423 CCState CCInfo1(CalleeCC, false, getTargetMachine(),
2424 RVLocs1, *DAG.getContext());
2425 CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2426
2427 SmallVector<CCValAssign, 16> RVLocs2;
2428 CCState CCInfo2(CallerCC, false, getTargetMachine(),
2429 RVLocs2, *DAG.getContext());
2430 CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2431
2432 if (RVLocs1.size() != RVLocs2.size())
2433 return false;
2434 for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2435 if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2436 return false;
2437 if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2438 return false;
2439 if (RVLocs1[i].isRegLoc()) {
2440 if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2441 return false;
2442 } else {
2443 if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2444 return false;
2445 }
2446 }
2447 }
2448
Evan Chenga6bff982010-01-30 01:22:00 +00002449 // If the callee takes no arguments then go on to check the results of the
2450 // call.
2451 if (!Outs.empty()) {
2452 // Check if stack adjustment is needed. For now, do not do this if any
2453 // argument is passed on the stack.
2454 SmallVector<CCValAssign, 16> ArgLocs;
2455 CCState CCInfo(CalleeCC, isVarArg, getTargetMachine(),
2456 ArgLocs, *DAG.getContext());
Duncan Sands45907662010-10-31 13:21:44 +00002457 CCInfo.AnalyzeCallOperands(Outs, CC_X86);
Evan Chengb2c92902010-02-02 02:22:50 +00002458 if (CCInfo.getNextStackOffset()) {
2459 MachineFunction &MF = DAG.getMachineFunction();
2460 if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2461 return false;
2462 if (Subtarget->isTargetWin64())
2463 // Win64 ABI has additional complications.
2464 return false;
2465
2466 // Check if the arguments are already laid out in the right way as
2467 // the caller's fixed stack objects.
2468 MachineFrameInfo *MFI = MF.getFrameInfo();
Evan Cheng5f941932010-02-05 02:21:12 +00002469 const MachineRegisterInfo *MRI = &MF.getRegInfo();
2470 const X86InstrInfo *TII =
2471 ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
Evan Chengb2c92902010-02-02 02:22:50 +00002472 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2473 CCValAssign &VA = ArgLocs[i];
Dan Gohmanc9403652010-07-07 15:54:55 +00002474 SDValue Arg = OutVals[i];
Evan Chengb2c92902010-02-02 02:22:50 +00002475 ISD::ArgFlagsTy Flags = Outs[i].Flags;
Evan Chengb2c92902010-02-02 02:22:50 +00002476 if (VA.getLocInfo() == CCValAssign::Indirect)
2477 return false;
2478 if (!VA.isRegLoc()) {
Evan Cheng5f941932010-02-05 02:21:12 +00002479 if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2480 MFI, MRI, TII))
Evan Chengb2c92902010-02-02 02:22:50 +00002481 return false;
2482 }
2483 }
2484 }
Evan Cheng9c044672010-05-29 01:35:22 +00002485
2486 // If the tailcall address may be in a register, then make sure it's
2487 // possible to register allocate for it. In 32-bit, the call address can
2488 // only target EAX, EDX, or ECX since the tail call must be scheduled after
Evan Chengdedd9742010-07-14 06:44:01 +00002489 // callee-saved registers are restored. These happen to be the same
2490 // registers used to pass 'inreg' arguments so watch out for those.
2491 if (!Subtarget->is64Bit() &&
2492 !isa<GlobalAddressSDNode>(Callee) &&
Evan Cheng9c044672010-05-29 01:35:22 +00002493 !isa<ExternalSymbolSDNode>(Callee)) {
Evan Cheng9c044672010-05-29 01:35:22 +00002494 unsigned NumInRegs = 0;
2495 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2496 CCValAssign &VA = ArgLocs[i];
Evan Chengdedd9742010-07-14 06:44:01 +00002497 if (!VA.isRegLoc())
2498 continue;
2499 unsigned Reg = VA.getLocReg();
2500 switch (Reg) {
2501 default: break;
2502 case X86::EAX: case X86::EDX: case X86::ECX:
2503 if (++NumInRegs == 3)
Evan Cheng9c044672010-05-29 01:35:22 +00002504 return false;
Evan Chengdedd9742010-07-14 06:44:01 +00002505 break;
Evan Cheng9c044672010-05-29 01:35:22 +00002506 }
2507 }
2508 }
Evan Chenga6bff982010-01-30 01:22:00 +00002509 }
Evan Chengb1712452010-01-27 06:25:16 +00002510
Dale Johannesend155d7e2010-10-25 22:17:05 +00002511 // An stdcall caller is expected to clean up its arguments; the callee
Dale Johannesen0e034562010-11-12 00:43:18 +00002512 // isn't going to do that.
Dale Johannesend155d7e2010-10-25 22:17:05 +00002513 if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2514 return false;
2515
Evan Cheng86809cc2010-02-03 03:28:02 +00002516 return true;
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00002517}
2518
Dan Gohman3df24e62008-09-03 23:12:08 +00002519FastISel *
Dan Gohmana4160c32010-07-07 16:29:44 +00002520X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2521 return X86::createFastISel(funcInfo);
Dan Gohmand9f3c482008-08-19 21:32:53 +00002522}
2523
2524
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002525//===----------------------------------------------------------------------===//
2526// Other Lowering Hooks
2527//===----------------------------------------------------------------------===//
2528
Bruno Cardoso Lopese654b562010-09-01 00:51:36 +00002529static bool MayFoldLoad(SDValue Op) {
2530 return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2531}
2532
2533static bool MayFoldIntoStore(SDValue Op) {
2534 return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2535}
2536
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002537static bool isTargetShuffle(unsigned Opcode) {
2538 switch(Opcode) {
2539 default: return false;
2540 case X86ISD::PSHUFD:
2541 case X86ISD::PSHUFHW:
2542 case X86ISD::PSHUFLW:
2543 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002544 case X86ISD::PALIGN:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002545 case X86ISD::SHUFPS:
2546 case X86ISD::MOVLHPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002547 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002548 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002549 case X86ISD::MOVLPS:
2550 case X86ISD::MOVLPD:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002551 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002552 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002553 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002554 case X86ISD::MOVSS:
2555 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002556 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002557 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002558 case X86ISD::PUNPCKLWD:
2559 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002560 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002561 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002562 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002563 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002564 case X86ISD::PUNPCKHWD:
2565 case X86ISD::PUNPCKHBW:
2566 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002567 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002568 return true;
2569 }
2570 return false;
2571}
2572
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002573static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002574 SDValue V1, SelectionDAG &DAG) {
2575 switch(Opc) {
2576 default: llvm_unreachable("Unknown x86 shuffle node");
2577 case X86ISD::MOVSHDUP:
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00002578 case X86ISD::MOVSLDUP:
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00002579 case X86ISD::MOVDDUP:
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00002580 return DAG.getNode(Opc, dl, VT, V1);
2581 }
2582
2583 return SDValue();
2584}
2585
2586static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00002587 SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002588 switch(Opc) {
2589 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002590 case X86ISD::PSHUFD:
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00002591 case X86ISD::PSHUFHW:
2592 case X86ISD::PSHUFLW:
2593 return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2594 }
2595
2596 return SDValue();
2597}
Chris Lattnerfcf1a3d2007-02-28 06:10:12 +00002598
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002599static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2600 SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2601 switch(Opc) {
2602 default: llvm_unreachable("Unknown x86 shuffle node");
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00002603 case X86ISD::PALIGN:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002604 case X86ISD::SHUFPD:
2605 case X86ISD::SHUFPS:
2606 return DAG.getNode(Opc, dl, VT, V1, V2,
2607 DAG.getConstant(TargetMask, MVT::i8));
2608 }
2609 return SDValue();
2610}
2611
2612static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2613 SDValue V1, SDValue V2, SelectionDAG &DAG) {
2614 switch(Opc) {
2615 default: llvm_unreachable("Unknown x86 shuffle node");
2616 case X86ISD::MOVLHPS:
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00002617 case X86ISD::MOVLHPD:
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00002618 case X86ISD::MOVHLPS:
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00002619 case X86ISD::MOVLPS:
2620 case X86ISD::MOVLPD:
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00002621 case X86ISD::MOVSS:
2622 case X86ISD::MOVSD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002623 case X86ISD::UNPCKLPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002624 case X86ISD::UNPCKLPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002625 case X86ISD::PUNPCKLWD:
2626 case X86ISD::PUNPCKLBW:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002627 case X86ISD::PUNPCKLDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002628 case X86ISD::PUNPCKLQDQ:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002629 case X86ISD::UNPCKHPS:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002630 case X86ISD::UNPCKHPD:
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00002631 case X86ISD::PUNPCKHWD:
2632 case X86ISD::PUNPCKHBW:
2633 case X86ISD::PUNPCKHDQ:
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00002634 case X86ISD::PUNPCKHQDQ:
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00002635 return DAG.getNode(Opc, dl, VT, V1, V2);
2636 }
2637 return SDValue();
2638}
2639
Dan Gohmand858e902010-04-17 15:26:15 +00002640SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002641 MachineFunction &MF = DAG.getMachineFunction();
2642 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2643 int ReturnAddrIndex = FuncInfo->getRAIndex();
2644
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002645 if (ReturnAddrIndex == 0) {
2646 // Set up a frame object for the return address.
Bill Wendling64e87322009-01-16 19:25:27 +00002647 uint64_t SlotSize = TD->getPointerSize();
David Greene3f2bf852009-11-12 20:49:22 +00002648 ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
Evan Chenged2ae132010-07-03 00:40:23 +00002649 false);
Anton Korobeynikova2780e12007-08-15 17:12:32 +00002650 FuncInfo->setRAIndex(ReturnAddrIndex);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002651 }
2652
Evan Cheng25ab6902006-09-08 06:48:29 +00002653 return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00002654}
2655
2656
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002657bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2658 bool hasSymbolicDisplacement) {
2659 // Offset should fit into 32 bit immediate field.
Benjamin Kramer34247a02010-03-29 21:13:41 +00002660 if (!isInt<32>(Offset))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00002661 return false;
2662
2663 // If we don't have a symbolic displacement - we don't have any extra
2664 // restrictions.
2665 if (!hasSymbolicDisplacement)
2666 return true;
2667
2668 // FIXME: Some tweaks might be needed for medium code model.
2669 if (M != CodeModel::Small && M != CodeModel::Kernel)
2670 return false;
2671
2672 // For small code model we assume that latest object is 16MB before end of 31
2673 // bits boundary. We may also accept pretty large negative constants knowing
2674 // that all objects are in the positive half of address space.
2675 if (M == CodeModel::Small && Offset < 16*1024*1024)
2676 return true;
2677
2678 // For kernel code model we know that all object resist in the negative half
2679 // of 32bits address space. We may not accept negative offsets, since they may
2680 // be just off and we may accept pretty large positive ones.
2681 if (M == CodeModel::Kernel && Offset > 0)
2682 return true;
2683
2684 return false;
2685}
2686
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002687/// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2688/// specific condition code, returning the condition code and the LHS/RHS of the
2689/// comparison to make.
2690static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2691 SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
Evan Chengd9558e02006-01-06 00:43:03 +00002692 if (!isFP) {
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002693 if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2694 if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2695 // X > -1 -> X == 0, jump !sign.
2696 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002697 return X86::COND_NS;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002698 } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2699 // X < 0 -> X == 0, jump on sign.
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002700 return X86::COND_S;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002701 } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
Dan Gohman5f6913c2007-09-17 14:49:27 +00002702 // X < 1 -> X <= 0
2703 RHS = DAG.getConstant(0, RHS.getValueType());
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002704 return X86::COND_LE;
Chris Lattnerbfd68a72006-09-13 17:04:54 +00002705 }
Chris Lattnerf9570512006-09-13 03:22:10 +00002706 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00002707
Evan Chengd9558e02006-01-06 00:43:03 +00002708 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002709 default: llvm_unreachable("Invalid integer condition!");
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002710 case ISD::SETEQ: return X86::COND_E;
2711 case ISD::SETGT: return X86::COND_G;
2712 case ISD::SETGE: return X86::COND_GE;
2713 case ISD::SETLT: return X86::COND_L;
2714 case ISD::SETLE: return X86::COND_LE;
2715 case ISD::SETNE: return X86::COND_NE;
2716 case ISD::SETULT: return X86::COND_B;
2717 case ISD::SETUGT: return X86::COND_A;
2718 case ISD::SETULE: return X86::COND_BE;
2719 case ISD::SETUGE: return X86::COND_AE;
Evan Chengd9558e02006-01-06 00:43:03 +00002720 }
Chris Lattner4c78e022008-12-23 23:42:27 +00002721 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002722
Chris Lattner4c78e022008-12-23 23:42:27 +00002723 // First determine if it is required or is profitable to flip the operands.
Duncan Sands4047f4a2008-10-24 13:03:10 +00002724
Chris Lattner4c78e022008-12-23 23:42:27 +00002725 // If LHS is a foldable load, but RHS is not, flip the condition.
2726 if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2727 !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2728 SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2729 std::swap(LHS, RHS);
Evan Cheng4d46d0a2008-08-28 23:48:31 +00002730 }
2731
Chris Lattner4c78e022008-12-23 23:42:27 +00002732 switch (SetCCOpcode) {
2733 default: break;
2734 case ISD::SETOLT:
2735 case ISD::SETOLE:
2736 case ISD::SETUGT:
2737 case ISD::SETUGE:
2738 std::swap(LHS, RHS);
2739 break;
2740 }
2741
2742 // On a floating point condition, the flags are set as follows:
2743 // ZF PF CF op
2744 // 0 | 0 | 0 | X > Y
2745 // 0 | 0 | 1 | X < Y
2746 // 1 | 0 | 0 | X == Y
2747 // 1 | 1 | 1 | unordered
2748 switch (SetCCOpcode) {
Torok Edwinc23197a2009-07-14 16:55:14 +00002749 default: llvm_unreachable("Condcode should be pre-legalized away");
Chris Lattner4c78e022008-12-23 23:42:27 +00002750 case ISD::SETUEQ:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002751 case ISD::SETEQ: return X86::COND_E;
Chris Lattner4c78e022008-12-23 23:42:27 +00002752 case ISD::SETOLT: // flipped
2753 case ISD::SETOGT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002754 case ISD::SETGT: return X86::COND_A;
Chris Lattner4c78e022008-12-23 23:42:27 +00002755 case ISD::SETOLE: // flipped
2756 case ISD::SETOGE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002757 case ISD::SETGE: return X86::COND_AE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002758 case ISD::SETUGT: // flipped
2759 case ISD::SETULT:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002760 case ISD::SETLT: return X86::COND_B;
Chris Lattner4c78e022008-12-23 23:42:27 +00002761 case ISD::SETUGE: // flipped
2762 case ISD::SETULE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002763 case ISD::SETLE: return X86::COND_BE;
Chris Lattner4c78e022008-12-23 23:42:27 +00002764 case ISD::SETONE:
Chris Lattner1c39d4c2008-12-24 23:53:05 +00002765 case ISD::SETNE: return X86::COND_NE;
2766 case ISD::SETUO: return X86::COND_P;
2767 case ISD::SETO: return X86::COND_NP;
Dan Gohman1a492952009-10-20 16:22:37 +00002768 case ISD::SETOEQ:
2769 case ISD::SETUNE: return X86::COND_INVALID;
Chris Lattner4c78e022008-12-23 23:42:27 +00002770 }
Evan Chengd9558e02006-01-06 00:43:03 +00002771}
2772
Evan Cheng4a460802006-01-11 00:33:36 +00002773/// hasFPCMov - is there a floating point cmov for the specific X86 condition
2774/// code. Current x86 isa includes the following FP cmov instructions:
Evan Chengaaca22c2006-01-10 20:26:56 +00002775/// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
Evan Cheng4a460802006-01-11 00:33:36 +00002776static bool hasFPCMov(unsigned X86CC) {
Evan Chengaaca22c2006-01-10 20:26:56 +00002777 switch (X86CC) {
2778 default:
2779 return false;
Chris Lattner7fbe9722006-10-20 17:42:20 +00002780 case X86::COND_B:
2781 case X86::COND_BE:
2782 case X86::COND_E:
2783 case X86::COND_P:
2784 case X86::COND_A:
2785 case X86::COND_AE:
2786 case X86::COND_NE:
2787 case X86::COND_NP:
Evan Chengaaca22c2006-01-10 20:26:56 +00002788 return true;
2789 }
2790}
2791
Evan Chengeb2f9692009-10-27 19:56:55 +00002792/// isFPImmLegal - Returns true if the target can instruction select the
2793/// specified FP immediate natively. If false, the legalizer will
2794/// materialize the FP immediate as a load from a constant pool.
Evan Chenga1eaa3c2009-10-28 01:43:28 +00002795bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
Evan Chengeb2f9692009-10-27 19:56:55 +00002796 for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
2797 if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
2798 return true;
2799 }
2800 return false;
2801}
2802
Nate Begeman9008ca62009-04-27 18:41:29 +00002803/// isUndefOrInRange - Return true if Val is undef or if its value falls within
2804/// the specified range (L, H].
2805static bool isUndefOrInRange(int Val, int Low, int Hi) {
2806 return (Val < 0) || (Val >= Low && Val < Hi);
2807}
2808
2809/// isUndefOrEqual - Val is either less than zero (undef) or equal to the
2810/// specified value.
2811static bool isUndefOrEqual(int Val, int CmpVal) {
2812 if (Val < 0 || Val == CmpVal)
Evan Cheng5ced1d82006-04-06 23:23:56 +00002813 return true;
Nate Begeman9008ca62009-04-27 18:41:29 +00002814 return false;
Evan Chengc5cdff22006-04-07 21:53:05 +00002815}
2816
Nate Begeman9008ca62009-04-27 18:41:29 +00002817/// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
2818/// is suitable for input to PSHUFD or PSHUFW. That is, it doesn't reference
2819/// the second operand.
Owen Andersone50ed302009-08-10 22:56:29 +00002820static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00002821 if (VT == MVT::v4f32 || VT == MVT::v4i32 )
Nate Begeman9008ca62009-04-27 18:41:29 +00002822 return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
Owen Anderson825b72b2009-08-11 20:47:22 +00002823 if (VT == MVT::v2f64 || VT == MVT::v2i64)
Nate Begeman9008ca62009-04-27 18:41:29 +00002824 return (Mask[0] < 2 && Mask[1] < 2);
2825 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00002826}
2827
Nate Begeman9008ca62009-04-27 18:41:29 +00002828bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002829 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002830 N->getMask(M);
2831 return ::isPSHUFDMask(M, N->getValueType(0));
2832}
Evan Cheng0188ecb2006-03-22 18:59:22 +00002833
Nate Begeman9008ca62009-04-27 18:41:29 +00002834/// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
2835/// is suitable for input to PSHUFHW.
Owen Andersone50ed302009-08-10 22:56:29 +00002836static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002837 if (VT != MVT::v8i16)
Evan Cheng0188ecb2006-03-22 18:59:22 +00002838 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002839
Nate Begeman9008ca62009-04-27 18:41:29 +00002840 // Lower quadword copied in order or undef.
2841 for (int i = 0; i != 4; ++i)
2842 if (Mask[i] >= 0 && Mask[i] != i)
Evan Cheng506d3df2006-03-29 23:07:14 +00002843 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002844
Evan Cheng506d3df2006-03-29 23:07:14 +00002845 // Upper quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002846 for (int i = 4; i != 8; ++i)
2847 if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
Evan Cheng506d3df2006-03-29 23:07:14 +00002848 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002849
Evan Cheng506d3df2006-03-29 23:07:14 +00002850 return true;
2851}
2852
Nate Begeman9008ca62009-04-27 18:41:29 +00002853bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002854 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002855 N->getMask(M);
2856 return ::isPSHUFHWMask(M, N->getValueType(0));
2857}
Evan Cheng506d3df2006-03-29 23:07:14 +00002858
Nate Begeman9008ca62009-04-27 18:41:29 +00002859/// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
2860/// is suitable for input to PSHUFLW.
Owen Andersone50ed302009-08-10 22:56:29 +00002861static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002862 if (VT != MVT::v8i16)
Evan Cheng506d3df2006-03-29 23:07:14 +00002863 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002864
Rafael Espindola15684b22009-04-24 12:40:33 +00002865 // Upper quadword copied in order.
Nate Begeman9008ca62009-04-27 18:41:29 +00002866 for (int i = 4; i != 8; ++i)
2867 if (Mask[i] >= 0 && Mask[i] != i)
Rafael Espindola15684b22009-04-24 12:40:33 +00002868 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002869
Rafael Espindola15684b22009-04-24 12:40:33 +00002870 // Lower quadword shuffled.
Nate Begeman9008ca62009-04-27 18:41:29 +00002871 for (int i = 0; i != 4; ++i)
2872 if (Mask[i] >= 4)
Rafael Espindola15684b22009-04-24 12:40:33 +00002873 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002874
Rafael Espindola15684b22009-04-24 12:40:33 +00002875 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00002876}
2877
Nate Begeman9008ca62009-04-27 18:41:29 +00002878bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
Eric Christopherfd179292009-08-27 18:07:15 +00002879 SmallVector<int, 8> M;
Nate Begeman9008ca62009-04-27 18:41:29 +00002880 N->getMask(M);
2881 return ::isPSHUFLWMask(M, N->getValueType(0));
2882}
2883
Nate Begemana09008b2009-10-19 02:17:23 +00002884/// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
2885/// is suitable for input to PALIGNR.
2886static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
2887 bool hasSSSE3) {
2888 int i, e = VT.getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00002889
Nate Begemana09008b2009-10-19 02:17:23 +00002890 // Do not handle v2i64 / v2f64 shuffles with palignr.
2891 if (e < 4 || !hasSSSE3)
2892 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002893
Nate Begemana09008b2009-10-19 02:17:23 +00002894 for (i = 0; i != e; ++i)
2895 if (Mask[i] >= 0)
2896 break;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002897
Nate Begemana09008b2009-10-19 02:17:23 +00002898 // All undef, not a palignr.
2899 if (i == e)
2900 return false;
2901
2902 // Determine if it's ok to perform a palignr with only the LHS, since we
2903 // don't have access to the actual shuffle elements to see if RHS is undef.
2904 bool Unary = Mask[i] < (int)e;
2905 bool NeedsUnary = false;
2906
2907 int s = Mask[i] - i;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002908
Nate Begemana09008b2009-10-19 02:17:23 +00002909 // Check the rest of the elements to see if they are consecutive.
2910 for (++i; i != e; ++i) {
2911 int m = Mask[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00002912 if (m < 0)
Nate Begemana09008b2009-10-19 02:17:23 +00002913 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00002914
Nate Begemana09008b2009-10-19 02:17:23 +00002915 Unary = Unary && (m < (int)e);
2916 NeedsUnary = NeedsUnary || (m < s);
2917
2918 if (NeedsUnary && !Unary)
2919 return false;
2920 if (Unary && m != ((s+i) & (e-1)))
2921 return false;
2922 if (!Unary && m != (s+i))
2923 return false;
2924 }
2925 return true;
2926}
2927
2928bool X86::isPALIGNRMask(ShuffleVectorSDNode *N) {
2929 SmallVector<int, 8> M;
2930 N->getMask(M);
2931 return ::isPALIGNRMask(M, N->getValueType(0), true);
2932}
2933
Evan Cheng14aed5e2006-03-24 01:18:28 +00002934/// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2935/// specifies a shuffle of elements that is suitable for input to SHUFP*.
Owen Andersone50ed302009-08-10 22:56:29 +00002936static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002937 int NumElems = VT.getVectorNumElements();
2938 if (NumElems != 2 && NumElems != 4)
2939 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002940
Nate Begeman9008ca62009-04-27 18:41:29 +00002941 int Half = NumElems / 2;
2942 for (int i = 0; i < Half; ++i)
2943 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002944 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002945 for (int i = Half; i < NumElems; ++i)
2946 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002947 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002948
Evan Cheng14aed5e2006-03-24 01:18:28 +00002949 return true;
2950}
2951
Nate Begeman9008ca62009-04-27 18:41:29 +00002952bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
2953 SmallVector<int, 8> M;
2954 N->getMask(M);
2955 return ::isSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00002956}
2957
Evan Cheng213d2cf2007-05-17 18:45:50 +00002958/// isCommutedSHUFP - Returns true if the shuffle mask is exactly
Evan Cheng39623da2006-04-20 08:58:49 +00002959/// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2960/// half elements to come from vector 1 (which would equal the dest.) and
2961/// the upper half to come from vector 2.
Owen Andersone50ed302009-08-10 22:56:29 +00002962static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00002963 int NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00002964
2965 if (NumElems != 2 && NumElems != 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00002966 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00002967
Nate Begeman9008ca62009-04-27 18:41:29 +00002968 int Half = NumElems / 2;
2969 for (int i = 0; i < Half; ++i)
2970 if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
Evan Cheng39623da2006-04-20 08:58:49 +00002971 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00002972 for (int i = Half; i < NumElems; ++i)
2973 if (!isUndefOrInRange(Mask[i], 0, NumElems))
Evan Cheng39623da2006-04-20 08:58:49 +00002974 return false;
2975 return true;
2976}
2977
Nate Begeman9008ca62009-04-27 18:41:29 +00002978static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
2979 SmallVector<int, 8> M;
2980 N->getMask(M);
2981 return isCommutedSHUFPMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00002982}
2983
Evan Cheng2c0dbd02006-03-24 02:58:06 +00002984/// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
2985/// specifies a shuffle of elements that is suitable for input to MOVHLPS.
Nate Begeman9008ca62009-04-27 18:41:29 +00002986bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
2987 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Cheng2c0dbd02006-03-24 02:58:06 +00002988 return false;
2989
Evan Cheng2064a2b2006-03-28 06:50:32 +00002990 // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
Nate Begeman9008ca62009-04-27 18:41:29 +00002991 return isUndefOrEqual(N->getMaskElt(0), 6) &&
2992 isUndefOrEqual(N->getMaskElt(1), 7) &&
2993 isUndefOrEqual(N->getMaskElt(2), 2) &&
2994 isUndefOrEqual(N->getMaskElt(3), 3);
Evan Cheng6e56e2c2006-11-07 22:14:24 +00002995}
2996
Nate Begeman0b10b912009-11-07 23:17:15 +00002997/// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
2998/// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
2999/// <2, 3, 2, 3>
3000bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
3001 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Michael J. Spencerec38de22010-10-10 22:04:20 +00003002
Nate Begeman0b10b912009-11-07 23:17:15 +00003003 if (NumElems != 4)
3004 return false;
Michael J. Spencerec38de22010-10-10 22:04:20 +00003005
Nate Begeman0b10b912009-11-07 23:17:15 +00003006 return isUndefOrEqual(N->getMaskElt(0), 2) &&
3007 isUndefOrEqual(N->getMaskElt(1), 3) &&
3008 isUndefOrEqual(N->getMaskElt(2), 2) &&
3009 isUndefOrEqual(N->getMaskElt(3), 3);
3010}
3011
Evan Cheng5ced1d82006-04-06 23:23:56 +00003012/// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3013/// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
Nate Begeman9008ca62009-04-27 18:41:29 +00003014bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3015 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003016
Evan Cheng5ced1d82006-04-06 23:23:56 +00003017 if (NumElems != 2 && NumElems != 4)
3018 return false;
3019
Evan Chengc5cdff22006-04-07 21:53:05 +00003020 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003021 if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003022 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003023
Evan Chengc5cdff22006-04-07 21:53:05 +00003024 for (unsigned i = NumElems/2; i < NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003025 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003026 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003027
3028 return true;
3029}
3030
Nate Begeman0b10b912009-11-07 23:17:15 +00003031/// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3032/// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3033bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003034 unsigned NumElems = N->getValueType(0).getVectorNumElements();
Evan Cheng5ced1d82006-04-06 23:23:56 +00003035
Evan Cheng5ced1d82006-04-06 23:23:56 +00003036 if (NumElems != 2 && NumElems != 4)
3037 return false;
3038
Evan Chengc5cdff22006-04-07 21:53:05 +00003039 for (unsigned i = 0; i < NumElems/2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003040 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Chengc5cdff22006-04-07 21:53:05 +00003041 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003042
Nate Begeman9008ca62009-04-27 18:41:29 +00003043 for (unsigned i = 0; i < NumElems/2; ++i)
3044 if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
Evan Chengc5cdff22006-04-07 21:53:05 +00003045 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003046
3047 return true;
3048}
3049
Evan Cheng0038e592006-03-28 00:39:58 +00003050/// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3051/// specifies a shuffle of elements that is suitable for input to UNPCKL.
Owen Andersone50ed302009-08-10 22:56:29 +00003052static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003053 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003054 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003055 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng0038e592006-03-28 00:39:58 +00003056 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003057
Nate Begeman9008ca62009-04-27 18:41:29 +00003058 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3059 int BitI = Mask[i];
3060 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003061 if (!isUndefOrEqual(BitI, j))
3062 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003063 if (V2IsSplat) {
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003064 if (!isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003065 return false;
3066 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003067 if (!isUndefOrEqual(BitI1, j + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003068 return false;
3069 }
Evan Cheng0038e592006-03-28 00:39:58 +00003070 }
Evan Cheng0038e592006-03-28 00:39:58 +00003071 return true;
3072}
3073
Nate Begeman9008ca62009-04-27 18:41:29 +00003074bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3075 SmallVector<int, 8> M;
3076 N->getMask(M);
3077 return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003078}
3079
Evan Cheng4fcb9222006-03-28 02:43:26 +00003080/// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3081/// specifies a shuffle of elements that is suitable for input to UNPCKH.
Eric Christopherfd179292009-08-27 18:07:15 +00003082static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
Rafael Espindola15684b22009-04-24 12:40:33 +00003083 bool V2IsSplat = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003084 int NumElts = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003085 if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
Evan Cheng4fcb9222006-03-28 02:43:26 +00003086 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003087
Nate Begeman9008ca62009-04-27 18:41:29 +00003088 for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
3089 int BitI = Mask[i];
3090 int BitI1 = Mask[i+1];
Chris Lattner5a88b832007-02-25 07:10:00 +00003091 if (!isUndefOrEqual(BitI, j + NumElts/2))
Evan Chengc5cdff22006-04-07 21:53:05 +00003092 return false;
Evan Cheng39623da2006-04-20 08:58:49 +00003093 if (V2IsSplat) {
Chris Lattner5a88b832007-02-25 07:10:00 +00003094 if (isUndefOrEqual(BitI1, NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003095 return false;
3096 } else {
Chris Lattner5a88b832007-02-25 07:10:00 +00003097 if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
Evan Cheng39623da2006-04-20 08:58:49 +00003098 return false;
3099 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003100 }
Evan Cheng4fcb9222006-03-28 02:43:26 +00003101 return true;
3102}
3103
Nate Begeman9008ca62009-04-27 18:41:29 +00003104bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3105 SmallVector<int, 8> M;
3106 N->getMask(M);
3107 return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
Evan Cheng39623da2006-04-20 08:58:49 +00003108}
3109
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003110/// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3111/// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3112/// <0, 0, 1, 1>
Owen Andersone50ed302009-08-10 22:56:29 +00003113static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003114 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003115 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003116 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003117
Nate Begeman9008ca62009-04-27 18:41:29 +00003118 for (int i = 0, j = 0; i != NumElems; i += 2, ++j) {
3119 int BitI = Mask[i];
3120 int BitI1 = Mask[i+1];
Evan Chengc5cdff22006-04-07 21:53:05 +00003121 if (!isUndefOrEqual(BitI, j))
3122 return false;
3123 if (!isUndefOrEqual(BitI1, j))
3124 return false;
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003125 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003126 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003127}
3128
Nate Begeman9008ca62009-04-27 18:41:29 +00003129bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3130 SmallVector<int, 8> M;
3131 N->getMask(M);
3132 return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3133}
3134
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003135/// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3136/// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3137/// <2, 2, 3, 3>
Owen Andersone50ed302009-08-10 22:56:29 +00003138static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003139 int NumElems = VT.getVectorNumElements();
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003140 if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3141 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003142
Nate Begeman9008ca62009-04-27 18:41:29 +00003143 for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3144 int BitI = Mask[i];
3145 int BitI1 = Mask[i+1];
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00003146 if (!isUndefOrEqual(BitI, j))
3147 return false;
3148 if (!isUndefOrEqual(BitI1, j))
3149 return false;
3150 }
Rafael Espindola15684b22009-04-24 12:40:33 +00003151 return true;
Nate Begemanb706d292009-04-24 03:42:54 +00003152}
3153
Nate Begeman9008ca62009-04-27 18:41:29 +00003154bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3155 SmallVector<int, 8> M;
3156 N->getMask(M);
3157 return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3158}
3159
Evan Cheng017dcc62006-04-21 01:05:10 +00003160/// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3161/// specifies a shuffle of elements that is suitable for input to MOVSS,
3162/// MOVSD, and MOVD, i.e. setting the lowest element.
Owen Andersone50ed302009-08-10 22:56:29 +00003163static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
Eli Friedman10415532009-06-06 06:05:10 +00003164 if (VT.getVectorElementType().getSizeInBits() < 32)
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003165 return false;
Eli Friedman10415532009-06-06 06:05:10 +00003166
3167 int NumElts = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003168
Nate Begeman9008ca62009-04-27 18:41:29 +00003169 if (!isUndefOrEqual(Mask[0], NumElts))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003170 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003171
Nate Begeman9008ca62009-04-27 18:41:29 +00003172 for (int i = 1; i < NumElts; ++i)
3173 if (!isUndefOrEqual(Mask[i], i))
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003174 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003175
Evan Chengd6d1cbd2006-04-11 00:19:04 +00003176 return true;
3177}
Evan Cheng1d5a8cc2006-04-05 07:20:06 +00003178
Nate Begeman9008ca62009-04-27 18:41:29 +00003179bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3180 SmallVector<int, 8> M;
3181 N->getMask(M);
3182 return ::isMOVLMask(M, N->getValueType(0));
Evan Cheng39623da2006-04-20 08:58:49 +00003183}
3184
Evan Cheng017dcc62006-04-21 01:05:10 +00003185/// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3186/// of what x86 movss want. X86 movs requires the lowest element to be lowest
Evan Cheng39623da2006-04-20 08:58:49 +00003187/// element of vector 2 and the other elements to come from vector 1 in order.
Owen Andersone50ed302009-08-10 22:56:29 +00003188static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
Nate Begeman9008ca62009-04-27 18:41:29 +00003189 bool V2IsSplat = false, bool V2IsUndef = false) {
3190 int NumOps = VT.getVectorNumElements();
Chris Lattner5a88b832007-02-25 07:10:00 +00003191 if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
Evan Cheng39623da2006-04-20 08:58:49 +00003192 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003193
Nate Begeman9008ca62009-04-27 18:41:29 +00003194 if (!isUndefOrEqual(Mask[0], 0))
Evan Cheng39623da2006-04-20 08:58:49 +00003195 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003196
Nate Begeman9008ca62009-04-27 18:41:29 +00003197 for (int i = 1; i < NumOps; ++i)
3198 if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3199 (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3200 (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
Evan Cheng8cf723d2006-09-08 01:50:06 +00003201 return false;
Eric Christopherfd179292009-08-27 18:07:15 +00003202
Evan Cheng39623da2006-04-20 08:58:49 +00003203 return true;
3204}
3205
Nate Begeman9008ca62009-04-27 18:41:29 +00003206static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
Evan Cheng8cf723d2006-09-08 01:50:06 +00003207 bool V2IsUndef = false) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003208 SmallVector<int, 8> M;
3209 N->getMask(M);
3210 return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
Evan Cheng39623da2006-04-20 08:58:49 +00003211}
3212
Evan Chengd9539472006-04-14 21:59:03 +00003213/// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3214/// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003215bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) {
3216 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003217 return false;
3218
3219 // Expect 1, 1, 3, 3
Rafael Espindola15684b22009-04-24 12:40:33 +00003220 for (unsigned i = 0; i < 2; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003221 int Elt = N->getMaskElt(i);
3222 if (Elt >= 0 && Elt != 1)
3223 return false;
Rafael Espindola15684b22009-04-24 12:40:33 +00003224 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003225
3226 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003227 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003228 int Elt = N->getMaskElt(i);
3229 if (Elt >= 0 && Elt != 3)
3230 return false;
3231 if (Elt == 3)
3232 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003233 }
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003234 // Don't use movshdup if it can be done with a shufps.
Nate Begeman9008ca62009-04-27 18:41:29 +00003235 // FIXME: verify that matching u, u, 3, 3 is what we want.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003236 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003237}
3238
3239/// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3240/// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003241bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) {
3242 if (N->getValueType(0).getVectorNumElements() != 4)
Evan Chengd9539472006-04-14 21:59:03 +00003243 return false;
3244
3245 // Expect 0, 0, 2, 2
Nate Begeman9008ca62009-04-27 18:41:29 +00003246 for (unsigned i = 0; i < 2; ++i)
3247 if (N->getMaskElt(i) > 0)
3248 return false;
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003249
3250 bool HasHi = false;
Evan Chengd9539472006-04-14 21:59:03 +00003251 for (unsigned i = 2; i < 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003252 int Elt = N->getMaskElt(i);
3253 if (Elt >= 0 && Elt != 2)
3254 return false;
3255 if (Elt == 2)
3256 HasHi = true;
Evan Chengd9539472006-04-14 21:59:03 +00003257 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003258 // Don't use movsldup if it can be done with a shufps.
Evan Cheng57ebe9f2006-04-15 05:37:34 +00003259 return HasHi;
Evan Chengd9539472006-04-14 21:59:03 +00003260}
3261
Evan Cheng0b457f02008-09-25 20:50:48 +00003262/// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3263/// specifies a shuffle of elements that is suitable for input to MOVDDUP.
Nate Begeman9008ca62009-04-27 18:41:29 +00003264bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3265 int e = N->getValueType(0).getVectorNumElements() / 2;
Eric Christopherfd179292009-08-27 18:07:15 +00003266
Nate Begeman9008ca62009-04-27 18:41:29 +00003267 for (int i = 0; i < e; ++i)
3268 if (!isUndefOrEqual(N->getMaskElt(i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003269 return false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003270 for (int i = 0; i < e; ++i)
3271 if (!isUndefOrEqual(N->getMaskElt(e+i), i))
Evan Cheng0b457f02008-09-25 20:50:48 +00003272 return false;
3273 return true;
3274}
3275
Evan Cheng63d33002006-03-22 08:01:21 +00003276/// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003277/// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
Evan Cheng63d33002006-03-22 08:01:21 +00003278unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003279 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3280 int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3281
Evan Chengb9df0ca2006-03-22 02:53:00 +00003282 unsigned Shift = (NumOperands == 4) ? 2 : 1;
3283 unsigned Mask = 0;
Nate Begeman9008ca62009-04-27 18:41:29 +00003284 for (int i = 0; i < NumOperands; ++i) {
3285 int Val = SVOp->getMaskElt(NumOperands-i-1);
3286 if (Val < 0) Val = 0;
Evan Cheng14aed5e2006-03-24 01:18:28 +00003287 if (Val >= NumOperands) Val -= NumOperands;
Evan Cheng63d33002006-03-22 08:01:21 +00003288 Mask |= Val;
Evan Cheng36b27f32006-03-28 23:41:33 +00003289 if (i != NumOperands - 1)
3290 Mask <<= Shift;
3291 }
Evan Cheng63d33002006-03-22 08:01:21 +00003292 return Mask;
3293}
3294
Evan Cheng506d3df2006-03-29 23:07:14 +00003295/// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003296/// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003297unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003298 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003299 unsigned Mask = 0;
3300 // 8 nodes, but we only care about the last 4.
3301 for (unsigned i = 7; i >= 4; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003302 int Val = SVOp->getMaskElt(i);
3303 if (Val >= 0)
Mon P Wang7bcaefa2009-02-04 01:16:59 +00003304 Mask |= (Val - 4);
Evan Cheng506d3df2006-03-29 23:07:14 +00003305 if (i != 4)
3306 Mask <<= 2;
3307 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003308 return Mask;
3309}
3310
3311/// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
Nate Begemana09008b2009-10-19 02:17:23 +00003312/// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
Evan Cheng506d3df2006-03-29 23:07:14 +00003313unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003314 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
Evan Cheng506d3df2006-03-29 23:07:14 +00003315 unsigned Mask = 0;
3316 // 8 nodes, but we only care about the first 4.
3317 for (int i = 3; i >= 0; --i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003318 int Val = SVOp->getMaskElt(i);
3319 if (Val >= 0)
3320 Mask |= Val;
Evan Cheng506d3df2006-03-29 23:07:14 +00003321 if (i != 0)
3322 Mask <<= 2;
3323 }
Evan Cheng506d3df2006-03-29 23:07:14 +00003324 return Mask;
3325}
3326
Nate Begemana09008b2009-10-19 02:17:23 +00003327/// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3328/// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3329unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3330 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3331 EVT VVT = N->getValueType(0);
3332 unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3333 int Val = 0;
3334
3335 unsigned i, e;
3336 for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3337 Val = SVOp->getMaskElt(i);
3338 if (Val >= 0)
3339 break;
3340 }
3341 return (Val - i) * EltSize;
3342}
3343
Evan Cheng37b73872009-07-30 08:33:02 +00003344/// isZeroNode - Returns true if Elt is a constant zero or a floating point
3345/// constant +0.0.
3346bool X86::isZeroNode(SDValue Elt) {
3347 return ((isa<ConstantSDNode>(Elt) &&
Dan Gohmane368b462010-06-18 14:22:04 +00003348 cast<ConstantSDNode>(Elt)->isNullValue()) ||
Evan Cheng37b73872009-07-30 08:33:02 +00003349 (isa<ConstantFPSDNode>(Elt) &&
3350 cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3351}
3352
Nate Begeman9008ca62009-04-27 18:41:29 +00003353/// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3354/// their permute mask.
3355static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3356 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003357 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003358 unsigned NumElems = VT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +00003359 SmallVector<int, 8> MaskVec;
Eric Christopherfd179292009-08-27 18:07:15 +00003360
Nate Begeman5a5ca152009-04-29 05:20:52 +00003361 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003362 int idx = SVOp->getMaskElt(i);
3363 if (idx < 0)
3364 MaskVec.push_back(idx);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003365 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003366 MaskVec.push_back(idx + NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003367 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003368 MaskVec.push_back(idx - NumElems);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003369 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003370 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3371 SVOp->getOperand(0), &MaskVec[0]);
Evan Cheng5ced1d82006-04-06 23:23:56 +00003372}
3373
Evan Cheng779ccea2007-12-07 21:30:01 +00003374/// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3375/// the two vector operands have swapped position.
Owen Andersone50ed302009-08-10 22:56:29 +00003376static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
Nate Begeman5a5ca152009-04-29 05:20:52 +00003377 unsigned NumElems = VT.getVectorNumElements();
3378 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003379 int idx = Mask[i];
3380 if (idx < 0)
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003381 continue;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003382 else if (idx < (int)NumElems)
Nate Begeman9008ca62009-04-27 18:41:29 +00003383 Mask[i] = idx + NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003384 else
Nate Begeman9008ca62009-04-27 18:41:29 +00003385 Mask[i] = idx - NumElems;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003386 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00003387}
3388
Evan Cheng533a0aa2006-04-19 20:35:22 +00003389/// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3390/// match movhlps. The lower half elements should come from upper half of
3391/// V1 (and in order), and the upper half elements should come from the upper
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00003392/// half of V2 (and in order).
Nate Begeman9008ca62009-04-27 18:41:29 +00003393static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3394 if (Op->getValueType(0).getVectorNumElements() != 4)
Evan Cheng533a0aa2006-04-19 20:35:22 +00003395 return false;
3396 for (unsigned i = 0, e = 2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003397 if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003398 return false;
3399 for (unsigned i = 2; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003400 if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003401 return false;
3402 return true;
3403}
3404
Evan Cheng5ced1d82006-04-06 23:23:56 +00003405/// isScalarLoadToVector - Returns true if the node is a scalar load that
Evan Cheng7e2ff772008-05-08 00:57:18 +00003406/// is promoted to a vector. It also returns the LoadSDNode by reference if
3407/// required.
3408static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
Evan Cheng0b457f02008-09-25 20:50:48 +00003409 if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3410 return false;
3411 N = N->getOperand(0).getNode();
3412 if (!ISD::isNON_EXTLoad(N))
3413 return false;
3414 if (LD)
3415 *LD = cast<LoadSDNode>(N);
3416 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003417}
3418
Evan Cheng533a0aa2006-04-19 20:35:22 +00003419/// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3420/// match movlp{s|d}. The lower half elements should come from lower half of
3421/// V1 (and in order), and the upper half elements should come from the upper
3422/// half of V2 (and in order). And since V1 will become the source of the
3423/// MOVLP, it must be either a vector load or a scalar load to vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003424static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3425 ShuffleVectorSDNode *Op) {
Evan Cheng466685d2006-10-09 20:57:25 +00003426 if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003427 return false;
Evan Cheng23425f52006-10-09 21:39:25 +00003428 // Is V2 is a vector load, don't do this transformation. We will try to use
3429 // load folding shufps op.
3430 if (ISD::isNON_EXTLoad(V2))
3431 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003432
Nate Begeman5a5ca152009-04-29 05:20:52 +00003433 unsigned NumElems = Op->getValueType(0).getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003434
Evan Cheng533a0aa2006-04-19 20:35:22 +00003435 if (NumElems != 2 && NumElems != 4)
3436 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003437 for (unsigned i = 0, e = NumElems/2; i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003438 if (!isUndefOrEqual(Op->getMaskElt(i), i))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003439 return false;
Nate Begeman5a5ca152009-04-29 05:20:52 +00003440 for (unsigned i = NumElems/2; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003441 if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
Evan Cheng533a0aa2006-04-19 20:35:22 +00003442 return false;
3443 return true;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003444}
3445
Evan Cheng39623da2006-04-20 08:58:49 +00003446/// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3447/// all the same.
3448static bool isSplatVector(SDNode *N) {
3449 if (N->getOpcode() != ISD::BUILD_VECTOR)
3450 return false;
Evan Cheng5ced1d82006-04-06 23:23:56 +00003451
Dan Gohman475871a2008-07-27 21:46:04 +00003452 SDValue SplatValue = N->getOperand(0);
Evan Cheng39623da2006-04-20 08:58:49 +00003453 for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3454 if (N->getOperand(i) != SplatValue)
Evan Cheng5ced1d82006-04-06 23:23:56 +00003455 return false;
3456 return true;
3457}
3458
Evan Cheng213d2cf2007-05-17 18:45:50 +00003459/// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
Eric Christopherfd179292009-08-27 18:07:15 +00003460/// to an zero vector.
Nate Begeman5a5ca152009-04-29 05:20:52 +00003461/// FIXME: move to dag combiner / method on ShuffleVectorSDNode
Nate Begeman9008ca62009-04-27 18:41:29 +00003462static bool isZeroShuffle(ShuffleVectorSDNode *N) {
Dan Gohman475871a2008-07-27 21:46:04 +00003463 SDValue V1 = N->getOperand(0);
3464 SDValue V2 = N->getOperand(1);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003465 unsigned NumElems = N->getValueType(0).getVectorNumElements();
3466 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003467 int Idx = N->getMaskElt(i);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003468 if (Idx >= (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003469 unsigned Opc = V2.getOpcode();
Rafael Espindola15684b22009-04-24 12:40:33 +00003470 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3471 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003472 if (Opc != ISD::BUILD_VECTOR ||
3473 !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
Nate Begeman9008ca62009-04-27 18:41:29 +00003474 return false;
3475 } else if (Idx >= 0) {
3476 unsigned Opc = V1.getOpcode();
3477 if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3478 continue;
Evan Cheng37b73872009-07-30 08:33:02 +00003479 if (Opc != ISD::BUILD_VECTOR ||
3480 !X86::isZeroNode(V1.getOperand(Idx)))
Chris Lattner8a594482007-11-25 00:24:49 +00003481 return false;
Evan Cheng213d2cf2007-05-17 18:45:50 +00003482 }
3483 }
3484 return true;
3485}
3486
3487/// getZeroVector - Returns a vector of specified type with all zero elements.
3488///
Owen Andersone50ed302009-08-10 22:56:29 +00003489static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
Dale Johannesenace16102009-02-03 19:33:06 +00003490 DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003491 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003492
Dale Johannesen0488fb62010-09-30 23:57:10 +00003493 // Always build SSE zero vectors as <4 x i32> bitcasted
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003494 // to their dest type. This ensures they get CSE'd.
Dan Gohman475871a2008-07-27 21:46:04 +00003495 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003496 if (VT.getSizeInBits() == 128) { // SSE
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003497 if (HasSSE2) { // SSE2
3498 SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3499 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3500 } else { // SSE1
3501 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3502 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3503 }
3504 } else if (VT.getSizeInBits() == 256) { // AVX
3505 // 256-bit logic and arithmetic instructions in AVX are
3506 // all floating-point, no support for integer ops. Default
3507 // to emitting fp zeroed vectors then.
Owen Anderson825b72b2009-08-11 20:47:22 +00003508 SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00003509 SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3510 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
Evan Chengf0df0312008-05-15 08:39:06 +00003511 }
Dale Johannesenace16102009-02-03 19:33:06 +00003512 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Evan Cheng213d2cf2007-05-17 18:45:50 +00003513}
3514
Chris Lattner8a594482007-11-25 00:24:49 +00003515/// getOnesVector - Returns a vector of specified type with all bits set.
3516///
Owen Andersone50ed302009-08-10 22:56:29 +00003517static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003518 assert(VT.isVector() && "Expected a vector type");
Scott Michelfdc40a02009-02-17 22:15:04 +00003519
Chris Lattner8a594482007-11-25 00:24:49 +00003520 // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
3521 // type. This ensures they get CSE'd.
Owen Anderson825b72b2009-08-11 20:47:22 +00003522 SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +00003523 SDValue Vec;
Dale Johannesen0488fb62010-09-30 23:57:10 +00003524 Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
Dale Johannesenace16102009-02-03 19:33:06 +00003525 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
Chris Lattner8a594482007-11-25 00:24:49 +00003526}
3527
3528
Evan Cheng39623da2006-04-20 08:58:49 +00003529/// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
3530/// that point to V2 points to its first element.
Nate Begeman9008ca62009-04-27 18:41:29 +00003531static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003532 EVT VT = SVOp->getValueType(0);
Nate Begeman5a5ca152009-04-29 05:20:52 +00003533 unsigned NumElems = VT.getVectorNumElements();
Eric Christopherfd179292009-08-27 18:07:15 +00003534
Evan Cheng39623da2006-04-20 08:58:49 +00003535 bool Changed = false;
Nate Begeman9008ca62009-04-27 18:41:29 +00003536 SmallVector<int, 8> MaskVec;
3537 SVOp->getMask(MaskVec);
Eric Christopherfd179292009-08-27 18:07:15 +00003538
Nate Begeman5a5ca152009-04-29 05:20:52 +00003539 for (unsigned i = 0; i != NumElems; ++i) {
3540 if (MaskVec[i] > (int)NumElems) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003541 MaskVec[i] = NumElems;
3542 Changed = true;
Evan Cheng39623da2006-04-20 08:58:49 +00003543 }
Evan Cheng39623da2006-04-20 08:58:49 +00003544 }
Evan Cheng39623da2006-04-20 08:58:49 +00003545 if (Changed)
Nate Begeman9008ca62009-04-27 18:41:29 +00003546 return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
3547 SVOp->getOperand(1), &MaskVec[0]);
3548 return SDValue(SVOp, 0);
Evan Cheng39623da2006-04-20 08:58:49 +00003549}
3550
Evan Cheng017dcc62006-04-21 01:05:10 +00003551/// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
3552/// operation of specified width.
Owen Andersone50ed302009-08-10 22:56:29 +00003553static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003554 SDValue V2) {
3555 unsigned NumElems = VT.getVectorNumElements();
3556 SmallVector<int, 8> Mask;
3557 Mask.push_back(NumElems);
Evan Cheng39623da2006-04-20 08:58:49 +00003558 for (unsigned i = 1; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003559 Mask.push_back(i);
3560 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Cheng39623da2006-04-20 08:58:49 +00003561}
3562
Nate Begeman9008ca62009-04-27 18:41:29 +00003563/// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003564static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003565 SDValue V2) {
3566 unsigned NumElems = VT.getVectorNumElements();
3567 SmallVector<int, 8> Mask;
Evan Chengc575ca22006-04-17 20:43:08 +00003568 for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003569 Mask.push_back(i);
3570 Mask.push_back(i + NumElems);
Evan Chengc575ca22006-04-17 20:43:08 +00003571 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003572 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Evan Chengc575ca22006-04-17 20:43:08 +00003573}
3574
Nate Begeman9008ca62009-04-27 18:41:29 +00003575/// getUnpackhMask - Returns a vector_shuffle node for an unpackh operation.
Owen Andersone50ed302009-08-10 22:56:29 +00003576static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
Nate Begeman9008ca62009-04-27 18:41:29 +00003577 SDValue V2) {
3578 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng39623da2006-04-20 08:58:49 +00003579 unsigned Half = NumElems/2;
Nate Begeman9008ca62009-04-27 18:41:29 +00003580 SmallVector<int, 8> Mask;
Evan Cheng39623da2006-04-20 08:58:49 +00003581 for (unsigned i = 0; i != Half; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00003582 Mask.push_back(i + Half);
3583 Mask.push_back(i + NumElems + Half);
Evan Cheng39623da2006-04-20 08:58:49 +00003584 }
Nate Begeman9008ca62009-04-27 18:41:29 +00003585 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00003586}
3587
Bruno Cardoso Lopesbb0a9482010-08-13 17:50:47 +00003588/// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32.
3589static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003590 EVT PVT = MVT::v4f32;
Owen Andersone50ed302009-08-10 22:56:29 +00003591 EVT VT = SV->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00003592 DebugLoc dl = SV->getDebugLoc();
3593 SDValue V1 = SV->getOperand(0);
3594 int NumElems = VT.getVectorNumElements();
3595 int EltNo = SV->getSplatIndex();
Rafael Espindola15684b22009-04-24 12:40:33 +00003596
Nate Begeman9008ca62009-04-27 18:41:29 +00003597 // unpack elements to the correct location
3598 while (NumElems > 4) {
3599 if (EltNo < NumElems/2) {
3600 V1 = getUnpackl(DAG, dl, VT, V1, V1);
3601 } else {
3602 V1 = getUnpackh(DAG, dl, VT, V1, V1);
3603 EltNo -= NumElems/2;
3604 }
3605 NumElems >>= 1;
3606 }
Eric Christopherfd179292009-08-27 18:07:15 +00003607
Nate Begeman9008ca62009-04-27 18:41:29 +00003608 // Perform the splat.
3609 int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
Dale Johannesenace16102009-02-03 19:33:06 +00003610 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
Nate Begeman9008ca62009-04-27 18:41:29 +00003611 V1 = DAG.getVectorShuffle(PVT, dl, V1, DAG.getUNDEF(PVT), &SplatMask[0]);
3612 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, V1);
Evan Chengc575ca22006-04-17 20:43:08 +00003613}
3614
Evan Chengba05f722006-04-21 23:03:30 +00003615/// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
Chris Lattner8a594482007-11-25 00:24:49 +00003616/// vector of zero or undef vector. This produces a shuffle where the low
3617/// element of V2 is swizzled into the zero/undef vector, landing at element
3618/// 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 +00003619static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
Evan Chengf0df0312008-05-15 08:39:06 +00003620 bool isZero, bool HasSSE2,
3621 SelectionDAG &DAG) {
Owen Andersone50ed302009-08-10 22:56:29 +00003622 EVT VT = V2.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00003623 SDValue V1 = isZero
Nate Begeman9008ca62009-04-27 18:41:29 +00003624 ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
3625 unsigned NumElems = VT.getVectorNumElements();
3626 SmallVector<int, 16> MaskVec;
Chris Lattner8a594482007-11-25 00:24:49 +00003627 for (unsigned i = 0; i != NumElems; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00003628 // If this is the insertion idx, put the low elt of V2 here.
3629 MaskVec.push_back(i == Idx ? NumElems : i);
3630 return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
Evan Cheng017dcc62006-04-21 01:05:10 +00003631}
3632
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003633/// getShuffleScalarElt - Returns the scalar element that will make up the ith
3634/// element of the result of the vector shuffle.
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003635SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
3636 unsigned Depth) {
3637 if (Depth == 6)
3638 return SDValue(); // Limit search depth.
3639
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003640 SDValue V = SDValue(N, 0);
3641 EVT VT = V.getValueType();
3642 unsigned Opcode = V.getOpcode();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003643
3644 // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
3645 if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
3646 Index = SV->getMaskElt(Index);
3647
3648 if (Index < 0)
3649 return DAG.getUNDEF(VT.getVectorElementType());
3650
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003651 int NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003652 SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003653 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
Evan Chengf26ffe92008-05-29 08:22:04 +00003654 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003655
3656 // Recurse into target specific vector shuffles to find scalars.
3657 if (isTargetShuffle(Opcode)) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003658 int NumElems = VT.getVectorNumElements();
3659 SmallVector<unsigned, 16> ShuffleMask;
3660 SDValue ImmN;
3661
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003662 switch(Opcode) {
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003663 case X86ISD::SHUFPS:
3664 case X86ISD::SHUFPD:
3665 ImmN = N->getOperand(N->getNumOperands()-1);
3666 DecodeSHUFPSMask(NumElems,
3667 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3668 ShuffleMask);
3669 break;
3670 case X86ISD::PUNPCKHBW:
3671 case X86ISD::PUNPCKHWD:
3672 case X86ISD::PUNPCKHDQ:
3673 case X86ISD::PUNPCKHQDQ:
3674 DecodePUNPCKHMask(NumElems, ShuffleMask);
3675 break;
3676 case X86ISD::UNPCKHPS:
3677 case X86ISD::UNPCKHPD:
3678 DecodeUNPCKHPMask(NumElems, ShuffleMask);
3679 break;
3680 case X86ISD::PUNPCKLBW:
3681 case X86ISD::PUNPCKLWD:
3682 case X86ISD::PUNPCKLDQ:
3683 case X86ISD::PUNPCKLQDQ:
3684 DecodePUNPCKLMask(NumElems, ShuffleMask);
3685 break;
3686 case X86ISD::UNPCKLPS:
3687 case X86ISD::UNPCKLPD:
3688 DecodeUNPCKLPMask(NumElems, ShuffleMask);
3689 break;
3690 case X86ISD::MOVHLPS:
3691 DecodeMOVHLPSMask(NumElems, ShuffleMask);
3692 break;
3693 case X86ISD::MOVLHPS:
3694 DecodeMOVLHPSMask(NumElems, ShuffleMask);
3695 break;
3696 case X86ISD::PSHUFD:
3697 ImmN = N->getOperand(N->getNumOperands()-1);
3698 DecodePSHUFMask(NumElems,
3699 cast<ConstantSDNode>(ImmN)->getZExtValue(),
3700 ShuffleMask);
3701 break;
3702 case X86ISD::PSHUFHW:
3703 ImmN = N->getOperand(N->getNumOperands()-1);
3704 DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3705 ShuffleMask);
3706 break;
3707 case X86ISD::PSHUFLW:
3708 ImmN = N->getOperand(N->getNumOperands()-1);
3709 DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
3710 ShuffleMask);
3711 break;
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003712 case X86ISD::MOVSS:
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003713 case X86ISD::MOVSD: {
3714 // The index 0 always comes from the first element of the second source,
3715 // this is why MOVSS and MOVSD are used in the first place. The other
3716 // elements come from the other positions of the first source vector.
3717 unsigned OpNum = (Index == 0) ? 1 : 0;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003718 return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
3719 Depth+1);
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00003720 }
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003721 default:
3722 assert("not implemented for target shuffle node");
3723 return SDValue();
3724 }
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003725
3726 Index = ShuffleMask[Index];
3727 if (Index < 0)
3728 return DAG.getUNDEF(VT.getVectorElementType());
3729
3730 SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
3731 return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
3732 Depth+1);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003733 }
3734
3735 // Actual nodes that may contain scalar elements
3736 if (Opcode == ISD::BIT_CONVERT) {
3737 V = V.getOperand(0);
3738 EVT SrcVT = V.getValueType();
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003739 unsigned NumElems = VT.getVectorNumElements();
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003740
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00003741 if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003742 return SDValue();
3743 }
3744
3745 if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
3746 return (Index == 0) ? V.getOperand(0)
3747 : DAG.getUNDEF(VT.getVectorElementType());
3748
3749 if (V.getOpcode() == ISD::BUILD_VECTOR)
3750 return V.getOperand(Index);
3751
3752 return SDValue();
3753}
3754
3755/// getNumOfConsecutiveZeros - Return the number of elements of a vector
3756/// shuffle operation which come from a consecutively from a zero. The
3757/// search can start in two diferent directions, from left or right.
3758static
3759unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
3760 bool ZerosFromLeft, SelectionDAG &DAG) {
3761 int i = 0;
3762
3763 while (i < NumElems) {
3764 unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00003765 SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003766 if (!(Elt.getNode() &&
3767 (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
3768 break;
3769 ++i;
3770 }
3771
3772 return i;
3773}
3774
3775/// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
3776/// MaskE correspond consecutively to elements from one of the vector operands,
3777/// starting from its index OpIdx. Also tell OpNum which source vector operand.
3778static
3779bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
3780 int OpIdx, int NumElems, unsigned &OpNum) {
3781 bool SeenV1 = false;
3782 bool SeenV2 = false;
3783
3784 for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
3785 int Idx = SVOp->getMaskElt(i);
3786 // Ignore undef indicies
3787 if (Idx < 0)
3788 continue;
3789
3790 if (Idx < NumElems)
3791 SeenV1 = true;
3792 else
3793 SeenV2 = true;
3794
3795 // Only accept consecutive elements from the same vector
3796 if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
3797 return false;
3798 }
3799
3800 OpNum = SeenV1 ? 0 : 1;
3801 return true;
3802}
3803
3804/// isVectorShiftRight - Returns true if the shuffle can be implemented as a
3805/// logical left shift of a vector.
3806static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3807 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3808 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3809 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3810 false /* check zeros from right */, DAG);
3811 unsigned OpSrc;
3812
3813 if (!NumZeros)
3814 return false;
3815
3816 // Considering the elements in the mask that are not consecutive zeros,
3817 // check if they consecutively come from only one of the source vectors.
3818 //
3819 // V1 = {X, A, B, C} 0
3820 // \ \ \ /
3821 // vector_shuffle V1, V2 <1, 2, 3, X>
3822 //
3823 if (!isShuffleMaskConsecutive(SVOp,
3824 0, // Mask Start Index
3825 NumElems-NumZeros-1, // Mask End Index
3826 NumZeros, // Where to start looking in the src vector
3827 NumElems, // Number of elements in vector
3828 OpSrc)) // Which source operand ?
3829 return false;
3830
3831 isLeft = false;
3832 ShAmt = NumZeros;
3833 ShVal = SVOp->getOperand(OpSrc);
3834 return true;
3835}
3836
3837/// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
3838/// logical left shift of a vector.
3839static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
3840 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
3841 unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
3842 unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
3843 true /* check zeros from left */, DAG);
3844 unsigned OpSrc;
3845
3846 if (!NumZeros)
3847 return false;
3848
3849 // Considering the elements in the mask that are not consecutive zeros,
3850 // check if they consecutively come from only one of the source vectors.
3851 //
3852 // 0 { A, B, X, X } = V2
3853 // / \ / /
3854 // vector_shuffle V1, V2 <X, X, 4, 5>
3855 //
3856 if (!isShuffleMaskConsecutive(SVOp,
3857 NumZeros, // Mask Start Index
3858 NumElems-1, // Mask End Index
3859 0, // Where to start looking in the src vector
3860 NumElems, // Number of elements in vector
3861 OpSrc)) // Which source operand ?
3862 return false;
3863
3864 isLeft = true;
3865 ShAmt = NumZeros;
3866 ShVal = SVOp->getOperand(OpSrc);
3867 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003868}
3869
3870/// isVectorShift - Returns true if the shuffle can be implemented as a
3871/// logical left or right shift of a vector.
Nate Begeman9008ca62009-04-27 18:41:29 +00003872static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
Dan Gohman475871a2008-07-27 21:46:04 +00003873 bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003874 if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
3875 isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
3876 return true;
Evan Chengf26ffe92008-05-29 08:22:04 +00003877
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +00003878 return false;
Evan Chengf26ffe92008-05-29 08:22:04 +00003879}
3880
Evan Chengc78d3b42006-04-24 18:01:45 +00003881/// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
3882///
Dan Gohman475871a2008-07-27 21:46:04 +00003883static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
Evan Chengc78d3b42006-04-24 18:01:45 +00003884 unsigned NumNonZero, unsigned NumZero,
Dan Gohmand858e902010-04-17 15:26:15 +00003885 SelectionDAG &DAG,
3886 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003887 if (NumNonZero > 8)
Dan Gohman475871a2008-07-27 21:46:04 +00003888 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003889
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003890 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003891 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003892 bool First = true;
3893 for (unsigned i = 0; i < 16; ++i) {
3894 bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
3895 if (ThisIsNonZero && First) {
3896 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003897 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003898 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003899 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003900 First = false;
3901 }
3902
3903 if ((i & 1) != 0) {
Dan Gohman475871a2008-07-27 21:46:04 +00003904 SDValue ThisElt(0, 0), LastElt(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003905 bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
3906 if (LastIsNonZero) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003907 LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003908 MVT::i16, Op.getOperand(i-1));
Evan Chengc78d3b42006-04-24 18:01:45 +00003909 }
3910 if (ThisIsNonZero) {
Owen Anderson825b72b2009-08-11 20:47:22 +00003911 ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
3912 ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
3913 ThisElt, DAG.getConstant(8, MVT::i8));
Evan Chengc78d3b42006-04-24 18:01:45 +00003914 if (LastIsNonZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003915 ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
Evan Chengc78d3b42006-04-24 18:01:45 +00003916 } else
3917 ThisElt = LastElt;
3918
Gabor Greifba36cb52008-08-28 21:40:38 +00003919 if (ThisElt.getNode())
Owen Anderson825b72b2009-08-11 20:47:22 +00003920 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
Chris Lattner0bd48932008-01-17 07:00:52 +00003921 DAG.getIntPtrConstant(i/2));
Evan Chengc78d3b42006-04-24 18:01:45 +00003922 }
3923 }
3924
Owen Anderson825b72b2009-08-11 20:47:22 +00003925 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V);
Evan Chengc78d3b42006-04-24 18:01:45 +00003926}
3927
Bill Wendlinga348c562007-03-22 18:42:45 +00003928/// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
Evan Chengc78d3b42006-04-24 18:01:45 +00003929///
Dan Gohman475871a2008-07-27 21:46:04 +00003930static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
Dan Gohmand858e902010-04-17 15:26:15 +00003931 unsigned NumNonZero, unsigned NumZero,
3932 SelectionDAG &DAG,
3933 const TargetLowering &TLI) {
Evan Chengc78d3b42006-04-24 18:01:45 +00003934 if (NumNonZero > 4)
Dan Gohman475871a2008-07-27 21:46:04 +00003935 return SDValue();
Evan Chengc78d3b42006-04-24 18:01:45 +00003936
Dale Johannesen6f38cb62009-02-07 19:59:05 +00003937 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00003938 SDValue V(0, 0);
Evan Chengc78d3b42006-04-24 18:01:45 +00003939 bool First = true;
3940 for (unsigned i = 0; i < 8; ++i) {
3941 bool isNonZero = (NonZeros & (1 << i)) != 0;
3942 if (isNonZero) {
3943 if (First) {
3944 if (NumZero)
Owen Anderson825b72b2009-08-11 20:47:22 +00003945 V = getZeroVector(MVT::v8i16, true, DAG, dl);
Evan Chengc78d3b42006-04-24 18:01:45 +00003946 else
Owen Anderson825b72b2009-08-11 20:47:22 +00003947 V = DAG.getUNDEF(MVT::v8i16);
Evan Chengc78d3b42006-04-24 18:01:45 +00003948 First = false;
3949 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003950 V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00003951 MVT::v8i16, V, Op.getOperand(i),
Chris Lattner0bd48932008-01-17 07:00:52 +00003952 DAG.getIntPtrConstant(i));
Evan Chengc78d3b42006-04-24 18:01:45 +00003953 }
3954 }
3955
3956 return V;
3957}
3958
Evan Chengf26ffe92008-05-29 08:22:04 +00003959/// getVShift - Return a vector logical shift node.
3960///
Owen Andersone50ed302009-08-10 22:56:29 +00003961static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
Nate Begeman9008ca62009-04-27 18:41:29 +00003962 unsigned NumBits, SelectionDAG &DAG,
3963 const TargetLowering &TLI, DebugLoc dl) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00003964 EVT ShVT = MVT::v2i64;
Evan Chengf26ffe92008-05-29 08:22:04 +00003965 unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
Dale Johannesenace16102009-02-03 19:33:06 +00003966 SrcOp = DAG.getNode(ISD::BIT_CONVERT, dl, ShVT, SrcOp);
3967 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3968 DAG.getNode(Opc, dl, ShVT, SrcOp,
Gabor Greif327ef032008-08-28 23:19:51 +00003969 DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
Evan Chengf26ffe92008-05-29 08:22:04 +00003970}
3971
Dan Gohman475871a2008-07-27 21:46:04 +00003972SDValue
Evan Chengc3630942009-12-09 21:00:30 +00003973X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
Dan Gohmand858e902010-04-17 15:26:15 +00003974 SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00003975
Evan Chengc3630942009-12-09 21:00:30 +00003976 // Check if the scalar load can be widened into a vector load. And if
3977 // the address is "base + cst" see if the cst can be "absorbed" into
3978 // the shuffle mask.
3979 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
3980 SDValue Ptr = LD->getBasePtr();
3981 if (!ISD::isNormalLoad(LD) || LD->isVolatile())
3982 return SDValue();
3983 EVT PVT = LD->getValueType(0);
3984 if (PVT != MVT::i32 && PVT != MVT::f32)
3985 return SDValue();
3986
3987 int FI = -1;
3988 int64_t Offset = 0;
3989 if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
3990 FI = FINode->getIndex();
3991 Offset = 0;
3992 } else if (Ptr.getOpcode() == ISD::ADD &&
3993 isa<ConstantSDNode>(Ptr.getOperand(1)) &&
3994 isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
3995 FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
3996 Offset = Ptr.getConstantOperandVal(1);
3997 Ptr = Ptr.getOperand(0);
3998 } else {
3999 return SDValue();
4000 }
4001
4002 SDValue Chain = LD->getChain();
4003 // Make sure the stack object alignment is at least 16.
4004 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4005 if (DAG.InferPtrAlignment(Ptr) < 16) {
4006 if (MFI->isFixedObjectIndex(FI)) {
Eric Christophere9625cf2010-01-23 06:02:43 +00004007 // Can't change the alignment. FIXME: It's possible to compute
4008 // the exact stack offset and reference FI + adjust offset instead.
4009 // If someone *really* cares about this. That's the way to implement it.
4010 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004011 } else {
4012 MFI->setObjectAlignment(FI, 16);
4013 }
4014 }
4015
4016 // (Offset % 16) must be multiple of 4. Then address is then
4017 // Ptr + (Offset & ~15).
4018 if (Offset < 0)
4019 return SDValue();
4020 if ((Offset % 16) & 3)
4021 return SDValue();
4022 int64_t StartOffset = Offset & ~15;
4023 if (StartOffset)
4024 Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4025 Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4026
4027 int EltNo = (Offset - StartOffset) >> 2;
4028 int Mask[4] = { EltNo, EltNo, EltNo, EltNo };
4029 EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32;
Chris Lattner51abfe42010-09-21 06:02:19 +00004030 SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr,
4031 LD->getPointerInfo().getWithOffset(StartOffset),
David Greene67c9d422010-02-15 16:53:33 +00004032 false, false, 0);
Evan Chengc3630942009-12-09 21:00:30 +00004033 // Canonicalize it to a v4i32 shuffle.
4034 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32, V1);
4035 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4036 DAG.getVectorShuffle(MVT::v4i32, dl, V1,
Chris Lattner51abfe42010-09-21 06:02:19 +00004037 DAG.getUNDEF(MVT::v4i32),&Mask[0]));
Evan Chengc3630942009-12-09 21:00:30 +00004038 }
4039
4040 return SDValue();
4041}
4042
Michael J. Spencerec38de22010-10-10 22:04:20 +00004043/// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4044/// vector of type 'VT', see if the elements can be replaced by a single large
Nate Begeman1449f292010-03-24 22:19:06 +00004045/// load which has the same value as a build_vector whose operands are 'elts'.
4046///
4047/// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
Michael J. Spencerec38de22010-10-10 22:04:20 +00004048///
Nate Begeman1449f292010-03-24 22:19:06 +00004049/// FIXME: we'd also like to handle the case where the last elements are zero
4050/// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4051/// There's even a handy isZeroNode for that purpose.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004052static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
Chris Lattner88641552010-09-22 00:34:38 +00004053 DebugLoc &DL, SelectionDAG &DAG) {
Nate Begemanfdea31a2010-03-24 20:49:50 +00004054 EVT EltVT = VT.getVectorElementType();
4055 unsigned NumElems = Elts.size();
Michael J. Spencerec38de22010-10-10 22:04:20 +00004056
Nate Begemanfdea31a2010-03-24 20:49:50 +00004057 LoadSDNode *LDBase = NULL;
4058 unsigned LastLoadedElt = -1U;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004059
Nate Begeman1449f292010-03-24 22:19:06 +00004060 // For each element in the initializer, see if we've found a load or an undef.
Michael J. Spencerec38de22010-10-10 22:04:20 +00004061 // If we don't find an initial load element, or later load elements are
Nate Begeman1449f292010-03-24 22:19:06 +00004062 // non-consecutive, bail out.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004063 for (unsigned i = 0; i < NumElems; ++i) {
4064 SDValue Elt = Elts[i];
Michael J. Spencerec38de22010-10-10 22:04:20 +00004065
Nate Begemanfdea31a2010-03-24 20:49:50 +00004066 if (!Elt.getNode() ||
4067 (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4068 return SDValue();
4069 if (!LDBase) {
4070 if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4071 return SDValue();
4072 LDBase = cast<LoadSDNode>(Elt.getNode());
4073 LastLoadedElt = i;
4074 continue;
4075 }
4076 if (Elt.getOpcode() == ISD::UNDEF)
4077 continue;
4078
4079 LoadSDNode *LD = cast<LoadSDNode>(Elt);
4080 if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4081 return SDValue();
4082 LastLoadedElt = i;
4083 }
Nate Begeman1449f292010-03-24 22:19:06 +00004084
4085 // If we have found an entire vector of loads and undefs, then return a large
4086 // load of the entire vector width starting at the base pointer. If we found
4087 // consecutive loads for the low half, generate a vzext_load node.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004088 if (LastLoadedElt == NumElems - 1) {
4089 if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
Chris Lattner88641552010-09-22 00:34:38 +00004090 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004091 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004092 LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
Chris Lattner88641552010-09-22 00:34:38 +00004093 return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +00004094 LDBase->getPointerInfo(),
Nate Begemanfdea31a2010-03-24 20:49:50 +00004095 LDBase->isVolatile(), LDBase->isNonTemporal(),
4096 LDBase->getAlignment());
4097 } else if (NumElems == 4 && LastLoadedElt == 1) {
4098 SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4099 SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
Chris Lattner88641552010-09-22 00:34:38 +00004100 SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4101 Ops, 2, MVT::i32,
4102 LDBase->getMemOperand());
4103 return DAG.getNode(ISD::BIT_CONVERT, DL, VT, ResNode);
Nate Begemanfdea31a2010-03-24 20:49:50 +00004104 }
4105 return SDValue();
4106}
4107
Evan Chengc3630942009-12-09 21:00:30 +00004108SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004109X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004110 DebugLoc dl = Op.getDebugLoc();
Chris Lattner6e80e442010-08-28 17:15:43 +00004111 // All zero's are handled with pxor in SSE2 and above, xorps in SSE1.
4112 // All one's are handled with pcmpeqd. In AVX, zero's are handled with
Bruno Cardoso Lopes8c05a852010-08-12 02:06:36 +00004113 // vpxor in 128-bit and xor{pd,ps} in 256-bit, but no 256 version of pcmpeqd
4114 // is present, so AllOnes is ignored.
4115 if (ISD::isBuildVectorAllZeros(Op.getNode()) ||
4116 (Op.getValueType().getSizeInBits() != 256 &&
4117 ISD::isBuildVectorAllOnes(Op.getNode()))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004118 // Canonicalize this to <4 x i32> (SSE) to
Chris Lattner8a594482007-11-25 00:24:49 +00004119 // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
4120 // eliminated on x86-32 hosts.
Dale Johannesen0488fb62010-09-30 23:57:10 +00004121 if (Op.getValueType() == MVT::v4i32)
Chris Lattner8a594482007-11-25 00:24:49 +00004122 return Op;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004123
Gabor Greifba36cb52008-08-28 21:40:38 +00004124 if (ISD::isBuildVectorAllOnes(Op.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00004125 return getOnesVector(Op.getValueType(), DAG, dl);
4126 return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
Chris Lattner8a594482007-11-25 00:24:49 +00004127 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004128
Owen Andersone50ed302009-08-10 22:56:29 +00004129 EVT VT = Op.getValueType();
4130 EVT ExtVT = VT.getVectorElementType();
4131 unsigned EVTBits = ExtVT.getSizeInBits();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004132
4133 unsigned NumElems = Op.getNumOperands();
4134 unsigned NumZero = 0;
4135 unsigned NumNonZero = 0;
4136 unsigned NonZeros = 0;
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004137 bool IsAllConstants = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004138 SmallSet<SDValue, 8> Values;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004139 for (unsigned i = 0; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004140 SDValue Elt = Op.getOperand(i);
Evan Chengdb2d5242007-12-12 06:45:40 +00004141 if (Elt.getOpcode() == ISD::UNDEF)
4142 continue;
4143 Values.insert(Elt);
4144 if (Elt.getOpcode() != ISD::Constant &&
4145 Elt.getOpcode() != ISD::ConstantFP)
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004146 IsAllConstants = false;
Evan Cheng37b73872009-07-30 08:33:02 +00004147 if (X86::isZeroNode(Elt))
Evan Chengdb2d5242007-12-12 06:45:40 +00004148 NumZero++;
4149 else {
4150 NonZeros |= (1 << i);
4151 NumNonZero++;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004152 }
4153 }
4154
Chris Lattner97a2a562010-08-26 05:24:29 +00004155 // All undef vector. Return an UNDEF. All zero vectors were handled above.
4156 if (NumNonZero == 0)
Dale Johannesene8d72302009-02-06 23:05:02 +00004157 return DAG.getUNDEF(VT);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004158
Chris Lattner67f453a2008-03-09 05:42:06 +00004159 // Special case for single non-zero, non-undef, element.
Eli Friedman10415532009-06-06 06:05:10 +00004160 if (NumNonZero == 1) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00004161 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dan Gohman475871a2008-07-27 21:46:04 +00004162 SDValue Item = Op.getOperand(Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00004163
Chris Lattner62098042008-03-09 01:05:04 +00004164 // If this is an insertion of an i64 value on x86-32, and if the top bits of
4165 // the value are obviously zero, truncate the value to i32 and do the
4166 // insertion that way. Only do this if the value is non-constant or if the
4167 // value is a constant being inserted into element 0. It is cheaper to do
4168 // a constant pool load than it is to do a movd + shuffle.
Owen Anderson825b72b2009-08-11 20:47:22 +00004169 if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
Chris Lattner62098042008-03-09 01:05:04 +00004170 (!IsAllConstants || Idx == 0)) {
4171 if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
Dale Johannesen0488fb62010-09-30 23:57:10 +00004172 // Handle SSE only.
4173 assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4174 EVT VecVT = MVT::v4i32;
4175 unsigned VecElts = 4;
Scott Michelfdc40a02009-02-17 22:15:04 +00004176
Chris Lattner62098042008-03-09 01:05:04 +00004177 // Truncate the value (which may itself be a constant) to i32, and
4178 // convert it to a vector with movd (S2V+shuffle to zero extend).
Owen Anderson825b72b2009-08-11 20:47:22 +00004179 Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
Dale Johannesenace16102009-02-03 19:33:06 +00004180 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
Evan Chengf0df0312008-05-15 08:39:06 +00004181 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4182 Subtarget->hasSSE2(), DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00004183
Chris Lattner62098042008-03-09 01:05:04 +00004184 // Now we have our 32-bit value zero extended in the low element of
4185 // a vector. If Idx != 0, swizzle it into place.
4186 if (Idx != 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004187 SmallVector<int, 4> Mask;
4188 Mask.push_back(Idx);
4189 for (unsigned i = 1; i != VecElts; ++i)
4190 Mask.push_back(i);
4191 Item = DAG.getVectorShuffle(VecVT, dl, Item,
Eric Christopherfd179292009-08-27 18:07:15 +00004192 DAG.getUNDEF(Item.getValueType()),
Nate Begeman9008ca62009-04-27 18:41:29 +00004193 &Mask[0]);
Chris Lattner62098042008-03-09 01:05:04 +00004194 }
Dale Johannesenace16102009-02-03 19:33:06 +00004195 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Item);
Chris Lattner62098042008-03-09 01:05:04 +00004196 }
4197 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004198
Chris Lattner19f79692008-03-08 22:59:52 +00004199 // If we have a constant or non-constant insertion into the low element of
4200 // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4201 // the rest of the elements. This will be matched as movd/movq/movss/movsd
Eli Friedman10415532009-06-06 06:05:10 +00004202 // depending on what the source datatype is.
4203 if (Idx == 0) {
4204 if (NumZero == 0) {
4205 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Owen Anderson825b72b2009-08-11 20:47:22 +00004206 } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4207 (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
Eli Friedman10415532009-06-06 06:05:10 +00004208 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4209 // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4210 return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4211 DAG);
Owen Anderson825b72b2009-08-11 20:47:22 +00004212 } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4213 Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
Dale Johannesen0488fb62010-09-30 23:57:10 +00004214 assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4215 EVT MiddleVT = MVT::v4i32;
Eli Friedman10415532009-06-06 06:05:10 +00004216 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4217 Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4218 Subtarget->hasSSE2(), DAG);
4219 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Item);
4220 }
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004221 }
Evan Chengf26ffe92008-05-29 08:22:04 +00004222
4223 // Is it a vector logical left shift?
4224 if (NumElems == 2 && Idx == 1 &&
Evan Cheng37b73872009-07-30 08:33:02 +00004225 X86::isZeroNode(Op.getOperand(0)) &&
4226 !X86::isZeroNode(Op.getOperand(1))) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004227 unsigned NumBits = VT.getSizeInBits();
Evan Chengf26ffe92008-05-29 08:22:04 +00004228 return getVShift(true, VT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004229 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Dale Johannesenb300d2a2009-02-07 00:55:49 +00004230 VT, Op.getOperand(1)),
Dale Johannesenace16102009-02-03 19:33:06 +00004231 NumBits/2, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00004232 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004233
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004234 if (IsAllConstants) // Otherwise, it's better to do a constpool load.
Dan Gohman475871a2008-07-27 21:46:04 +00004235 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004236
Chris Lattner19f79692008-03-08 22:59:52 +00004237 // Otherwise, if this is a vector with i32 or f32 elements, and the element
4238 // is a non-constant being inserted into an element other than the low one,
4239 // we can't use a constant pool load. Instead, use SCALAR_TO_VECTOR (aka
4240 // movd/movss) to move this into the low element, then shuffle it into
4241 // place.
Evan Cheng0db9fe62006-04-25 20:13:52 +00004242 if (EVTBits == 32) {
Dale Johannesenace16102009-02-03 19:33:06 +00004243 Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
Scott Michelfdc40a02009-02-17 22:15:04 +00004244
Evan Cheng0db9fe62006-04-25 20:13:52 +00004245 // Turn it into a shuffle of zero and zero-extended scalar to vector.
Evan Chengf0df0312008-05-15 08:39:06 +00004246 Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4247 Subtarget->hasSSE2(), DAG);
Nate Begeman9008ca62009-04-27 18:41:29 +00004248 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004249 for (unsigned i = 0; i < NumElems; i++)
Nate Begeman9008ca62009-04-27 18:41:29 +00004250 MaskVec.push_back(i == Idx ? 0 : 1);
4251 return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004252 }
4253 }
4254
Chris Lattner67f453a2008-03-09 05:42:06 +00004255 // Splat is obviously ok. Let legalizer expand it to a shuffle.
Evan Chengc3630942009-12-09 21:00:30 +00004256 if (Values.size() == 1) {
4257 if (EVTBits == 32) {
4258 // Instead of a shuffle like this:
4259 // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4260 // Check if it's possible to issue this instead.
4261 // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4262 unsigned Idx = CountTrailingZeros_32(NonZeros);
4263 SDValue Item = Op.getOperand(Idx);
4264 if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4265 return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4266 }
Dan Gohman475871a2008-07-27 21:46:04 +00004267 return SDValue();
Evan Chengc3630942009-12-09 21:00:30 +00004268 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004269
Dan Gohmana3941172007-07-24 22:55:08 +00004270 // A vector full of immediates; various special cases are already
4271 // handled, so this is best done with a single constant-pool load.
Chris Lattnerc9517fb2008-03-08 22:48:29 +00004272 if (IsAllConstants)
Dan Gohman475871a2008-07-27 21:46:04 +00004273 return SDValue();
Dan Gohmana3941172007-07-24 22:55:08 +00004274
Bill Wendling2f9bb1a2007-04-24 21:16:55 +00004275 // Let legalizer expand 2-wide build_vectors.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004276 if (EVTBits == 64) {
4277 if (NumNonZero == 1) {
4278 // One half is zero or undef.
4279 unsigned Idx = CountTrailingZeros_32(NonZeros);
Dale Johannesenace16102009-02-03 19:33:06 +00004280 SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
Evan Cheng7e2ff772008-05-08 00:57:18 +00004281 Op.getOperand(Idx));
Evan Chengf0df0312008-05-15 08:39:06 +00004282 return getShuffleVectorZeroOrUndef(V2, Idx, true,
4283 Subtarget->hasSSE2(), DAG);
Evan Cheng7e2ff772008-05-08 00:57:18 +00004284 }
Dan Gohman475871a2008-07-27 21:46:04 +00004285 return SDValue();
Evan Cheng7e2ff772008-05-08 00:57:18 +00004286 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00004287
4288 // If element VT is < 32 bits, convert it to inserts into a zero vector.
Bill Wendling826f36f2007-03-28 00:57:11 +00004289 if (EVTBits == 8 && NumElems == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00004290 SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
Evan Cheng25ab6902006-09-08 06:48:29 +00004291 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004292 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004293 }
4294
Bill Wendling826f36f2007-03-28 00:57:11 +00004295 if (EVTBits == 16 && NumElems == 8) {
Dan Gohman475871a2008-07-27 21:46:04 +00004296 SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
Chris Lattner97a2a562010-08-26 05:24:29 +00004297 *this);
Gabor Greifba36cb52008-08-28 21:40:38 +00004298 if (V.getNode()) return V;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004299 }
4300
4301 // If element VT is == 32 bits, turn it into a number of shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004302 SmallVector<SDValue, 8> V;
Chris Lattner5a88b832007-02-25 07:10:00 +00004303 V.resize(NumElems);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004304 if (NumElems == 4 && NumZero > 0) {
4305 for (unsigned i = 0; i < 4; ++i) {
4306 bool isZero = !(NonZeros & (1 << i));
4307 if (isZero)
Dale Johannesenace16102009-02-03 19:33:06 +00004308 V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004309 else
Dale Johannesenace16102009-02-03 19:33:06 +00004310 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
Evan Cheng0db9fe62006-04-25 20:13:52 +00004311 }
4312
4313 for (unsigned i = 0; i < 2; ++i) {
4314 switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4315 default: break;
4316 case 0:
4317 V[i] = V[i*2]; // Must be a zero vector.
4318 break;
4319 case 1:
Nate Begeman9008ca62009-04-27 18:41:29 +00004320 V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004321 break;
4322 case 2:
Nate Begeman9008ca62009-04-27 18:41:29 +00004323 V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004324 break;
4325 case 3:
Nate Begeman9008ca62009-04-27 18:41:29 +00004326 V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004327 break;
4328 }
4329 }
4330
Nate Begeman9008ca62009-04-27 18:41:29 +00004331 SmallVector<int, 8> MaskVec;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004332 bool Reverse = (NonZeros & 0x3) == 2;
4333 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004334 MaskVec.push_back(Reverse ? 1-i : i);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004335 Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4336 for (unsigned i = 0; i < 2; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004337 MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4338 return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
Evan Cheng0db9fe62006-04-25 20:13:52 +00004339 }
4340
Nate Begemanfdea31a2010-03-24 20:49:50 +00004341 if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4342 // Check for a build vector of consecutive loads.
4343 for (unsigned i = 0; i < NumElems; ++i)
4344 V[i] = Op.getOperand(i);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004345
Nate Begemanfdea31a2010-03-24 20:49:50 +00004346 // Check for elements which are consecutive loads.
4347 SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4348 if (LD.getNode())
4349 return LD;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004350
4351 // For SSE 4.1, use insertps to put the high elements into the low element.
Nate Begemanfdea31a2010-03-24 20:49:50 +00004352 if (getSubtarget()->hasSSE41()) {
Chris Lattner24faf612010-08-28 17:59:08 +00004353 SDValue Result;
4354 if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4355 Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4356 else
4357 Result = DAG.getUNDEF(VT);
Michael J. Spencerec38de22010-10-10 22:04:20 +00004358
Chris Lattner24faf612010-08-28 17:59:08 +00004359 for (unsigned i = 1; i < NumElems; ++i) {
4360 if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4361 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
Nate Begeman9008ca62009-04-27 18:41:29 +00004362 Op.getOperand(i), DAG.getIntPtrConstant(i));
Chris Lattner24faf612010-08-28 17:59:08 +00004363 }
4364 return Result;
Nate Begeman9008ca62009-04-27 18:41:29 +00004365 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00004366
Chris Lattner6e80e442010-08-28 17:15:43 +00004367 // Otherwise, expand into a number of unpckl*, start by extending each of
4368 // our (non-undef) elements to the full vector width with the element in the
4369 // bottom slot of the vector (which generates no code for SSE).
4370 for (unsigned i = 0; i < NumElems; ++i) {
4371 if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4372 V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4373 else
4374 V[i] = DAG.getUNDEF(VT);
4375 }
4376
4377 // Next, we iteratively mix elements, e.g. for v4f32:
Evan Cheng0db9fe62006-04-25 20:13:52 +00004378 // Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4379 // : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4380 // Step 2: unpcklps X, Y ==> <3, 2, 1, 0>
Chris Lattner6e80e442010-08-28 17:15:43 +00004381 unsigned EltStride = NumElems >> 1;
4382 while (EltStride != 0) {
Chris Lattner3ddcc432010-08-28 17:28:30 +00004383 for (unsigned i = 0; i < EltStride; ++i) {
4384 // If V[i+EltStride] is undef and this is the first round of mixing,
4385 // then it is safe to just drop this shuffle: V[i] is already in the
4386 // right place, the one element (since it's the first round) being
4387 // inserted as undef can be dropped. This isn't safe for successive
4388 // rounds because they will permute elements within both vectors.
4389 if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
4390 EltStride == NumElems/2)
4391 continue;
Michael J. Spencerec38de22010-10-10 22:04:20 +00004392
Chris Lattner6e80e442010-08-28 17:15:43 +00004393 V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
Chris Lattner3ddcc432010-08-28 17:28:30 +00004394 }
Chris Lattner6e80e442010-08-28 17:15:43 +00004395 EltStride >>= 1;
Evan Cheng0db9fe62006-04-25 20:13:52 +00004396 }
4397 return V[0];
4398 }
Dan Gohman475871a2008-07-27 21:46:04 +00004399 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00004400}
4401
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004402SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00004403X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
Mon P Wangeb38ebf2010-01-24 00:05:03 +00004404 // We support concatenate two MMX registers and place them in a MMX
4405 // register. This is better than doing a stack convert.
4406 DebugLoc dl = Op.getDebugLoc();
4407 EVT ResVT = Op.getValueType();
4408 assert(Op.getNumOperands() == 2);
4409 assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
4410 ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
4411 int Mask[2];
4412 SDValue InVec = DAG.getNode(ISD::BIT_CONVERT,dl, MVT::v1i64, Op.getOperand(0));
4413 SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4414 InVec = Op.getOperand(1);
4415 if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4416 unsigned NumElts = ResVT.getVectorNumElements();
4417 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, ResVT, VecOp);
4418 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
4419 InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
4420 } else {
4421 InVec = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v1i64, InVec);
4422 SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4423 Mask[0] = 0; Mask[1] = 2;
4424 VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
4425 }
4426 return DAG.getNode(ISD::BIT_CONVERT, dl, ResVT, VecOp);
4427}
4428
Nate Begemanb9a47b82009-02-23 08:49:38 +00004429// v8i16 shuffles - Prefer shuffles in the following order:
4430// 1. [all] pshuflw, pshufhw, optional move
4431// 2. [ssse3] 1 x pshufb
4432// 3. [ssse3] 2 x pshufb + 1 x por
4433// 4. [all] mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004434SDValue
4435X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
4436 SelectionDAG &DAG) const {
4437 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Nate Begeman9008ca62009-04-27 18:41:29 +00004438 SDValue V1 = SVOp->getOperand(0);
4439 SDValue V2 = SVOp->getOperand(1);
4440 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004441 SmallVector<int, 8> MaskVals;
Evan Cheng14b32e12007-12-11 01:46:18 +00004442
Nate Begemanb9a47b82009-02-23 08:49:38 +00004443 // Determine if more than 1 of the words in each of the low and high quadwords
4444 // of the result come from the same quadword of one of the two inputs. Undef
4445 // mask values count as coming from any quadword, for better codegen.
4446 SmallVector<unsigned, 4> LoQuad(4);
4447 SmallVector<unsigned, 4> HiQuad(4);
4448 BitVector InputQuads(4);
4449 for (unsigned i = 0; i < 8; ++i) {
4450 SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
Nate Begeman9008ca62009-04-27 18:41:29 +00004451 int EltIdx = SVOp->getMaskElt(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004452 MaskVals.push_back(EltIdx);
4453 if (EltIdx < 0) {
4454 ++Quad[0];
4455 ++Quad[1];
4456 ++Quad[2];
4457 ++Quad[3];
Evan Cheng14b32e12007-12-11 01:46:18 +00004458 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004459 }
4460 ++Quad[EltIdx / 4];
4461 InputQuads.set(EltIdx / 4);
Evan Cheng14b32e12007-12-11 01:46:18 +00004462 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004463
Nate Begemanb9a47b82009-02-23 08:49:38 +00004464 int BestLoQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004465 unsigned MaxQuad = 1;
4466 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004467 if (LoQuad[i] > MaxQuad) {
4468 BestLoQuad = i;
4469 MaxQuad = LoQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004470 }
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004471 }
4472
Nate Begemanb9a47b82009-02-23 08:49:38 +00004473 int BestHiQuad = -1;
Evan Cheng14b32e12007-12-11 01:46:18 +00004474 MaxQuad = 1;
4475 for (unsigned i = 0; i < 4; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004476 if (HiQuad[i] > MaxQuad) {
4477 BestHiQuad = i;
4478 MaxQuad = HiQuad[i];
Evan Cheng14b32e12007-12-11 01:46:18 +00004479 }
4480 }
4481
Nate Begemanb9a47b82009-02-23 08:49:38 +00004482 // For SSSE3, If all 8 words of the result come from only 1 quadword of each
Eric Christopherfd179292009-08-27 18:07:15 +00004483 // of the two input vectors, shuffle them into one input vector so only a
Nate Begemanb9a47b82009-02-23 08:49:38 +00004484 // single pshufb instruction is necessary. If There are more than 2 input
4485 // quads, disable the next transformation since it does not help SSSE3.
4486 bool V1Used = InputQuads[0] || InputQuads[1];
4487 bool V2Used = InputQuads[2] || InputQuads[3];
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004488 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004489 if (InputQuads.count() == 2 && V1Used && V2Used) {
4490 BestLoQuad = InputQuads.find_first();
4491 BestHiQuad = InputQuads.find_next(BestLoQuad);
4492 }
4493 if (InputQuads.count() > 2) {
4494 BestLoQuad = -1;
4495 BestHiQuad = -1;
4496 }
4497 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004498
Nate Begemanb9a47b82009-02-23 08:49:38 +00004499 // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
4500 // the shuffle mask. If a quad is scored as -1, that means that it contains
4501 // words from all 4 input quadwords.
4502 SDValue NewV;
4503 if (BestLoQuad >= 0 || BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004504 SmallVector<int, 8> MaskV;
4505 MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
4506 MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
Eric Christopherfd179292009-08-27 18:07:15 +00004507 NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004508 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V1),
4509 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V2), &MaskV[0]);
4510 NewV = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004511
Nate Begemanb9a47b82009-02-23 08:49:38 +00004512 // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
4513 // source words for the shuffle, to aid later transformations.
4514 bool AllWordsInNewV = true;
Mon P Wang37b9a192009-03-11 06:35:11 +00004515 bool InOrder[2] = { true, true };
Evan Cheng14b32e12007-12-11 01:46:18 +00004516 for (unsigned i = 0; i != 8; ++i) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004517 int idx = MaskVals[i];
Mon P Wang37b9a192009-03-11 06:35:11 +00004518 if (idx != (int)i)
4519 InOrder[i/4] = false;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004520 if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
Evan Cheng14b32e12007-12-11 01:46:18 +00004521 continue;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004522 AllWordsInNewV = false;
4523 break;
Evan Cheng14b32e12007-12-11 01:46:18 +00004524 }
Bill Wendlinge85dc492008-08-21 22:35:37 +00004525
Nate Begemanb9a47b82009-02-23 08:49:38 +00004526 bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
4527 if (AllWordsInNewV) {
4528 for (int i = 0; i != 8; ++i) {
4529 int idx = MaskVals[i];
4530 if (idx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004531 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004532 idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004533 if ((idx != i) && idx < 4)
4534 pshufhw = false;
4535 if ((idx != i) && idx > 3)
4536 pshuflw = false;
Evan Cheng14b32e12007-12-11 01:46:18 +00004537 }
Nate Begemanb9a47b82009-02-23 08:49:38 +00004538 V1 = NewV;
4539 V2Used = false;
4540 BestLoQuad = 0;
4541 BestHiQuad = 1;
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004542 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004543
Nate Begemanb9a47b82009-02-23 08:49:38 +00004544 // If we've eliminated the use of V2, and the new mask is a pshuflw or
4545 // pshufhw, that's as cheap as it gets. Return the new shuffle.
Mon P Wang37b9a192009-03-11 06:35:11 +00004546 if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004547 unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
4548 unsigned TargetMask = 0;
4549 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
Owen Anderson825b72b2009-08-11 20:47:22 +00004550 DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
Bruno Cardoso Lopes3efc0772010-08-23 20:41:02 +00004551 TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
4552 X86::getShufflePSHUFLWImmediate(NewV.getNode());
4553 V1 = NewV.getOperand(0);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004554 return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
Evan Cheng14b32e12007-12-11 01:46:18 +00004555 }
Evan Cheng14b32e12007-12-11 01:46:18 +00004556 }
Eric Christopherfd179292009-08-27 18:07:15 +00004557
Nate Begemanb9a47b82009-02-23 08:49:38 +00004558 // If we have SSSE3, and all words of the result are from 1 input vector,
4559 // case 2 is generated, otherwise case 3 is generated. If no SSSE3
4560 // is present, fall back to case 4.
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00004561 if (Subtarget->hasSSSE3()) {
Nate Begemanb9a47b82009-02-23 08:49:38 +00004562 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004563
Nate Begemanb9a47b82009-02-23 08:49:38 +00004564 // If we have elements from both input vectors, set the high bit of the
Eric Christopherfd179292009-08-27 18:07:15 +00004565 // shuffle mask element to zero out elements that come from V2 in the V1
Nate Begemanb9a47b82009-02-23 08:49:38 +00004566 // mask, and elements that come from V1 in the V2 mask, so that the two
4567 // results can be OR'd together.
4568 bool TwoInputs = V1Used && V2Used;
4569 for (unsigned i = 0; i != 8; ++i) {
4570 int EltIdx = MaskVals[i] * 2;
4571 if (TwoInputs && (EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004572 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4573 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004574 continue;
4575 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004576 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
4577 pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004578 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004579 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004580 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004581 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004582 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004583 if (!TwoInputs)
Owen Anderson825b72b2009-08-11 20:47:22 +00004584 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
Eric Christopherfd179292009-08-27 18:07:15 +00004585
Nate Begemanb9a47b82009-02-23 08:49:38 +00004586 // Calculate the shuffle mask for the second input, shuffle it, and
4587 // OR it with the first shuffled input.
4588 pshufbMask.clear();
4589 for (unsigned i = 0; i != 8; ++i) {
4590 int EltIdx = MaskVals[i] * 2;
4591 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004592 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
4593 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004594 continue;
4595 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004596 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
4597 pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004598 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004599 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V2);
Eric Christopherfd179292009-08-27 18:07:15 +00004600 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004601 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004602 MVT::v16i8, &pshufbMask[0], 16));
4603 V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
4604 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004605 }
4606
4607 // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
4608 // and update MaskVals with new element order.
4609 BitVector InOrder(8);
4610 if (BestLoQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004611 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004612 for (int i = 0; i != 4; ++i) {
4613 int idx = MaskVals[i];
4614 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004615 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004616 InOrder.set(i);
4617 } else if ((idx / 4) == BestLoQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004618 MaskV.push_back(idx & 3);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004619 InOrder.set(i);
4620 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004621 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004622 }
4623 }
4624 for (unsigned i = 4; i != 8; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004625 MaskV.push_back(i);
Owen Anderson825b72b2009-08-11 20:47:22 +00004626 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004627 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004628
4629 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4630 NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
4631 NewV.getOperand(0),
4632 X86::getShufflePSHUFLWImmediate(NewV.getNode()),
4633 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004634 }
Eric Christopherfd179292009-08-27 18:07:15 +00004635
Nate Begemanb9a47b82009-02-23 08:49:38 +00004636 // If BestHi >= 0, generate a pshufhw to put the high elements in order,
4637 // and update MaskVals with the new element order.
4638 if (BestHiQuad >= 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004639 SmallVector<int, 8> MaskV;
Nate Begemanb9a47b82009-02-23 08:49:38 +00004640 for (unsigned i = 0; i != 4; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00004641 MaskV.push_back(i);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004642 for (unsigned i = 4; i != 8; ++i) {
4643 int idx = MaskVals[i];
4644 if (idx < 0) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004645 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004646 InOrder.set(i);
4647 } else if ((idx / 4) == BestHiQuad) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004648 MaskV.push_back((idx & 3) + 4);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004649 InOrder.set(i);
4650 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004651 MaskV.push_back(-1);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004652 }
4653 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004654 NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
Nate Begeman9008ca62009-04-27 18:41:29 +00004655 &MaskV[0]);
Bruno Cardoso Lopes8878e212010-08-24 01:16:15 +00004656
4657 if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
4658 NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
4659 NewV.getOperand(0),
4660 X86::getShufflePSHUFHWImmediate(NewV.getNode()),
4661 DAG);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004662 }
Eric Christopherfd179292009-08-27 18:07:15 +00004663
Nate Begemanb9a47b82009-02-23 08:49:38 +00004664 // In case BestHi & BestLo were both -1, which means each quadword has a word
4665 // from each of the four input quadwords, calculate the InOrder bitvector now
4666 // before falling through to the insert/extract cleanup.
4667 if (BestLoQuad == -1 && BestHiQuad == -1) {
4668 NewV = V1;
4669 for (int i = 0; i != 8; ++i)
4670 if (MaskVals[i] < 0 || MaskVals[i] == i)
4671 InOrder.set(i);
4672 }
Eric Christopherfd179292009-08-27 18:07:15 +00004673
Nate Begemanb9a47b82009-02-23 08:49:38 +00004674 // The other elements are put in the right place using pextrw and pinsrw.
4675 for (unsigned i = 0; i != 8; ++i) {
4676 if (InOrder[i])
4677 continue;
4678 int EltIdx = MaskVals[i];
4679 if (EltIdx < 0)
4680 continue;
4681 SDValue ExtOp = (EltIdx < 8)
Owen Anderson825b72b2009-08-11 20:47:22 +00004682 ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004683 DAG.getIntPtrConstant(EltIdx))
Owen Anderson825b72b2009-08-11 20:47:22 +00004684 : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004685 DAG.getIntPtrConstant(EltIdx - 8));
Owen Anderson825b72b2009-08-11 20:47:22 +00004686 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004687 DAG.getIntPtrConstant(i));
4688 }
4689 return NewV;
4690}
4691
4692// v16i8 shuffles - Prefer shuffles in the following order:
4693// 1. [ssse3] 1 x pshufb
4694// 2. [ssse3] 2 x pshufb + 1 x por
4695// 3. [all] v8i16 shuffle + N x pextrw + rotate + pinsrw
4696static
Nate Begeman9008ca62009-04-27 18:41:29 +00004697SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
Dan Gohmand858e902010-04-17 15:26:15 +00004698 SelectionDAG &DAG,
4699 const X86TargetLowering &TLI) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004700 SDValue V1 = SVOp->getOperand(0);
4701 SDValue V2 = SVOp->getOperand(1);
4702 DebugLoc dl = SVOp->getDebugLoc();
Nate Begemanb9a47b82009-02-23 08:49:38 +00004703 SmallVector<int, 16> MaskVals;
Nate Begeman9008ca62009-04-27 18:41:29 +00004704 SVOp->getMask(MaskVals);
Eric Christopherfd179292009-08-27 18:07:15 +00004705
Nate Begemanb9a47b82009-02-23 08:49:38 +00004706 // If we have SSSE3, case 1 is generated when all result bytes come from
Eric Christopherfd179292009-08-27 18:07:15 +00004707 // one of the inputs. Otherwise, case 2 is generated. If no SSSE3 is
Nate Begemanb9a47b82009-02-23 08:49:38 +00004708 // present, fall back to case 3.
4709 // FIXME: kill V2Only once shuffles are canonizalized by getNode.
4710 bool V1Only = true;
4711 bool V2Only = true;
4712 for (unsigned i = 0; i < 16; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004713 int EltIdx = MaskVals[i];
Nate Begemanb9a47b82009-02-23 08:49:38 +00004714 if (EltIdx < 0)
4715 continue;
4716 if (EltIdx < 16)
4717 V2Only = false;
4718 else
4719 V1Only = false;
4720 }
Eric Christopherfd179292009-08-27 18:07:15 +00004721
Nate Begemanb9a47b82009-02-23 08:49:38 +00004722 // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
4723 if (TLI.getSubtarget()->hasSSSE3()) {
4724 SmallVector<SDValue,16> pshufbMask;
Eric Christopherfd179292009-08-27 18:07:15 +00004725
Nate Begemanb9a47b82009-02-23 08:49:38 +00004726 // If all result elements are from one input vector, then only translate
Eric Christopherfd179292009-08-27 18:07:15 +00004727 // undef mask values to 0x80 (zero out result) in the pshufb mask.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004728 //
4729 // Otherwise, we have elements from both input vectors, and must zero out
4730 // elements that come from V2 in the first mask, and V1 in the second mask
4731 // so that we can OR them together.
4732 bool TwoInputs = !(V1Only || V2Only);
4733 for (unsigned i = 0; i != 16; ++i) {
4734 int EltIdx = MaskVals[i];
4735 if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004736 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004737 continue;
4738 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004739 pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004740 }
4741 // If all the elements are from V2, assign it to V1 and return after
4742 // building the first pshufb.
4743 if (V2Only)
4744 V1 = V2;
Owen Anderson825b72b2009-08-11 20:47:22 +00004745 V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
Evan Chenga87008d2009-02-25 22:49:59 +00004746 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004747 MVT::v16i8, &pshufbMask[0], 16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004748 if (!TwoInputs)
4749 return V1;
Eric Christopherfd179292009-08-27 18:07:15 +00004750
Nate Begemanb9a47b82009-02-23 08:49:38 +00004751 // Calculate the shuffle mask for the second input, shuffle it, and
4752 // OR it with the first shuffled input.
4753 pshufbMask.clear();
4754 for (unsigned i = 0; i != 16; ++i) {
4755 int EltIdx = MaskVals[i];
4756 if (EltIdx < 16) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004757 pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004758 continue;
4759 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004760 pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004761 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004762 V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
Evan Chenga87008d2009-02-25 22:49:59 +00004763 DAG.getNode(ISD::BUILD_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00004764 MVT::v16i8, &pshufbMask[0], 16));
4765 return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004766 }
Eric Christopherfd179292009-08-27 18:07:15 +00004767
Nate Begemanb9a47b82009-02-23 08:49:38 +00004768 // No SSSE3 - Calculate in place words and then fix all out of place words
4769 // With 0-16 extracts & inserts. Worst case is 16 bytes out of order from
4770 // the 16 different words that comprise the two doublequadword input vectors.
Owen Anderson825b72b2009-08-11 20:47:22 +00004771 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
4772 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V2);
Nate Begemanb9a47b82009-02-23 08:49:38 +00004773 SDValue NewV = V2Only ? V2 : V1;
4774 for (int i = 0; i != 8; ++i) {
4775 int Elt0 = MaskVals[i*2];
4776 int Elt1 = MaskVals[i*2+1];
Eric Christopherfd179292009-08-27 18:07:15 +00004777
Nate Begemanb9a47b82009-02-23 08:49:38 +00004778 // This word of the result is all undef, skip it.
4779 if (Elt0 < 0 && Elt1 < 0)
4780 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004781
Nate Begemanb9a47b82009-02-23 08:49:38 +00004782 // This word of the result is already in the correct place, skip it.
4783 if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
4784 continue;
4785 if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
4786 continue;
Eric Christopherfd179292009-08-27 18:07:15 +00004787
Nate Begemanb9a47b82009-02-23 08:49:38 +00004788 SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
4789 SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
4790 SDValue InsElt;
Mon P Wang6b3ef692009-03-11 18:47:57 +00004791
4792 // If Elt0 and Elt1 are defined, are consecutive, and can be load
4793 // using a single extract together, load it and store it.
4794 if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004795 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004796 DAG.getIntPtrConstant(Elt1 / 2));
Owen Anderson825b72b2009-08-11 20:47:22 +00004797 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Mon P Wang6b3ef692009-03-11 18:47:57 +00004798 DAG.getIntPtrConstant(i));
4799 continue;
4800 }
4801
Nate Begemanb9a47b82009-02-23 08:49:38 +00004802 // If Elt1 is defined, extract it from the appropriate source. If the
Mon P Wang6b3ef692009-03-11 18:47:57 +00004803 // source byte is not also odd, shift the extracted word left 8 bits
4804 // otherwise clear the bottom 8 bits if we need to do an or.
Nate Begemanb9a47b82009-02-23 08:49:38 +00004805 if (Elt1 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004806 InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004807 DAG.getIntPtrConstant(Elt1 / 2));
4808 if ((Elt1 & 1) == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004809 InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004810 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004811 else if (Elt0 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004812 InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
4813 DAG.getConstant(0xFF00, MVT::i16));
Nate Begemanb9a47b82009-02-23 08:49:38 +00004814 }
4815 // If Elt0 is defined, extract it from the appropriate source. If the
4816 // source byte is not also even, shift the extracted word right 8 bits. If
4817 // Elt1 was also defined, OR the extracted values together before
4818 // inserting them in the result.
4819 if (Elt0 >= 0) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004820 SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004821 Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
4822 if ((Elt0 & 1) != 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004823 InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004824 DAG.getConstant(8, TLI.getShiftAmountTy()));
Mon P Wang6b3ef692009-03-11 18:47:57 +00004825 else if (Elt1 >= 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00004826 InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
4827 DAG.getConstant(0x00FF, MVT::i16));
4828 InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
Nate Begemanb9a47b82009-02-23 08:49:38 +00004829 : InsElt0;
4830 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004831 NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
Nate Begemanb9a47b82009-02-23 08:49:38 +00004832 DAG.getIntPtrConstant(i));
4833 }
Owen Anderson825b72b2009-08-11 20:47:22 +00004834 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, NewV);
Evan Cheng14b32e12007-12-11 01:46:18 +00004835}
4836
Evan Cheng7a831ce2007-12-15 03:00:47 +00004837/// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004838/// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
Evan Cheng7a831ce2007-12-15 03:00:47 +00004839/// done when every pair / quad of shuffle mask elements point to elements in
4840/// the right sequence. e.g.
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004841/// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
Evan Cheng14b32e12007-12-11 01:46:18 +00004842static
Nate Begeman9008ca62009-04-27 18:41:29 +00004843SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00004844 SelectionDAG &DAG, DebugLoc dl) {
Owen Andersone50ed302009-08-10 22:56:29 +00004845 EVT VT = SVOp->getValueType(0);
Nate Begeman9008ca62009-04-27 18:41:29 +00004846 SDValue V1 = SVOp->getOperand(0);
4847 SDValue V2 = SVOp->getOperand(1);
4848 unsigned NumElems = VT.getVectorNumElements();
Evan Cheng7a831ce2007-12-15 03:00:47 +00004849 unsigned NewWidth = (NumElems == 4) ? 2 : 4;
Bruno Cardoso Lopes0a7dd4f2010-09-08 18:12:31 +00004850 EVT NewVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00004851 switch (VT.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004852 default: assert(false && "Unexpected!");
Owen Anderson825b72b2009-08-11 20:47:22 +00004853 case MVT::v4f32: NewVT = MVT::v2f64; break;
4854 case MVT::v4i32: NewVT = MVT::v2i64; break;
4855 case MVT::v8i16: NewVT = MVT::v4i32; break;
4856 case MVT::v16i8: NewVT = MVT::v4i32; break;
Evan Cheng7a831ce2007-12-15 03:00:47 +00004857 }
4858
Nate Begeman9008ca62009-04-27 18:41:29 +00004859 int Scale = NumElems / NewWidth;
4860 SmallVector<int, 8> MaskVec;
Evan Cheng14b32e12007-12-11 01:46:18 +00004861 for (unsigned i = 0; i < NumElems; i += Scale) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004862 int StartIdx = -1;
4863 for (int j = 0; j < Scale; ++j) {
4864 int EltIdx = SVOp->getMaskElt(i+j);
4865 if (EltIdx < 0)
Evan Cheng14b32e12007-12-11 01:46:18 +00004866 continue;
Nate Begeman9008ca62009-04-27 18:41:29 +00004867 if (StartIdx == -1)
Evan Cheng14b32e12007-12-11 01:46:18 +00004868 StartIdx = EltIdx - (EltIdx % Scale);
4869 if (EltIdx != StartIdx + j)
Dan Gohman475871a2008-07-27 21:46:04 +00004870 return SDValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00004871 }
Nate Begeman9008ca62009-04-27 18:41:29 +00004872 if (StartIdx == -1)
4873 MaskVec.push_back(-1);
Evan Cheng14b32e12007-12-11 01:46:18 +00004874 else
Nate Begeman9008ca62009-04-27 18:41:29 +00004875 MaskVec.push_back(StartIdx / Scale);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004876 }
4877
Dale Johannesenace16102009-02-03 19:33:06 +00004878 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V1);
4879 V2 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V2);
Nate Begeman9008ca62009-04-27 18:41:29 +00004880 return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
Evan Cheng8a86c3f2007-12-07 08:07:39 +00004881}
4882
Evan Chengd880b972008-05-09 21:53:03 +00004883/// getVZextMovL - Return a zero-extending vector move low node.
Evan Cheng7e2ff772008-05-08 00:57:18 +00004884///
Owen Andersone50ed302009-08-10 22:56:29 +00004885static SDValue getVZextMovL(EVT VT, EVT OpVT,
Nate Begeman9008ca62009-04-27 18:41:29 +00004886 SDValue SrcOp, SelectionDAG &DAG,
4887 const X86Subtarget *Subtarget, DebugLoc dl) {
Owen Anderson825b72b2009-08-11 20:47:22 +00004888 if (VT == MVT::v2f64 || VT == MVT::v4f32) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004889 LoadSDNode *LD = NULL;
Gabor Greifba36cb52008-08-28 21:40:38 +00004890 if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
Evan Cheng7e2ff772008-05-08 00:57:18 +00004891 LD = dyn_cast<LoadSDNode>(SrcOp);
4892 if (!LD) {
4893 // movssrr and movsdrr do not clear top bits. Try to use movd, movq
4894 // instead.
Owen Anderson766b5ef2009-08-11 21:59:30 +00004895 MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
Duncan Sandscdfad362010-11-03 12:17:33 +00004896 if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00004897 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
4898 SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT &&
Owen Anderson766b5ef2009-08-11 21:59:30 +00004899 SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00004900 // PR2108
Owen Anderson825b72b2009-08-11 20:47:22 +00004901 OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
Dale Johannesenace16102009-02-03 19:33:06 +00004902 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4903 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
4904 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
4905 OpVT,
Gabor Greif327ef032008-08-28 23:19:51 +00004906 SrcOp.getOperand(0)
4907 .getOperand(0))));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004908 }
4909 }
4910 }
4911
Dale Johannesenace16102009-02-03 19:33:06 +00004912 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4913 DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004914 DAG.getNode(ISD::BIT_CONVERT, dl,
Dale Johannesenace16102009-02-03 19:33:06 +00004915 OpVT, SrcOp)));
Evan Cheng7e2ff772008-05-08 00:57:18 +00004916}
4917
Evan Chengace3c172008-07-22 21:13:36 +00004918/// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
4919/// shuffles.
Dan Gohman475871a2008-07-27 21:46:04 +00004920static SDValue
Nate Begeman9008ca62009-04-27 18:41:29 +00004921LowerVECTOR_SHUFFLE_4wide(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
4922 SDValue V1 = SVOp->getOperand(0);
4923 SDValue V2 = SVOp->getOperand(1);
4924 DebugLoc dl = SVOp->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00004925 EVT VT = SVOp->getValueType(0);
Eric Christopherfd179292009-08-27 18:07:15 +00004926
Evan Chengace3c172008-07-22 21:13:36 +00004927 SmallVector<std::pair<int, int>, 8> Locs;
Rafael Espindola833a9902008-08-28 18:32:53 +00004928 Locs.resize(4);
Nate Begeman9008ca62009-04-27 18:41:29 +00004929 SmallVector<int, 8> Mask1(4U, -1);
4930 SmallVector<int, 8> PermMask;
4931 SVOp->getMask(PermMask);
4932
Evan Chengace3c172008-07-22 21:13:36 +00004933 unsigned NumHi = 0;
4934 unsigned NumLo = 0;
Evan Chengace3c172008-07-22 21:13:36 +00004935 for (unsigned i = 0; i != 4; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004936 int Idx = PermMask[i];
4937 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00004938 Locs[i] = std::make_pair(-1, -1);
4939 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00004940 assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
4941 if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00004942 Locs[i] = std::make_pair(0, NumLo);
Nate Begeman9008ca62009-04-27 18:41:29 +00004943 Mask1[NumLo] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004944 NumLo++;
4945 } else {
4946 Locs[i] = std::make_pair(1, NumHi);
4947 if (2+NumHi < 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00004948 Mask1[2+NumHi] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004949 NumHi++;
4950 }
4951 }
4952 }
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004953
Evan Chengace3c172008-07-22 21:13:36 +00004954 if (NumLo <= 2 && NumHi <= 2) {
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004955 // If no more than two elements come from either vector. This can be
4956 // implemented with two shuffles. First shuffle gather the elements.
4957 // The second shuffle, which takes the first shuffle as both of its
4958 // vector operands, put the elements into the right order.
Nate Begeman9008ca62009-04-27 18:41:29 +00004959 V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004960
Nate Begeman9008ca62009-04-27 18:41:29 +00004961 SmallVector<int, 8> Mask2(4U, -1);
Eric Christopherfd179292009-08-27 18:07:15 +00004962
Evan Chengace3c172008-07-22 21:13:36 +00004963 for (unsigned i = 0; i != 4; ++i) {
4964 if (Locs[i].first == -1)
4965 continue;
4966 else {
4967 unsigned Idx = (i < 2) ? 0 : 4;
4968 Idx += Locs[i].first * 2 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00004969 Mask2[i] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00004970 }
4971 }
4972
Nate Begeman9008ca62009-04-27 18:41:29 +00004973 return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004974 } else if (NumLo == 3 || NumHi == 3) {
4975 // Otherwise, we must have three elements from one vector, call it X, and
4976 // one element from the other, call it Y. First, use a shufps to build an
4977 // intermediate vector with the one element from Y and the element from X
4978 // that will be in the same half in the final destination (the indexes don't
4979 // matter). Then, use a shufps to build the final vector, taking the half
4980 // containing the element from Y from the intermediate, and the other half
4981 // from X.
4982 if (NumHi == 3) {
4983 // Normalize it so the 3 elements come from V1.
Nate Begeman9008ca62009-04-27 18:41:29 +00004984 CommuteVectorShuffleMask(PermMask, VT);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004985 std::swap(V1, V2);
4986 }
4987
4988 // Find the element from V2.
4989 unsigned HiIndex;
4990 for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
Nate Begeman9008ca62009-04-27 18:41:29 +00004991 int Val = PermMask[HiIndex];
4992 if (Val < 0)
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004993 continue;
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00004994 if (Val >= 4)
4995 break;
4996 }
4997
Nate Begeman9008ca62009-04-27 18:41:29 +00004998 Mask1[0] = PermMask[HiIndex];
4999 Mask1[1] = -1;
5000 Mask1[2] = PermMask[HiIndex^1];
5001 Mask1[3] = -1;
5002 V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005003
5004 if (HiIndex >= 2) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005005 Mask1[0] = PermMask[0];
5006 Mask1[1] = PermMask[1];
5007 Mask1[2] = HiIndex & 1 ? 6 : 4;
5008 Mask1[3] = HiIndex & 1 ? 4 : 6;
5009 return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005010 } else {
Nate Begeman9008ca62009-04-27 18:41:29 +00005011 Mask1[0] = HiIndex & 1 ? 2 : 0;
5012 Mask1[1] = HiIndex & 1 ? 0 : 2;
5013 Mask1[2] = PermMask[2];
5014 Mask1[3] = PermMask[3];
5015 if (Mask1[2] >= 0)
5016 Mask1[2] += 4;
5017 if (Mask1[3] >= 0)
5018 Mask1[3] += 4;
5019 return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
Evan Cheng5e6ebaf2008-07-23 00:22:17 +00005020 }
Evan Chengace3c172008-07-22 21:13:36 +00005021 }
5022
5023 // Break it into (shuffle shuffle_hi, shuffle_lo).
5024 Locs.clear();
Nate Begeman9008ca62009-04-27 18:41:29 +00005025 SmallVector<int,8> LoMask(4U, -1);
5026 SmallVector<int,8> HiMask(4U, -1);
5027
5028 SmallVector<int,8> *MaskPtr = &LoMask;
Evan Chengace3c172008-07-22 21:13:36 +00005029 unsigned MaskIdx = 0;
5030 unsigned LoIdx = 0;
5031 unsigned HiIdx = 2;
5032 for (unsigned i = 0; i != 4; ++i) {
5033 if (i == 2) {
5034 MaskPtr = &HiMask;
5035 MaskIdx = 1;
5036 LoIdx = 0;
5037 HiIdx = 2;
5038 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005039 int Idx = PermMask[i];
5040 if (Idx < 0) {
Evan Chengace3c172008-07-22 21:13:36 +00005041 Locs[i] = std::make_pair(-1, -1);
Nate Begeman9008ca62009-04-27 18:41:29 +00005042 } else if (Idx < 4) {
Evan Chengace3c172008-07-22 21:13:36 +00005043 Locs[i] = std::make_pair(MaskIdx, LoIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005044 (*MaskPtr)[LoIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005045 LoIdx++;
5046 } else {
5047 Locs[i] = std::make_pair(MaskIdx, HiIdx);
Nate Begeman9008ca62009-04-27 18:41:29 +00005048 (*MaskPtr)[HiIdx] = Idx;
Evan Chengace3c172008-07-22 21:13:36 +00005049 HiIdx++;
5050 }
5051 }
5052
Nate Begeman9008ca62009-04-27 18:41:29 +00005053 SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5054 SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5055 SmallVector<int, 8> MaskOps;
Evan Chengace3c172008-07-22 21:13:36 +00005056 for (unsigned i = 0; i != 4; ++i) {
5057 if (Locs[i].first == -1) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005058 MaskOps.push_back(-1);
Evan Chengace3c172008-07-22 21:13:36 +00005059 } else {
5060 unsigned Idx = Locs[i].first * 4 + Locs[i].second;
Nate Begeman9008ca62009-04-27 18:41:29 +00005061 MaskOps.push_back(Idx);
Evan Chengace3c172008-07-22 21:13:36 +00005062 }
5063 }
Nate Begeman9008ca62009-04-27 18:41:29 +00005064 return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
Evan Chengace3c172008-07-22 21:13:36 +00005065}
5066
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005067static bool MayFoldVectorLoad(SDValue V) {
5068 if (V.hasOneUse() && V.getOpcode() == ISD::BIT_CONVERT)
5069 V = V.getOperand(0);
5070 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5071 V = V.getOperand(0);
5072 if (MayFoldLoad(V))
5073 return true;
5074 return false;
5075}
5076
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005077// FIXME: the version above should always be used. Since there's
5078// a bug where several vector shuffles can't be folded because the
5079// DAG is not updated during lowering and a node claims to have two
5080// uses while it only has one, use this version, and let isel match
5081// another instruction if the load really happens to have more than
5082// one use. Remove this version after this bug get fixed.
Evan Cheng835580f2010-10-07 20:50:20 +00005083// rdar://8434668, PR8156
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005084static bool RelaxedMayFoldVectorLoad(SDValue V) {
5085 if (V.hasOneUse() && V.getOpcode() == ISD::BIT_CONVERT)
5086 V = V.getOperand(0);
5087 if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5088 V = V.getOperand(0);
5089 if (ISD::isNormalLoad(V.getNode()))
5090 return true;
5091 return false;
5092}
5093
5094/// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5095/// a vector extract, and if both can be later optimized into a single load.
5096/// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5097/// here because otherwise a target specific shuffle node is going to be
5098/// emitted for this shuffle, and the optimization not done.
5099/// FIXME: This is probably not the best approach, but fix the problem
5100/// until the right path is decided.
5101static
5102bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5103 const TargetLowering &TLI) {
5104 EVT VT = V.getValueType();
5105 ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5106
5107 // Be sure that the vector shuffle is present in a pattern like this:
5108 // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5109 if (!V.hasOneUse())
5110 return false;
5111
5112 SDNode *N = *V.getNode()->use_begin();
5113 if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5114 return false;
5115
5116 SDValue EltNo = N->getOperand(1);
5117 if (!isa<ConstantSDNode>(EltNo))
5118 return false;
5119
5120 // If the bit convert changed the number of elements, it is unsafe
5121 // to examine the mask.
5122 bool HasShuffleIntoBitcast = false;
5123 if (V.getOpcode() == ISD::BIT_CONVERT) {
5124 EVT SrcVT = V.getOperand(0).getValueType();
5125 if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5126 return false;
5127 V = V.getOperand(0);
5128 HasShuffleIntoBitcast = true;
5129 }
5130
5131 // Select the input vector, guarding against out of range extract vector.
5132 unsigned NumElems = VT.getVectorNumElements();
5133 unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5134 int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5135 V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5136
5137 // Skip one more bit_convert if necessary
5138 if (V.getOpcode() == ISD::BIT_CONVERT)
5139 V = V.getOperand(0);
5140
5141 if (ISD::isNormalLoad(V.getNode())) {
5142 // Is the original load suitable?
5143 LoadSDNode *LN0 = cast<LoadSDNode>(V);
5144
5145 // FIXME: avoid the multi-use bug that is preventing lots of
5146 // of foldings to be detected, this is still wrong of course, but
5147 // give the temporary desired behavior, and if it happens that
5148 // the load has real more uses, during isel it will not fold, and
5149 // will generate poor code.
5150 if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5151 return false;
5152
5153 if (!HasShuffleIntoBitcast)
5154 return true;
5155
5156 // If there's a bitcast before the shuffle, check if the load type and
5157 // alignment is valid.
5158 unsigned Align = LN0->getAlignment();
5159 unsigned NewAlign =
5160 TLI.getTargetData()->getABITypeAlignment(
5161 VT.getTypeForEVT(*DAG.getContext()));
5162
5163 if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5164 return false;
5165 }
5166
5167 return true;
5168}
5169
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005170static
Evan Cheng835580f2010-10-07 20:50:20 +00005171SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5172 EVT VT = Op.getValueType();
5173
5174 // Canonizalize to v2f64.
5175 V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, V1);
5176 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
5177 getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5178 V1, DAG));
5179}
5180
5181static
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005182SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5183 bool HasSSE2) {
5184 SDValue V1 = Op.getOperand(0);
5185 SDValue V2 = Op.getOperand(1);
5186 EVT VT = Op.getValueType();
5187
5188 assert(VT != MVT::v2i64 && "unsupported shuffle type");
5189
5190 if (HasSSE2 && VT == MVT::v2f64)
5191 return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5192
5193 // v4f32 or v4i32
5194 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5195}
5196
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005197static
5198SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5199 SDValue V1 = Op.getOperand(0);
5200 SDValue V2 = Op.getOperand(1);
5201 EVT VT = Op.getValueType();
5202
5203 assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5204 "unsupported shuffle type");
5205
5206 if (V2.getOpcode() == ISD::UNDEF)
5207 V2 = V1;
5208
5209 // v4i32 or v4f32
5210 return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5211}
5212
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005213static
5214SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5215 SDValue V1 = Op.getOperand(0);
5216 SDValue V2 = Op.getOperand(1);
5217 EVT VT = Op.getValueType();
5218 unsigned NumElems = VT.getVectorNumElements();
5219
5220 // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5221 // operand of these instructions is only memory, so check if there's a
5222 // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5223 // same masks.
5224 bool CanFoldLoad = false;
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005225
Bruno Cardoso Lopesd00bfe12010-09-02 02:35:51 +00005226 // Trivial case, when V2 comes from a load.
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005227 if (MayFoldVectorLoad(V2))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005228 CanFoldLoad = true;
5229
5230 // When V1 is a load, it can be folded later into a store in isel, example:
5231 // (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5232 // turns into:
5233 // (MOVLPSmr addr:$src1, VR128:$src2)
5234 // So, recognize this potential and also use MOVLPS or MOVLPD
Bruno Cardoso Lopes2a446062010-09-03 20:20:02 +00005235 if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00005236 CanFoldLoad = true;
5237
5238 if (CanFoldLoad) {
5239 if (HasSSE2 && NumElems == 2)
5240 return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5241
5242 if (NumElems == 4)
5243 return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5244 }
5245
5246 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5247 // movl and movlp will both match v2i64, but v2i64 is never matched by
5248 // movl earlier because we make it strict to avoid messing with the movlp load
5249 // folding logic (see the code above getMOVLP call). Match it here then,
5250 // this is horrible, but will stay like this until we move all shuffle
5251 // matching to x86 specific nodes. Note that for the 1st condition all
5252 // types are matched with movsd.
5253 if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5254 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5255 else if (HasSSE2)
5256 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5257
5258
5259 assert(VT != MVT::v4i32 && "unsupported shuffle type");
5260
5261 // Invert the operand order and use SHUFPS to match it.
5262 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5263 X86::getShuffleSHUFImmediate(SVOp), DAG);
5264}
5265
Bruno Cardoso Lopesbe8b0842010-09-03 20:10:35 +00005266static inline unsigned getUNPCKLOpcode(EVT VT) {
5267 switch(VT.getSimpleVT().SimpleTy) {
5268 case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5269 case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
5270 case MVT::v4f32: return X86ISD::UNPCKLPS;
5271 case MVT::v2f64: return X86ISD::UNPCKLPD;
5272 case MVT::v16i8: return X86ISD::PUNPCKLBW;
5273 case MVT::v8i16: return X86ISD::PUNPCKLWD;
5274 default:
5275 llvm_unreachable("Unknow type for unpckl");
5276 }
5277 return 0;
5278}
5279
5280static inline unsigned getUNPCKHOpcode(EVT VT) {
5281 switch(VT.getSimpleVT().SimpleTy) {
5282 case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5283 case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5284 case MVT::v4f32: return X86ISD::UNPCKHPS;
5285 case MVT::v2f64: return X86ISD::UNPCKHPD;
5286 case MVT::v16i8: return X86ISD::PUNPCKHBW;
5287 case MVT::v8i16: return X86ISD::PUNPCKHWD;
5288 default:
5289 llvm_unreachable("Unknow type for unpckh");
5290 }
5291 return 0;
5292}
5293
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005294static
5295SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005296 const TargetLowering &TLI,
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005297 const X86Subtarget *Subtarget) {
5298 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5299 EVT VT = Op.getValueType();
5300 DebugLoc dl = Op.getDebugLoc();
5301 SDValue V1 = Op.getOperand(0);
5302 SDValue V2 = Op.getOperand(1);
5303
5304 if (isZeroShuffle(SVOp))
5305 return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
5306
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005307 // Handle splat operations
5308 if (SVOp->isSplat()) {
5309 // Special case, this is the only place now where it's
5310 // allowed to return a vector_shuffle operation without
5311 // using a target specific node, because *hopefully* it
5312 // will be optimized away by the dag combiner.
5313 if (VT.getVectorNumElements() <= 4 &&
5314 CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
5315 return Op;
5316
5317 // Handle splats by matching through known masks
5318 if (VT.getVectorNumElements() <= 4)
5319 return SDValue();
5320
Evan Cheng835580f2010-10-07 20:50:20 +00005321 // Canonicalize all of the remaining to v4f32.
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005322 return PromoteSplat(SVOp, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005323 }
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005324
5325 // If the shuffle can be profitably rewritten as a narrower shuffle, then
5326 // do it!
5327 if (VT == MVT::v8i16 || VT == MVT::v16i8) {
5328 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5329 if (NewOp.getNode())
5330 return DAG.getNode(ISD::BIT_CONVERT, dl, VT, NewOp);
5331 } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
5332 // FIXME: Figure out a cleaner way to do this.
5333 // Try to make use of movq to zero out the top part.
5334 if (ISD::isBuildVectorAllZeros(V2.getNode())) {
5335 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5336 if (NewOp.getNode()) {
5337 if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
5338 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
5339 DAG, Subtarget, dl);
5340 }
5341 } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
5342 SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5343 if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
5344 return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
5345 DAG, Subtarget, dl);
5346 }
5347 }
5348 return SDValue();
5349}
5350
Dan Gohman475871a2008-07-27 21:46:04 +00005351SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005352X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00005353 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +00005354 SDValue V1 = Op.getOperand(0);
5355 SDValue V2 = Op.getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +00005356 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005357 DebugLoc dl = Op.getDebugLoc();
Nate Begeman9008ca62009-04-27 18:41:29 +00005358 unsigned NumElems = VT.getVectorNumElements();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005359 bool isMMX = VT.getSizeInBits() == 64;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005360 bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
5361 bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
Evan Chengd9b8e402006-10-16 06:36:00 +00005362 bool V1IsSplat = false;
5363 bool V2IsSplat = false;
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005364 bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005365 bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005366 bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005367 MachineFunction &MF = DAG.getMachineFunction();
5368 bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005369
Dale Johannesen0488fb62010-09-30 23:57:10 +00005370 // Shuffle operations on MMX not supported.
5371 if (isMMX)
Bruno Cardoso Lopes58277b12010-09-07 18:41:45 +00005372 return Op;
5373
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005374 // Vector shuffle lowering takes 3 steps:
5375 //
5376 // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
5377 // narrowing and commutation of operands should be handled.
5378 // 2) Matching of shuffles with known shuffle masks to x86 target specific
5379 // shuffle nodes.
5380 // 3) Rewriting of unmatched masks into new generic shuffle operations,
5381 // so the shuffle can be broken into other shuffles and the legalizer can
5382 // try the lowering again.
5383 //
5384 // The general ideia is that no vector_shuffle operation should be left to
5385 // be matched during isel, all of them must be converted to a target specific
5386 // node here.
Bruno Cardoso Lopes0d1340b2010-09-07 20:20:27 +00005387
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005388 // Normalize the input vectors. Here splats, zeroed vectors, profitable
5389 // narrowing and commutation of operands should be handled. The actual code
5390 // doesn't include all of those, work in progress...
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005391 SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
Bruno Cardoso Lopes90462b42010-09-07 21:03:14 +00005392 if (NewOp.getNode())
5393 return NewOp;
Eric Christopherfd179292009-08-27 18:07:15 +00005394
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005395 // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
5396 // unpckh_undef). Only use pshufd if speed is more important than size.
5397 if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
5398 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5399 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5400 if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
5401 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5402 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
Bruno Cardoso Lopes3722f002010-09-02 05:23:12 +00005403
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005404 if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
Dale Johannesen0488fb62010-09-30 23:57:10 +00005405 RelaxedMayFoldVectorLoad(V1))
Evan Cheng835580f2010-10-07 20:50:20 +00005406 return getMOVDDup(Op, dl, V1, DAG);
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005407
Dale Johannesen0488fb62010-09-30 23:57:10 +00005408 if (X86::isMOVHLPS_v_undef_Mask(SVOp))
Bruno Cardoso Lopes1485cc22010-09-08 17:43:25 +00005409 return getMOVHighToLow(Op, dl, DAG);
5410
5411 // Use to match splats
5412 if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
5413 (VT == MVT::v2f64 || VT == MVT::v2i64))
5414 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5415
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005416 if (X86::isPSHUFDMask(SVOp)) {
5417 // The actual implementation will match the mask in the if above and then
5418 // during isel it can match several different instructions, not only pshufd
5419 // as its name says, sad but true, emulate the behavior for now...
5420 if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
5421 return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
5422
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005423 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5424
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005425 if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005426 return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
5427
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005428 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes7338bbd2010-08-25 02:35:37 +00005429 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
5430 TargetMask, DAG);
5431
5432 if (VT == MVT::v4f32)
5433 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
5434 TargetMask, DAG);
5435 }
Eric Christopherfd179292009-08-27 18:07:15 +00005436
Evan Chengf26ffe92008-05-29 08:22:04 +00005437 // Check if this can be converted into a logical shift.
5438 bool isLeft = false;
5439 unsigned ShAmt = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00005440 SDValue ShVal;
Nate Begeman9008ca62009-04-27 18:41:29 +00005441 bool isShift = getSubtarget()->hasSSE2() &&
Evan Chengc3630942009-12-09 21:00:30 +00005442 isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
Evan Chengf26ffe92008-05-29 08:22:04 +00005443 if (isShift && ShVal.hasOneUse()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005444 // If the shifted value has multiple uses, it may be cheaper to use
Evan Chengf26ffe92008-05-29 08:22:04 +00005445 // v_set0 + movlhps or movhlps, etc.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005446 EVT EltVT = VT.getVectorElementType();
5447 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005448 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005449 }
Eric Christopherfd179292009-08-27 18:07:15 +00005450
Nate Begeman9008ca62009-04-27 18:41:29 +00005451 if (X86::isMOVLMask(SVOp)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00005452 if (V1IsUndef)
5453 return V2;
Gabor Greifba36cb52008-08-28 21:40:38 +00005454 if (ISD::isBuildVectorAllZeros(V1.getNode()))
Dale Johannesenace16102009-02-03 19:33:06 +00005455 return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
Dale Johannesen0488fb62010-09-30 23:57:10 +00005456 if (!X86::isMOVLPMask(SVOp)) {
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005457 if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005458 return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5459
Bruno Cardoso Lopes4783a3e2010-09-01 22:59:03 +00005460 if (VT == MVT::v4i32 || VT == MVT::v4f32)
Bruno Cardoso Lopes20a07f42010-08-31 02:26:40 +00005461 return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5462 }
Evan Cheng7e2ff772008-05-08 00:57:18 +00005463 }
Eric Christopherfd179292009-08-27 18:07:15 +00005464
Nate Begeman9008ca62009-04-27 18:41:29 +00005465 // FIXME: fold these into legal mask.
Dale Johannesen0488fb62010-09-30 23:57:10 +00005466 if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
5467 return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00005468
Dale Johannesen0488fb62010-09-30 23:57:10 +00005469 if (X86::isMOVHLPSMask(SVOp))
5470 return getMOVHighToLow(Op, dl, DAG);
Bruno Cardoso Lopes7ff30bb2010-08-31 21:38:49 +00005471
Dale Johannesen0488fb62010-09-30 23:57:10 +00005472 if (X86::isMOVSHDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5473 return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes5023ef22010-08-31 22:22:11 +00005474
Dale Johannesen0488fb62010-09-30 23:57:10 +00005475 if (X86::isMOVSLDUPMask(SVOp) && HasSSE3 && V2IsUndef && NumElems == 4)
5476 return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
Bruno Cardoso Lopes013bb3d2010-08-31 22:35:05 +00005477
Dale Johannesen0488fb62010-09-30 23:57:10 +00005478 if (X86::isMOVLPMask(SVOp))
5479 return getMOVLP(Op, dl, DAG, HasSSE2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005480
Nate Begeman9008ca62009-04-27 18:41:29 +00005481 if (ShouldXformToMOVHLPS(SVOp) ||
5482 ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
5483 return CommuteVectorShuffle(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005484
Evan Chengf26ffe92008-05-29 08:22:04 +00005485 if (isShift) {
5486 // No better options. Use a vshl / vsrl.
Dan Gohman8a55ce42009-09-23 21:02:20 +00005487 EVT EltVT = VT.getVectorElementType();
5488 ShAmt *= EltVT.getSizeInBits();
Dale Johannesenace16102009-02-03 19:33:06 +00005489 return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
Evan Chengf26ffe92008-05-29 08:22:04 +00005490 }
Eric Christopherfd179292009-08-27 18:07:15 +00005491
Evan Cheng9eca5e82006-10-25 21:49:50 +00005492 bool Commuted = false;
Chris Lattner8a594482007-11-25 00:24:49 +00005493 // FIXME: This should also accept a bitcast of a splat? Be careful, not
5494 // 1,1,1,1 -> v8i16 though.
Gabor Greifba36cb52008-08-28 21:40:38 +00005495 V1IsSplat = isSplatVector(V1.getNode());
5496 V2IsSplat = isSplatVector(V2.getNode());
Scott Michelfdc40a02009-02-17 22:15:04 +00005497
Chris Lattner8a594482007-11-25 00:24:49 +00005498 // Canonicalize the splat or undef, if present, to be on the RHS.
Evan Cheng9bbbb982006-10-25 20:48:19 +00005499 if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005500 Op = CommuteVectorShuffle(SVOp, DAG);
5501 SVOp = cast<ShuffleVectorSDNode>(Op);
5502 V1 = SVOp->getOperand(0);
5503 V2 = SVOp->getOperand(1);
Evan Cheng9bbbb982006-10-25 20:48:19 +00005504 std::swap(V1IsSplat, V2IsSplat);
5505 std::swap(V1IsUndef, V2IsUndef);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005506 Commuted = true;
Evan Cheng9bbbb982006-10-25 20:48:19 +00005507 }
5508
Nate Begeman9008ca62009-04-27 18:41:29 +00005509 if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
5510 // Shuffling low element of v1 into undef, just return v1.
Eric Christopherfd179292009-08-27 18:07:15 +00005511 if (V2IsUndef)
Nate Begeman9008ca62009-04-27 18:41:29 +00005512 return V1;
5513 // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
5514 // the instruction selector will not match, so get a canonical MOVL with
5515 // swapped operands to undo the commute.
5516 return getMOVL(DAG, dl, VT, V2, V1);
Evan Chengd9b8e402006-10-16 06:36:00 +00005517 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005518
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005519 if (X86::isUNPCKLMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005520 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005521
5522 if (X86::isUNPCKHMask(SVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005523 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
Evan Chenge1113032006-10-04 18:33:38 +00005524
Evan Cheng9bbbb982006-10-25 20:48:19 +00005525 if (V2IsSplat) {
5526 // Normalize mask so all entries that point to V2 points to its first
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00005527 // element then try to match unpck{h|l} again. If match, return a
Evan Cheng9bbbb982006-10-25 20:48:19 +00005528 // new vector_shuffle with the corrected mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00005529 SDValue NewMask = NormalizeMask(SVOp, DAG);
5530 ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
5531 if (NSVOp != SVOp) {
5532 if (X86::isUNPCKLMask(NSVOp, true)) {
5533 return NewMask;
5534 } else if (X86::isUNPCKHMask(NSVOp, true)) {
5535 return NewMask;
Evan Cheng0db9fe62006-04-25 20:13:52 +00005536 }
5537 }
5538 }
5539
Evan Cheng9eca5e82006-10-25 21:49:50 +00005540 if (Commuted) {
5541 // Commute is back and try unpck* again.
Nate Begeman9008ca62009-04-27 18:41:29 +00005542 // FIXME: this seems wrong.
5543 SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
5544 ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005545
5546 if (X86::isUNPCKLMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005547 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +00005548
5549 if (X86::isUNPCKHMask(NewSVOp))
Dale Johannesen0488fb62010-09-30 23:57:10 +00005550 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
Evan Cheng9eca5e82006-10-25 21:49:50 +00005551 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00005552
Nate Begeman9008ca62009-04-27 18:41:29 +00005553 // Normalize the node to match x86 shuffle ops if needed
Dale Johannesen0488fb62010-09-30 23:57:10 +00005554 if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
Nate Begeman9008ca62009-04-27 18:41:29 +00005555 return CommuteVectorShuffle(SVOp, DAG);
5556
Bruno Cardoso Lopes7256e222010-09-03 23:24:06 +00005557 // The checks below are all present in isShuffleMaskLegal, but they are
5558 // inlined here right now to enable us to directly emit target specific
5559 // nodes, and remove one by one until they don't return Op anymore.
5560 SmallVector<int, 16> M;
5561 SVOp->getMask(M);
5562
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +00005563 if (isPALIGNRMask(M, VT, HasSSSE3))
5564 return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
5565 X86::getShufflePALIGNRImmediate(SVOp),
5566 DAG);
5567
Bruno Cardoso Lopesc800c0d2010-09-04 02:02:14 +00005568 if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
5569 SVOp->getSplatIndex() == 0 && V2IsUndef) {
5570 if (VT == MVT::v2f64)
5571 return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
5572 if (VT == MVT::v2i64)
5573 return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
5574 }
5575
Bruno Cardoso Lopesbbfc3102010-09-04 01:36:45 +00005576 if (isPSHUFHWMask(M, VT))
5577 return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
5578 X86::getShufflePSHUFHWImmediate(SVOp),
5579 DAG);
5580
5581 if (isPSHUFLWMask(M, VT))
5582 return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
5583 X86::getShufflePSHUFLWImmediate(SVOp),
5584 DAG);
5585
Bruno Cardoso Lopes4c827f52010-09-04 01:22:57 +00005586 if (isSHUFPMask(M, VT)) {
5587 unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
5588 if (VT == MVT::v4f32 || VT == MVT::v4i32)
5589 return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
5590 TargetMask, DAG);
5591 if (VT == MVT::v2f64 || VT == MVT::v2i64)
5592 return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
5593 TargetMask, DAG);
5594 }
5595
Bruno Cardoso Lopesa22c8452010-09-04 00:39:43 +00005596 if (X86::isUNPCKL_v_undef_Mask(SVOp))
5597 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5598 return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
5599 if (X86::isUNPCKH_v_undef_Mask(SVOp))
5600 if (VT != MVT::v2i64 && VT != MVT::v2f64)
5601 return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
5602
Evan Cheng14b32e12007-12-11 01:46:18 +00005603 // Handle v8i16 specifically since SSE can do byte extraction and insertion.
Owen Anderson825b72b2009-08-11 20:47:22 +00005604 if (VT == MVT::v8i16) {
Bruno Cardoso Lopesbf8154a2010-08-21 01:32:18 +00005605 SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005606 if (NewOp.getNode())
Evan Cheng14b32e12007-12-11 01:46:18 +00005607 return NewOp;
5608 }
5609
Owen Anderson825b72b2009-08-11 20:47:22 +00005610 if (VT == MVT::v16i8) {
Nate Begeman9008ca62009-04-27 18:41:29 +00005611 SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
Nate Begemanb9a47b82009-02-23 08:49:38 +00005612 if (NewOp.getNode())
5613 return NewOp;
5614 }
Eric Christopherfd179292009-08-27 18:07:15 +00005615
Dale Johannesen0488fb62010-09-30 23:57:10 +00005616 // Handle all 4 wide cases with a number of shuffles.
5617 if (NumElems == 4)
Nate Begeman9008ca62009-04-27 18:41:29 +00005618 return LowerVECTOR_SHUFFLE_4wide(SVOp, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005619
Dan Gohman475871a2008-07-27 21:46:04 +00005620 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005621}
5622
Dan Gohman475871a2008-07-27 21:46:04 +00005623SDValue
5624X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00005625 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005626 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005627 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00005628 if (VT.getSizeInBits() == 8) {
Owen Anderson825b72b2009-08-11 20:47:22 +00005629 SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005630 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005631 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005632 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005633 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005634 } else if (VT.getSizeInBits() == 16) {
Evan Cheng52ceafa2009-01-02 05:29:08 +00005635 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
5636 // If Idx is 0, it's cheaper to do a move instead of a pextrw.
5637 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005638 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5639 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Dale Johannesenace16102009-02-03 19:33:06 +00005640 DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005641 MVT::v4i32,
Evan Cheng52ceafa2009-01-02 05:29:08 +00005642 Op.getOperand(0)),
5643 Op.getOperand(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00005644 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005645 Op.getOperand(0), Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005646 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
Nate Begeman14d12ca2008-02-11 04:19:36 +00005647 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005648 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Owen Anderson825b72b2009-08-11 20:47:22 +00005649 } else if (VT == MVT::f32) {
Evan Cheng62a3f152008-03-24 21:52:23 +00005650 // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
5651 // the result back to FR32 register. It's only worth matching if the
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005652 // result has a single use which is a store or a bitcast to i32. And in
5653 // the case of a store, it's not worth it if the index is a constant 0,
5654 // because a MOVSSmr can be used instead, which is smaller and faster.
Evan Cheng62a3f152008-03-24 21:52:23 +00005655 if (!Op.hasOneUse())
Dan Gohman475871a2008-07-27 21:46:04 +00005656 return SDValue();
Gabor Greifba36cb52008-08-28 21:40:38 +00005657 SDNode *User = *Op.getNode()->use_begin();
Dan Gohmand17cfbe2008-10-31 00:57:24 +00005658 if ((User->getOpcode() != ISD::STORE ||
5659 (isa<ConstantSDNode>(Op.getOperand(1)) &&
5660 cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
Dan Gohman171c11e2008-04-16 02:32:24 +00005661 (User->getOpcode() != ISD::BIT_CONVERT ||
Owen Anderson825b72b2009-08-11 20:47:22 +00005662 User->getValueType(0) != MVT::i32))
Dan Gohman475871a2008-07-27 21:46:04 +00005663 return SDValue();
Owen Anderson825b72b2009-08-11 20:47:22 +00005664 SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
5665 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32,
Dale Johannesenace16102009-02-03 19:33:06 +00005666 Op.getOperand(0)),
5667 Op.getOperand(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00005668 return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Extract);
5669 } else if (VT == MVT::i32) {
Mon P Wangf0fcdd82009-01-15 21:10:20 +00005670 // ExtractPS works with constant index.
5671 if (isa<ConstantSDNode>(Op.getOperand(1)))
5672 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005673 }
Dan Gohman475871a2008-07-27 21:46:04 +00005674 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005675}
5676
5677
Dan Gohman475871a2008-07-27 21:46:04 +00005678SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005679X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
5680 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005681 if (!isa<ConstantSDNode>(Op.getOperand(1)))
Dan Gohman475871a2008-07-27 21:46:04 +00005682 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005683
Evan Cheng62a3f152008-03-24 21:52:23 +00005684 if (Subtarget->hasSSE41()) {
Dan Gohman475871a2008-07-27 21:46:04 +00005685 SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005686 if (Res.getNode())
Evan Cheng62a3f152008-03-24 21:52:23 +00005687 return Res;
5688 }
Nate Begeman14d12ca2008-02-11 04:19:36 +00005689
Owen Andersone50ed302009-08-10 22:56:29 +00005690 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005691 DebugLoc dl = Op.getDebugLoc();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005692 // TODO: handle v16i8.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005693 if (VT.getSizeInBits() == 16) {
Dan Gohman475871a2008-07-27 21:46:04 +00005694 SDValue Vec = Op.getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005695 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng14b32e12007-12-11 01:46:18 +00005696 if (Idx == 0)
Owen Anderson825b72b2009-08-11 20:47:22 +00005697 return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
5698 DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
Scott Michelfdc40a02009-02-17 22:15:04 +00005699 DAG.getNode(ISD::BIT_CONVERT, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00005700 MVT::v4i32, Vec),
Evan Cheng14b32e12007-12-11 01:46:18 +00005701 Op.getOperand(1)));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005702 // Transform it so it match pextrw which produces a 32-bit result.
Ken Dyck70d0ef12009-12-17 15:31:52 +00005703 EVT EltVT = MVT::i32;
Dan Gohman8a55ce42009-09-23 21:02:20 +00005704 SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005705 Op.getOperand(0), Op.getOperand(1));
Dan Gohman8a55ce42009-09-23 21:02:20 +00005706 SDValue Assert = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
Evan Cheng0db9fe62006-04-25 20:13:52 +00005707 DAG.getValueType(VT));
Dale Johannesenace16102009-02-03 19:33:06 +00005708 return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005709 } else if (VT.getSizeInBits() == 32) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005710 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005711 if (Idx == 0)
5712 return Op;
Eric Christopherfd179292009-08-27 18:07:15 +00005713
Evan Cheng0db9fe62006-04-25 20:13:52 +00005714 // SHUFPS the element to the lowest double word, then movss.
Nate Begeman9008ca62009-04-27 18:41:29 +00005715 int Mask[4] = { Idx, -1, -1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005716 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005717 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005718 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005719 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005720 DAG.getIntPtrConstant(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00005721 } else if (VT.getSizeInBits() == 64) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005722 // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
5723 // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
5724 // to match extract_elt for f64.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005725 unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005726 if (Idx == 0)
5727 return Op;
5728
5729 // UNPCKHPD the element to the lowest double word, then movsd.
5730 // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
5731 // to a f64mem, the whole operation is folded into a single MOVHPDmr.
Nate Begeman9008ca62009-04-27 18:41:29 +00005732 int Mask[2] = { 1, -1 };
Owen Andersone50ed302009-08-10 22:56:29 +00005733 EVT VVT = Op.getOperand(0).getValueType();
Eric Christopherfd179292009-08-27 18:07:15 +00005734 SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
Nate Begeman9008ca62009-04-27 18:41:29 +00005735 DAG.getUNDEF(VVT), Mask);
Dale Johannesenace16102009-02-03 19:33:06 +00005736 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
Chris Lattner0bd48932008-01-17 07:00:52 +00005737 DAG.getIntPtrConstant(0));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005738 }
5739
Dan Gohman475871a2008-07-27 21:46:04 +00005740 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005741}
5742
Dan Gohman475871a2008-07-27 21:46:04 +00005743SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005744X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
5745 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005746 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005747 EVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005748 DebugLoc dl = Op.getDebugLoc();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005749
Dan Gohman475871a2008-07-27 21:46:04 +00005750 SDValue N0 = Op.getOperand(0);
5751 SDValue N1 = Op.getOperand(1);
5752 SDValue N2 = Op.getOperand(2);
Nate Begeman14d12ca2008-02-11 04:19:36 +00005753
Dan Gohman8a55ce42009-09-23 21:02:20 +00005754 if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
Dan Gohmanef521f12008-08-14 22:53:18 +00005755 isa<ConstantSDNode>(N2)) {
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005756 unsigned Opc;
5757 if (VT == MVT::v8i16)
5758 Opc = X86ISD::PINSRW;
Chris Lattner8f2b4cc2010-02-23 02:07:48 +00005759 else if (VT == MVT::v16i8)
5760 Opc = X86ISD::PINSRB;
5761 else
5762 Opc = X86ISD::PINSRB;
5763
Nate Begeman14d12ca2008-02-11 04:19:36 +00005764 // Transform it so it match pinsr{b,w} which expects a GR32 as its second
5765 // argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005766 if (N1.getValueType() != MVT::i32)
5767 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5768 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005769 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesenace16102009-02-03 19:33:06 +00005770 return DAG.getNode(Opc, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005771 } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
Nate Begeman14d12ca2008-02-11 04:19:36 +00005772 // Bits [7:6] of the constant are the source select. This will always be
5773 // zero here. The DAG Combiner may combine an extract_elt index into these
5774 // bits. For example (insert (extract, 3), 2) could be matched by putting
5775 // the '3' into bits [7:6] of X86ISD::INSERTPS.
Scott Michelfdc40a02009-02-17 22:15:04 +00005776 // Bits [5:4] of the constant are the destination select. This is the
Nate Begeman14d12ca2008-02-11 04:19:36 +00005777 // value of the incoming immediate.
Scott Michelfdc40a02009-02-17 22:15:04 +00005778 // Bits [3:0] of the constant are the zero mask. The DAG Combiner may
Nate Begeman14d12ca2008-02-11 04:19:36 +00005779 // combine either bitwise AND or insert of float 0.0 to set these bits.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005780 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
Eric Christopherfbd66872009-07-24 00:33:09 +00005781 // Create this as a scalar to vector..
Owen Anderson825b72b2009-08-11 20:47:22 +00005782 N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
Dale Johannesenace16102009-02-03 19:33:06 +00005783 return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
Dan Gohman8a55ce42009-09-23 21:02:20 +00005784 } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
Eric Christopherfbd66872009-07-24 00:33:09 +00005785 // PINSR* works with constant index.
5786 return Op;
Nate Begeman14d12ca2008-02-11 04:19:36 +00005787 }
Dan Gohman475871a2008-07-27 21:46:04 +00005788 return SDValue();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005789}
5790
Dan Gohman475871a2008-07-27 21:46:04 +00005791SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005792X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00005793 EVT VT = Op.getValueType();
Dan Gohman8a55ce42009-09-23 21:02:20 +00005794 EVT EltVT = VT.getVectorElementType();
Nate Begeman14d12ca2008-02-11 04:19:36 +00005795
5796 if (Subtarget->hasSSE41())
5797 return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
5798
Dan Gohman8a55ce42009-09-23 21:02:20 +00005799 if (EltVT == MVT::i8)
Dan Gohman475871a2008-07-27 21:46:04 +00005800 return SDValue();
Evan Cheng794405e2007-12-12 07:55:34 +00005801
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005802 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00005803 SDValue N0 = Op.getOperand(0);
5804 SDValue N1 = Op.getOperand(1);
5805 SDValue N2 = Op.getOperand(2);
Evan Cheng794405e2007-12-12 07:55:34 +00005806
Dan Gohman8a55ce42009-09-23 21:02:20 +00005807 if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
Evan Cheng794405e2007-12-12 07:55:34 +00005808 // Transform it so it match pinsrw which expects a 16-bit value in a GR32
5809 // as its second argument.
Owen Anderson825b72b2009-08-11 20:47:22 +00005810 if (N1.getValueType() != MVT::i32)
5811 N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
5812 if (N2.getValueType() != MVT::i32)
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005813 N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
Dale Johannesen0488fb62010-09-30 23:57:10 +00005814 return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005815 }
Dan Gohman475871a2008-07-27 21:46:04 +00005816 return SDValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00005817}
5818
Dan Gohman475871a2008-07-27 21:46:04 +00005819SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005820X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00005821 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00005822
Chris Lattnerf172ecd2010-07-04 23:07:25 +00005823 if (Op.getValueType() == MVT::v1i64 &&
5824 Op.getOperand(0).getValueType() == MVT::i64)
Owen Anderson825b72b2009-08-11 20:47:22 +00005825 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
Rafael Espindoladef390a2009-08-03 02:45:34 +00005826
Owen Anderson825b72b2009-08-11 20:47:22 +00005827 SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
Dale Johannesen0488fb62010-09-30 23:57:10 +00005828 assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
5829 "Expected an SSE type!");
Dale Johannesenace16102009-02-03 19:33:06 +00005830 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(),
Dale Johannesen0488fb62010-09-30 23:57:10 +00005831 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
Evan Cheng0db9fe62006-04-25 20:13:52 +00005832}
5833
Bill Wendling056292f2008-09-16 21:48:12 +00005834// ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
5835// their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
5836// one of the above mentioned nodes. It has to be wrapped because otherwise
5837// Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
5838// be used to form addressing mode. These wrapped nodes will be selected
5839// into MOV32ri.
Dan Gohman475871a2008-07-27 21:46:04 +00005840SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005841X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00005842 ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005843
Chris Lattner41621a22009-06-26 19:22:52 +00005844 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5845 // global base reg.
5846 unsigned char OpFlag = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00005847 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005848 CodeModel::Model M = getTargetMachine().getCodeModel();
5849
Chris Lattner4f066492009-07-11 20:29:19 +00005850 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005851 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005852 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005853 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005854 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005855 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005856 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005857
Evan Cheng1606e8e2009-03-13 07:51:59 +00005858 SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
Chris Lattner41621a22009-06-26 19:22:52 +00005859 CP->getAlignment(),
5860 CP->getOffset(), OpFlag);
5861 DebugLoc DL = CP->getDebugLoc();
Chris Lattner18c59872009-06-27 04:16:01 +00005862 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005863 // With PIC, the address is actually $g + Offset.
Chris Lattner41621a22009-06-26 19:22:52 +00005864 if (OpFlag) {
5865 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005866 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005867 DebugLoc(), getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005868 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00005869 }
5870
5871 return Result;
5872}
5873
Dan Gohmand858e902010-04-17 15:26:15 +00005874SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005875 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Eric Christopherfd179292009-08-27 18:07:15 +00005876
Chris Lattner18c59872009-06-27 04:16:01 +00005877 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5878 // global base reg.
5879 unsigned char OpFlag = 0;
5880 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005881 CodeModel::Model M = getTargetMachine().getCodeModel();
5882
Chris Lattner4f066492009-07-11 20:29:19 +00005883 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005884 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005885 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005886 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005887 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005888 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005889 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005890
Chris Lattner18c59872009-06-27 04:16:01 +00005891 SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
5892 OpFlag);
5893 DebugLoc DL = JT->getDebugLoc();
5894 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005895
Chris Lattner18c59872009-06-27 04:16:01 +00005896 // With PIC, the address is actually $g + Offset.
5897 if (OpFlag) {
5898 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5899 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005900 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005901 Result);
5902 }
Eric Christopherfd179292009-08-27 18:07:15 +00005903
Chris Lattner18c59872009-06-27 04:16:01 +00005904 return Result;
5905}
5906
5907SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005908X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
Chris Lattner18c59872009-06-27 04:16:01 +00005909 const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
Eric Christopherfd179292009-08-27 18:07:15 +00005910
Chris Lattner18c59872009-06-27 04:16:01 +00005911 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
5912 // global base reg.
5913 unsigned char OpFlag = 0;
5914 unsigned WrapperKind = X86ISD::Wrapper;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005915 CodeModel::Model M = getTargetMachine().getCodeModel();
5916
Chris Lattner4f066492009-07-11 20:29:19 +00005917 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005918 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattnere4df7562009-07-09 03:15:51 +00005919 WrapperKind = X86ISD::WrapperRIP;
Chris Lattner3b67e9b2009-07-10 20:47:30 +00005920 else if (Subtarget->isPICStyleGOT())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005921 OpFlag = X86II::MO_GOTOFF;
Chris Lattnere2c92082009-07-10 21:00:45 +00005922 else if (Subtarget->isPICStyleStubPIC())
Chris Lattner88e1fd52009-07-09 04:24:46 +00005923 OpFlag = X86II::MO_PIC_BASE_OFFSET;
Eric Christopherfd179292009-08-27 18:07:15 +00005924
Chris Lattner18c59872009-06-27 04:16:01 +00005925 SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
Eric Christopherfd179292009-08-27 18:07:15 +00005926
Chris Lattner18c59872009-06-27 04:16:01 +00005927 DebugLoc DL = Op.getDebugLoc();
5928 Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Eric Christopherfd179292009-08-27 18:07:15 +00005929
5930
Chris Lattner18c59872009-06-27 04:16:01 +00005931 // With PIC, the address is actually $g + Offset.
5932 if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
Chris Lattnere4df7562009-07-09 03:15:51 +00005933 !Subtarget->is64Bit()) {
Chris Lattner18c59872009-06-27 04:16:01 +00005934 Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
5935 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00005936 DebugLoc(), getPointerTy()),
Chris Lattner18c59872009-06-27 04:16:01 +00005937 Result);
5938 }
Eric Christopherfd179292009-08-27 18:07:15 +00005939
Chris Lattner18c59872009-06-27 04:16:01 +00005940 return Result;
5941}
5942
Dan Gohman475871a2008-07-27 21:46:04 +00005943SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00005944X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman29cbade2009-11-20 23:18:13 +00005945 // Create the TargetBlockAddressAddress node.
5946 unsigned char OpFlags =
5947 Subtarget->ClassifyBlockAddressReference();
Dan Gohmanf705adb2009-10-30 01:28:02 +00005948 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman46510a72010-04-15 01:51:59 +00005949 const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +00005950 DebugLoc dl = Op.getDebugLoc();
5951 SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
5952 /*isTarget=*/true, OpFlags);
5953
Dan Gohmanf705adb2009-10-30 01:28:02 +00005954 if (Subtarget->isPICStyleRIPRel() &&
5955 (M == CodeModel::Small || M == CodeModel::Kernel))
Dan Gohman29cbade2009-11-20 23:18:13 +00005956 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
5957 else
5958 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohmanf705adb2009-10-30 01:28:02 +00005959
Dan Gohman29cbade2009-11-20 23:18:13 +00005960 // With PIC, the address is actually $g + Offset.
5961 if (isGlobalRelativeToPICBase(OpFlags)) {
5962 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
5963 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
5964 Result);
5965 }
Dan Gohmanf705adb2009-10-30 01:28:02 +00005966
5967 return Result;
5968}
5969
5970SDValue
Dale Johannesen33c960f2009-02-04 20:06:27 +00005971X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
Dan Gohman6520e202008-10-18 02:06:02 +00005972 int64_t Offset,
Evan Chengda43bcf2008-09-24 00:05:32 +00005973 SelectionDAG &DAG) const {
Dan Gohman6520e202008-10-18 02:06:02 +00005974 // Create the TargetGlobalAddress node, folding in the constant
5975 // offset if it is legal.
Chris Lattnerd392bd92009-07-10 07:20:05 +00005976 unsigned char OpFlags =
5977 Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005978 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman6520e202008-10-18 02:06:02 +00005979 SDValue Result;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005980 if (OpFlags == X86II::MO_NO_FLAG &&
5981 X86::isOffsetSuitableForCodeModel(Offset, M)) {
Chris Lattner4aa21aa2009-07-09 00:58:53 +00005982 // A direct static reference to a global.
Devang Patel0d881da2010-07-06 22:08:15 +00005983 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
Dan Gohman6520e202008-10-18 02:06:02 +00005984 Offset = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00005985 } else {
Devang Patel0d881da2010-07-06 22:08:15 +00005986 Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00005987 }
Eric Christopherfd179292009-08-27 18:07:15 +00005988
Chris Lattner4f066492009-07-11 20:29:19 +00005989 if (Subtarget->isPICStyleRIPRel() &&
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00005990 (M == CodeModel::Small || M == CodeModel::Kernel))
Chris Lattner18c59872009-06-27 04:16:01 +00005991 Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
5992 else
5993 Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
Dan Gohman6520e202008-10-18 02:06:02 +00005994
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005995 // With PIC, the address is actually $g + Offset.
Chris Lattner36c25012009-07-10 07:34:39 +00005996 if (isGlobalRelativeToPICBase(OpFlags)) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00005997 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
5998 DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
Anton Korobeynikov7f705592007-01-12 19:20:47 +00005999 Result);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006000 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006001
Chris Lattner36c25012009-07-10 07:34:39 +00006002 // For globals that require a load from a stub to get the address, emit the
6003 // load.
6004 if (isGlobalStubReference(OpFlags))
Dale Johannesen33c960f2009-02-04 20:06:27 +00006005 Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006006 MachinePointerInfo::getGOT(), false, false, 0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006007
Dan Gohman6520e202008-10-18 02:06:02 +00006008 // If there was a non-zero offset that we didn't fold, create an explicit
6009 // addition for it.
6010 if (Offset != 0)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006011 Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
Dan Gohman6520e202008-10-18 02:06:02 +00006012 DAG.getConstant(Offset, getPointerTy()));
6013
Evan Cheng0db9fe62006-04-25 20:13:52 +00006014 return Result;
6015}
6016
Evan Chengda43bcf2008-09-24 00:05:32 +00006017SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006018X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
Evan Chengda43bcf2008-09-24 00:05:32 +00006019 const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +00006020 int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006021 return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
Evan Chengda43bcf2008-09-24 00:05:32 +00006022}
6023
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006024static SDValue
6025GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
Owen Andersone50ed302009-08-10 22:56:29 +00006026 SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
Chris Lattnerb903bed2009-06-26 21:20:29 +00006027 unsigned char OperandFlags) {
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006028 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
Owen Anderson825b72b2009-08-11 20:47:22 +00006029 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006030 DebugLoc dl = GA->getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006031 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006032 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006033 GA->getOffset(),
6034 OperandFlags);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006035 if (InFlag) {
6036 SDValue Ops[] = { Chain, TGA, *InFlag };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006037 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006038 } else {
6039 SDValue Ops[] = { Chain, TGA };
Rafael Espindola15f1b662009-04-24 12:59:40 +00006040 Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006041 }
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006042
6043 // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
Bill Wendlingb92187a2010-05-14 21:14:32 +00006044 MFI->setAdjustsStack(true);
Anton Korobeynikov817a4642009-12-11 19:39:55 +00006045
Rafael Espindola15f1b662009-04-24 12:59:40 +00006046 SDValue Flag = Chain.getValue(1);
6047 return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
Rafael Espindola2ee3db32009-04-17 14:35:58 +00006048}
6049
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006050// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006051static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006052LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006053 const EVT PtrVT) {
Dan Gohman475871a2008-07-27 21:46:04 +00006054 SDValue InFlag;
Dale Johannesendd64c412009-02-04 00:33:20 +00006055 DebugLoc dl = GA->getDebugLoc(); // ? function entry point might be better
6056 SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006057 DAG.getNode(X86ISD::GlobalBaseReg,
Chris Lattnerc7f3ace2010-04-02 20:16:16 +00006058 DebugLoc(), PtrVT), InFlag);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006059 InFlag = Chain.getValue(1);
6060
Chris Lattnerb903bed2009-06-26 21:20:29 +00006061 return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006062}
6063
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006064// Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
Dan Gohman475871a2008-07-27 21:46:04 +00006065static SDValue
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006066LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006067 const EVT PtrVT) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006068 return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6069 X86::RAX, X86II::MO_TLSGD);
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006070}
6071
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006072// Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6073// "local exec" model.
Dan Gohman475871a2008-07-27 21:46:04 +00006074static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
Owen Andersone50ed302009-08-10 22:56:29 +00006075 const EVT PtrVT, TLSModel::Model model,
Rafael Espindola7ff5bff2009-04-13 13:02:49 +00006076 bool is64Bit) {
Dale Johannesen33c960f2009-02-04 20:06:27 +00006077 DebugLoc dl = GA->getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00006078
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006079 // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6080 Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6081 is64Bit ? 257 : 256));
Rafael Espindola094fad32009-04-08 21:14:34 +00006082
Michael J. Spencerec38de22010-10-10 22:04:20 +00006083 SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
Chris Lattnerf93b90c2010-09-22 04:39:11 +00006084 DAG.getIntPtrConstant(0),
6085 MachinePointerInfo(Ptr), false, false, 0);
Rafael Espindola094fad32009-04-08 21:14:34 +00006086
Chris Lattnerb903bed2009-06-26 21:20:29 +00006087 unsigned char OperandFlags = 0;
Chris Lattner18c59872009-06-27 04:16:01 +00006088 // Most TLS accesses are not RIP relative, even on x86-64. One exception is
6089 // initialexec.
6090 unsigned WrapperKind = X86ISD::Wrapper;
6091 if (model == TLSModel::LocalExec) {
Chris Lattnerb903bed2009-06-26 21:20:29 +00006092 OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
Chris Lattner18c59872009-06-27 04:16:01 +00006093 } else if (is64Bit) {
6094 assert(model == TLSModel::InitialExec);
6095 OperandFlags = X86II::MO_GOTTPOFF;
6096 WrapperKind = X86ISD::WrapperRIP;
6097 } else {
6098 assert(model == TLSModel::InitialExec);
6099 OperandFlags = X86II::MO_INDNTPOFF;
Chris Lattnerb903bed2009-06-26 21:20:29 +00006100 }
Eric Christopherfd179292009-08-27 18:07:15 +00006101
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006102 // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6103 // exec)
Michael J. Spencerec38de22010-10-10 22:04:20 +00006104 SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
Devang Patel0d881da2010-07-06 22:08:15 +00006105 GA->getValueType(0),
Chris Lattnerb903bed2009-06-26 21:20:29 +00006106 GA->getOffset(), OperandFlags);
Chris Lattner18c59872009-06-27 04:16:01 +00006107 SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006108
Rafael Espindola9a580232009-02-27 13:37:18 +00006109 if (model == TLSModel::InitialExec)
Dale Johannesen33c960f2009-02-04 20:06:27 +00006110 Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
Chris Lattnerd1c24ed2010-09-21 06:44:06 +00006111 MachinePointerInfo::getGOT(), false, false, 0);
Lauro Ramos Venancio7d2cc2b2007-04-22 22:50:52 +00006112
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006113 // The address of the thread local variable is the add of the thread
6114 // pointer with the offset of the variable.
Dale Johannesen33c960f2009-02-04 20:06:27 +00006115 return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006116}
6117
Dan Gohman475871a2008-07-27 21:46:04 +00006118SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00006119X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
Michael J. Spencerec38de22010-10-10 22:04:20 +00006120
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006121 GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
Chris Lattnerb903bed2009-06-26 21:20:29 +00006122 const GlobalValue *GV = GA->getGlobal();
Eric Christopherfd179292009-08-27 18:07:15 +00006123
Eric Christopher30ef0e52010-06-03 04:07:48 +00006124 if (Subtarget->isTargetELF()) {
6125 // TODO: implement the "local dynamic" model
6126 // TODO: implement the "initial exec"model for pic executables
Michael J. Spencerec38de22010-10-10 22:04:20 +00006127
Eric Christopher30ef0e52010-06-03 04:07:48 +00006128 // If GV is an alias then use the aliasee for determining
6129 // thread-localness.
6130 if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6131 GV = GA->resolveAliasedGlobal(false);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006132
6133 TLSModel::Model model
Eric Christopher30ef0e52010-06-03 04:07:48 +00006134 = getTLSModel(GV, getTargetMachine().getRelocationModel());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006135
Eric Christopher30ef0e52010-06-03 04:07:48 +00006136 switch (model) {
6137 case TLSModel::GeneralDynamic:
6138 case TLSModel::LocalDynamic: // not implemented
6139 if (Subtarget->is64Bit())
6140 return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6141 return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
Michael J. Spencerec38de22010-10-10 22:04:20 +00006142
Eric Christopher30ef0e52010-06-03 04:07:48 +00006143 case TLSModel::InitialExec:
6144 case TLSModel::LocalExec:
6145 return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6146 Subtarget->is64Bit());
6147 }
6148 } else if (Subtarget->isTargetDarwin()) {
6149 // Darwin only has one model of TLS. Lower to that.
6150 unsigned char OpFlag = 0;
6151 unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6152 X86ISD::WrapperRIP : X86ISD::Wrapper;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006153
Eric Christopher30ef0e52010-06-03 04:07:48 +00006154 // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6155 // global base reg.
6156 bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6157 !Subtarget->is64Bit();
6158 if (PIC32)
6159 OpFlag = X86II::MO_TLVP_PIC_BASE;
6160 else
6161 OpFlag = X86II::MO_TLVP;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006162 DebugLoc DL = Op.getDebugLoc();
Devang Patel0d881da2010-07-06 22:08:15 +00006163 SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
Eric Christopher30ef0e52010-06-03 04:07:48 +00006164 getPointerTy(),
6165 GA->getOffset(), OpFlag);
Eric Christopher30ef0e52010-06-03 04:07:48 +00006166 SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006167
Eric Christopher30ef0e52010-06-03 04:07:48 +00006168 // With PIC32, the address is actually $g + Offset.
6169 if (PIC32)
6170 Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6171 DAG.getNode(X86ISD::GlobalBaseReg,
6172 DebugLoc(), getPointerTy()),
6173 Offset);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006174
Eric Christopher30ef0e52010-06-03 04:07:48 +00006175 // Lowering the machine isd will make sure everything is in the right
6176 // location.
6177 SDValue Args[] = { Offset };
6178 SDValue Chain = DAG.getNode(X86ISD::TLSCALL, DL, MVT::Other, Args, 1);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006179
Eric Christopher30ef0e52010-06-03 04:07:48 +00006180 // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
6181 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6182 MFI->setAdjustsStack(true);
Eric Christopherfd179292009-08-27 18:07:15 +00006183
Eric Christopher30ef0e52010-06-03 04:07:48 +00006184 // And our return value (tls address) is in the standard call return value
6185 // location.
6186 unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
6187 return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
Anton Korobeynikov6625eff2008-05-04 21:36:32 +00006188 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006189
Eric Christopher30ef0e52010-06-03 04:07:48 +00006190 assert(false &&
6191 "TLS not implemented for this target.");
Eric Christopherfd179292009-08-27 18:07:15 +00006192
Torok Edwinc23197a2009-07-14 16:55:14 +00006193 llvm_unreachable("Unreachable");
Chris Lattner5867de12009-04-01 22:14:45 +00006194 return SDValue();
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00006195}
6196
Evan Cheng0db9fe62006-04-25 20:13:52 +00006197
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006198/// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
Scott Michelfdc40a02009-02-17 22:15:04 +00006199/// take a 2 x i32 value to shift plus a shift amount.
Dan Gohmand858e902010-04-17 15:26:15 +00006200SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman4c1fa612008-03-03 22:22:09 +00006201 assert(Op.getNumOperands() == 3 && "Not a double-shift!");
Owen Andersone50ed302009-08-10 22:56:29 +00006202 EVT VT = Op.getValueType();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006203 unsigned VTBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006204 DebugLoc dl = Op.getDebugLoc();
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006205 bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
Dan Gohman475871a2008-07-27 21:46:04 +00006206 SDValue ShOpLo = Op.getOperand(0);
6207 SDValue ShOpHi = Op.getOperand(1);
6208 SDValue ShAmt = Op.getOperand(2);
Chris Lattner31dcfe62009-07-29 05:48:09 +00006209 SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
Owen Anderson825b72b2009-08-11 20:47:22 +00006210 DAG.getConstant(VTBits - 1, MVT::i8))
Chris Lattner31dcfe62009-07-29 05:48:09 +00006211 : DAG.getConstant(0, VT);
Evan Chenge3413162006-01-09 18:33:28 +00006212
Dan Gohman475871a2008-07-27 21:46:04 +00006213 SDValue Tmp2, Tmp3;
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006214 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006215 Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
6216 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006217 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006218 Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
6219 Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006220 }
Evan Chenge3413162006-01-09 18:33:28 +00006221
Owen Anderson825b72b2009-08-11 20:47:22 +00006222 SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
6223 DAG.getConstant(VTBits, MVT::i8));
Chris Lattnerccfea352010-02-22 00:28:59 +00006224 SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Owen Anderson825b72b2009-08-11 20:47:22 +00006225 AndNode, DAG.getConstant(0, MVT::i8));
Evan Chenge3413162006-01-09 18:33:28 +00006226
Dan Gohman475871a2008-07-27 21:46:04 +00006227 SDValue Hi, Lo;
Owen Anderson825b72b2009-08-11 20:47:22 +00006228 SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Dan Gohman475871a2008-07-27 21:46:04 +00006229 SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
6230 SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
Duncan Sandsf9516202008-06-30 10:19:09 +00006231
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006232 if (Op.getOpcode() == ISD::SHL_PARTS) {
Dale Johannesenace16102009-02-03 19:33:06 +00006233 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6234 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006235 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006236 Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6237 Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
Chris Lattner2ff75ee2007-10-17 06:02:13 +00006238 }
6239
Dan Gohman475871a2008-07-27 21:46:04 +00006240 SDValue Ops[2] = { Lo, Hi };
Dale Johannesenace16102009-02-03 19:33:06 +00006241 return DAG.getMergeValues(Ops, 2, dl);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006242}
Evan Chenga3195e82006-01-12 22:54:21 +00006243
Dan Gohmand858e902010-04-17 15:26:15 +00006244SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
6245 SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00006246 EVT SrcVT = Op.getOperand(0).getValueType();
Eli Friedman23ef1052009-06-06 03:57:58 +00006247
Dale Johannesen0488fb62010-09-30 23:57:10 +00006248 if (SrcVT.isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006249 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006250
Owen Anderson825b72b2009-08-11 20:47:22 +00006251 assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
Chris Lattnerb09916b2008-02-27 05:57:41 +00006252 "Unknown SINT_TO_FP to lower!");
Scott Michelfdc40a02009-02-17 22:15:04 +00006253
Eli Friedman36df4992009-05-27 00:47:34 +00006254 // These are really Legal; return the operand so the caller accepts it as
6255 // Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006256 if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
Eli Friedman36df4992009-05-27 00:47:34 +00006257 return Op;
Owen Anderson825b72b2009-08-11 20:47:22 +00006258 if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
Eli Friedman36df4992009-05-27 00:47:34 +00006259 Subtarget->is64Bit()) {
6260 return Op;
6261 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006262
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006263 DebugLoc dl = Op.getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006264 unsigned Size = SrcVT.getSizeInBits()/8;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006265 MachineFunction &MF = DAG.getMachineFunction();
David Greene3f2bf852009-11-12 20:49:22 +00006266 int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006267 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Dale Johannesenace16102009-02-03 19:33:06 +00006268 SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Bill Wendling105be5a2009-03-13 08:41:47 +00006269 StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006270 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006271 false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006272 return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
6273}
Evan Cheng0db9fe62006-04-25 20:13:52 +00006274
Owen Andersone50ed302009-08-10 22:56:29 +00006275SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
Michael J. Spencerec38de22010-10-10 22:04:20 +00006276 SDValue StackSlot,
Dan Gohmand858e902010-04-17 15:26:15 +00006277 SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006278 // Build the FILD
Chris Lattner492a43e2010-09-22 01:28:21 +00006279 DebugLoc DL = Op.getDebugLoc();
Chris Lattner5a88b832007-02-25 07:10:00 +00006280 SDVTList Tys;
Chris Lattner78631162008-01-16 06:24:21 +00006281 bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006282 if (useSSE)
Owen Anderson825b72b2009-08-11 20:47:22 +00006283 Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
Chris Lattner5a88b832007-02-25 07:10:00 +00006284 else
Owen Anderson825b72b2009-08-11 20:47:22 +00006285 Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006286
Chris Lattner492a43e2010-09-22 01:28:21 +00006287 unsigned ByteSize = SrcVT.getSizeInBits()/8;
Michael J. Spencerec38de22010-10-10 22:04:20 +00006288
Chris Lattner492a43e2010-09-22 01:28:21 +00006289 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6290 MachineMemOperand *MMO =
6291 DAG.getMachineFunction()
6292 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6293 MachineMemOperand::MOLoad, ByteSize, ByteSize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006294
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006295 SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006296 SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
6297 X86ISD::FILD, DL,
6298 Tys, Ops, array_lengthof(Ops),
6299 SrcVT, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006300
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006301 if (useSSE) {
Evan Cheng0db9fe62006-04-25 20:13:52 +00006302 Chain = Result.getValue(1);
Dan Gohman475871a2008-07-27 21:46:04 +00006303 SDValue InFlag = Result.getValue(2);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006304
6305 // FIXME: Currently the FST is flagged to the FILD_FLAG. This
6306 // shouldn't be necessary except that RFP cannot be live across
6307 // multiple blocks. When stackifier is fixed, they can be uncoupled.
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006308 MachineFunction &MF = DAG.getMachineFunction();
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006309 unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
6310 int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006311 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Owen Anderson825b72b2009-08-11 20:47:22 +00006312 Tys = DAG.getVTList(MVT::Other);
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00006313 SDValue Ops[] = {
6314 Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
6315 };
Chris Lattner492a43e2010-09-22 01:28:21 +00006316 MachineMemOperand *MMO =
6317 DAG.getMachineFunction()
6318 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
Bob Wilsoneafca4e2010-09-22 17:35:14 +00006319 MachineMemOperand::MOStore, SSFISize, SSFISize);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006320
Chris Lattner492a43e2010-09-22 01:28:21 +00006321 Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
6322 Ops, array_lengthof(Ops),
6323 Op.getValueType(), MMO);
6324 Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006325 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006326 false, false, 0);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006327 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006328
Evan Cheng0db9fe62006-04-25 20:13:52 +00006329 return Result;
6330}
6331
Bill Wendling8b8a6362009-01-17 03:56:04 +00006332// LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006333SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
6334 SelectionDAG &DAG) const {
Bill Wendling8b8a6362009-01-17 03:56:04 +00006335 // This algorithm is not obvious. Here it is in C code, more or less:
6336 /*
6337 double uint64_to_double( uint32_t hi, uint32_t lo ) {
6338 static const __m128i exp = { 0x4330000045300000ULL, 0 };
6339 static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
Dale Johannesen040225f2008-10-21 23:07:49 +00006340
Bill Wendling8b8a6362009-01-17 03:56:04 +00006341 // Copy ints to xmm registers.
6342 __m128i xh = _mm_cvtsi32_si128( hi );
6343 __m128i xl = _mm_cvtsi32_si128( lo );
Dale Johannesen040225f2008-10-21 23:07:49 +00006344
Bill Wendling8b8a6362009-01-17 03:56:04 +00006345 // Combine into low half of a single xmm register.
6346 __m128i x = _mm_unpacklo_epi32( xh, xl );
6347 __m128d d;
6348 double sd;
Dale Johannesen040225f2008-10-21 23:07:49 +00006349
Bill Wendling8b8a6362009-01-17 03:56:04 +00006350 // Merge in appropriate exponents to give the integer bits the right
6351 // magnitude.
6352 x = _mm_unpacklo_epi32( x, exp );
Dale Johannesen040225f2008-10-21 23:07:49 +00006353
Bill Wendling8b8a6362009-01-17 03:56:04 +00006354 // Subtract away the biases to deal with the IEEE-754 double precision
6355 // implicit 1.
6356 d = _mm_sub_pd( (__m128d) x, bias );
Dale Johannesen040225f2008-10-21 23:07:49 +00006357
Bill Wendling8b8a6362009-01-17 03:56:04 +00006358 // All conversions up to here are exact. The correctly rounded result is
6359 // calculated using the current rounding mode using the following
6360 // horizontal add.
6361 d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
6362 _mm_store_sd( &sd, d ); // Because we are returning doubles in XMM, this
6363 // store doesn't really need to be here (except
6364 // maybe to zero the other double)
6365 return sd;
6366 }
6367 */
Dale Johannesen040225f2008-10-21 23:07:49 +00006368
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006369 DebugLoc dl = Op.getDebugLoc();
Owen Andersona90b3dc2009-07-15 21:51:10 +00006370 LLVMContext *Context = DAG.getContext();
Dale Johannesenace16102009-02-03 19:33:06 +00006371
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006372 // Build some magic constants.
Bill Wendling8b8a6362009-01-17 03:56:04 +00006373 std::vector<Constant*> CV0;
Owen Andersoneed707b2009-07-24 23:12:02 +00006374 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
6375 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
6376 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
6377 CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006378 Constant *C0 = ConstantVector::get(CV0);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006379 SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006380
Bill Wendling8b8a6362009-01-17 03:56:04 +00006381 std::vector<Constant*> CV1;
Owen Andersona90b3dc2009-07-15 21:51:10 +00006382 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006383 ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
Owen Andersona90b3dc2009-07-15 21:51:10 +00006384 CV1.push_back(
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006385 ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
Owen Andersonaf7ec972009-07-28 21:19:26 +00006386 Constant *C1 = ConstantVector::get(CV1);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006387 SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006388
Owen Anderson825b72b2009-08-11 20:47:22 +00006389 SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6390 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006391 Op.getOperand(0),
6392 DAG.getIntPtrConstant(1)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006393 SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6394 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands6b6aeb32008-10-22 11:24:12 +00006395 Op.getOperand(0),
6396 DAG.getIntPtrConstant(0)));
Owen Anderson825b72b2009-08-11 20:47:22 +00006397 SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
6398 SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
Chris Lattnere8639032010-09-21 06:22:23 +00006399 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006400 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006401 SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
6402 SDValue XR2F = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Unpck2);
6403 SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
Chris Lattnere8639032010-09-21 06:22:23 +00006404 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006405 false, false, 16);
Owen Anderson825b72b2009-08-11 20:47:22 +00006406 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006407
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006408 // Add the halves; easiest way is to swap them into another reg first.
Nate Begeman9008ca62009-04-27 18:41:29 +00006409 int ShufMask[2] = { 1, -1 };
Owen Anderson825b72b2009-08-11 20:47:22 +00006410 SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
6411 DAG.getUNDEF(MVT::v2f64), ShufMask);
6412 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
6413 return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
Dale Johannesen1c15bf52008-10-21 20:50:01 +00006414 DAG.getIntPtrConstant(0));
6415}
6416
Bill Wendling8b8a6362009-01-17 03:56:04 +00006417// LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
Dan Gohmand858e902010-04-17 15:26:15 +00006418SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
6419 SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006420 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006421 // FP constant to bias correct the final result.
6422 SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
Owen Anderson825b72b2009-08-11 20:47:22 +00006423 MVT::f64);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006424
6425 // Load the 32-bit value into an XMM register.
Owen Anderson825b72b2009-08-11 20:47:22 +00006426 SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
6427 DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Bill Wendling8b8a6362009-01-17 03:56:04 +00006428 Op.getOperand(0),
6429 DAG.getIntPtrConstant(0)));
6430
Owen Anderson825b72b2009-08-11 20:47:22 +00006431 Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
6432 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Load),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006433 DAG.getIntPtrConstant(0));
6434
6435 // Or the load with the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006436 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
6437 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006438 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006439 MVT::v2f64, Load)),
6440 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006441 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00006442 MVT::v2f64, Bias)));
6443 Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
6444 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Or),
Bill Wendling8b8a6362009-01-17 03:56:04 +00006445 DAG.getIntPtrConstant(0));
6446
6447 // Subtract the bias.
Owen Anderson825b72b2009-08-11 20:47:22 +00006448 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
Bill Wendling8b8a6362009-01-17 03:56:04 +00006449
6450 // Handle final rounding.
Owen Andersone50ed302009-08-10 22:56:29 +00006451 EVT DestVT = Op.getValueType();
Bill Wendling030939c2009-01-17 07:40:19 +00006452
Owen Anderson825b72b2009-08-11 20:47:22 +00006453 if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006454 return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Bill Wendling030939c2009-01-17 07:40:19 +00006455 DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00006456 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006457 return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Bill Wendling030939c2009-01-17 07:40:19 +00006458 }
6459
6460 // Handle final rounding.
6461 return Sub;
Bill Wendling8b8a6362009-01-17 03:56:04 +00006462}
6463
Dan Gohmand858e902010-04-17 15:26:15 +00006464SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
6465 SelectionDAG &DAG) const {
Evan Chenga06ec9e2009-01-19 08:08:22 +00006466 SDValue N0 = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006467 DebugLoc dl = Op.getDebugLoc();
Bill Wendling8b8a6362009-01-17 03:56:04 +00006468
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006469 // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
Evan Chenga06ec9e2009-01-19 08:08:22 +00006470 // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
6471 // the optimization here.
6472 if (DAG.SignBitIsZero(N0))
Dale Johannesenace16102009-02-03 19:33:06 +00006473 return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
Evan Chenga06ec9e2009-01-19 08:08:22 +00006474
Owen Andersone50ed302009-08-10 22:56:29 +00006475 EVT SrcVT = N0.getValueType();
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006476 EVT DstVT = Op.getValueType();
6477 if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006478 return LowerUINT_TO_FP_i64(Op, DAG);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006479 else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
Bill Wendling8b8a6362009-01-17 03:56:04 +00006480 return LowerUINT_TO_FP_i32(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00006481
6482 // Make a 64-bit buffer, and use it to build an FILD.
Owen Anderson825b72b2009-08-11 20:47:22 +00006483 SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006484 if (SrcVT == MVT::i32) {
6485 SDValue WordOff = DAG.getConstant(4, getPointerTy());
6486 SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
6487 getPointerTy(), StackSlot, WordOff);
6488 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006489 StackSlot, MachinePointerInfo(),
6490 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006491 SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006492 OffsetSlot, MachinePointerInfo(),
6493 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006494 SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
6495 return Fild;
6496 }
6497
6498 assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
6499 SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
Chris Lattner8026a9d2010-09-21 17:50:43 +00006500 StackSlot, MachinePointerInfo(),
6501 false, false, 0);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006502 // For i64 source, we need to add the appropriate power of 2 if the input
6503 // was negative. This is the same as the optimization in
6504 // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
6505 // we must be careful to do the computation in x87 extended precision, not
6506 // in SSE. (The generic code can't know it's OK to do this, or how to.)
Chris Lattner492a43e2010-09-22 01:28:21 +00006507 int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
6508 MachineMemOperand *MMO =
6509 DAG.getMachineFunction()
6510 .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6511 MachineMemOperand::MOLoad, 8, 8);
Michael J. Spencerec38de22010-10-10 22:04:20 +00006512
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006513 SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
6514 SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
Chris Lattner492a43e2010-09-22 01:28:21 +00006515 SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
6516 MVT::i64, MMO);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006517
6518 APInt FF(32, 0x5F800000ULL);
6519
6520 // Check whether the sign bit is set.
6521 SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
6522 Op.getOperand(0), DAG.getConstant(0, MVT::i64),
6523 ISD::SETLT);
6524
6525 // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
6526 SDValue FudgePtr = DAG.getConstantPool(
6527 ConstantInt::get(*DAG.getContext(), FF.zext(64)),
6528 getPointerTy());
6529
6530 // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
6531 SDValue Zero = DAG.getIntPtrConstant(0);
6532 SDValue Four = DAG.getIntPtrConstant(4);
6533 SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
6534 Zero, Four);
6535 FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
6536
6537 // Load the value out, extending it from f32 to f80.
6538 // FIXME: Avoid the extend by constructing the right constant pool?
Evan Chengbcc80172010-07-07 22:15:37 +00006539 SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, MVT::f80, dl, DAG.getEntryNode(),
Chris Lattnere8639032010-09-21 06:22:23 +00006540 FudgePtr, MachinePointerInfo::getConstantPool(),
6541 MVT::f32, false, false, 4);
Dale Johannesen8d908eb2010-05-15 18:51:12 +00006542 // Extend everything to 80 bits to force it to be done on x87.
6543 SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
6544 return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
Bill Wendling8b8a6362009-01-17 03:56:04 +00006545}
6546
Dan Gohman475871a2008-07-27 21:46:04 +00006547std::pair<SDValue,SDValue> X86TargetLowering::
Dan Gohmand858e902010-04-17 15:26:15 +00006548FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
Chris Lattner07290932010-09-22 01:05:16 +00006549 DebugLoc DL = Op.getDebugLoc();
Eli Friedman948e95a2009-05-23 09:59:16 +00006550
Owen Andersone50ed302009-08-10 22:56:29 +00006551 EVT DstTy = Op.getValueType();
Eli Friedman948e95a2009-05-23 09:59:16 +00006552
6553 if (!IsSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006554 assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
6555 DstTy = MVT::i64;
Eli Friedman948e95a2009-05-23 09:59:16 +00006556 }
6557
Owen Anderson825b72b2009-08-11 20:47:22 +00006558 assert(DstTy.getSimpleVT() <= MVT::i64 &&
6559 DstTy.getSimpleVT() >= MVT::i16 &&
Evan Cheng0db9fe62006-04-25 20:13:52 +00006560 "Unknown FP_TO_SINT to lower!");
Evan Cheng0db9fe62006-04-25 20:13:52 +00006561
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006562 // These are really Legal.
Owen Anderson825b72b2009-08-11 20:47:22 +00006563 if (DstTy == MVT::i32 &&
Chris Lattner78631162008-01-16 06:24:21 +00006564 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006565 return std::make_pair(SDValue(), SDValue());
Dale Johannesen73328d12007-09-19 23:55:34 +00006566 if (Subtarget->is64Bit() &&
Owen Anderson825b72b2009-08-11 20:47:22 +00006567 DstTy == MVT::i64 &&
Eli Friedman36df4992009-05-27 00:47:34 +00006568 isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
Dan Gohman475871a2008-07-27 21:46:04 +00006569 return std::make_pair(SDValue(), SDValue());
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00006570
Evan Cheng87c89352007-10-15 20:11:21 +00006571 // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
6572 // stack slot.
6573 MachineFunction &MF = DAG.getMachineFunction();
Eli Friedman948e95a2009-05-23 09:59:16 +00006574 unsigned MemSize = DstTy.getSizeInBits()/8;
David Greene3f2bf852009-11-12 20:49:22 +00006575 int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Dan Gohman475871a2008-07-27 21:46:04 +00006576 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Eric Christopherfd179292009-08-27 18:07:15 +00006577
Michael J. Spencerec38de22010-10-10 22:04:20 +00006578
6579
Evan Cheng0db9fe62006-04-25 20:13:52 +00006580 unsigned Opc;
Owen Anderson825b72b2009-08-11 20:47:22 +00006581 switch (DstTy.getSimpleVT().SimpleTy) {
Torok Edwinc23197a2009-07-14 16:55:14 +00006582 default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
Owen Anderson825b72b2009-08-11 20:47:22 +00006583 case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
6584 case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
6585 case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
Evan Cheng0db9fe62006-04-25 20:13:52 +00006586 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006587
Dan Gohman475871a2008-07-27 21:46:04 +00006588 SDValue Chain = DAG.getEntryNode();
6589 SDValue Value = Op.getOperand(0);
Chris Lattner492a43e2010-09-22 01:28:21 +00006590 EVT TheVT = Op.getOperand(0).getValueType();
6591 if (isScalarFPTypeInSSEReg(TheVT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006592 assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
Chris Lattner07290932010-09-22 01:05:16 +00006593 Chain = DAG.getStore(Chain, DL, Value, StackSlot,
Chris Lattnere8639032010-09-21 06:22:23 +00006594 MachinePointerInfo::getFixedStack(SSFI),
David Greene67c9d422010-02-15 16:53:33 +00006595 false, false, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +00006596 SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
Dan Gohman475871a2008-07-27 21:46:04 +00006597 SDValue Ops[] = {
Chris Lattner492a43e2010-09-22 01:28:21 +00006598 Chain, StackSlot, DAG.getValueType(TheVT)
Chris Lattner5a88b832007-02-25 07:10:00 +00006599 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00006600
Chris Lattner492a43e2010-09-22 01:28:21 +00006601 MachineMemOperand *MMO =
6602 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6603 MachineMemOperand::MOLoad, MemSize, MemSize);
6604 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
6605 DstTy, MMO);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006606 Chain = Value.getValue(1);
David Greene3f2bf852009-11-12 20:49:22 +00006607 SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006608 StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
6609 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00006610
Chris Lattner07290932010-09-22 01:05:16 +00006611 MachineMemOperand *MMO =
6612 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
6613 MachineMemOperand::MOStore, MemSize, MemSize);
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00006614
Evan Cheng0db9fe62006-04-25 20:13:52 +00006615 // Build the FP_TO_INT*_IN_MEM
Dan Gohman475871a2008-07-27 21:46:04 +00006616 SDValue Ops[] = { Chain, Value, StackSlot };
Chris Lattner07290932010-09-22 01:05:16 +00006617 SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
6618 Ops, 3, DstTy, MMO);
Evan Chengd9558e02006-01-06 00:43:03 +00006619
Chris Lattner27a6c732007-11-24 07:07:01 +00006620 return std::make_pair(FIST, StackSlot);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006621}
6622
Dan Gohmand858e902010-04-17 15:26:15 +00006623SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
6624 SelectionDAG &DAG) const {
Dale Johannesen0488fb62010-09-30 23:57:10 +00006625 if (Op.getValueType().isVector())
Eli Friedman23ef1052009-06-06 03:57:58 +00006626 return SDValue();
Eli Friedman23ef1052009-06-06 03:57:58 +00006627
Eli Friedman948e95a2009-05-23 09:59:16 +00006628 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
Dan Gohman475871a2008-07-27 21:46:04 +00006629 SDValue FIST = Vals.first, StackSlot = Vals.second;
Eli Friedman36df4992009-05-27 00:47:34 +00006630 // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
6631 if (FIST.getNode() == 0) return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +00006632
Chris Lattner27a6c732007-11-24 07:07:01 +00006633 // Load the result.
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006634 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006635 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00006636}
6637
Dan Gohmand858e902010-04-17 15:26:15 +00006638SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
6639 SelectionDAG &DAG) const {
Eli Friedman948e95a2009-05-23 09:59:16 +00006640 std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
6641 SDValue FIST = Vals.first, StackSlot = Vals.second;
6642 assert(FIST.getNode() && "Unexpected failure");
6643
6644 // Load the result.
6645 return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
Chris Lattner51abfe42010-09-21 06:02:19 +00006646 FIST, StackSlot, MachinePointerInfo(), false, false, 0);
Eli Friedman948e95a2009-05-23 09:59:16 +00006647}
6648
Dan Gohmand858e902010-04-17 15:26:15 +00006649SDValue X86TargetLowering::LowerFABS(SDValue Op,
6650 SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006651 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006652 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006653 EVT VT = Op.getValueType();
6654 EVT EltVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006655 if (VT.isVector())
6656 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006657 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006658 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006659 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
Dan Gohman20382522007-07-10 00:05:58 +00006660 CV.push_back(C);
6661 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006662 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006663 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
Dan Gohman20382522007-07-10 00:05:58 +00006664 CV.push_back(C);
6665 CV.push_back(C);
6666 CV.push_back(C);
6667 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006668 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006669 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006670 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006671 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006672 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006673 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006674 return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006675}
6676
Dan Gohmand858e902010-04-17 15:26:15 +00006677SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006678 LLVMContext *Context = DAG.getContext();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006679 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006680 EVT VT = Op.getValueType();
6681 EVT EltVT = VT;
Duncan Sandsda9ad382009-09-06 19:29:07 +00006682 if (VT.isVector())
Duncan Sands83ec4b62008-06-06 12:08:01 +00006683 EltVT = VT.getVectorElementType();
Evan Cheng0db9fe62006-04-25 20:13:52 +00006684 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006685 if (EltVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006686 Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
Dan Gohman20382522007-07-10 00:05:58 +00006687 CV.push_back(C);
6688 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006689 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006690 Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
Dan Gohman20382522007-07-10 00:05:58 +00006691 CV.push_back(C);
6692 CV.push_back(C);
6693 CV.push_back(C);
6694 CV.push_back(C);
Evan Cheng0db9fe62006-04-25 20:13:52 +00006695 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006696 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006697 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006698 SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006699 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006700 false, false, 16);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006701 if (VT.isVector()) {
Dale Johannesenace16102009-02-03 19:33:06 +00006702 return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00006703 DAG.getNode(ISD::XOR, dl, MVT::v2i64,
6704 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
Dale Johannesenace16102009-02-03 19:33:06 +00006705 Op.getOperand(0)),
Owen Anderson825b72b2009-08-11 20:47:22 +00006706 DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, Mask)));
Evan Chengd4d01b72007-07-19 23:36:01 +00006707 } else {
Dale Johannesenace16102009-02-03 19:33:06 +00006708 return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
Evan Chengd4d01b72007-07-19 23:36:01 +00006709 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00006710}
6711
Dan Gohmand858e902010-04-17 15:26:15 +00006712SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
Owen Andersona90b3dc2009-07-15 21:51:10 +00006713 LLVMContext *Context = DAG.getContext();
Dan Gohman475871a2008-07-27 21:46:04 +00006714 SDValue Op0 = Op.getOperand(0);
6715 SDValue Op1 = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00006716 DebugLoc dl = Op.getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00006717 EVT VT = Op.getValueType();
6718 EVT SrcVT = Op1.getValueType();
Evan Cheng73d6cf12007-01-05 21:37:56 +00006719
6720 // If second operand is smaller, extend it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006721 if (SrcVT.bitsLT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006722 Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006723 SrcVT = VT;
6724 }
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006725 // And if it is bigger, shrink it first.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006726 if (SrcVT.bitsGT(VT)) {
Dale Johannesenace16102009-02-03 19:33:06 +00006727 Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006728 SrcVT = VT;
Dale Johannesen61c7ef32007-10-21 01:07:44 +00006729 }
6730
6731 // At this point the operands and the result should have the same
6732 // type, and that won't be f80 since that is not custom lowered.
Evan Cheng73d6cf12007-01-05 21:37:56 +00006733
Evan Cheng68c47cb2007-01-05 07:55:56 +00006734 // First get the sign bit of second operand.
6735 std::vector<Constant*> CV;
Owen Anderson825b72b2009-08-11 20:47:22 +00006736 if (SrcVT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006737 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
6738 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006739 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006740 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
6741 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6742 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6743 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006744 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006745 Constant *C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006746 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006747 SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006748 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006749 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006750 SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006751
6752 // Shift sign bit right or left if the two operands have different types.
Duncan Sands8e4eb092008-06-08 20:54:56 +00006753 if (SrcVT.bitsGT(VT)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00006754 // Op0 is MVT::f32, Op1 is MVT::f64.
6755 SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
6756 SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
6757 DAG.getConstant(32, MVT::i32));
6758 SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, SignBit);
6759 SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
Chris Lattner0bd48932008-01-17 07:00:52 +00006760 DAG.getIntPtrConstant(0));
Evan Cheng68c47cb2007-01-05 07:55:56 +00006761 }
6762
Evan Cheng73d6cf12007-01-05 21:37:56 +00006763 // Clear first operand sign bit.
6764 CV.clear();
Owen Anderson825b72b2009-08-11 20:47:22 +00006765 if (VT == MVT::f64) {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006766 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
6767 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006768 } else {
Owen Anderson6f83c9c2009-07-27 20:59:43 +00006769 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
6770 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6771 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
6772 CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
Evan Cheng73d6cf12007-01-05 21:37:56 +00006773 }
Owen Andersonaf7ec972009-07-28 21:19:26 +00006774 C = ConstantVector::get(CV);
Evan Cheng1606e8e2009-03-13 07:51:59 +00006775 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006776 SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00006777 MachinePointerInfo::getConstantPool(),
David Greene67c9d422010-02-15 16:53:33 +00006778 false, false, 16);
Dale Johannesenace16102009-02-03 19:33:06 +00006779 SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
Evan Cheng73d6cf12007-01-05 21:37:56 +00006780
6781 // Or the value with the sign bit.
Dale Johannesenace16102009-02-03 19:33:06 +00006782 return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
Evan Cheng68c47cb2007-01-05 07:55:56 +00006783}
6784
Dan Gohman076aee32009-03-04 19:44:21 +00006785/// Emit nodes that will be selected as "test Op0,Op0", or something
6786/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006787SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006788 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006789 DebugLoc dl = Op.getDebugLoc();
6790
Dan Gohman31125812009-03-07 01:58:32 +00006791 // CF and OF aren't always set the way we want. Determine which
6792 // of these we need.
6793 bool NeedCF = false;
6794 bool NeedOF = false;
6795 switch (X86CC) {
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006796 default: break;
Dan Gohman31125812009-03-07 01:58:32 +00006797 case X86::COND_A: case X86::COND_AE:
6798 case X86::COND_B: case X86::COND_BE:
6799 NeedCF = true;
6800 break;
6801 case X86::COND_G: case X86::COND_GE:
6802 case X86::COND_L: case X86::COND_LE:
6803 case X86::COND_O: case X86::COND_NO:
6804 NeedOF = true;
6805 break;
Dan Gohman31125812009-03-07 01:58:32 +00006806 }
6807
Dan Gohman076aee32009-03-04 19:44:21 +00006808 // See if we can use the EFLAGS value from the operand instead of
Dan Gohman31125812009-03-07 01:58:32 +00006809 // doing a separate TEST. TEST always sets OF and CF to 0, so unless
6810 // we prove that the arithmetic won't overflow, we can't use OF or CF.
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006811 if (Op.getResNo() != 0 || NeedOF || NeedCF)
6812 // Emit a CMP with 0, which is the TEST pattern.
6813 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6814 DAG.getConstant(0, Op.getValueType()));
6815
6816 unsigned Opcode = 0;
6817 unsigned NumOperands = 0;
6818 switch (Op.getNode()->getOpcode()) {
6819 case ISD::ADD:
6820 // Due to an isel shortcoming, be conservative if this add is likely to be
6821 // selected as part of a load-modify-store instruction. When the root node
6822 // in a match is a store, isel doesn't know how to remap non-chain non-flag
6823 // uses of other nodes in the match, such as the ADD in this case. This
6824 // leads to the ADD being left around and reselected, with the result being
6825 // two adds in the output. Alas, even if none our users are stores, that
6826 // doesn't prove we're O.K. Ergo, if we have any parents that aren't
6827 // CopyToReg or SETCC, eschew INC/DEC. A better fix seems to require
6828 // climbing the DAG back to the root, and it doesn't seem to be worth the
6829 // effort.
6830 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
Dan Gohman076aee32009-03-04 19:44:21 +00006831 UE = Op.getNode()->use_end(); UI != UE; ++UI)
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006832 if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
6833 goto default_case;
6834
6835 if (ConstantSDNode *C =
6836 dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
6837 // An add of one will be selected as an INC.
6838 if (C->getAPIntValue() == 1) {
6839 Opcode = X86ISD::INC;
6840 NumOperands = 1;
6841 break;
Dan Gohmane220c4b2009-09-18 19:59:53 +00006842 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006843
6844 // An add of negative one (subtract of one) will be selected as a DEC.
6845 if (C->getAPIntValue().isAllOnesValue()) {
6846 Opcode = X86ISD::DEC;
6847 NumOperands = 1;
6848 break;
6849 }
Dan Gohman076aee32009-03-04 19:44:21 +00006850 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006851
6852 // Otherwise use a regular EFLAGS-setting add.
6853 Opcode = X86ISD::ADD;
6854 NumOperands = 2;
6855 break;
6856 case ISD::AND: {
6857 // If the primary and result isn't used, don't bother using X86ISD::AND,
6858 // because a TEST instruction will be better.
6859 bool NonFlagUse = false;
6860 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6861 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
6862 SDNode *User = *UI;
6863 unsigned UOpNo = UI.getOperandNo();
6864 if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
6865 // Look pass truncate.
6866 UOpNo = User->use_begin().getOperandNo();
6867 User = *User->use_begin();
6868 }
6869
6870 if (User->getOpcode() != ISD::BRCOND &&
6871 User->getOpcode() != ISD::SETCC &&
6872 (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
6873 NonFlagUse = true;
6874 break;
6875 }
Dan Gohman076aee32009-03-04 19:44:21 +00006876 }
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006877
6878 if (!NonFlagUse)
6879 break;
6880 }
6881 // FALL THROUGH
6882 case ISD::SUB:
6883 case ISD::OR:
6884 case ISD::XOR:
6885 // Due to the ISEL shortcoming noted above, be conservative if this op is
6886 // likely to be selected as part of a load-modify-store instruction.
6887 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
6888 UE = Op.getNode()->use_end(); UI != UE; ++UI)
6889 if (UI->getOpcode() == ISD::STORE)
6890 goto default_case;
6891
6892 // Otherwise use a regular EFLAGS-setting instruction.
6893 switch (Op.getNode()->getOpcode()) {
6894 default: llvm_unreachable("unexpected operator!");
6895 case ISD::SUB: Opcode = X86ISD::SUB; break;
6896 case ISD::OR: Opcode = X86ISD::OR; break;
6897 case ISD::XOR: Opcode = X86ISD::XOR; break;
6898 case ISD::AND: Opcode = X86ISD::AND; break;
6899 }
6900
6901 NumOperands = 2;
6902 break;
6903 case X86ISD::ADD:
6904 case X86ISD::SUB:
6905 case X86ISD::INC:
6906 case X86ISD::DEC:
6907 case X86ISD::OR:
6908 case X86ISD::XOR:
6909 case X86ISD::AND:
6910 return SDValue(Op.getNode(), 1);
6911 default:
6912 default_case:
6913 break;
Dan Gohman076aee32009-03-04 19:44:21 +00006914 }
6915
Bill Wendlingc25ccf82010-06-28 21:08:32 +00006916 if (Opcode == 0)
6917 // Emit a CMP with 0, which is the TEST pattern.
6918 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
6919 DAG.getConstant(0, Op.getValueType()));
6920
6921 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
6922 SmallVector<SDValue, 4> Ops;
6923 for (unsigned i = 0; i != NumOperands; ++i)
6924 Ops.push_back(Op.getOperand(i));
6925
6926 SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
6927 DAG.ReplaceAllUsesWith(Op, New);
6928 return SDValue(New.getNode(), 1);
Dan Gohman076aee32009-03-04 19:44:21 +00006929}
6930
6931/// Emit nodes that will be selected as "cmp Op0,Op1", or something
6932/// equivalent.
Dan Gohman31125812009-03-07 01:58:32 +00006933SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
Evan Cheng552f09a2010-04-26 19:06:11 +00006934 SelectionDAG &DAG) const {
Dan Gohman076aee32009-03-04 19:44:21 +00006935 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
6936 if (C->getAPIntValue() == 0)
Evan Cheng552f09a2010-04-26 19:06:11 +00006937 return EmitTest(Op0, X86CC, DAG);
Dan Gohman076aee32009-03-04 19:44:21 +00006938
6939 DebugLoc dl = Op0.getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00006940 return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
Dan Gohman076aee32009-03-04 19:44:21 +00006941}
6942
Evan Chengd40d03e2010-01-06 19:38:29 +00006943/// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
6944/// if it's possible.
Evan Cheng5528e7b2010-04-21 01:47:12 +00006945SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
6946 DebugLoc dl, SelectionDAG &DAG) const {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006947 SDValue Op0 = And.getOperand(0);
6948 SDValue Op1 = And.getOperand(1);
6949 if (Op0.getOpcode() == ISD::TRUNCATE)
6950 Op0 = Op0.getOperand(0);
6951 if (Op1.getOpcode() == ISD::TRUNCATE)
6952 Op1 = Op1.getOperand(0);
6953
Evan Chengd40d03e2010-01-06 19:38:29 +00006954 SDValue LHS, RHS;
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006955 if (Op1.getOpcode() == ISD::SHL)
6956 std::swap(Op0, Op1);
6957 if (Op0.getOpcode() == ISD::SHL) {
Evan Cheng2c755ba2010-02-27 07:36:59 +00006958 if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
6959 if (And00C->getZExtValue() == 1) {
Dan Gohman6b13cbc2010-06-24 02:07:59 +00006960 // If we looked past a truncate, check that it's only truncating away
6961 // known zeros.
6962 unsigned BitWidth = Op0.getValueSizeInBits();
6963 unsigned AndBitWidth = And.getValueSizeInBits();
6964 if (BitWidth > AndBitWidth) {
6965 APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
6966 DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
6967 if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
6968 return SDValue();
6969 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006970 LHS = Op1;
6971 RHS = Op0.getOperand(1);
Evan Chengd40d03e2010-01-06 19:38:29 +00006972 }
Evan Cheng2c755ba2010-02-27 07:36:59 +00006973 } else if (Op1.getOpcode() == ISD::Constant) {
6974 ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
6975 SDValue AndLHS = Op0;
Evan Chengd40d03e2010-01-06 19:38:29 +00006976 if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
6977 LHS = AndLHS.getOperand(0);
6978 RHS = AndLHS.getOperand(1);
Dan Gohmane5af2d32009-01-29 01:59:02 +00006979 }
Evan Chengd40d03e2010-01-06 19:38:29 +00006980 }
Evan Cheng0488db92007-09-25 01:57:46 +00006981
Evan Chengd40d03e2010-01-06 19:38:29 +00006982 if (LHS.getNode()) {
Evan Chenge5b51ac2010-04-17 06:13:15 +00006983 // If LHS is i8, promote it to i32 with any_extend. There is no i8 BT
Evan Chengd40d03e2010-01-06 19:38:29 +00006984 // instruction. Since the shift amount is in-range-or-undefined, we know
Evan Chenge5b51ac2010-04-17 06:13:15 +00006985 // that doing a bittest on the i32 value is ok. We extend to i32 because
Evan Chengd40d03e2010-01-06 19:38:29 +00006986 // the encoding for the i16 version is larger than the i32 version.
Evan Chenge5b51ac2010-04-17 06:13:15 +00006987 // Also promote i16 to i32 for performance / code size reason.
6988 if (LHS.getValueType() == MVT::i8 ||
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00006989 LHS.getValueType() == MVT::i16)
Evan Chengd40d03e2010-01-06 19:38:29 +00006990 LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
Chris Lattnere55484e2008-12-25 05:34:37 +00006991
Evan Chengd40d03e2010-01-06 19:38:29 +00006992 // If the operand types disagree, extend the shift amount to match. Since
6993 // BT ignores high bits (like shifts) we can use anyextend.
6994 if (LHS.getValueType() != RHS.getValueType())
6995 RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
Dan Gohmane5af2d32009-01-29 01:59:02 +00006996
Evan Chengd40d03e2010-01-06 19:38:29 +00006997 SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
6998 unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
6999 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7000 DAG.getConstant(Cond, MVT::i8), BT);
Chris Lattnere55484e2008-12-25 05:34:37 +00007001 }
7002
Evan Cheng54de3ea2010-01-05 06:52:31 +00007003 return SDValue();
7004}
7005
Dan Gohmand858e902010-04-17 15:26:15 +00007006SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng54de3ea2010-01-05 06:52:31 +00007007 assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7008 SDValue Op0 = Op.getOperand(0);
7009 SDValue Op1 = Op.getOperand(1);
7010 DebugLoc dl = Op.getDebugLoc();
7011 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7012
7013 // Optimize to BT if possible.
Evan Chengd40d03e2010-01-06 19:38:29 +00007014 // Lower (X & (1 << N)) == 0 to BT(X, N).
7015 // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7016 // Lower ((X >>s N) & 1) != 0 to BT(X, N).
7017 if (Op0.getOpcode() == ISD::AND &&
7018 Op0.hasOneUse() &&
7019 Op1.getOpcode() == ISD::Constant &&
Dan Gohmane368b462010-06-18 14:22:04 +00007020 cast<ConstantSDNode>(Op1)->isNullValue() &&
Evan Chengd40d03e2010-01-06 19:38:29 +00007021 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7022 SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7023 if (NewSetCC.getNode())
7024 return NewSetCC;
7025 }
Evan Cheng54de3ea2010-01-05 06:52:31 +00007026
Evan Cheng2c755ba2010-02-27 07:36:59 +00007027 // Look for "(setcc) == / != 1" to avoid unncessary setcc.
7028 if (Op0.getOpcode() == X86ISD::SETCC &&
7029 Op1.getOpcode() == ISD::Constant &&
7030 (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
7031 cast<ConstantSDNode>(Op1)->isNullValue()) &&
7032 (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7033 X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7034 bool Invert = (CC == ISD::SETNE) ^
7035 cast<ConstantSDNode>(Op1)->isNullValue();
7036 if (Invert)
7037 CCode = X86::GetOppositeBranchCondition(CCode);
7038 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7039 DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7040 }
7041
Evan Chenge5b51ac2010-04-17 06:13:15 +00007042 bool isFP = Op1.getValueType().isFloatingPoint();
Chris Lattnere55484e2008-12-25 05:34:37 +00007043 unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007044 if (X86CC == X86::COND_INVALID)
7045 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +00007046
Evan Cheng552f09a2010-04-26 19:06:11 +00007047 SDValue Cond = EmitCmp(Op0, Op1, X86CC, DAG);
Evan Chengad9c0a32009-12-15 00:53:42 +00007048
7049 // Use sbb x, x to materialize carry bit into a GPR.
Evan Cheng2e489c42009-12-16 00:53:11 +00007050 if (X86CC == X86::COND_B)
Evan Chengad9c0a32009-12-15 00:53:42 +00007051 return DAG.getNode(ISD::AND, dl, MVT::i8,
7052 DAG.getNode(X86ISD::SETCC_CARRY, dl, MVT::i8,
7053 DAG.getConstant(X86CC, MVT::i8), Cond),
7054 DAG.getConstant(1, MVT::i8));
Evan Chengad9c0a32009-12-15 00:53:42 +00007055
Owen Anderson825b72b2009-08-11 20:47:22 +00007056 return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7057 DAG.getConstant(X86CC, MVT::i8), Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007058}
7059
Dan Gohmand858e902010-04-17 15:26:15 +00007060SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007061 SDValue Cond;
7062 SDValue Op0 = Op.getOperand(0);
7063 SDValue Op1 = Op.getOperand(1);
7064 SDValue CC = Op.getOperand(2);
Owen Andersone50ed302009-08-10 22:56:29 +00007065 EVT VT = Op.getValueType();
Nate Begeman30a0de92008-07-17 16:51:19 +00007066 ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7067 bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007068 DebugLoc dl = Op.getDebugLoc();
Nate Begeman30a0de92008-07-17 16:51:19 +00007069
7070 if (isFP) {
7071 unsigned SSECC = 8;
Owen Andersone50ed302009-08-10 22:56:29 +00007072 EVT VT0 = Op0.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00007073 assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
7074 unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
Nate Begeman30a0de92008-07-17 16:51:19 +00007075 bool Swap = false;
7076
7077 switch (SetCCOpcode) {
7078 default: break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007079 case ISD::SETOEQ:
Nate Begeman30a0de92008-07-17 16:51:19 +00007080 case ISD::SETEQ: SSECC = 0; break;
Scott Michelfdc40a02009-02-17 22:15:04 +00007081 case ISD::SETOGT:
Nate Begeman30a0de92008-07-17 16:51:19 +00007082 case ISD::SETGT: Swap = true; // Fallthrough
7083 case ISD::SETLT:
7084 case ISD::SETOLT: SSECC = 1; break;
7085 case ISD::SETOGE:
7086 case ISD::SETGE: Swap = true; // Fallthrough
7087 case ISD::SETLE:
7088 case ISD::SETOLE: SSECC = 2; break;
7089 case ISD::SETUO: SSECC = 3; break;
Nate Begemanfb8ead02008-07-25 19:05:58 +00007090 case ISD::SETUNE:
Nate Begeman30a0de92008-07-17 16:51:19 +00007091 case ISD::SETNE: SSECC = 4; break;
7092 case ISD::SETULE: Swap = true;
7093 case ISD::SETUGE: SSECC = 5; break;
7094 case ISD::SETULT: Swap = true;
7095 case ISD::SETUGT: SSECC = 6; break;
7096 case ISD::SETO: SSECC = 7; break;
7097 }
7098 if (Swap)
7099 std::swap(Op0, Op1);
7100
Nate Begemanfb8ead02008-07-25 19:05:58 +00007101 // In the two special cases we can't handle, emit two comparisons.
Nate Begeman30a0de92008-07-17 16:51:19 +00007102 if (SSECC == 8) {
Nate Begemanfb8ead02008-07-25 19:05:58 +00007103 if (SetCCOpcode == ISD::SETUEQ) {
Dan Gohman475871a2008-07-27 21:46:04 +00007104 SDValue UNORD, EQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007105 UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7106 EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007107 return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007108 }
7109 else if (SetCCOpcode == ISD::SETONE) {
Dan Gohman475871a2008-07-27 21:46:04 +00007110 SDValue ORD, NEQ;
Owen Anderson825b72b2009-08-11 20:47:22 +00007111 ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7112 NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
Dale Johannesenace16102009-02-03 19:33:06 +00007113 return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
Nate Begemanfb8ead02008-07-25 19:05:58 +00007114 }
Torok Edwinc23197a2009-07-14 16:55:14 +00007115 llvm_unreachable("Illegal FP comparison");
Nate Begeman30a0de92008-07-17 16:51:19 +00007116 }
7117 // Handle all other FP comparisons here.
Owen Anderson825b72b2009-08-11 20:47:22 +00007118 return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
Nate Begeman30a0de92008-07-17 16:51:19 +00007119 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007120
Nate Begeman30a0de92008-07-17 16:51:19 +00007121 // We are handling one of the integer comparisons here. Since SSE only has
7122 // GT and EQ comparisons for integer, swapping operands and multiple
7123 // operations may be required for some comparisons.
7124 unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7125 bool Swap = false, Invert = false, FlipSigns = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00007126
Owen Anderson825b72b2009-08-11 20:47:22 +00007127 switch (VT.getSimpleVT().SimpleTy) {
Nate Begeman30a0de92008-07-17 16:51:19 +00007128 default: break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007129 case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007130 case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
Owen Anderson825b72b2009-08-11 20:47:22 +00007131 case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7132 case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
Nate Begeman30a0de92008-07-17 16:51:19 +00007133 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007134
Nate Begeman30a0de92008-07-17 16:51:19 +00007135 switch (SetCCOpcode) {
7136 default: break;
7137 case ISD::SETNE: Invert = true;
7138 case ISD::SETEQ: Opc = EQOpc; break;
7139 case ISD::SETLT: Swap = true;
7140 case ISD::SETGT: Opc = GTOpc; break;
7141 case ISD::SETGE: Swap = true;
7142 case ISD::SETLE: Opc = GTOpc; Invert = true; break;
7143 case ISD::SETULT: Swap = true;
7144 case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
7145 case ISD::SETUGE: Swap = true;
7146 case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
7147 }
7148 if (Swap)
7149 std::swap(Op0, Op1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007150
Nate Begeman30a0de92008-07-17 16:51:19 +00007151 // Since SSE has no unsigned integer comparisons, we need to flip the sign
7152 // bits of the inputs before performing those operations.
7153 if (FlipSigns) {
Owen Andersone50ed302009-08-10 22:56:29 +00007154 EVT EltVT = VT.getVectorElementType();
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00007155 SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
7156 EltVT);
Dan Gohman475871a2008-07-27 21:46:04 +00007157 std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
Evan Chenga87008d2009-02-25 22:49:59 +00007158 SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
7159 SignBits.size());
Dale Johannesenace16102009-02-03 19:33:06 +00007160 Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
7161 Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
Nate Begeman30a0de92008-07-17 16:51:19 +00007162 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007163
Dale Johannesenace16102009-02-03 19:33:06 +00007164 SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
Nate Begeman30a0de92008-07-17 16:51:19 +00007165
7166 // If the logical-not of the result is required, perform that now.
Bob Wilson4c245462009-01-22 17:39:32 +00007167 if (Invert)
Dale Johannesenace16102009-02-03 19:33:06 +00007168 Result = DAG.getNOT(dl, Result, VT);
Bob Wilson4c245462009-01-22 17:39:32 +00007169
Nate Begeman30a0de92008-07-17 16:51:19 +00007170 return Result;
7171}
Evan Cheng0488db92007-09-25 01:57:46 +00007172
Evan Cheng370e5342008-12-03 08:38:43 +00007173// isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
Dan Gohman076aee32009-03-04 19:44:21 +00007174static bool isX86LogicalCmp(SDValue Op) {
7175 unsigned Opc = Op.getNode()->getOpcode();
7176 if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
7177 return true;
7178 if (Op.getResNo() == 1 &&
7179 (Opc == X86ISD::ADD ||
7180 Opc == X86ISD::SUB ||
7181 Opc == X86ISD::SMUL ||
7182 Opc == X86ISD::UMUL ||
7183 Opc == X86ISD::INC ||
Dan Gohmane220c4b2009-09-18 19:59:53 +00007184 Opc == X86ISD::DEC ||
7185 Opc == X86ISD::OR ||
7186 Opc == X86ISD::XOR ||
7187 Opc == X86ISD::AND))
Dan Gohman076aee32009-03-04 19:44:21 +00007188 return true;
7189
7190 return false;
Evan Cheng370e5342008-12-03 08:38:43 +00007191}
7192
Dan Gohmand858e902010-04-17 15:26:15 +00007193SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007194 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007195 SDValue Cond = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007196 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007197 SDValue CC;
Evan Cheng9bba8942006-01-26 02:13:10 +00007198
Dan Gohman1a492952009-10-20 16:22:37 +00007199 if (Cond.getOpcode() == ISD::SETCC) {
7200 SDValue NewCond = LowerSETCC(Cond, DAG);
7201 if (NewCond.getNode())
7202 Cond = NewCond;
7203 }
Evan Cheng734503b2006-09-11 02:19:56 +00007204
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007205 // (select (x == 0), -1, 0) -> (sign_bit (x - 1))
7206 SDValue Op1 = Op.getOperand(1);
7207 SDValue Op2 = Op.getOperand(2);
7208 if (Cond.getOpcode() == X86ISD::SETCC &&
7209 cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue() == X86::COND_E) {
7210 SDValue Cmp = Cond.getOperand(1);
7211 if (Cmp.getOpcode() == X86ISD::CMP) {
7212 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op1);
7213 ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
7214 ConstantSDNode *RHSC =
7215 dyn_cast<ConstantSDNode>(Cmp.getOperand(1).getNode());
7216 if (N1C && N1C->isAllOnesValue() &&
7217 N2C && N2C->isNullValue() &&
7218 RHSC && RHSC->isNullValue()) {
7219 SDValue CmpOp0 = Cmp.getOperand(0);
Chris Lattnerda0688e2010-03-14 18:44:35 +00007220 Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007221 CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
7222 return DAG.getNode(X86ISD::SETCC_CARRY, dl, Op.getValueType(),
7223 DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
7224 }
7225 }
7226 }
7227
Evan Chengad9c0a32009-12-15 00:53:42 +00007228 // Look pass (and (setcc_carry (cmp ...)), 1).
7229 if (Cond.getOpcode() == ISD::AND &&
7230 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7231 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007232 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007233 Cond = Cond.getOperand(0);
7234 }
7235
Evan Cheng3f41d662007-10-08 22:16:29 +00007236 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7237 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007238 if (Cond.getOpcode() == X86ISD::SETCC ||
7239 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007240 CC = Cond.getOperand(0);
7241
Dan Gohman475871a2008-07-27 21:46:04 +00007242 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007243 unsigned Opc = Cmp.getOpcode();
Owen Andersone50ed302009-08-10 22:56:29 +00007244 EVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00007245
Evan Cheng3f41d662007-10-08 22:16:29 +00007246 bool IllegalFPCMov = false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007247 if (VT.isFloatingPoint() && !VT.isVector() &&
Chris Lattner78631162008-01-16 06:24:21 +00007248 !isScalarFPTypeInSSEReg(VT)) // FPStack?
Dan Gohman7810bfe2008-09-26 21:54:37 +00007249 IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00007250
Chris Lattnerd1980a52009-03-12 06:52:53 +00007251 if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
7252 Opc == X86ISD::BT) { // FIXME
Evan Cheng3f41d662007-10-08 22:16:29 +00007253 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007254 addTest = false;
7255 }
7256 }
7257
7258 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007259 // Look pass the truncate.
7260 if (Cond.getOpcode() == ISD::TRUNCATE)
7261 Cond = Cond.getOperand(0);
7262
7263 // We know the result of AND is compared against zero. Try to match
7264 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007265 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007266 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7267 if (NewSetCC.getNode()) {
7268 CC = NewSetCC.getOperand(0);
7269 Cond = NewSetCC.getOperand(1);
7270 addTest = false;
7271 }
7272 }
7273 }
7274
7275 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007276 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007277 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007278 }
7279
Evan Cheng0488db92007-09-25 01:57:46 +00007280 // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
7281 // condition is true.
Evan Cheng8c7ecaf2010-01-26 02:00:44 +00007282 SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
7283 SDValue Ops[] = { Op2, Op1, CC, Cond };
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00007284 return DAG.getNode(X86ISD::CMOV, dl, VTs, Ops, array_lengthof(Ops));
Evan Cheng0488db92007-09-25 01:57:46 +00007285}
7286
Evan Cheng370e5342008-12-03 08:38:43 +00007287// isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
7288// ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
7289// from the AND / OR.
7290static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
7291 Opc = Op.getOpcode();
7292 if (Opc != ISD::OR && Opc != ISD::AND)
7293 return false;
7294 return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7295 Op.getOperand(0).hasOneUse() &&
7296 Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
7297 Op.getOperand(1).hasOneUse());
7298}
7299
Evan Cheng961d6d42009-02-02 08:19:07 +00007300// isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
7301// 1 and that the SETCC node has a single use.
Evan Cheng67ad9db2009-02-02 08:07:36 +00007302static bool isXor1OfSetCC(SDValue Op) {
7303 if (Op.getOpcode() != ISD::XOR)
7304 return false;
7305 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
7306 if (N1C && N1C->getAPIntValue() == 1) {
7307 return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
7308 Op.getOperand(0).hasOneUse();
7309 }
7310 return false;
7311}
7312
Dan Gohmand858e902010-04-17 15:26:15 +00007313SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng734503b2006-09-11 02:19:56 +00007314 bool addTest = true;
Dan Gohman475871a2008-07-27 21:46:04 +00007315 SDValue Chain = Op.getOperand(0);
7316 SDValue Cond = Op.getOperand(1);
7317 SDValue Dest = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007318 DebugLoc dl = Op.getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +00007319 SDValue CC;
Evan Cheng734503b2006-09-11 02:19:56 +00007320
Dan Gohman1a492952009-10-20 16:22:37 +00007321 if (Cond.getOpcode() == ISD::SETCC) {
7322 SDValue NewCond = LowerSETCC(Cond, DAG);
7323 if (NewCond.getNode())
7324 Cond = NewCond;
7325 }
Chris Lattnere55484e2008-12-25 05:34:37 +00007326#if 0
7327 // FIXME: LowerXALUO doesn't handle these!!
Bill Wendlingd350e022008-12-12 21:15:41 +00007328 else if (Cond.getOpcode() == X86ISD::ADD ||
7329 Cond.getOpcode() == X86ISD::SUB ||
7330 Cond.getOpcode() == X86ISD::SMUL ||
7331 Cond.getOpcode() == X86ISD::UMUL)
Bill Wendling74c37652008-12-09 22:08:41 +00007332 Cond = LowerXALUO(Cond, DAG);
Chris Lattnere55484e2008-12-25 05:34:37 +00007333#endif
Scott Michelfdc40a02009-02-17 22:15:04 +00007334
Evan Chengad9c0a32009-12-15 00:53:42 +00007335 // Look pass (and (setcc_carry (cmp ...)), 1).
7336 if (Cond.getOpcode() == ISD::AND &&
7337 Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
7338 ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
Michael J. Spencerec38de22010-10-10 22:04:20 +00007339 if (C && C->getAPIntValue() == 1)
Evan Chengad9c0a32009-12-15 00:53:42 +00007340 Cond = Cond.getOperand(0);
7341 }
7342
Evan Cheng3f41d662007-10-08 22:16:29 +00007343 // If condition flag is set by a X86ISD::CMP, then use it as the condition
7344 // setting operand in place of the X86ISD::SETCC.
Evan Chengad9c0a32009-12-15 00:53:42 +00007345 if (Cond.getOpcode() == X86ISD::SETCC ||
7346 Cond.getOpcode() == X86ISD::SETCC_CARRY) {
Evan Cheng734503b2006-09-11 02:19:56 +00007347 CC = Cond.getOperand(0);
Evan Cheng0db9fe62006-04-25 20:13:52 +00007348
Dan Gohman475871a2008-07-27 21:46:04 +00007349 SDValue Cmp = Cond.getOperand(1);
Evan Cheng734503b2006-09-11 02:19:56 +00007350 unsigned Opc = Cmp.getOpcode();
Chris Lattnere55484e2008-12-25 05:34:37 +00007351 // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
Dan Gohman076aee32009-03-04 19:44:21 +00007352 if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
Evan Cheng3f41d662007-10-08 22:16:29 +00007353 Cond = Cmp;
Evan Cheng0488db92007-09-25 01:57:46 +00007354 addTest = false;
Bill Wendling61edeb52008-12-02 01:06:39 +00007355 } else {
Evan Cheng370e5342008-12-03 08:38:43 +00007356 switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007357 default: break;
7358 case X86::COND_O:
Dan Gohman653456c2009-01-07 00:15:08 +00007359 case X86::COND_B:
Chris Lattnere55484e2008-12-25 05:34:37 +00007360 // These can only come from an arithmetic instruction with overflow,
7361 // e.g. SADDO, UADDO.
Bill Wendling0ea25cb2008-12-03 08:32:02 +00007362 Cond = Cond.getNode()->getOperand(1);
7363 addTest = false;
7364 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00007365 }
Evan Cheng0488db92007-09-25 01:57:46 +00007366 }
Evan Cheng370e5342008-12-03 08:38:43 +00007367 } else {
7368 unsigned CondOpc;
7369 if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
7370 SDValue Cmp = Cond.getOperand(0).getOperand(1);
Evan Cheng370e5342008-12-03 08:38:43 +00007371 if (CondOpc == ISD::OR) {
7372 // Also, recognize the pattern generated by an FCMP_UNE. We can emit
7373 // two branches instead of an explicit OR instruction with a
7374 // separate test.
7375 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007376 isX86LogicalCmp(Cmp)) {
Evan Cheng370e5342008-12-03 08:38:43 +00007377 CC = Cond.getOperand(0).getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007378 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007379 Chain, Dest, CC, Cmp);
7380 CC = Cond.getOperand(1).getOperand(0);
7381 Cond = Cmp;
7382 addTest = false;
7383 }
7384 } else { // ISD::AND
7385 // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
7386 // two branches instead of an explicit AND instruction with a
7387 // separate test. However, we only do this if this block doesn't
7388 // have a fall-through edge, because this requires an explicit
7389 // jmp when the condition is false.
7390 if (Cmp == Cond.getOperand(1).getOperand(1) &&
Dan Gohman076aee32009-03-04 19:44:21 +00007391 isX86LogicalCmp(Cmp) &&
Evan Cheng370e5342008-12-03 08:38:43 +00007392 Op.getNode()->hasOneUse()) {
7393 X86::CondCode CCode =
7394 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7395 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007396 CC = DAG.getConstant(CCode, MVT::i8);
Dan Gohman027657d2010-06-18 15:30:29 +00007397 SDNode *User = *Op.getNode()->use_begin();
Evan Cheng370e5342008-12-03 08:38:43 +00007398 // Look for an unconditional branch following this conditional branch.
7399 // We need this because we need to reverse the successors in order
7400 // to implement FCMP_OEQ.
Dan Gohman027657d2010-06-18 15:30:29 +00007401 if (User->getOpcode() == ISD::BR) {
7402 SDValue FalseBB = User->getOperand(1);
7403 SDNode *NewBR =
7404 DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
Evan Cheng370e5342008-12-03 08:38:43 +00007405 assert(NewBR == User);
Nick Lewycky2a3ee5e2010-06-20 20:27:42 +00007406 (void)NewBR;
Evan Cheng370e5342008-12-03 08:38:43 +00007407 Dest = FalseBB;
Dan Gohman279c22e2008-10-21 03:29:32 +00007408
Dale Johannesene4d209d2009-02-03 20:21:25 +00007409 Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Evan Cheng370e5342008-12-03 08:38:43 +00007410 Chain, Dest, CC, Cmp);
7411 X86::CondCode CCode =
7412 (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
7413 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007414 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng370e5342008-12-03 08:38:43 +00007415 Cond = Cmp;
7416 addTest = false;
7417 }
7418 }
Dan Gohman279c22e2008-10-21 03:29:32 +00007419 }
Evan Cheng67ad9db2009-02-02 08:07:36 +00007420 } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
7421 // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
7422 // It should be transformed during dag combiner except when the condition
7423 // is set by a arithmetics with overflow node.
7424 X86::CondCode CCode =
7425 (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
7426 CCode = X86::GetOppositeBranchCondition(CCode);
Owen Anderson825b72b2009-08-11 20:47:22 +00007427 CC = DAG.getConstant(CCode, MVT::i8);
Evan Cheng67ad9db2009-02-02 08:07:36 +00007428 Cond = Cond.getOperand(0).getOperand(1);
7429 addTest = false;
Dan Gohman279c22e2008-10-21 03:29:32 +00007430 }
Evan Cheng0488db92007-09-25 01:57:46 +00007431 }
7432
7433 if (addTest) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007434 // Look pass the truncate.
7435 if (Cond.getOpcode() == ISD::TRUNCATE)
7436 Cond = Cond.getOperand(0);
7437
7438 // We know the result of AND is compared against zero. Try to match
7439 // it to BT.
Michael J. Spencerec38de22010-10-10 22:04:20 +00007440 if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
Evan Chengd40d03e2010-01-06 19:38:29 +00007441 SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
7442 if (NewSetCC.getNode()) {
7443 CC = NewSetCC.getOperand(0);
7444 Cond = NewSetCC.getOperand(1);
7445 addTest = false;
7446 }
7447 }
7448 }
7449
7450 if (addTest) {
Owen Anderson825b72b2009-08-11 20:47:22 +00007451 CC = DAG.getConstant(X86::COND_NE, MVT::i8);
Evan Cheng552f09a2010-04-26 19:06:11 +00007452 Cond = EmitTest(Cond, X86::COND_NE, DAG);
Evan Cheng0488db92007-09-25 01:57:46 +00007453 }
Dale Johannesene4d209d2009-02-03 20:21:25 +00007454 return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
Dan Gohman279c22e2008-10-21 03:29:32 +00007455 Chain, Dest, CC, Cond);
Evan Cheng0488db92007-09-25 01:57:46 +00007456}
7457
Anton Korobeynikove060b532007-04-17 19:34:00 +00007458
7459// Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
7460// Calls to _alloca is needed to probe the stack when allocating more than 4k
7461// bytes in one go. Touching the stack at 4K increments is necessary to ensure
7462// that the guard pages used by the OS virtual memory manager are allocated in
7463// correct sequence.
Dan Gohman475871a2008-07-27 21:46:04 +00007464SDValue
7465X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007466 SelectionDAG &DAG) const {
Duncan Sands1e1ca0b2010-10-21 16:02:12 +00007467 assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007468 "This should be used only on Windows targets");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007469 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007470
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007471 // Get the inputs.
Dan Gohman475871a2008-07-27 21:46:04 +00007472 SDValue Chain = Op.getOperand(0);
7473 SDValue Size = Op.getOperand(1);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007474 // FIXME: Ensure alignment here
7475
Dan Gohman475871a2008-07-27 21:46:04 +00007476 SDValue Flag;
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007477
Owen Anderson825b72b2009-08-11 20:47:22 +00007478 EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007479
Dale Johannesendd64c412009-02-04 00:33:20 +00007480 Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007481 Flag = Chain.getValue(1);
7482
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007483 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Anton Korobeynikov4304bcc2007-07-05 20:36:08 +00007484
Michael J. Spencere9c253e2010-10-21 01:41:01 +00007485 Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00007486 Flag = Chain.getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007487
Dale Johannesendd64c412009-02-04 00:33:20 +00007488 Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
Anton Korobeynikov096b4612008-06-11 20:16:42 +00007489
Dan Gohman475871a2008-07-27 21:46:04 +00007490 SDValue Ops1[2] = { Chain.getValue(0), Chain };
Dale Johannesene4d209d2009-02-03 20:21:25 +00007491 return DAG.getMergeValues(Ops1, 2, dl);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00007492}
7493
Dan Gohmand858e902010-04-17 15:26:15 +00007494SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman1e93df62010-04-17 14:41:14 +00007495 MachineFunction &MF = DAG.getMachineFunction();
7496 X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
7497
Dan Gohman69de1932008-02-06 22:27:42 +00007498 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
Chris Lattner8026a9d2010-09-21 17:50:43 +00007499 DebugLoc DL = Op.getDebugLoc();
Evan Cheng8b2794a2006-10-13 21:14:26 +00007500
Anton Korobeynikove7beda12010-10-03 22:52:07 +00007501 if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00007502 // vastart just stores the address of the VarArgsFrameIndex slot into the
7503 // memory location argument.
Dan Gohman1e93df62010-04-17 14:41:14 +00007504 SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7505 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007506 return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
7507 MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007508 }
7509
7510 // __va_list_tag:
7511 // gp_offset (0 - 6 * 8)
7512 // fp_offset (48 - 48 + 8 * 16)
7513 // overflow_arg_area (point to parameters coming in memory).
7514 // reg_save_area
Dan Gohman475871a2008-07-27 21:46:04 +00007515 SmallVector<SDValue, 8> MemOps;
7516 SDValue FIN = Op.getOperand(1);
Evan Cheng25ab6902006-09-08 06:48:29 +00007517 // Store gp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007518 SDValue Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007519 DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
7520 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007521 FIN, MachinePointerInfo(SV), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007522 MemOps.push_back(Store);
7523
7524 // Store fp_offset
Chris Lattner8026a9d2010-09-21 17:50:43 +00007525 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007526 FIN, DAG.getIntPtrConstant(4));
Chris Lattner8026a9d2010-09-21 17:50:43 +00007527 Store = DAG.getStore(Op.getOperand(0), DL,
Dan Gohman1e93df62010-04-17 14:41:14 +00007528 DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
7529 MVT::i32),
Chris Lattner8026a9d2010-09-21 17:50:43 +00007530 FIN, MachinePointerInfo(SV, 4), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007531 MemOps.push_back(Store);
7532
7533 // Store ptr to overflow_arg_area
Chris Lattner8026a9d2010-09-21 17:50:43 +00007534 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007535 FIN, DAG.getIntPtrConstant(4));
Dan Gohman1e93df62010-04-17 14:41:14 +00007536 SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
7537 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007538 Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
7539 MachinePointerInfo(SV, 8),
David Greene67c9d422010-02-15 16:53:33 +00007540 false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007541 MemOps.push_back(Store);
7542
7543 // Store ptr to reg_save_area.
Chris Lattner8026a9d2010-09-21 17:50:43 +00007544 FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007545 FIN, DAG.getIntPtrConstant(8));
Dan Gohman1e93df62010-04-17 14:41:14 +00007546 SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
7547 getPointerTy());
Chris Lattner8026a9d2010-09-21 17:50:43 +00007548 Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
7549 MachinePointerInfo(SV, 16), false, false, 0);
Evan Cheng25ab6902006-09-08 06:48:29 +00007550 MemOps.push_back(Store);
Chris Lattner8026a9d2010-09-21 17:50:43 +00007551 return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
Dale Johannesene4d209d2009-02-03 20:21:25 +00007552 &MemOps[0], MemOps.size());
Evan Cheng0db9fe62006-04-25 20:13:52 +00007553}
7554
Dan Gohmand858e902010-04-17 15:26:15 +00007555SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
Dan Gohman320afb82010-10-12 18:00:49 +00007556 assert(Subtarget->is64Bit() &&
7557 "LowerVAARG only handles 64-bit va_arg!");
7558 assert((Subtarget->isTargetLinux() ||
7559 Subtarget->isTargetDarwin()) &&
7560 "Unhandled target in LowerVAARG");
7561 assert(Op.getNode()->getNumOperands() == 4);
7562 SDValue Chain = Op.getOperand(0);
7563 SDValue SrcPtr = Op.getOperand(1);
7564 const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
7565 unsigned Align = Op.getConstantOperandVal(3);
7566 DebugLoc dl = Op.getDebugLoc();
Dan Gohman9018e832008-05-10 01:26:14 +00007567
Dan Gohman320afb82010-10-12 18:00:49 +00007568 EVT ArgVT = Op.getNode()->getValueType(0);
7569 const Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
7570 uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
7571 uint8_t ArgMode;
7572
7573 // Decide which area this value should be read from.
7574 // TODO: Implement the AMD64 ABI in its entirety. This simple
7575 // selection mechanism works only for the basic types.
7576 if (ArgVT == MVT::f80) {
7577 llvm_unreachable("va_arg for f80 not yet implemented");
7578 } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
7579 ArgMode = 2; // Argument passed in XMM register. Use fp_offset.
7580 } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
7581 ArgMode = 1; // Argument passed in GPR64 register(s). Use gp_offset.
7582 } else {
7583 llvm_unreachable("Unhandled argument type in LowerVAARG");
7584 }
7585
7586 if (ArgMode == 2) {
7587 // Sanity Check: Make sure using fp_offset makes sense.
Michael J. Spencer87b86652010-10-19 07:32:42 +00007588 assert(!UseSoftFloat &&
Eric Christopher52b45052010-10-12 19:44:17 +00007589 !(DAG.getMachineFunction()
7590 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
7591 Subtarget->hasSSE1());
Dan Gohman320afb82010-10-12 18:00:49 +00007592 }
7593
7594 // Insert VAARG_64 node into the DAG
7595 // VAARG_64 returns two values: Variable Argument Address, Chain
7596 SmallVector<SDValue, 11> InstOps;
7597 InstOps.push_back(Chain);
7598 InstOps.push_back(SrcPtr);
7599 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
7600 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
7601 InstOps.push_back(DAG.getConstant(Align, MVT::i32));
7602 SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
7603 SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
7604 VTs, &InstOps[0], InstOps.size(),
7605 MVT::i64,
7606 MachinePointerInfo(SV),
7607 /*Align=*/0,
7608 /*Volatile=*/false,
7609 /*ReadMem=*/true,
7610 /*WriteMem=*/true);
7611 Chain = VAARG.getValue(1);
7612
7613 // Load the next argument and return it
7614 return DAG.getLoad(ArgVT, dl,
7615 Chain,
7616 VAARG,
7617 MachinePointerInfo(),
7618 false, false, 0);
Dan Gohman9018e832008-05-10 01:26:14 +00007619}
7620
Dan Gohmand858e902010-04-17 15:26:15 +00007621SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
Evan Chengae642192007-03-02 23:16:35 +00007622 // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
Dan Gohman28269132008-04-18 20:55:41 +00007623 assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
Dan Gohman475871a2008-07-27 21:46:04 +00007624 SDValue Chain = Op.getOperand(0);
7625 SDValue DstPtr = Op.getOperand(1);
7626 SDValue SrcPtr = Op.getOperand(2);
Dan Gohman69de1932008-02-06 22:27:42 +00007627 const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
7628 const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Chris Lattnere72f2022010-09-21 05:40:29 +00007629 DebugLoc DL = Op.getDebugLoc();
Evan Chengae642192007-03-02 23:16:35 +00007630
Chris Lattnere72f2022010-09-21 05:40:29 +00007631 return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
Mon P Wang20adc9d2010-04-04 03:10:48 +00007632 DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
Michael J. Spencerec38de22010-10-10 22:04:20 +00007633 false,
Chris Lattnere72f2022010-09-21 05:40:29 +00007634 MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
Evan Chengae642192007-03-02 23:16:35 +00007635}
7636
Dan Gohman475871a2008-07-27 21:46:04 +00007637SDValue
Dan Gohmand858e902010-04-17 15:26:15 +00007638X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007639 DebugLoc dl = Op.getDebugLoc();
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007640 unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Evan Cheng0db9fe62006-04-25 20:13:52 +00007641 switch (IntNo) {
Dan Gohman475871a2008-07-27 21:46:04 +00007642 default: return SDValue(); // Don't custom lower most intrinsics.
Evan Cheng5759f972008-05-04 09:15:50 +00007643 // Comparison intrinsics.
Evan Cheng0db9fe62006-04-25 20:13:52 +00007644 case Intrinsic::x86_sse_comieq_ss:
7645 case Intrinsic::x86_sse_comilt_ss:
7646 case Intrinsic::x86_sse_comile_ss:
7647 case Intrinsic::x86_sse_comigt_ss:
7648 case Intrinsic::x86_sse_comige_ss:
7649 case Intrinsic::x86_sse_comineq_ss:
7650 case Intrinsic::x86_sse_ucomieq_ss:
7651 case Intrinsic::x86_sse_ucomilt_ss:
7652 case Intrinsic::x86_sse_ucomile_ss:
7653 case Intrinsic::x86_sse_ucomigt_ss:
7654 case Intrinsic::x86_sse_ucomige_ss:
7655 case Intrinsic::x86_sse_ucomineq_ss:
7656 case Intrinsic::x86_sse2_comieq_sd:
7657 case Intrinsic::x86_sse2_comilt_sd:
7658 case Intrinsic::x86_sse2_comile_sd:
7659 case Intrinsic::x86_sse2_comigt_sd:
7660 case Intrinsic::x86_sse2_comige_sd:
7661 case Intrinsic::x86_sse2_comineq_sd:
7662 case Intrinsic::x86_sse2_ucomieq_sd:
7663 case Intrinsic::x86_sse2_ucomilt_sd:
7664 case Intrinsic::x86_sse2_ucomile_sd:
7665 case Intrinsic::x86_sse2_ucomigt_sd:
7666 case Intrinsic::x86_sse2_ucomige_sd:
7667 case Intrinsic::x86_sse2_ucomineq_sd: {
7668 unsigned Opc = 0;
7669 ISD::CondCode CC = ISD::SETCC_INVALID;
7670 switch (IntNo) {
7671 default: break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +00007672 case Intrinsic::x86_sse_comieq_ss:
7673 case Intrinsic::x86_sse2_comieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007674 Opc = X86ISD::COMI;
7675 CC = ISD::SETEQ;
7676 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007677 case Intrinsic::x86_sse_comilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007678 case Intrinsic::x86_sse2_comilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007679 Opc = X86ISD::COMI;
7680 CC = ISD::SETLT;
7681 break;
7682 case Intrinsic::x86_sse_comile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007683 case Intrinsic::x86_sse2_comile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007684 Opc = X86ISD::COMI;
7685 CC = ISD::SETLE;
7686 break;
7687 case Intrinsic::x86_sse_comigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007688 case Intrinsic::x86_sse2_comigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007689 Opc = X86ISD::COMI;
7690 CC = ISD::SETGT;
7691 break;
7692 case Intrinsic::x86_sse_comige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007693 case Intrinsic::x86_sse2_comige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007694 Opc = X86ISD::COMI;
7695 CC = ISD::SETGE;
7696 break;
7697 case Intrinsic::x86_sse_comineq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007698 case Intrinsic::x86_sse2_comineq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007699 Opc = X86ISD::COMI;
7700 CC = ISD::SETNE;
7701 break;
7702 case Intrinsic::x86_sse_ucomieq_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007703 case Intrinsic::x86_sse2_ucomieq_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007704 Opc = X86ISD::UCOMI;
7705 CC = ISD::SETEQ;
7706 break;
7707 case Intrinsic::x86_sse_ucomilt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007708 case Intrinsic::x86_sse2_ucomilt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007709 Opc = X86ISD::UCOMI;
7710 CC = ISD::SETLT;
7711 break;
7712 case Intrinsic::x86_sse_ucomile_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007713 case Intrinsic::x86_sse2_ucomile_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007714 Opc = X86ISD::UCOMI;
7715 CC = ISD::SETLE;
7716 break;
7717 case Intrinsic::x86_sse_ucomigt_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007718 case Intrinsic::x86_sse2_ucomigt_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007719 Opc = X86ISD::UCOMI;
7720 CC = ISD::SETGT;
7721 break;
7722 case Intrinsic::x86_sse_ucomige_ss:
Evan Cheng6be2c582006-04-05 23:38:46 +00007723 case Intrinsic::x86_sse2_ucomige_sd:
Evan Cheng0db9fe62006-04-25 20:13:52 +00007724 Opc = X86ISD::UCOMI;
7725 CC = ISD::SETGE;
7726 break;
7727 case Intrinsic::x86_sse_ucomineq_ss:
7728 case Intrinsic::x86_sse2_ucomineq_sd:
7729 Opc = X86ISD::UCOMI;
7730 CC = ISD::SETNE;
7731 break;
Evan Cheng6be2c582006-04-05 23:38:46 +00007732 }
Evan Cheng734503b2006-09-11 02:19:56 +00007733
Dan Gohman475871a2008-07-27 21:46:04 +00007734 SDValue LHS = Op.getOperand(1);
7735 SDValue RHS = Op.getOperand(2);
Chris Lattner1c39d4c2008-12-24 23:53:05 +00007736 unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
Dan Gohman1a492952009-10-20 16:22:37 +00007737 assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
Owen Anderson825b72b2009-08-11 20:47:22 +00007738 SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
7739 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7740 DAG.getConstant(X86CC, MVT::i8), Cond);
7741 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Evan Cheng6be2c582006-04-05 23:38:46 +00007742 }
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007743 // ptest and testp intrinsics. The intrinsic these come from are designed to
7744 // return an integer value, not just an instruction so lower it to the ptest
7745 // or testp pattern and a setcc for the result.
Eric Christopher71c67532009-07-29 00:28:05 +00007746 case Intrinsic::x86_sse41_ptestz:
7747 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007748 case Intrinsic::x86_sse41_ptestnzc:
7749 case Intrinsic::x86_avx_ptestz_256:
7750 case Intrinsic::x86_avx_ptestc_256:
7751 case Intrinsic::x86_avx_ptestnzc_256:
7752 case Intrinsic::x86_avx_vtestz_ps:
7753 case Intrinsic::x86_avx_vtestc_ps:
7754 case Intrinsic::x86_avx_vtestnzc_ps:
7755 case Intrinsic::x86_avx_vtestz_pd:
7756 case Intrinsic::x86_avx_vtestc_pd:
7757 case Intrinsic::x86_avx_vtestnzc_pd:
7758 case Intrinsic::x86_avx_vtestz_ps_256:
7759 case Intrinsic::x86_avx_vtestc_ps_256:
7760 case Intrinsic::x86_avx_vtestnzc_ps_256:
7761 case Intrinsic::x86_avx_vtestz_pd_256:
7762 case Intrinsic::x86_avx_vtestc_pd_256:
7763 case Intrinsic::x86_avx_vtestnzc_pd_256: {
7764 bool IsTestPacked = false;
Eric Christopher71c67532009-07-29 00:28:05 +00007765 unsigned X86CC = 0;
7766 switch (IntNo) {
Eric Christopher978dae32009-07-29 18:14:04 +00007767 default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007768 case Intrinsic::x86_avx_vtestz_ps:
7769 case Intrinsic::x86_avx_vtestz_pd:
7770 case Intrinsic::x86_avx_vtestz_ps_256:
7771 case Intrinsic::x86_avx_vtestz_pd_256:
7772 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007773 case Intrinsic::x86_sse41_ptestz:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007774 case Intrinsic::x86_avx_ptestz_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007775 // ZF = 1
7776 X86CC = X86::COND_E;
7777 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007778 case Intrinsic::x86_avx_vtestc_ps:
7779 case Intrinsic::x86_avx_vtestc_pd:
7780 case Intrinsic::x86_avx_vtestc_ps_256:
7781 case Intrinsic::x86_avx_vtestc_pd_256:
7782 IsTestPacked = true; // Fallthrough
Eric Christopher71c67532009-07-29 00:28:05 +00007783 case Intrinsic::x86_sse41_ptestc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007784 case Intrinsic::x86_avx_ptestc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007785 // CF = 1
7786 X86CC = X86::COND_B;
7787 break;
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007788 case Intrinsic::x86_avx_vtestnzc_ps:
7789 case Intrinsic::x86_avx_vtestnzc_pd:
7790 case Intrinsic::x86_avx_vtestnzc_ps_256:
7791 case Intrinsic::x86_avx_vtestnzc_pd_256:
7792 IsTestPacked = true; // Fallthrough
Eric Christopherfd179292009-08-27 18:07:15 +00007793 case Intrinsic::x86_sse41_ptestnzc:
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007794 case Intrinsic::x86_avx_ptestnzc_256:
Eric Christopher71c67532009-07-29 00:28:05 +00007795 // ZF and CF = 0
7796 X86CC = X86::COND_A;
7797 break;
7798 }
Eric Christopherfd179292009-08-27 18:07:15 +00007799
Eric Christopher71c67532009-07-29 00:28:05 +00007800 SDValue LHS = Op.getOperand(1);
7801 SDValue RHS = Op.getOperand(2);
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00007802 unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
7803 SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
Owen Anderson825b72b2009-08-11 20:47:22 +00007804 SDValue CC = DAG.getConstant(X86CC, MVT::i8);
7805 SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
7806 return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
Eric Christopher71c67532009-07-29 00:28:05 +00007807 }
Evan Cheng5759f972008-05-04 09:15:50 +00007808
7809 // Fix vector shift instructions where the last operand is a non-immediate
7810 // i32 value.
7811 case Intrinsic::x86_sse2_pslli_w:
7812 case Intrinsic::x86_sse2_pslli_d:
7813 case Intrinsic::x86_sse2_pslli_q:
7814 case Intrinsic::x86_sse2_psrli_w:
7815 case Intrinsic::x86_sse2_psrli_d:
7816 case Intrinsic::x86_sse2_psrli_q:
7817 case Intrinsic::x86_sse2_psrai_w:
7818 case Intrinsic::x86_sse2_psrai_d:
7819 case Intrinsic::x86_mmx_pslli_w:
7820 case Intrinsic::x86_mmx_pslli_d:
7821 case Intrinsic::x86_mmx_pslli_q:
7822 case Intrinsic::x86_mmx_psrli_w:
7823 case Intrinsic::x86_mmx_psrli_d:
7824 case Intrinsic::x86_mmx_psrli_q:
7825 case Intrinsic::x86_mmx_psrai_w:
7826 case Intrinsic::x86_mmx_psrai_d: {
Dan Gohman475871a2008-07-27 21:46:04 +00007827 SDValue ShAmt = Op.getOperand(2);
Evan Cheng5759f972008-05-04 09:15:50 +00007828 if (isa<ConstantSDNode>(ShAmt))
Dan Gohman475871a2008-07-27 21:46:04 +00007829 return SDValue();
Evan Cheng5759f972008-05-04 09:15:50 +00007830
7831 unsigned NewIntNo = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00007832 EVT ShAmtVT = MVT::v4i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007833 switch (IntNo) {
7834 case Intrinsic::x86_sse2_pslli_w:
7835 NewIntNo = Intrinsic::x86_sse2_psll_w;
7836 break;
7837 case Intrinsic::x86_sse2_pslli_d:
7838 NewIntNo = Intrinsic::x86_sse2_psll_d;
7839 break;
7840 case Intrinsic::x86_sse2_pslli_q:
7841 NewIntNo = Intrinsic::x86_sse2_psll_q;
7842 break;
7843 case Intrinsic::x86_sse2_psrli_w:
7844 NewIntNo = Intrinsic::x86_sse2_psrl_w;
7845 break;
7846 case Intrinsic::x86_sse2_psrli_d:
7847 NewIntNo = Intrinsic::x86_sse2_psrl_d;
7848 break;
7849 case Intrinsic::x86_sse2_psrli_q:
7850 NewIntNo = Intrinsic::x86_sse2_psrl_q;
7851 break;
7852 case Intrinsic::x86_sse2_psrai_w:
7853 NewIntNo = Intrinsic::x86_sse2_psra_w;
7854 break;
7855 case Intrinsic::x86_sse2_psrai_d:
7856 NewIntNo = Intrinsic::x86_sse2_psra_d;
7857 break;
7858 default: {
Owen Anderson825b72b2009-08-11 20:47:22 +00007859 ShAmtVT = MVT::v2i32;
Evan Cheng5759f972008-05-04 09:15:50 +00007860 switch (IntNo) {
7861 case Intrinsic::x86_mmx_pslli_w:
7862 NewIntNo = Intrinsic::x86_mmx_psll_w;
7863 break;
7864 case Intrinsic::x86_mmx_pslli_d:
7865 NewIntNo = Intrinsic::x86_mmx_psll_d;
7866 break;
7867 case Intrinsic::x86_mmx_pslli_q:
7868 NewIntNo = Intrinsic::x86_mmx_psll_q;
7869 break;
7870 case Intrinsic::x86_mmx_psrli_w:
7871 NewIntNo = Intrinsic::x86_mmx_psrl_w;
7872 break;
7873 case Intrinsic::x86_mmx_psrli_d:
7874 NewIntNo = Intrinsic::x86_mmx_psrl_d;
7875 break;
7876 case Intrinsic::x86_mmx_psrli_q:
7877 NewIntNo = Intrinsic::x86_mmx_psrl_q;
7878 break;
7879 case Intrinsic::x86_mmx_psrai_w:
7880 NewIntNo = Intrinsic::x86_mmx_psra_w;
7881 break;
7882 case Intrinsic::x86_mmx_psrai_d:
7883 NewIntNo = Intrinsic::x86_mmx_psra_d;
7884 break;
Torok Edwinc23197a2009-07-14 16:55:14 +00007885 default: llvm_unreachable("Impossible intrinsic"); // Can't reach here.
Evan Cheng5759f972008-05-04 09:15:50 +00007886 }
7887 break;
7888 }
7889 }
Mon P Wangefa42202009-09-03 19:56:25 +00007890
7891 // The vector shift intrinsics with scalars uses 32b shift amounts but
7892 // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
7893 // to be zero.
7894 SDValue ShOps[4];
7895 ShOps[0] = ShAmt;
7896 ShOps[1] = DAG.getConstant(0, MVT::i32);
7897 if (ShAmtVT == MVT::v4i32) {
7898 ShOps[2] = DAG.getUNDEF(MVT::i32);
7899 ShOps[3] = DAG.getUNDEF(MVT::i32);
7900 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
7901 } else {
7902 ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
Dale Johannesen0488fb62010-09-30 23:57:10 +00007903// FIXME this must be lowered to get rid of the invalid type.
Mon P Wangefa42202009-09-03 19:56:25 +00007904 }
7905
Owen Andersone50ed302009-08-10 22:56:29 +00007906 EVT VT = Op.getValueType();
Mon P Wangefa42202009-09-03 19:56:25 +00007907 ShAmt = DAG.getNode(ISD::BIT_CONVERT, dl, VT, ShAmt);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007908 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00007909 DAG.getConstant(NewIntNo, MVT::i32),
Evan Cheng5759f972008-05-04 09:15:50 +00007910 Op.getOperand(1), ShAmt);
7911 }
Evan Cheng38bcbaf2005-12-23 07:31:11 +00007912 }
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00007913}
Evan Cheng72261582005-12-20 06:22:03 +00007914
Dan Gohmand858e902010-04-17 15:26:15 +00007915SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
7916 SelectionDAG &DAG) const {
Evan Cheng2457f2c2010-05-22 01:47:14 +00007917 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7918 MFI->setReturnAddressIsTaken(true);
7919
Bill Wendling64e87322009-01-16 19:25:27 +00007920 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007921 DebugLoc dl = Op.getDebugLoc();
Bill Wendling64e87322009-01-16 19:25:27 +00007922
7923 if (Depth > 0) {
7924 SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
7925 SDValue Offset =
7926 DAG.getConstant(TD->getPointerSize(),
Owen Anderson825b72b2009-08-11 20:47:22 +00007927 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00007928 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Scott Michelfdc40a02009-02-17 22:15:04 +00007929 DAG.getNode(ISD::ADD, dl, getPointerTy(),
Dale Johannesene4d209d2009-02-03 20:21:25 +00007930 FrameAddr, Offset),
Chris Lattner51abfe42010-09-21 06:02:19 +00007931 MachinePointerInfo(), false, false, 0);
Bill Wendling64e87322009-01-16 19:25:27 +00007932 }
7933
7934 // Just load the return address.
Dan Gohman475871a2008-07-27 21:46:04 +00007935 SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00007936 return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
Chris Lattner51abfe42010-09-21 06:02:19 +00007937 RetAddrFI, MachinePointerInfo(), false, false, 0);
Nate Begemanbcc5f362007-01-29 22:58:52 +00007938}
7939
Dan Gohmand858e902010-04-17 15:26:15 +00007940SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng184793f2008-09-27 01:56:22 +00007941 MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7942 MFI->setFrameAddressIsTaken(true);
Evan Cheng2457f2c2010-05-22 01:47:14 +00007943
Owen Andersone50ed302009-08-10 22:56:29 +00007944 EVT VT = Op.getValueType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007945 DebugLoc dl = Op.getDebugLoc(); // FIXME probably not meaningful
Evan Cheng184793f2008-09-27 01:56:22 +00007946 unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
7947 unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
Dale Johannesendd64c412009-02-04 00:33:20 +00007948 SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
Evan Cheng184793f2008-09-27 01:56:22 +00007949 while (Depth--)
Chris Lattner51abfe42010-09-21 06:02:19 +00007950 FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
7951 MachinePointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +00007952 false, false, 0);
Evan Cheng184793f2008-09-27 01:56:22 +00007953 return FrameAddr;
Nate Begemanbcc5f362007-01-29 22:58:52 +00007954}
7955
Dan Gohman475871a2008-07-27 21:46:04 +00007956SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007957 SelectionDAG &DAG) const {
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00007958 return DAG.getIntPtrConstant(2*TD->getPointerSize());
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007959}
7960
Dan Gohmand858e902010-04-17 15:26:15 +00007961SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007962 MachineFunction &MF = DAG.getMachineFunction();
Dan Gohman475871a2008-07-27 21:46:04 +00007963 SDValue Chain = Op.getOperand(0);
7964 SDValue Offset = Op.getOperand(1);
7965 SDValue Handler = Op.getOperand(2);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007966 DebugLoc dl = Op.getDebugLoc();
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007967
Dan Gohmand8816272010-08-11 18:14:00 +00007968 SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
7969 Subtarget->is64Bit() ? X86::RBP : X86::EBP,
7970 getPointerTy());
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00007971 unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007972
Dan Gohmand8816272010-08-11 18:14:00 +00007973 SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
7974 DAG.getIntPtrConstant(TD->getPointerSize()));
Dale Johannesene4d209d2009-02-03 20:21:25 +00007975 StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
Chris Lattner8026a9d2010-09-21 17:50:43 +00007976 Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
7977 false, false, 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00007978 Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00007979 MF.getRegInfo().addLiveOut(StoreAddrReg);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007980
Dale Johannesene4d209d2009-02-03 20:21:25 +00007981 return DAG.getNode(X86ISD::EH_RETURN, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00007982 MVT::Other,
Anton Korobeynikovb84c1672008-09-08 21:12:47 +00007983 Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
Anton Korobeynikov2365f512007-07-14 14:06:15 +00007984}
7985
Dan Gohman475871a2008-07-27 21:46:04 +00007986SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00007987 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +00007988 SDValue Root = Op.getOperand(0);
7989 SDValue Trmp = Op.getOperand(1); // trampoline
7990 SDValue FPtr = Op.getOperand(2); // nested function
7991 SDValue Nest = Op.getOperand(3); // 'nest' parameter value
Dale Johannesen6f38cb62009-02-07 19:59:05 +00007992 DebugLoc dl = Op.getDebugLoc();
Duncan Sandsb116fac2007-07-27 20:02:49 +00007993
Dan Gohman69de1932008-02-06 22:27:42 +00007994 const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
Duncan Sandsb116fac2007-07-27 20:02:49 +00007995
7996 if (Subtarget->is64Bit()) {
Dan Gohman475871a2008-07-27 21:46:04 +00007997 SDValue OutChains[6];
Duncan Sands339e14f2008-01-16 22:55:25 +00007998
7999 // Large code-model.
Chris Lattnera62fe662010-02-05 19:20:30 +00008000 const unsigned char JMP64r = 0xFF; // 64-bit jmp through register opcode.
8001 const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
Duncan Sands339e14f2008-01-16 22:55:25 +00008002
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008003 const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
8004 const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
Duncan Sands339e14f2008-01-16 22:55:25 +00008005
8006 const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
8007
8008 // Load the pointer to the nested function into R11.
8009 unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
Dan Gohman475871a2008-07-27 21:46:04 +00008010 SDValue Addr = Trmp;
Owen Anderson825b72b2009-08-11 20:47:22 +00008011 OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008012 Addr, MachinePointerInfo(TrmpAddr),
8013 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008014
Owen Anderson825b72b2009-08-11 20:47:22 +00008015 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8016 DAG.getConstant(2, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008017 OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8018 MachinePointerInfo(TrmpAddr, 2),
David Greene67c9d422010-02-15 16:53:33 +00008019 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008020
8021 // Load the 'nest' parameter value into R10.
8022 // R10 is specified in X86CallingConv.td
8023 OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
Owen Anderson825b72b2009-08-11 20:47:22 +00008024 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8025 DAG.getConstant(10, MVT::i64));
8026 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008027 Addr, MachinePointerInfo(TrmpAddr, 10),
8028 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008029
Owen Anderson825b72b2009-08-11 20:47:22 +00008030 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8031 DAG.getConstant(12, MVT::i64));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008032 OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8033 MachinePointerInfo(TrmpAddr, 12),
David Greene67c9d422010-02-15 16:53:33 +00008034 false, false, 2);
Duncan Sands339e14f2008-01-16 22:55:25 +00008035
8036 // Jump to the nested function.
8037 OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
Owen Anderson825b72b2009-08-11 20:47:22 +00008038 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8039 DAG.getConstant(20, MVT::i64));
8040 OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008041 Addr, MachinePointerInfo(TrmpAddr, 20),
8042 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008043
8044 unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
Owen Anderson825b72b2009-08-11 20:47:22 +00008045 Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8046 DAG.getConstant(22, MVT::i64));
8047 OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008048 MachinePointerInfo(TrmpAddr, 22),
8049 false, false, 0);
Duncan Sands339e14f2008-01-16 22:55:25 +00008050
Dan Gohman475871a2008-07-27 21:46:04 +00008051 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008052 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008053 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008054 } else {
Dan Gohmanbbfb9c52008-01-31 01:01:48 +00008055 const Function *Func =
Duncan Sandsb116fac2007-07-27 20:02:49 +00008056 cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00008057 CallingConv::ID CC = Func->getCallingConv();
Duncan Sandsee465742007-08-29 19:01:20 +00008058 unsigned NestReg;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008059
8060 switch (CC) {
8061 default:
Torok Edwinc23197a2009-07-14 16:55:14 +00008062 llvm_unreachable("Unsupported calling convention");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008063 case CallingConv::C:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008064 case CallingConv::X86_StdCall: {
8065 // Pass 'nest' parameter in ECX.
8066 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008067 NestReg = X86::ECX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008068
8069 // Check that ECX wasn't needed by an 'inreg' parameter.
8070 const FunctionType *FTy = Func->getFunctionType();
Devang Patel05988662008-09-25 21:00:45 +00008071 const AttrListPtr &Attrs = Func->getAttributes();
Duncan Sandsb116fac2007-07-27 20:02:49 +00008072
Chris Lattner58d74912008-03-12 17:45:29 +00008073 if (!Attrs.isEmpty() && !Func->isVarArg()) {
Duncan Sandsb116fac2007-07-27 20:02:49 +00008074 unsigned InRegCount = 0;
8075 unsigned Idx = 1;
8076
8077 for (FunctionType::param_iterator I = FTy->param_begin(),
8078 E = FTy->param_end(); I != E; ++I, ++Idx)
Devang Patel05988662008-09-25 21:00:45 +00008079 if (Attrs.paramHasAttr(Idx, Attribute::InReg))
Duncan Sandsb116fac2007-07-27 20:02:49 +00008080 // FIXME: should only count parameters that are lowered to integers.
Anton Korobeynikovbff66b02008-09-09 18:22:57 +00008081 InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008082
8083 if (InRegCount > 2) {
Eric Christopher90eb4022010-07-22 00:26:08 +00008084 report_fatal_error("Nest register in use - reduce number of inreg"
8085 " parameters!");
Duncan Sandsb116fac2007-07-27 20:02:49 +00008086 }
8087 }
8088 break;
8089 }
8090 case CallingConv::X86_FastCall:
Anton Korobeynikovded05e32010-05-16 09:08:45 +00008091 case CallingConv::X86_ThisCall:
Duncan Sandsbf53c292008-09-10 13:22:10 +00008092 case CallingConv::Fast:
Duncan Sandsb116fac2007-07-27 20:02:49 +00008093 // Pass 'nest' parameter in EAX.
8094 // Must be kept in sync with X86CallingConv.td
Duncan Sandsee465742007-08-29 19:01:20 +00008095 NestReg = X86::EAX;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008096 break;
8097 }
8098
Dan Gohman475871a2008-07-27 21:46:04 +00008099 SDValue OutChains[4];
8100 SDValue Addr, Disp;
Duncan Sandsb116fac2007-07-27 20:02:49 +00008101
Owen Anderson825b72b2009-08-11 20:47:22 +00008102 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8103 DAG.getConstant(10, MVT::i32));
8104 Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008105
Chris Lattnera62fe662010-02-05 19:20:30 +00008106 // This is storing the opcode for MOV32ri.
8107 const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +00008108 const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
Scott Michelfdc40a02009-02-17 22:15:04 +00008109 OutChains[0] = DAG.getStore(Root, dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00008110 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
Chris Lattner8026a9d2010-09-21 17:50:43 +00008111 Trmp, MachinePointerInfo(TrmpAddr),
8112 false, false, 0);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008113
Owen Anderson825b72b2009-08-11 20:47:22 +00008114 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8115 DAG.getConstant(1, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008116 OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
8117 MachinePointerInfo(TrmpAddr, 1),
David Greene67c9d422010-02-15 16:53:33 +00008118 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008119
Chris Lattnera62fe662010-02-05 19:20:30 +00008120 const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
Owen Anderson825b72b2009-08-11 20:47:22 +00008121 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8122 DAG.getConstant(5, MVT::i32));
8123 OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
Chris Lattner8026a9d2010-09-21 17:50:43 +00008124 MachinePointerInfo(TrmpAddr, 5),
8125 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008126
Owen Anderson825b72b2009-08-11 20:47:22 +00008127 Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8128 DAG.getConstant(6, MVT::i32));
Chris Lattner8026a9d2010-09-21 17:50:43 +00008129 OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
8130 MachinePointerInfo(TrmpAddr, 6),
David Greene67c9d422010-02-15 16:53:33 +00008131 false, false, 1);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008132
Dan Gohman475871a2008-07-27 21:46:04 +00008133 SDValue Ops[] =
Owen Anderson825b72b2009-08-11 20:47:22 +00008134 { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008135 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008136 }
8137}
8138
Dan Gohmand858e902010-04-17 15:26:15 +00008139SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
8140 SelectionDAG &DAG) const {
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008141 /*
8142 The rounding mode is in bits 11:10 of FPSR, and has the following
8143 settings:
8144 00 Round to nearest
8145 01 Round to -inf
8146 10 Round to +inf
8147 11 Round to 0
8148
8149 FLT_ROUNDS, on the other hand, expects the following:
8150 -1 Undefined
8151 0 Round to 0
8152 1 Round to nearest
8153 2 Round to +inf
8154 3 Round to -inf
8155
8156 To perform the conversion, we do:
8157 (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
8158 */
8159
8160 MachineFunction &MF = DAG.getMachineFunction();
8161 const TargetMachine &TM = MF.getTarget();
8162 const TargetFrameInfo &TFI = *TM.getFrameInfo();
8163 unsigned StackAlignment = TFI.getStackAlignment();
Owen Andersone50ed302009-08-10 22:56:29 +00008164 EVT VT = Op.getValueType();
Chris Lattner2156b792010-09-22 01:11:26 +00008165 DebugLoc DL = Op.getDebugLoc();
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008166
8167 // Save FP Control Word to stack slot
David Greene3f2bf852009-11-12 20:49:22 +00008168 int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
Dan Gohman475871a2008-07-27 21:46:04 +00008169 SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008170
Michael J. Spencerec38de22010-10-10 22:04:20 +00008171
Chris Lattner2156b792010-09-22 01:11:26 +00008172 MachineMemOperand *MMO =
8173 MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8174 MachineMemOperand::MOStore, 2, 2);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008175
Chris Lattner2156b792010-09-22 01:11:26 +00008176 SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
8177 SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
8178 DAG.getVTList(MVT::Other),
8179 Ops, 2, MVT::i16, MMO);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008180
8181 // Load FP Control Word from stack slot
Chris Lattner2156b792010-09-22 01:11:26 +00008182 SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
Chris Lattner51abfe42010-09-21 06:02:19 +00008183 MachinePointerInfo(), false, false, 0);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008184
8185 // Transform as necessary
Dan Gohman475871a2008-07-27 21:46:04 +00008186 SDValue CWD1 =
Chris Lattner2156b792010-09-22 01:11:26 +00008187 DAG.getNode(ISD::SRL, DL, MVT::i16,
8188 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008189 CWD, DAG.getConstant(0x800, MVT::i16)),
8190 DAG.getConstant(11, MVT::i8));
Dan Gohman475871a2008-07-27 21:46:04 +00008191 SDValue CWD2 =
Chris Lattner2156b792010-09-22 01:11:26 +00008192 DAG.getNode(ISD::SRL, DL, MVT::i16,
8193 DAG.getNode(ISD::AND, DL, MVT::i16,
Owen Anderson825b72b2009-08-11 20:47:22 +00008194 CWD, DAG.getConstant(0x400, MVT::i16)),
8195 DAG.getConstant(9, MVT::i8));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008196
Dan Gohman475871a2008-07-27 21:46:04 +00008197 SDValue RetVal =
Chris Lattner2156b792010-09-22 01:11:26 +00008198 DAG.getNode(ISD::AND, DL, MVT::i16,
8199 DAG.getNode(ISD::ADD, DL, MVT::i16,
8200 DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
Owen Anderson825b72b2009-08-11 20:47:22 +00008201 DAG.getConstant(1, MVT::i16)),
8202 DAG.getConstant(3, MVT::i16));
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008203
8204
Duncan Sands83ec4b62008-06-06 12:08:01 +00008205 return DAG.getNode((VT.getSizeInBits() < 16 ?
Chris Lattner2156b792010-09-22 01:11:26 +00008206 ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008207}
8208
Dan Gohmand858e902010-04-17 15:26:15 +00008209SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008210 EVT VT = Op.getValueType();
8211 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008212 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008213 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008214
8215 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008216 if (VT == MVT::i8) {
Evan Cheng152804e2007-12-14 08:30:15 +00008217 // Zero extend to i32 since there is not an i8 bsr.
Owen Anderson825b72b2009-08-11 20:47:22 +00008218 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008219 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008220 }
Evan Cheng18efe262007-12-14 02:13:44 +00008221
Evan Cheng152804e2007-12-14 08:30:15 +00008222 // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008223 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008224 Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008225
8226 // If src is zero (i.e. bsr sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008227 SDValue Ops[] = {
8228 Op,
8229 DAG.getConstant(NumBits+NumBits-1, OpVT),
8230 DAG.getConstant(X86::COND_E, MVT::i8),
8231 Op.getValue(1)
8232 };
8233 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008234
8235 // Finally xor with NumBits-1.
Dale Johannesene4d209d2009-02-03 20:21:25 +00008236 Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
Evan Cheng152804e2007-12-14 08:30:15 +00008237
Owen Anderson825b72b2009-08-11 20:47:22 +00008238 if (VT == MVT::i8)
8239 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008240 return Op;
8241}
8242
Dan Gohmand858e902010-04-17 15:26:15 +00008243SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008244 EVT VT = Op.getValueType();
8245 EVT OpVT = VT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008246 unsigned NumBits = VT.getSizeInBits();
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008247 DebugLoc dl = Op.getDebugLoc();
Evan Cheng18efe262007-12-14 02:13:44 +00008248
8249 Op = Op.getOperand(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008250 if (VT == MVT::i8) {
8251 OpVT = MVT::i32;
Dale Johannesene4d209d2009-02-03 20:21:25 +00008252 Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008253 }
Evan Cheng152804e2007-12-14 08:30:15 +00008254
8255 // Issue a bsf (scan bits forward) which also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008256 SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008257 Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
Evan Cheng152804e2007-12-14 08:30:15 +00008258
8259 // If src is zero (i.e. bsf sets ZF), returns NumBits.
Benjamin Kramer7f1a5602009-12-29 16:57:26 +00008260 SDValue Ops[] = {
8261 Op,
8262 DAG.getConstant(NumBits, OpVT),
8263 DAG.getConstant(X86::COND_E, MVT::i8),
8264 Op.getValue(1)
8265 };
8266 Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
Evan Cheng152804e2007-12-14 08:30:15 +00008267
Owen Anderson825b72b2009-08-11 20:47:22 +00008268 if (VT == MVT::i8)
8269 Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
Evan Cheng18efe262007-12-14 02:13:44 +00008270 return Op;
8271}
8272
Dan Gohmand858e902010-04-17 15:26:15 +00008273SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008274 EVT VT = Op.getValueType();
Owen Anderson825b72b2009-08-11 20:47:22 +00008275 assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008276 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00008277
Mon P Wangaf9b9522008-12-18 21:42:19 +00008278 // ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
8279 // ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
8280 // ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
8281 // ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
8282 // ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
8283 //
8284 // AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
8285 // AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
8286 // return AloBlo + AloBhi + AhiBlo;
8287
8288 SDValue A = Op.getOperand(0);
8289 SDValue B = Op.getOperand(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00008290
Dale Johannesene4d209d2009-02-03 20:21:25 +00008291 SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008292 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8293 A, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008294 SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008295 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8296 B, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008297 SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008298 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008299 A, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008300 SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008301 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008302 A, Bhi);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008303 SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008304 DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
Mon P Wangaf9b9522008-12-18 21:42:19 +00008305 Ahi, B);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008306 AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008307 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8308 AloBhi, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008309 AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +00008310 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8311 AhiBlo, DAG.getConstant(32, MVT::i32));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008312 SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
8313 Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008314 return Res;
8315}
8316
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008317SDValue X86TargetLowering::LowerSHL(SDValue Op, SelectionDAG &DAG) const {
8318 EVT VT = Op.getValueType();
8319 DebugLoc dl = Op.getDebugLoc();
8320 SDValue R = Op.getOperand(0);
8321
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008322 LLVMContext *Context = DAG.getContext();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008323
Nate Begeman51409212010-07-28 00:21:48 +00008324 assert(Subtarget->hasSSE41() && "Cannot lower SHL without SSE4.1 or later");
8325
8326 if (VT == MVT::v4i32) {
8327 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8328 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8329 Op.getOperand(1), DAG.getConstant(23, MVT::i32));
8330
8331 ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008332
Nate Begeman51409212010-07-28 00:21:48 +00008333 std::vector<Constant*> CV(4, CI);
8334 Constant *C = ConstantVector::get(CV);
8335 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8336 SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008337 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008338 false, false, 16);
8339
8340 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
8341 Op = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, Op);
8342 Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
8343 return DAG.getNode(ISD::MUL, dl, VT, Op, R);
8344 }
8345 if (VT == MVT::v16i8) {
8346 // a = a << 5;
8347 Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8348 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8349 Op.getOperand(1), DAG.getConstant(5, MVT::i32));
8350
8351 ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
8352 ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
8353
8354 std::vector<Constant*> CVM1(16, CM1);
8355 std::vector<Constant*> CVM2(16, CM2);
8356 Constant *C = ConstantVector::get(CVM1);
8357 SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8358 SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008359 MachinePointerInfo::getConstantPool(),
Nate Begeman51409212010-07-28 00:21:48 +00008360 false, false, 16);
8361
8362 // r = pblendv(r, psllw(r & (char16)15, 4), a);
8363 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8364 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8365 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8366 DAG.getConstant(4, MVT::i32));
8367 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8368 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8369 R, M, Op);
8370 // a += a
8371 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008372
Nate Begeman51409212010-07-28 00:21:48 +00008373 C = ConstantVector::get(CVM2);
8374 CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8375 M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Chris Lattnere8639032010-09-21 06:22:23 +00008376 MachinePointerInfo::getConstantPool(),
Chris Lattner51abfe42010-09-21 06:02:19 +00008377 false, false, 16);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008378
Nate Begeman51409212010-07-28 00:21:48 +00008379 // r = pblendv(r, psllw(r & (char16)63, 2), a);
8380 M = DAG.getNode(ISD::AND, dl, VT, R, M);
8381 M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8382 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
8383 DAG.getConstant(2, MVT::i32));
8384 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8385 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8386 R, M, Op);
8387 // a += a
8388 Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008389
Nate Begeman51409212010-07-28 00:21:48 +00008390 // return pblendv(r, r+r, a);
8391 R = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8392 DAG.getConstant(Intrinsic::x86_sse41_pblendvb, MVT::i32),
8393 R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
8394 return R;
8395 }
8396 return SDValue();
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008397}
Mon P Wangaf9b9522008-12-18 21:42:19 +00008398
Dan Gohmand858e902010-04-17 15:26:15 +00008399SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
Bill Wendling74c37652008-12-09 22:08:41 +00008400 // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
8401 // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
Bill Wendling61edeb52008-12-02 01:06:39 +00008402 // looks for this combo and may remove the "setcc" instruction if the "setcc"
8403 // has only one use.
Bill Wendling3fafd932008-11-26 22:37:40 +00008404 SDNode *N = Op.getNode();
Bill Wendling61edeb52008-12-02 01:06:39 +00008405 SDValue LHS = N->getOperand(0);
8406 SDValue RHS = N->getOperand(1);
Bill Wendling74c37652008-12-09 22:08:41 +00008407 unsigned BaseOp = 0;
8408 unsigned Cond = 0;
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008409 DebugLoc dl = Op.getDebugLoc();
Bill Wendling74c37652008-12-09 22:08:41 +00008410
8411 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008412 default: llvm_unreachable("Unknown ovf instruction!");
Bill Wendling74c37652008-12-09 22:08:41 +00008413 case ISD::SADDO:
Dan Gohman076aee32009-03-04 19:44:21 +00008414 // A subtract of one will be selected as a INC. Note that INC doesn't
8415 // set CF, so we can't do this for UADDO.
8416 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8417 if (C->getAPIntValue() == 1) {
8418 BaseOp = X86ISD::INC;
8419 Cond = X86::COND_O;
8420 break;
8421 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008422 BaseOp = X86ISD::ADD;
Bill Wendling74c37652008-12-09 22:08:41 +00008423 Cond = X86::COND_O;
8424 break;
8425 case ISD::UADDO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008426 BaseOp = X86ISD::ADD;
Dan Gohman653456c2009-01-07 00:15:08 +00008427 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008428 break;
8429 case ISD::SSUBO:
Dan Gohman076aee32009-03-04 19:44:21 +00008430 // A subtract of one will be selected as a DEC. Note that DEC doesn't
8431 // set CF, so we can't do this for USUBO.
8432 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
8433 if (C->getAPIntValue() == 1) {
8434 BaseOp = X86ISD::DEC;
8435 Cond = X86::COND_O;
8436 break;
8437 }
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008438 BaseOp = X86ISD::SUB;
Bill Wendling74c37652008-12-09 22:08:41 +00008439 Cond = X86::COND_O;
8440 break;
8441 case ISD::USUBO:
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008442 BaseOp = X86ISD::SUB;
Dan Gohman653456c2009-01-07 00:15:08 +00008443 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008444 break;
8445 case ISD::SMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008446 BaseOp = X86ISD::SMUL;
Bill Wendling74c37652008-12-09 22:08:41 +00008447 Cond = X86::COND_O;
8448 break;
8449 case ISD::UMULO:
Bill Wendlingd350e022008-12-12 21:15:41 +00008450 BaseOp = X86ISD::UMUL;
Dan Gohman653456c2009-01-07 00:15:08 +00008451 Cond = X86::COND_B;
Bill Wendling74c37652008-12-09 22:08:41 +00008452 break;
8453 }
Bill Wendling3fafd932008-11-26 22:37:40 +00008454
Bill Wendling61edeb52008-12-02 01:06:39 +00008455 // Also sets EFLAGS.
Owen Anderson825b72b2009-08-11 20:47:22 +00008456 SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008457 SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS);
Bill Wendling3fafd932008-11-26 22:37:40 +00008458
Bill Wendling61edeb52008-12-02 01:06:39 +00008459 SDValue SetCC =
Dale Johannesene4d209d2009-02-03 20:21:25 +00008460 DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1),
Owen Anderson825b72b2009-08-11 20:47:22 +00008461 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
Bill Wendling3fafd932008-11-26 22:37:40 +00008462
Bill Wendling61edeb52008-12-02 01:06:39 +00008463 DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
8464 return Sum;
Bill Wendling41ea7e72008-11-24 19:21:46 +00008465}
8466
Eric Christopher9a9d2752010-07-22 02:48:34 +00008467SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
8468 DebugLoc dl = Op.getDebugLoc();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008469
Eric Christopherb6729dc2010-08-04 23:03:04 +00008470 if (!Subtarget->hasSSE2()) {
Eric Christopherc0b2a202010-08-14 21:51:50 +00008471 SDValue Chain = Op.getOperand(0);
Michael J. Spencerec38de22010-10-10 22:04:20 +00008472 SDValue Zero = DAG.getConstant(0,
Eric Christopherb6729dc2010-08-04 23:03:04 +00008473 Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
Eric Christopherc0b2a202010-08-14 21:51:50 +00008474 SDValue Ops[] = {
8475 DAG.getRegister(X86::ESP, MVT::i32), // Base
8476 DAG.getTargetConstant(1, MVT::i8), // Scale
8477 DAG.getRegister(0, MVT::i32), // Index
8478 DAG.getTargetConstant(0, MVT::i32), // Disp
8479 DAG.getRegister(0, MVT::i32), // Segment.
8480 Zero,
8481 Chain
8482 };
Michael J. Spencerec38de22010-10-10 22:04:20 +00008483 SDNode *Res =
Eric Christopherc0b2a202010-08-14 21:51:50 +00008484 DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
8485 array_lengthof(Ops));
8486 return SDValue(Res, 0);
Eric Christopherb6729dc2010-08-04 23:03:04 +00008487 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00008488
Eric Christopher9a9d2752010-07-22 02:48:34 +00008489 unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
Chris Lattner132929a2010-08-14 17:26:09 +00008490 if (!isDev)
Eric Christopher9a9d2752010-07-22 02:48:34 +00008491 return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008492
Chris Lattner132929a2010-08-14 17:26:09 +00008493 unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
8494 unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
8495 unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
8496 unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008497
Chris Lattner132929a2010-08-14 17:26:09 +00008498 // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
8499 if (!Op1 && !Op2 && !Op3 && Op4)
8500 return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008501
Chris Lattner132929a2010-08-14 17:26:09 +00008502 // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
8503 if (Op1 && !Op2 && !Op3 && !Op4)
8504 return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
Michael J. Spencerec38de22010-10-10 22:04:20 +00008505
8506 // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
Chris Lattner132929a2010-08-14 17:26:09 +00008507 // (MFENCE)>;
8508 return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
Eric Christopher9a9d2752010-07-22 02:48:34 +00008509}
8510
Dan Gohmand858e902010-04-17 15:26:15 +00008511SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008512 EVT T = Op.getValueType();
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008513 DebugLoc DL = Op.getDebugLoc();
Andrew Lenhartha76e2f02008-03-04 21:13:33 +00008514 unsigned Reg = 0;
8515 unsigned size = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00008516 switch(T.getSimpleVT().SimpleTy) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008517 default:
8518 assert(false && "Invalid value type!");
Owen Anderson825b72b2009-08-11 20:47:22 +00008519 case MVT::i8: Reg = X86::AL; size = 1; break;
8520 case MVT::i16: Reg = X86::AX; size = 2; break;
8521 case MVT::i32: Reg = X86::EAX; size = 4; break;
8522 case MVT::i64:
Duncan Sands1607f052008-12-01 11:39:25 +00008523 assert(Subtarget->is64Bit() && "Node not type legal!");
8524 Reg = X86::RAX; size = 8;
Andrew Lenharthd19189e2008-03-05 01:15:49 +00008525 break;
Bill Wendling61edeb52008-12-02 01:06:39 +00008526 }
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008527 SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
Dale Johannesend18a4622008-09-11 03:12:59 +00008528 Op.getOperand(2), SDValue());
Dan Gohman475871a2008-07-27 21:46:04 +00008529 SDValue Ops[] = { cpIn.getValue(0),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008530 Op.getOperand(1),
8531 Op.getOperand(3),
Owen Anderson825b72b2009-08-11 20:47:22 +00008532 DAG.getTargetConstant(size, MVT::i8),
Evan Cheng8a186ae2008-09-24 23:26:36 +00008533 cpIn.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008534 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008535 MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
8536 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
8537 Ops, 5, T, MMO);
Scott Michelfdc40a02009-02-17 22:15:04 +00008538 SDValue cpOut =
Chris Lattner93c4a5b2010-09-21 23:59:42 +00008539 DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00008540 return cpOut;
8541}
8542
Duncan Sands1607f052008-12-01 11:39:25 +00008543SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
Dan Gohmand858e902010-04-17 15:26:15 +00008544 SelectionDAG &DAG) const {
Duncan Sands1607f052008-12-01 11:39:25 +00008545 assert(Subtarget->is64Bit() && "Result not type legalized?");
Owen Anderson825b72b2009-08-11 20:47:22 +00008546 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008547 SDValue TheChain = Op.getOperand(0);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00008548 DebugLoc dl = Op.getDebugLoc();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008549 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008550 SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
8551 SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
Duncan Sands1607f052008-12-01 11:39:25 +00008552 rax.getValue(2));
Owen Anderson825b72b2009-08-11 20:47:22 +00008553 SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
8554 DAG.getConstant(32, MVT::i8));
Duncan Sands1607f052008-12-01 11:39:25 +00008555 SDValue Ops[] = {
Owen Anderson825b72b2009-08-11 20:47:22 +00008556 DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
Duncan Sands1607f052008-12-01 11:39:25 +00008557 rdx.getValue(1)
8558 };
Dale Johannesene4d209d2009-02-03 20:21:25 +00008559 return DAG.getMergeValues(Ops, 2, dl);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008560}
8561
Dale Johannesen7d07b482010-05-21 00:52:33 +00008562SDValue X86TargetLowering::LowerBIT_CONVERT(SDValue Op,
8563 SelectionDAG &DAG) const {
8564 EVT SrcVT = Op.getOperand(0).getValueType();
8565 EVT DstVT = Op.getValueType();
Michael J. Spencerec38de22010-10-10 22:04:20 +00008566 assert((Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
Dale Johannesen7d07b482010-05-21 00:52:33 +00008567 Subtarget->hasMMX() && !DisableMMX) &&
8568 "Unexpected custom BIT_CONVERT");
Michael J. Spencerec38de22010-10-10 22:04:20 +00008569 assert((DstVT == MVT::i64 ||
Dale Johannesen7d07b482010-05-21 00:52:33 +00008570 (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
8571 "Unexpected custom BIT_CONVERT");
8572 // i64 <=> MMX conversions are Legal.
8573 if (SrcVT==MVT::i64 && DstVT.isVector())
8574 return Op;
8575 if (DstVT==MVT::i64 && SrcVT.isVector())
8576 return Op;
Dale Johannesene39859a2010-05-21 18:40:15 +00008577 // MMX <=> MMX conversions are Legal.
8578 if (SrcVT.isVector() && DstVT.isVector())
8579 return Op;
Dale Johannesen7d07b482010-05-21 00:52:33 +00008580 // All other conversions need to be expanded.
8581 return SDValue();
8582}
Dan Gohmand858e902010-04-17 15:26:15 +00008583SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008584 SDNode *Node = Op.getNode();
Dale Johannesene4d209d2009-02-03 20:21:25 +00008585 DebugLoc dl = Node->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +00008586 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008587 SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
Evan Cheng242b38b2009-02-23 09:03:22 +00008588 DAG.getConstant(0, T), Node->getOperand(2));
Dale Johannesene4d209d2009-02-03 20:21:25 +00008589 return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008590 cast<AtomicSDNode>(Node)->getMemoryVT(),
Dale Johannesen71d1bf52008-09-29 22:25:26 +00008591 Node->getOperand(0),
8592 Node->getOperand(1), negOp,
8593 cast<AtomicSDNode>(Node)->getSrcValue(),
8594 cast<AtomicSDNode>(Node)->getAlignment());
Mon P Wang63307c32008-05-05 19:05:59 +00008595}
8596
Evan Cheng0db9fe62006-04-25 20:13:52 +00008597/// LowerOperation - Provide custom lowering hooks for some operations.
8598///
Dan Gohmand858e902010-04-17 15:26:15 +00008599SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
Evan Cheng0db9fe62006-04-25 20:13:52 +00008600 switch (Op.getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00008601 default: llvm_unreachable("Should not custom lower this!");
Eric Christopher9a9d2752010-07-22 02:48:34 +00008602 case ISD::MEMBARRIER: return LowerMEMBARRIER(Op,DAG);
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008603 case ISD::ATOMIC_CMP_SWAP: return LowerCMP_SWAP(Op,DAG);
8604 case ISD::ATOMIC_LOAD_SUB: return LowerLOAD_SUB(Op,DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008605 case ISD::BUILD_VECTOR: return LowerBUILD_VECTOR(Op, DAG);
Mon P Wangeb38ebf2010-01-24 00:05:03 +00008606 case ISD::CONCAT_VECTORS: return LowerCONCAT_VECTORS(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008607 case ISD::VECTOR_SHUFFLE: return LowerVECTOR_SHUFFLE(Op, DAG);
8608 case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
8609 case ISD::INSERT_VECTOR_ELT: return LowerINSERT_VECTOR_ELT(Op, DAG);
8610 case ISD::SCALAR_TO_VECTOR: return LowerSCALAR_TO_VECTOR(Op, DAG);
8611 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
8612 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008613 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bill Wendling056292f2008-09-16 21:48:12 +00008614 case ISD::ExternalSymbol: return LowerExternalSymbol(Op, DAG);
Dan Gohmanf705adb2009-10-30 01:28:02 +00008615 case ISD::BlockAddress: return LowerBlockAddress(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008616 case ISD::SHL_PARTS:
8617 case ISD::SRA_PARTS:
8618 case ISD::SRL_PARTS: return LowerShift(Op, DAG);
8619 case ISD::SINT_TO_FP: return LowerSINT_TO_FP(Op, DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00008620 case ISD::UINT_TO_FP: return LowerUINT_TO_FP(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008621 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Eli Friedman948e95a2009-05-23 09:59:16 +00008622 case ISD::FP_TO_UINT: return LowerFP_TO_UINT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008623 case ISD::FABS: return LowerFABS(Op, DAG);
8624 case ISD::FNEG: return LowerFNEG(Op, DAG);
Evan Cheng68c47cb2007-01-05 07:55:56 +00008625 case ISD::FCOPYSIGN: return LowerFCOPYSIGN(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008626 case ISD::SETCC: return LowerSETCC(Op, DAG);
Nate Begeman30a0de92008-07-17 16:51:19 +00008627 case ISD::VSETCC: return LowerVSETCC(Op, DAG);
Evan Chenge5f62042007-09-29 00:00:36 +00008628 case ISD::SELECT: return LowerSELECT(Op, DAG);
8629 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008630 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008631 case ISD::VASTART: return LowerVASTART(Op, DAG);
Dan Gohman9018e832008-05-10 01:26:14 +00008632 case ISD::VAARG: return LowerVAARG(Op, DAG);
Evan Chengae642192007-03-02 23:16:35 +00008633 case ISD::VACOPY: return LowerVACOPY(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008634 case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
Nate Begemanbcc5f362007-01-29 22:58:52 +00008635 case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
8636 case ISD::FRAMEADDR: return LowerFRAMEADDR(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008637 case ISD::FRAME_TO_ARGS_OFFSET:
8638 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
Anton Korobeynikov57fc00d2007-04-17 09:20:00 +00008639 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008640 case ISD::EH_RETURN: return LowerEH_RETURN(Op, DAG);
Duncan Sandsb116fac2007-07-27 20:02:49 +00008641 case ISD::TRAMPOLINE: return LowerTRAMPOLINE(Op, DAG);
Dan Gohman1a024862008-01-31 00:41:03 +00008642 case ISD::FLT_ROUNDS_: return LowerFLT_ROUNDS_(Op, DAG);
Evan Cheng18efe262007-12-14 02:13:44 +00008643 case ISD::CTLZ: return LowerCTLZ(Op, DAG);
8644 case ISD::CTTZ: return LowerCTTZ(Op, DAG);
Mon P Wangaf9b9522008-12-18 21:42:19 +00008645 case ISD::MUL: return LowerMUL_V2I64(Op, DAG);
Nate Begemanbdcb5af2010-07-27 22:37:06 +00008646 case ISD::SHL: return LowerSHL(Op, DAG);
Bill Wendling74c37652008-12-09 22:08:41 +00008647 case ISD::SADDO:
8648 case ISD::UADDO:
8649 case ISD::SSUBO:
8650 case ISD::USUBO:
8651 case ISD::SMULO:
8652 case ISD::UMULO: return LowerXALUO(Op, DAG);
Duncan Sands1607f052008-12-01 11:39:25 +00008653 case ISD::READCYCLECOUNTER: return LowerREADCYCLECOUNTER(Op, DAG);
Dale Johannesen7d07b482010-05-21 00:52:33 +00008654 case ISD::BIT_CONVERT: return LowerBIT_CONVERT(Op, DAG);
Evan Cheng0db9fe62006-04-25 20:13:52 +00008655 }
Chris Lattner27a6c732007-11-24 07:07:01 +00008656}
8657
Duncan Sands1607f052008-12-01 11:39:25 +00008658void X86TargetLowering::
8659ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008660 SelectionDAG &DAG, unsigned NewOp) const {
Owen Andersone50ed302009-08-10 22:56:29 +00008661 EVT T = Node->getValueType(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008662 DebugLoc dl = Node->getDebugLoc();
Owen Anderson825b72b2009-08-11 20:47:22 +00008663 assert (T == MVT::i64 && "Only know how to expand i64 atomics");
Duncan Sands1607f052008-12-01 11:39:25 +00008664
8665 SDValue Chain = Node->getOperand(0);
8666 SDValue In1 = Node->getOperand(1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008667 SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008668 Node->getOperand(2), DAG.getIntPtrConstant(0));
Owen Anderson825b72b2009-08-11 20:47:22 +00008669 SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008670 Node->getOperand(2), DAG.getIntPtrConstant(1));
Dan Gohmanc76909a2009-09-25 20:36:54 +00008671 SDValue Ops[] = { Chain, In1, In2L, In2H };
Owen Anderson825b72b2009-08-11 20:47:22 +00008672 SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
Dan Gohmanc76909a2009-09-25 20:36:54 +00008673 SDValue Result =
8674 DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
8675 cast<MemSDNode>(Node)->getMemOperand());
Duncan Sands1607f052008-12-01 11:39:25 +00008676 SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008677 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008678 Results.push_back(Result.getValue(2));
8679}
8680
Duncan Sands126d9072008-07-04 11:47:58 +00008681/// ReplaceNodeResults - Replace a node with an illegal result type
8682/// with a new node built out of custom code.
Duncan Sands1607f052008-12-01 11:39:25 +00008683void X86TargetLowering::ReplaceNodeResults(SDNode *N,
8684 SmallVectorImpl<SDValue>&Results,
Dan Gohmand858e902010-04-17 15:26:15 +00008685 SelectionDAG &DAG) const {
Dale Johannesene4d209d2009-02-03 20:21:25 +00008686 DebugLoc dl = N->getDebugLoc();
Chris Lattner27a6c732007-11-24 07:07:01 +00008687 switch (N->getOpcode()) {
Duncan Sandsed294c42008-10-20 15:56:33 +00008688 default:
Duncan Sands1607f052008-12-01 11:39:25 +00008689 assert(false && "Do not know how to custom type legalize this operation!");
8690 return;
8691 case ISD::FP_TO_SINT: {
Eli Friedman948e95a2009-05-23 09:59:16 +00008692 std::pair<SDValue,SDValue> Vals =
8693 FP_TO_INTHelper(SDValue(N, 0), DAG, true);
Duncan Sands1607f052008-12-01 11:39:25 +00008694 SDValue FIST = Vals.first, StackSlot = Vals.second;
8695 if (FIST.getNode() != 0) {
Owen Andersone50ed302009-08-10 22:56:29 +00008696 EVT VT = N->getValueType(0);
Duncan Sands1607f052008-12-01 11:39:25 +00008697 // Return a load from the stack slot.
Chris Lattner51abfe42010-09-21 06:02:19 +00008698 Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
8699 MachinePointerInfo(), false, false, 0));
Duncan Sands1607f052008-12-01 11:39:25 +00008700 }
8701 return;
8702 }
8703 case ISD::READCYCLECOUNTER: {
Owen Anderson825b72b2009-08-11 20:47:22 +00008704 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Duncan Sands1607f052008-12-01 11:39:25 +00008705 SDValue TheChain = N->getOperand(0);
Dale Johannesene4d209d2009-02-03 20:21:25 +00008706 SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
Owen Anderson825b72b2009-08-11 20:47:22 +00008707 SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
Dale Johannesendd64c412009-02-04 00:33:20 +00008708 rd.getValue(1));
Owen Anderson825b72b2009-08-11 20:47:22 +00008709 SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
Duncan Sands1607f052008-12-01 11:39:25 +00008710 eax.getValue(2));
8711 // Use a buildpair to merge the two 32-bit values into a 64-bit one.
8712 SDValue Ops[] = { eax, edx };
Owen Anderson825b72b2009-08-11 20:47:22 +00008713 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008714 Results.push_back(edx.getValue(1));
8715 return;
8716 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008717 case ISD::ATOMIC_CMP_SWAP: {
Owen Andersone50ed302009-08-10 22:56:29 +00008718 EVT T = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +00008719 assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
Duncan Sands1607f052008-12-01 11:39:25 +00008720 SDValue cpInL, cpInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008721 cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8722 DAG.getConstant(0, MVT::i32));
8723 cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
8724 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008725 cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
8726 cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008727 cpInL.getValue(1));
8728 SDValue swapInL, swapInH;
Owen Anderson825b72b2009-08-11 20:47:22 +00008729 swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8730 DAG.getConstant(0, MVT::i32));
8731 swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
8732 DAG.getConstant(1, MVT::i32));
Dale Johannesendd64c412009-02-04 00:33:20 +00008733 swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
Duncan Sands1607f052008-12-01 11:39:25 +00008734 cpInH.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008735 swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
Duncan Sands1607f052008-12-01 11:39:25 +00008736 swapInL.getValue(1));
8737 SDValue Ops[] = { swapInH.getValue(0),
8738 N->getOperand(1),
8739 swapInH.getValue(1) };
Owen Anderson825b72b2009-08-11 20:47:22 +00008740 SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
Andrew Trick1a2cf3b2010-10-11 19:02:04 +00008741 MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
8742 SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
8743 Ops, 3, T, MMO);
Dale Johannesendd64c412009-02-04 00:33:20 +00008744 SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008745 MVT::i32, Result.getValue(1));
Dale Johannesendd64c412009-02-04 00:33:20 +00008746 SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
Owen Anderson825b72b2009-08-11 20:47:22 +00008747 MVT::i32, cpOutL.getValue(2));
Duncan Sands1607f052008-12-01 11:39:25 +00008748 SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
Owen Anderson825b72b2009-08-11 20:47:22 +00008749 Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
Duncan Sands1607f052008-12-01 11:39:25 +00008750 Results.push_back(cpOutH.getValue(1));
8751 return;
8752 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008753 case ISD::ATOMIC_LOAD_ADD:
Duncan Sands1607f052008-12-01 11:39:25 +00008754 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
8755 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008756 case ISD::ATOMIC_LOAD_AND:
Duncan Sands1607f052008-12-01 11:39:25 +00008757 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
8758 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008759 case ISD::ATOMIC_LOAD_NAND:
Duncan Sands1607f052008-12-01 11:39:25 +00008760 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
8761 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008762 case ISD::ATOMIC_LOAD_OR:
Duncan Sands1607f052008-12-01 11:39:25 +00008763 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
8764 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008765 case ISD::ATOMIC_LOAD_SUB:
Duncan Sands1607f052008-12-01 11:39:25 +00008766 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
8767 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008768 case ISD::ATOMIC_LOAD_XOR:
Duncan Sands1607f052008-12-01 11:39:25 +00008769 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
8770 return;
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008771 case ISD::ATOMIC_SWAP:
Duncan Sands1607f052008-12-01 11:39:25 +00008772 ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
8773 return;
Chris Lattner27a6c732007-11-24 07:07:01 +00008774 }
Evan Cheng0db9fe62006-04-25 20:13:52 +00008775}
8776
Evan Cheng72261582005-12-20 06:22:03 +00008777const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
8778 switch (Opcode) {
8779 default: return NULL;
Evan Cheng18efe262007-12-14 02:13:44 +00008780 case X86ISD::BSF: return "X86ISD::BSF";
8781 case X86ISD::BSR: return "X86ISD::BSR";
Evan Chenge3413162006-01-09 18:33:28 +00008782 case X86ISD::SHLD: return "X86ISD::SHLD";
8783 case X86ISD::SHRD: return "X86ISD::SHRD";
Evan Chengef6ffb12006-01-31 03:14:29 +00008784 case X86ISD::FAND: return "X86ISD::FAND";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008785 case X86ISD::FOR: return "X86ISD::FOR";
Evan Cheng223547a2006-01-31 22:28:30 +00008786 case X86ISD::FXOR: return "X86ISD::FXOR";
Evan Cheng68c47cb2007-01-05 07:55:56 +00008787 case X86ISD::FSRL: return "X86ISD::FSRL";
Evan Chenga3195e82006-01-12 22:54:21 +00008788 case X86ISD::FILD: return "X86ISD::FILD";
Evan Chenge3de85b2006-02-04 02:20:30 +00008789 case X86ISD::FILD_FLAG: return "X86ISD::FILD_FLAG";
Evan Cheng72261582005-12-20 06:22:03 +00008790 case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
8791 case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
8792 case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
Evan Chengb077b842005-12-21 02:39:21 +00008793 case X86ISD::FLD: return "X86ISD::FLD";
Evan Chengd90eb7f2006-01-05 00:27:02 +00008794 case X86ISD::FST: return "X86ISD::FST";
Evan Cheng72261582005-12-20 06:22:03 +00008795 case X86ISD::CALL: return "X86ISD::CALL";
Evan Cheng72261582005-12-20 06:22:03 +00008796 case X86ISD::RDTSC_DAG: return "X86ISD::RDTSC_DAG";
Dan Gohmanc7a37d42008-12-23 22:45:23 +00008797 case X86ISD::BT: return "X86ISD::BT";
Evan Cheng72261582005-12-20 06:22:03 +00008798 case X86ISD::CMP: return "X86ISD::CMP";
Evan Cheng6be2c582006-04-05 23:38:46 +00008799 case X86ISD::COMI: return "X86ISD::COMI";
8800 case X86ISD::UCOMI: return "X86ISD::UCOMI";
Evan Chengd5781fc2005-12-21 20:21:51 +00008801 case X86ISD::SETCC: return "X86ISD::SETCC";
Evan Chengad9c0a32009-12-15 00:53:42 +00008802 case X86ISD::SETCC_CARRY: return "X86ISD::SETCC_CARRY";
Evan Cheng72261582005-12-20 06:22:03 +00008803 case X86ISD::CMOV: return "X86ISD::CMOV";
8804 case X86ISD::BRCOND: return "X86ISD::BRCOND";
Evan Chengb077b842005-12-21 02:39:21 +00008805 case X86ISD::RET_FLAG: return "X86ISD::RET_FLAG";
Evan Cheng8df346b2006-03-04 01:12:00 +00008806 case X86ISD::REP_STOS: return "X86ISD::REP_STOS";
8807 case X86ISD::REP_MOVS: return "X86ISD::REP_MOVS";
Evan Cheng7ccced62006-02-18 00:15:05 +00008808 case X86ISD::GlobalBaseReg: return "X86ISD::GlobalBaseReg";
Evan Cheng020d2e82006-02-23 20:41:18 +00008809 case X86ISD::Wrapper: return "X86ISD::Wrapper";
Chris Lattner18c59872009-06-27 04:16:01 +00008810 case X86ISD::WrapperRIP: return "X86ISD::WrapperRIP";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008811 case X86ISD::PEXTRB: return "X86ISD::PEXTRB";
Evan Chengb067a1e2006-03-31 19:22:53 +00008812 case X86ISD::PEXTRW: return "X86ISD::PEXTRW";
Nate Begeman14d12ca2008-02-11 04:19:36 +00008813 case X86ISD::INSERTPS: return "X86ISD::INSERTPS";
8814 case X86ISD::PINSRB: return "X86ISD::PINSRB";
Evan Cheng653159f2006-03-31 21:55:24 +00008815 case X86ISD::PINSRW: return "X86ISD::PINSRW";
Nate Begemanb9a47b82009-02-23 08:49:38 +00008816 case X86ISD::PSHUFB: return "X86ISD::PSHUFB";
Evan Cheng8ca29322006-11-10 21:43:37 +00008817 case X86ISD::FMAX: return "X86ISD::FMAX";
8818 case X86ISD::FMIN: return "X86ISD::FMIN";
Dan Gohman20382522007-07-10 00:05:58 +00008819 case X86ISD::FRSQRT: return "X86ISD::FRSQRT";
8820 case X86ISD::FRCP: return "X86ISD::FRCP";
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00008821 case X86ISD::TLSADDR: return "X86ISD::TLSADDR";
Eric Christopher30ef0e52010-06-03 04:07:48 +00008822 case X86ISD::TLSCALL: return "X86ISD::TLSCALL";
Anton Korobeynikov2365f512007-07-14 14:06:15 +00008823 case X86ISD::EH_RETURN: return "X86ISD::EH_RETURN";
Arnold Schwaighoferc85e1712007-10-11 19:40:01 +00008824 case X86ISD::TC_RETURN: return "X86ISD::TC_RETURN";
Anton Korobeynikov45b22fa2007-11-16 01:31:51 +00008825 case X86ISD::FNSTCW16m: return "X86ISD::FNSTCW16m";
Evan Cheng7e2ff772008-05-08 00:57:18 +00008826 case X86ISD::LCMPXCHG_DAG: return "X86ISD::LCMPXCHG_DAG";
8827 case X86ISD::LCMPXCHG8_DAG: return "X86ISD::LCMPXCHG8_DAG";
Dale Johannesen48c1bc22008-10-02 18:53:47 +00008828 case X86ISD::ATOMADD64_DAG: return "X86ISD::ATOMADD64_DAG";
8829 case X86ISD::ATOMSUB64_DAG: return "X86ISD::ATOMSUB64_DAG";
8830 case X86ISD::ATOMOR64_DAG: return "X86ISD::ATOMOR64_DAG";
8831 case X86ISD::ATOMXOR64_DAG: return "X86ISD::ATOMXOR64_DAG";
8832 case X86ISD::ATOMAND64_DAG: return "X86ISD::ATOMAND64_DAG";
8833 case X86ISD::ATOMNAND64_DAG: return "X86ISD::ATOMNAND64_DAG";
Evan Chengd880b972008-05-09 21:53:03 +00008834 case X86ISD::VZEXT_MOVL: return "X86ISD::VZEXT_MOVL";
8835 case X86ISD::VZEXT_LOAD: return "X86ISD::VZEXT_LOAD";
Evan Chengf26ffe92008-05-29 08:22:04 +00008836 case X86ISD::VSHL: return "X86ISD::VSHL";
8837 case X86ISD::VSRL: return "X86ISD::VSRL";
Nate Begeman30a0de92008-07-17 16:51:19 +00008838 case X86ISD::CMPPD: return "X86ISD::CMPPD";
8839 case X86ISD::CMPPS: return "X86ISD::CMPPS";
8840 case X86ISD::PCMPEQB: return "X86ISD::PCMPEQB";
8841 case X86ISD::PCMPEQW: return "X86ISD::PCMPEQW";
8842 case X86ISD::PCMPEQD: return "X86ISD::PCMPEQD";
8843 case X86ISD::PCMPEQQ: return "X86ISD::PCMPEQQ";
8844 case X86ISD::PCMPGTB: return "X86ISD::PCMPGTB";
8845 case X86ISD::PCMPGTW: return "X86ISD::PCMPGTW";
8846 case X86ISD::PCMPGTD: return "X86ISD::PCMPGTD";
8847 case X86ISD::PCMPGTQ: return "X86ISD::PCMPGTQ";
Bill Wendlingab55ebd2008-12-12 00:56:36 +00008848 case X86ISD::ADD: return "X86ISD::ADD";
8849 case X86ISD::SUB: return "X86ISD::SUB";
Bill Wendlingd350e022008-12-12 21:15:41 +00008850 case X86ISD::SMUL: return "X86ISD::SMUL";
8851 case X86ISD::UMUL: return "X86ISD::UMUL";
Dan Gohman076aee32009-03-04 19:44:21 +00008852 case X86ISD::INC: return "X86ISD::INC";
8853 case X86ISD::DEC: return "X86ISD::DEC";
Dan Gohmane220c4b2009-09-18 19:59:53 +00008854 case X86ISD::OR: return "X86ISD::OR";
8855 case X86ISD::XOR: return "X86ISD::XOR";
8856 case X86ISD::AND: return "X86ISD::AND";
Evan Cheng73f24c92009-03-30 21:36:47 +00008857 case X86ISD::MUL_IMM: return "X86ISD::MUL_IMM";
Eric Christopher71c67532009-07-29 00:28:05 +00008858 case X86ISD::PTEST: return "X86ISD::PTEST";
Bruno Cardoso Lopes045573c2010-08-10 23:25:42 +00008859 case X86ISD::TESTP: return "X86ISD::TESTP";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008860 case X86ISD::PALIGN: return "X86ISD::PALIGN";
8861 case X86ISD::PSHUFD: return "X86ISD::PSHUFD";
8862 case X86ISD::PSHUFHW: return "X86ISD::PSHUFHW";
8863 case X86ISD::PSHUFHW_LD: return "X86ISD::PSHUFHW_LD";
8864 case X86ISD::PSHUFLW: return "X86ISD::PSHUFLW";
8865 case X86ISD::PSHUFLW_LD: return "X86ISD::PSHUFLW_LD";
8866 case X86ISD::SHUFPS: return "X86ISD::SHUFPS";
8867 case X86ISD::SHUFPD: return "X86ISD::SHUFPD";
8868 case X86ISD::MOVLHPS: return "X86ISD::MOVLHPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008869 case X86ISD::MOVLHPD: return "X86ISD::MOVLHPD";
Bruno Cardoso Lopesf2db5b42010-08-31 21:15:21 +00008870 case X86ISD::MOVHLPS: return "X86ISD::MOVHLPS";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008871 case X86ISD::MOVHLPD: return "X86ISD::MOVHLPD";
Bruno Cardoso Lopes56098f52010-09-01 05:08:25 +00008872 case X86ISD::MOVLPS: return "X86ISD::MOVLPS";
8873 case X86ISD::MOVLPD: return "X86ISD::MOVLPD";
Bruno Cardoso Lopes3157ef12010-08-20 22:55:05 +00008874 case X86ISD::MOVDDUP: return "X86ISD::MOVDDUP";
8875 case X86ISD::MOVSHDUP: return "X86ISD::MOVSHDUP";
8876 case X86ISD::MOVSLDUP: return "X86ISD::MOVSLDUP";
8877 case X86ISD::MOVSHDUP_LD: return "X86ISD::MOVSHDUP_LD";
8878 case X86ISD::MOVSLDUP_LD: return "X86ISD::MOVSLDUP_LD";
8879 case X86ISD::MOVSD: return "X86ISD::MOVSD";
8880 case X86ISD::MOVSS: return "X86ISD::MOVSS";
8881 case X86ISD::UNPCKLPS: return "X86ISD::UNPCKLPS";
8882 case X86ISD::UNPCKLPD: return "X86ISD::UNPCKLPD";
8883 case X86ISD::UNPCKHPS: return "X86ISD::UNPCKHPS";
8884 case X86ISD::UNPCKHPD: return "X86ISD::UNPCKHPD";
8885 case X86ISD::PUNPCKLBW: return "X86ISD::PUNPCKLBW";
8886 case X86ISD::PUNPCKLWD: return "X86ISD::PUNPCKLWD";
8887 case X86ISD::PUNPCKLDQ: return "X86ISD::PUNPCKLDQ";
8888 case X86ISD::PUNPCKLQDQ: return "X86ISD::PUNPCKLQDQ";
8889 case X86ISD::PUNPCKHBW: return "X86ISD::PUNPCKHBW";
8890 case X86ISD::PUNPCKHWD: return "X86ISD::PUNPCKHWD";
8891 case X86ISD::PUNPCKHDQ: return "X86ISD::PUNPCKHDQ";
8892 case X86ISD::PUNPCKHQDQ: return "X86ISD::PUNPCKHQDQ";
Dan Gohmand6708ea2009-08-15 01:38:56 +00008893 case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
Dan Gohman320afb82010-10-12 18:00:49 +00008894 case X86ISD::VAARG_64: return "X86ISD::VAARG_64";
Michael J. Spencere9c253e2010-10-21 01:41:01 +00008895 case X86ISD::WIN_ALLOCA: return "X86ISD::WIN_ALLOCA";
Evan Cheng72261582005-12-20 06:22:03 +00008896 }
8897}
Evan Cheng3a03ebb2005-12-21 23:05:39 +00008898
Chris Lattnerc9addb72007-03-30 23:15:24 +00008899// isLegalAddressingMode - Return true if the addressing mode represented
8900// by AM is legal for this target, for a load/store of the specified type.
Scott Michelfdc40a02009-02-17 22:15:04 +00008901bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
Chris Lattnerc9addb72007-03-30 23:15:24 +00008902 const Type *Ty) const {
8903 // X86 supports extremely general addressing modes.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008904 CodeModel::Model M = getTargetMachine().getCodeModel();
Dan Gohman92b651f2010-08-24 15:55:12 +00008905 Reloc::Model R = getTargetMachine().getRelocationModel();
Scott Michelfdc40a02009-02-17 22:15:04 +00008906
Chris Lattnerc9addb72007-03-30 23:15:24 +00008907 // X86 allows a sign-extended 32-bit immediate field as a displacement.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008908 if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
Chris Lattnerc9addb72007-03-30 23:15:24 +00008909 return false;
Scott Michelfdc40a02009-02-17 22:15:04 +00008910
Chris Lattnerc9addb72007-03-30 23:15:24 +00008911 if (AM.BaseGV) {
Chris Lattnerdfed4132009-07-10 07:38:24 +00008912 unsigned GVFlags =
8913 Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008914
Chris Lattnerdfed4132009-07-10 07:38:24 +00008915 // If a reference to this global requires an extra load, we can't fold it.
8916 if (isGlobalStubReference(GVFlags))
Chris Lattnerc9addb72007-03-30 23:15:24 +00008917 return false;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008918
Chris Lattnerdfed4132009-07-10 07:38:24 +00008919 // If BaseGV requires a register for the PIC base, we cannot also have a
8920 // BaseReg specified.
8921 if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
Dale Johannesen203af582008-12-05 21:47:27 +00008922 return false;
Evan Cheng52787842007-08-01 23:46:47 +00008923
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008924 // If lower 4G is not available, then we must use rip-relative addressing.
Dan Gohman92b651f2010-08-24 15:55:12 +00008925 if ((M != CodeModel::Small || R != Reloc::Static) &&
8926 Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00008927 return false;
Chris Lattnerc9addb72007-03-30 23:15:24 +00008928 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008929
Chris Lattnerc9addb72007-03-30 23:15:24 +00008930 switch (AM.Scale) {
8931 case 0:
8932 case 1:
8933 case 2:
8934 case 4:
8935 case 8:
8936 // These scales always work.
8937 break;
8938 case 3:
8939 case 5:
8940 case 9:
8941 // These scales are formed with basereg+scalereg. Only accept if there is
8942 // no basereg yet.
8943 if (AM.HasBaseReg)
8944 return false;
8945 break;
8946 default: // Other stuff never works.
8947 return false;
8948 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008949
Chris Lattnerc9addb72007-03-30 23:15:24 +00008950 return true;
8951}
8952
8953
Evan Cheng2bd122c2007-10-26 01:56:11 +00008954bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00008955 if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
Evan Cheng2bd122c2007-10-26 01:56:11 +00008956 return false;
Evan Chenge127a732007-10-29 07:57:50 +00008957 unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
8958 unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00008959 if (NumBits1 <= NumBits2)
Evan Chenge127a732007-10-29 07:57:50 +00008960 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00008961 return true;
Evan Cheng2bd122c2007-10-26 01:56:11 +00008962}
8963
Owen Andersone50ed302009-08-10 22:56:29 +00008964bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
Duncan Sands83ec4b62008-06-06 12:08:01 +00008965 if (!VT1.isInteger() || !VT2.isInteger())
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008966 return false;
Duncan Sands83ec4b62008-06-06 12:08:01 +00008967 unsigned NumBits1 = VT1.getSizeInBits();
8968 unsigned NumBits2 = VT2.getSizeInBits();
Evan Cheng260e07e2008-03-20 02:18:41 +00008969 if (NumBits1 <= NumBits2)
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008970 return false;
Dan Gohman377fbc02010-02-25 03:04:36 +00008971 return true;
Evan Cheng3c3ddb32007-10-29 19:58:20 +00008972}
Evan Cheng2bd122c2007-10-26 01:56:11 +00008973
Dan Gohman97121ba2009-04-08 00:15:30 +00008974bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00008975 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00008976 return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00008977}
8978
Owen Andersone50ed302009-08-10 22:56:29 +00008979bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
Dan Gohman349ba492009-04-09 02:06:09 +00008980 // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
Owen Anderson825b72b2009-08-11 20:47:22 +00008981 return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
Dan Gohman97121ba2009-04-08 00:15:30 +00008982}
8983
Owen Andersone50ed302009-08-10 22:56:29 +00008984bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
Evan Cheng8b944d32009-05-28 00:35:15 +00008985 // i16 instructions are longer (0x66 prefix) and potentially slower.
Owen Anderson825b72b2009-08-11 20:47:22 +00008986 return !(VT1 == MVT::i32 && VT2 == MVT::i16);
Evan Cheng8b944d32009-05-28 00:35:15 +00008987}
8988
Evan Cheng60c07e12006-07-05 22:17:51 +00008989/// isShuffleMaskLegal - Targets can use this to indicate that they only
8990/// support *some* VECTOR_SHUFFLE operations, those with specific masks.
8991/// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
8992/// are assumed to be legal.
8993bool
Eric Christopherfd179292009-08-27 18:07:15 +00008994X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
Owen Andersone50ed302009-08-10 22:56:29 +00008995 EVT VT) const {
Eric Christophercff6f852010-04-15 01:40:20 +00008996 // Very little shuffling can be done for 64-bit vectors right now.
Nate Begeman9008ca62009-04-27 18:41:29 +00008997 if (VT.getSizeInBits() == 64)
Eric Christophercff6f852010-04-15 01:40:20 +00008998 return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
Nate Begeman9008ca62009-04-27 18:41:29 +00008999
Nate Begemana09008b2009-10-19 02:17:23 +00009000 // FIXME: pshufb, blends, shifts.
Nate Begeman9008ca62009-04-27 18:41:29 +00009001 return (VT.getVectorNumElements() == 2 ||
9002 ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
9003 isMOVLMask(M, VT) ||
9004 isSHUFPMask(M, VT) ||
9005 isPSHUFDMask(M, VT) ||
9006 isPSHUFHWMask(M, VT) ||
9007 isPSHUFLWMask(M, VT) ||
Nate Begemana09008b2009-10-19 02:17:23 +00009008 isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
Nate Begeman9008ca62009-04-27 18:41:29 +00009009 isUNPCKLMask(M, VT) ||
9010 isUNPCKHMask(M, VT) ||
9011 isUNPCKL_v_undef_Mask(M, VT) ||
9012 isUNPCKH_v_undef_Mask(M, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009013}
9014
Dan Gohman7d8143f2008-04-09 20:09:42 +00009015bool
Nate Begeman5a5ca152009-04-29 05:20:52 +00009016X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
Owen Andersone50ed302009-08-10 22:56:29 +00009017 EVT VT) const {
Nate Begeman9008ca62009-04-27 18:41:29 +00009018 unsigned NumElts = VT.getVectorNumElements();
9019 // FIXME: This collection of masks seems suspect.
9020 if (NumElts == 2)
9021 return true;
9022 if (NumElts == 4 && VT.getSizeInBits() == 128) {
9023 return (isMOVLMask(Mask, VT) ||
9024 isCommutedMOVLMask(Mask, VT, true) ||
9025 isSHUFPMask(Mask, VT) ||
9026 isCommutedSHUFPMask(Mask, VT));
Evan Cheng60c07e12006-07-05 22:17:51 +00009027 }
9028 return false;
9029}
9030
9031//===----------------------------------------------------------------------===//
9032// X86 Scheduler Hooks
9033//===----------------------------------------------------------------------===//
9034
Mon P Wang63307c32008-05-05 19:05:59 +00009035// private utility function
9036MachineBasicBlock *
9037X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
9038 MachineBasicBlock *MBB,
9039 unsigned regOpc,
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009040 unsigned immOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009041 unsigned LoadOpc,
9042 unsigned CXchgOpc,
Dale Johannesen140be2d2008-08-19 18:47:28 +00009043 unsigned notOpc,
9044 unsigned EAXreg,
9045 TargetRegisterClass *RC,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009046 bool invSrc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009047 // For the atomic bitwise operator, we generate
9048 // thisMBB:
9049 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009050 // ld t1 = [bitinstr.addr]
9051 // op t2 = t1, [bitinstr.val]
9052 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009053 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9054 // bz newMBB
9055 // fallthrough -->nextMBB
9056 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9057 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009058 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009059 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009060
Mon P Wang63307c32008-05-05 19:05:59 +00009061 /// First build the CFG
9062 MachineFunction *F = MBB->getParent();
9063 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009064 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9065 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9066 F->insert(MBBIter, newMBB);
9067 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009068
Dan Gohman14152b42010-07-06 20:24:04 +00009069 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9070 nextMBB->splice(nextMBB->begin(), thisMBB,
9071 llvm::next(MachineBasicBlock::iterator(bInstr)),
9072 thisMBB->end());
9073 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009074
Mon P Wang63307c32008-05-05 19:05:59 +00009075 // Update thisMBB to fall through to newMBB
9076 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009077
Mon P Wang63307c32008-05-05 19:05:59 +00009078 // newMBB jumps to itself and fall through to nextMBB
9079 newMBB->addSuccessor(nextMBB);
9080 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009081
Mon P Wang63307c32008-05-05 19:05:59 +00009082 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009083 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009084 "unexpected number of operands");
Dale Johannesene4d209d2009-02-03 20:21:25 +00009085 DebugLoc dl = bInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009086 MachineOperand& destOper = bInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009087 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009088 int numArgs = bInstr->getNumOperands() - 1;
9089 for (int i=0; i < numArgs; ++i)
9090 argOpers[i] = &bInstr->getOperand(i+1);
9091
9092 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009093 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009094 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009095
Dale Johannesen140be2d2008-08-19 18:47:28 +00009096 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009097 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009098 for (int i=0; i <= lastAddrIndx; ++i)
9099 (*MIB).addOperand(*argOpers[i]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009100
Dale Johannesen140be2d2008-08-19 18:47:28 +00009101 unsigned tt = F->getRegInfo().createVirtualRegister(RC);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009102 if (invSrc) {
Dale Johannesene4d209d2009-02-03 20:21:25 +00009103 MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009104 }
Scott Michelfdc40a02009-02-17 22:15:04 +00009105 else
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009106 tt = t1;
9107
Dale Johannesen140be2d2008-08-19 18:47:28 +00009108 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dan Gohmand735b802008-10-03 15:45:36 +00009109 assert((argOpers[valArgIndx]->isReg() ||
9110 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009111 "invalid operand");
Dan Gohmand735b802008-10-03 15:45:36 +00009112 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009113 MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009114 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009115 MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009116 MIB.addReg(tt);
Mon P Wang63307c32008-05-05 19:05:59 +00009117 (*MIB).addOperand(*argOpers[valArgIndx]);
Andrew Lenharth507a58a2008-06-14 05:48:15 +00009118
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009119 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
Mon P Wangab3e7472008-05-05 22:56:23 +00009120 MIB.addReg(t1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009121
Dale Johannesene4d209d2009-02-03 20:21:25 +00009122 MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
Mon P Wang63307c32008-05-05 19:05:59 +00009123 for (int i=0; i <= lastAddrIndx; ++i)
9124 (*MIB).addOperand(*argOpers[i]);
9125 MIB.addReg(t2);
Mon P Wangf5952662008-07-17 04:54:06 +00009126 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009127 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9128 bInstr->memoperands_end());
Mon P Wangf5952662008-07-17 04:54:06 +00009129
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009130 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Dale Johannesen140be2d2008-08-19 18:47:28 +00009131 MIB.addReg(EAXreg);
Scott Michelfdc40a02009-02-17 22:15:04 +00009132
Mon P Wang63307c32008-05-05 19:05:59 +00009133 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009134 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009135
Dan Gohman14152b42010-07-06 20:24:04 +00009136 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009137 return nextMBB;
9138}
9139
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00009140// private utility function: 64 bit atomics on 32 bit host.
Mon P Wang63307c32008-05-05 19:05:59 +00009141MachineBasicBlock *
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009142X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
9143 MachineBasicBlock *MBB,
9144 unsigned regOpcL,
9145 unsigned regOpcH,
9146 unsigned immOpcL,
9147 unsigned immOpcH,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009148 bool invSrc) const {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009149 // For the atomic bitwise operator, we generate
9150 // thisMBB (instructions are in pairs, except cmpxchg8b)
9151 // ld t1,t2 = [bitinstr.addr]
9152 // newMBB:
9153 // out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
9154 // op t5, t6 <- out1, out2, [bitinstr.val]
Dale Johannesen880ae362008-10-03 22:25:52 +00009155 // (for SWAP, substitute: mov t5, t6 <- [bitinstr.val])
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009156 // mov ECX, EBX <- t5, t6
9157 // mov EAX, EDX <- t1, t2
9158 // cmpxchg8b [bitinstr.addr] [EAX, EDX, EBX, ECX implicit]
9159 // mov t3, t4 <- EAX, EDX
9160 // bz newMBB
9161 // result in out1, out2
9162 // fallthrough -->nextMBB
9163
9164 const TargetRegisterClass *RC = X86::GR32RegisterClass;
9165 const unsigned LoadOpc = X86::MOV32rm;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009166 const unsigned NotOpc = X86::NOT32r;
9167 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9168 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9169 MachineFunction::iterator MBBIter = MBB;
9170 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009171
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009172 /// First build the CFG
9173 MachineFunction *F = MBB->getParent();
9174 MachineBasicBlock *thisMBB = MBB;
9175 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9176 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9177 F->insert(MBBIter, newMBB);
9178 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009179
Dan Gohman14152b42010-07-06 20:24:04 +00009180 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9181 nextMBB->splice(nextMBB->begin(), thisMBB,
9182 llvm::next(MachineBasicBlock::iterator(bInstr)),
9183 thisMBB->end());
9184 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009185
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009186 // Update thisMBB to fall through to newMBB
9187 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009188
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009189 // newMBB jumps to itself and fall through to nextMBB
9190 newMBB->addSuccessor(nextMBB);
9191 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009192
Dale Johannesene4d209d2009-02-03 20:21:25 +00009193 DebugLoc dl = bInstr->getDebugLoc();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009194 // Insert instructions into newMBB based on incoming instruction
9195 // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009196 assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009197 "unexpected number of operands");
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009198 MachineOperand& dest1Oper = bInstr->getOperand(0);
9199 MachineOperand& dest2Oper = bInstr->getOperand(1);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009200 MachineOperand* argOpers[2 + X86::AddrNumOperands];
9201 for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009202 argOpers[i] = &bInstr->getOperand(i+2);
9203
Dan Gohman71ea4e52010-05-14 21:01:44 +00009204 // We use some of the operands multiple times, so conservatively just
9205 // clear any kill flags that might be present.
9206 if (argOpers[i]->isReg() && argOpers[i]->isUse())
9207 argOpers[i]->setIsKill(false);
9208 }
9209
Evan Chengad5b52f2010-01-08 19:14:57 +00009210 // x86 address has 5 operands: base, index, scale, displacement, and segment.
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009211 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Scott Michelfdc40a02009-02-17 22:15:04 +00009212
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009213 unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009214 MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009215 for (int i=0; i <= lastAddrIndx; ++i)
9216 (*MIB).addOperand(*argOpers[i]);
9217 unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009218 MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
Dale Johannesen880ae362008-10-03 22:25:52 +00009219 // add 4 to displacement.
Rafael Espindola094fad32009-04-08 21:14:34 +00009220 for (int i=0; i <= lastAddrIndx-2; ++i)
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009221 (*MIB).addOperand(*argOpers[i]);
Dale Johannesen880ae362008-10-03 22:25:52 +00009222 MachineOperand newOp3 = *(argOpers[3]);
9223 if (newOp3.isImm())
9224 newOp3.setImm(newOp3.getImm()+4);
9225 else
9226 newOp3.setOffset(newOp3.getOffset()+4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009227 (*MIB).addOperand(newOp3);
Rafael Espindola094fad32009-04-08 21:14:34 +00009228 (*MIB).addOperand(*argOpers[lastAddrIndx]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009229
9230 // t3/4 are defined later, at the bottom of the loop
9231 unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
9232 unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009233 BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009234 .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009235 BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009236 .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
9237
Evan Cheng306b4ca2010-01-08 23:41:50 +00009238 // The subsequent operations should be using the destination registers of
9239 //the PHI instructions.
Scott Michelfdc40a02009-02-17 22:15:04 +00009240 if (invSrc) {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009241 t1 = F->getRegInfo().createVirtualRegister(RC);
9242 t2 = F->getRegInfo().createVirtualRegister(RC);
9243 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
9244 MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009245 } else {
Evan Cheng306b4ca2010-01-08 23:41:50 +00009246 t1 = dest1Oper.getReg();
9247 t2 = dest2Oper.getReg();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009248 }
9249
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009250 int valArgIndx = lastAddrIndx + 1;
9251 assert((argOpers[valArgIndx]->isReg() ||
Bill Wendling51b16f42009-05-30 01:09:53 +00009252 argOpers[valArgIndx]->isImm()) &&
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009253 "invalid operand");
9254 unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
9255 unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009256 if (argOpers[valArgIndx]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009257 MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009258 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009259 MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
Dale Johannesen880ae362008-10-03 22:25:52 +00009260 if (regOpcL != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009261 MIB.addReg(t1);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009262 (*MIB).addOperand(*argOpers[valArgIndx]);
9263 assert(argOpers[valArgIndx + 1]->isReg() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009264 argOpers[valArgIndx]->isReg());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009265 assert(argOpers[valArgIndx + 1]->isImm() ==
Bill Wendling51b16f42009-05-30 01:09:53 +00009266 argOpers[valArgIndx]->isImm());
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009267 if (argOpers[valArgIndx + 1]->isReg())
Dale Johannesene4d209d2009-02-03 20:21:25 +00009268 MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009269 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009270 MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
Dale Johannesen880ae362008-10-03 22:25:52 +00009271 if (regOpcH != X86::MOV32rr)
Evan Cheng306b4ca2010-01-08 23:41:50 +00009272 MIB.addReg(t2);
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009273 (*MIB).addOperand(*argOpers[valArgIndx + 1]);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009274
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009275 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009276 MIB.addReg(t1);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009277 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009278 MIB.addReg(t2);
9279
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009280 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009281 MIB.addReg(t5);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009282 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009283 MIB.addReg(t6);
Scott Michelfdc40a02009-02-17 22:15:04 +00009284
Dale Johannesene4d209d2009-02-03 20:21:25 +00009285 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009286 for (int i=0; i <= lastAddrIndx; ++i)
9287 (*MIB).addOperand(*argOpers[i]);
9288
9289 assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009290 (*MIB).setMemRefs(bInstr->memoperands_begin(),
9291 bInstr->memoperands_end());
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009292
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009293 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009294 MIB.addReg(X86::EAX);
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009295 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009296 MIB.addReg(X86::EDX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009297
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009298 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009299 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009300
Dan Gohman14152b42010-07-06 20:24:04 +00009301 bInstr->eraseFromParent(); // The pseudo instruction is gone now.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00009302 return nextMBB;
9303}
9304
9305// private utility function
9306MachineBasicBlock *
Mon P Wang63307c32008-05-05 19:05:59 +00009307X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
9308 MachineBasicBlock *MBB,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +00009309 unsigned cmovOpc) const {
Mon P Wang63307c32008-05-05 19:05:59 +00009310 // For the atomic min/max operator, we generate
9311 // thisMBB:
9312 // newMBB:
Mon P Wangab3e7472008-05-05 22:56:23 +00009313 // ld t1 = [min/max.addr]
Scott Michelfdc40a02009-02-17 22:15:04 +00009314 // mov t2 = [min/max.val]
Mon P Wang63307c32008-05-05 19:05:59 +00009315 // cmp t1, t2
9316 // cmov[cond] t2 = t1
Mon P Wangab3e7472008-05-05 22:56:23 +00009317 // mov EAX = t1
Mon P Wang63307c32008-05-05 19:05:59 +00009318 // lcs dest = [bitinstr.addr], t2 [EAX is implicit]
9319 // bz newMBB
9320 // fallthrough -->nextMBB
9321 //
9322 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9323 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009324 MachineFunction::iterator MBBIter = MBB;
Mon P Wang63307c32008-05-05 19:05:59 +00009325 ++MBBIter;
Scott Michelfdc40a02009-02-17 22:15:04 +00009326
Mon P Wang63307c32008-05-05 19:05:59 +00009327 /// First build the CFG
9328 MachineFunction *F = MBB->getParent();
9329 MachineBasicBlock *thisMBB = MBB;
Dan Gohman8e5f2c62008-07-07 23:14:23 +00009330 MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
9331 MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
9332 F->insert(MBBIter, newMBB);
9333 F->insert(MBBIter, nextMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009334
Dan Gohman14152b42010-07-06 20:24:04 +00009335 // Transfer the remainder of thisMBB and its successor edges to nextMBB.
9336 nextMBB->splice(nextMBB->begin(), thisMBB,
9337 llvm::next(MachineBasicBlock::iterator(mInstr)),
9338 thisMBB->end());
9339 nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009340
Mon P Wang63307c32008-05-05 19:05:59 +00009341 // Update thisMBB to fall through to newMBB
9342 thisMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009343
Mon P Wang63307c32008-05-05 19:05:59 +00009344 // newMBB jumps to newMBB and fall through to nextMBB
9345 newMBB->addSuccessor(nextMBB);
9346 newMBB->addSuccessor(newMBB);
Scott Michelfdc40a02009-02-17 22:15:04 +00009347
Dale Johannesene4d209d2009-02-03 20:21:25 +00009348 DebugLoc dl = mInstr->getDebugLoc();
Mon P Wang63307c32008-05-05 19:05:59 +00009349 // Insert instructions into newMBB based on incoming instruction
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009350 assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
Bill Wendling51b16f42009-05-30 01:09:53 +00009351 "unexpected number of operands");
Mon P Wang63307c32008-05-05 19:05:59 +00009352 MachineOperand& destOper = mInstr->getOperand(0);
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009353 MachineOperand* argOpers[2 + X86::AddrNumOperands];
Mon P Wang63307c32008-05-05 19:05:59 +00009354 int numArgs = mInstr->getNumOperands() - 1;
9355 for (int i=0; i < numArgs; ++i)
9356 argOpers[i] = &mInstr->getOperand(i+1);
Scott Michelfdc40a02009-02-17 22:15:04 +00009357
Mon P Wang63307c32008-05-05 19:05:59 +00009358 // x86 address has 4 operands: base, index, scale, and displacement
Chris Lattnerac0ed5d2010-07-08 22:41:28 +00009359 int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
Rafael Espindolaa82dfca2009-03-27 15:26:30 +00009360 int valArgIndx = lastAddrIndx + 1;
Scott Michelfdc40a02009-02-17 22:15:04 +00009361
Mon P Wangab3e7472008-05-05 22:56:23 +00009362 unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009363 MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
Mon P Wang63307c32008-05-05 19:05:59 +00009364 for (int i=0; i <= lastAddrIndx; ++i)
9365 (*MIB).addOperand(*argOpers[i]);
Mon P Wangab3e7472008-05-05 22:56:23 +00009366
Mon P Wang63307c32008-05-05 19:05:59 +00009367 // We only support register and immediate values
Dan Gohmand735b802008-10-03 15:45:36 +00009368 assert((argOpers[valArgIndx]->isReg() ||
9369 argOpers[valArgIndx]->isImm()) &&
Dan Gohman014278e2008-09-13 17:58:21 +00009370 "invalid operand");
Scott Michelfdc40a02009-02-17 22:15:04 +00009371
9372 unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dan Gohmand735b802008-10-03 15:45:36 +00009373 if (argOpers[valArgIndx]->isReg())
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009374 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
Scott Michelfdc40a02009-02-17 22:15:04 +00009375 else
Dale Johannesene4d209d2009-02-03 20:21:25 +00009376 MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
Mon P Wang63307c32008-05-05 19:05:59 +00009377 (*MIB).addOperand(*argOpers[valArgIndx]);
9378
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009379 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
Mon P Wangab3e7472008-05-05 22:56:23 +00009380 MIB.addReg(t1);
9381
Dale Johannesene4d209d2009-02-03 20:21:25 +00009382 MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
Mon P Wang63307c32008-05-05 19:05:59 +00009383 MIB.addReg(t1);
9384 MIB.addReg(t2);
9385
9386 // Generate movc
9387 unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
Dale Johannesene4d209d2009-02-03 20:21:25 +00009388 MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
Mon P Wang63307c32008-05-05 19:05:59 +00009389 MIB.addReg(t2);
9390 MIB.addReg(t1);
9391
9392 // Cmp and exchange if none has modified the memory location
Dale Johannesene4d209d2009-02-03 20:21:25 +00009393 MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
Mon P Wang63307c32008-05-05 19:05:59 +00009394 for (int i=0; i <= lastAddrIndx; ++i)
9395 (*MIB).addOperand(*argOpers[i]);
9396 MIB.addReg(t3);
Mon P Wangf5952662008-07-17 04:54:06 +00009397 assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
Dan Gohmanc76909a2009-09-25 20:36:54 +00009398 (*MIB).setMemRefs(mInstr->memoperands_begin(),
9399 mInstr->memoperands_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00009400
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +00009401 MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
Mon P Wang63307c32008-05-05 19:05:59 +00009402 MIB.addReg(X86::EAX);
Scott Michelfdc40a02009-02-17 22:15:04 +00009403
Mon P Wang63307c32008-05-05 19:05:59 +00009404 // insert branch
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009405 BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
Mon P Wang63307c32008-05-05 19:05:59 +00009406
Dan Gohman14152b42010-07-06 20:24:04 +00009407 mInstr->eraseFromParent(); // The pseudo instruction is gone now.
Mon P Wang63307c32008-05-05 19:05:59 +00009408 return nextMBB;
9409}
9410
Eric Christopherf83a5de2009-08-27 18:08:16 +00009411// FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009412// or XMM0_V32I8 in AVX all of this code can be replaced with that
9413// in the .td file.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009414MachineBasicBlock *
Eric Christopherb120ab42009-08-18 22:50:32 +00009415X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
Daniel Dunbara279bc32009-09-20 02:20:51 +00009416 unsigned numArgs, bool memArg) const {
Eric Christopherb120ab42009-08-18 22:50:32 +00009417
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009418 assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
9419 "Target must have SSE4.2 or AVX features enabled");
9420
Eric Christopherb120ab42009-08-18 22:50:32 +00009421 DebugLoc dl = MI->getDebugLoc();
9422 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9423
9424 unsigned Opc;
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +00009425
9426 if (!Subtarget->hasAVX()) {
9427 if (memArg)
9428 Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
9429 else
9430 Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
9431 } else {
9432 if (memArg)
9433 Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
9434 else
9435 Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
9436 }
Eric Christopherb120ab42009-08-18 22:50:32 +00009437
9438 MachineInstrBuilder MIB = BuildMI(BB, dl, TII->get(Opc));
9439
9440 for (unsigned i = 0; i < numArgs; ++i) {
9441 MachineOperand &Op = MI->getOperand(i+1);
9442
9443 if (!(Op.isReg() && Op.isImplicit()))
9444 MIB.addOperand(Op);
9445 }
9446
9447 BuildMI(BB, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
9448 .addReg(X86::XMM0);
9449
Dan Gohman14152b42010-07-06 20:24:04 +00009450 MI->eraseFromParent();
Eric Christopherb120ab42009-08-18 22:50:32 +00009451
9452 return BB;
9453}
9454
9455MachineBasicBlock *
Dan Gohman320afb82010-10-12 18:00:49 +00009456X86TargetLowering::EmitVAARG64WithCustomInserter(
9457 MachineInstr *MI,
9458 MachineBasicBlock *MBB) const {
9459 // Emit va_arg instruction on X86-64.
9460
9461 // Operands to this pseudo-instruction:
9462 // 0 ) Output : destination address (reg)
9463 // 1-5) Input : va_list address (addr, i64mem)
9464 // 6 ) ArgSize : Size (in bytes) of vararg type
9465 // 7 ) ArgMode : 0=overflow only, 1=use gp_offset, 2=use fp_offset
9466 // 8 ) Align : Alignment of type
9467 // 9 ) EFLAGS (implicit-def)
9468
9469 assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
9470 assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
9471
9472 unsigned DestReg = MI->getOperand(0).getReg();
9473 MachineOperand &Base = MI->getOperand(1);
9474 MachineOperand &Scale = MI->getOperand(2);
9475 MachineOperand &Index = MI->getOperand(3);
9476 MachineOperand &Disp = MI->getOperand(4);
9477 MachineOperand &Segment = MI->getOperand(5);
9478 unsigned ArgSize = MI->getOperand(6).getImm();
9479 unsigned ArgMode = MI->getOperand(7).getImm();
9480 unsigned Align = MI->getOperand(8).getImm();
9481
9482 // Memory Reference
9483 assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
9484 MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
9485 MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
9486
9487 // Machine Information
9488 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9489 MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
9490 const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
9491 const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
9492 DebugLoc DL = MI->getDebugLoc();
9493
9494 // struct va_list {
9495 // i32 gp_offset
9496 // i32 fp_offset
9497 // i64 overflow_area (address)
9498 // i64 reg_save_area (address)
9499 // }
9500 // sizeof(va_list) = 24
9501 // alignment(va_list) = 8
9502
9503 unsigned TotalNumIntRegs = 6;
9504 unsigned TotalNumXMMRegs = 8;
9505 bool UseGPOffset = (ArgMode == 1);
9506 bool UseFPOffset = (ArgMode == 2);
9507 unsigned MaxOffset = TotalNumIntRegs * 8 +
9508 (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
9509
9510 /* Align ArgSize to a multiple of 8 */
9511 unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
9512 bool NeedsAlign = (Align > 8);
9513
9514 MachineBasicBlock *thisMBB = MBB;
9515 MachineBasicBlock *overflowMBB;
9516 MachineBasicBlock *offsetMBB;
9517 MachineBasicBlock *endMBB;
9518
9519 unsigned OffsetDestReg = 0; // Argument address computed by offsetMBB
9520 unsigned OverflowDestReg = 0; // Argument address computed by overflowMBB
9521 unsigned OffsetReg = 0;
9522
9523 if (!UseGPOffset && !UseFPOffset) {
9524 // If we only pull from the overflow region, we don't create a branch.
9525 // We don't need to alter control flow.
9526 OffsetDestReg = 0; // unused
9527 OverflowDestReg = DestReg;
9528
9529 offsetMBB = NULL;
9530 overflowMBB = thisMBB;
9531 endMBB = thisMBB;
9532 } else {
9533 // First emit code to check if gp_offset (or fp_offset) is below the bound.
9534 // If so, pull the argument from reg_save_area. (branch to offsetMBB)
9535 // If not, pull from overflow_area. (branch to overflowMBB)
9536 //
9537 // thisMBB
9538 // | .
9539 // | .
9540 // offsetMBB overflowMBB
9541 // | .
9542 // | .
9543 // endMBB
9544
9545 // Registers for the PHI in endMBB
9546 OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
9547 OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
9548
9549 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9550 MachineFunction *MF = MBB->getParent();
9551 overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9552 offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9553 endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
9554
9555 MachineFunction::iterator MBBIter = MBB;
9556 ++MBBIter;
9557
9558 // Insert the new basic blocks
9559 MF->insert(MBBIter, offsetMBB);
9560 MF->insert(MBBIter, overflowMBB);
9561 MF->insert(MBBIter, endMBB);
9562
9563 // Transfer the remainder of MBB and its successor edges to endMBB.
9564 endMBB->splice(endMBB->begin(), thisMBB,
9565 llvm::next(MachineBasicBlock::iterator(MI)),
9566 thisMBB->end());
9567 endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
9568
9569 // Make offsetMBB and overflowMBB successors of thisMBB
9570 thisMBB->addSuccessor(offsetMBB);
9571 thisMBB->addSuccessor(overflowMBB);
9572
9573 // endMBB is a successor of both offsetMBB and overflowMBB
9574 offsetMBB->addSuccessor(endMBB);
9575 overflowMBB->addSuccessor(endMBB);
9576
9577 // Load the offset value into a register
9578 OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
9579 BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
9580 .addOperand(Base)
9581 .addOperand(Scale)
9582 .addOperand(Index)
9583 .addDisp(Disp, UseFPOffset ? 4 : 0)
9584 .addOperand(Segment)
9585 .setMemRefs(MMOBegin, MMOEnd);
9586
9587 // Check if there is enough room left to pull this argument.
9588 BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
9589 .addReg(OffsetReg)
9590 .addImm(MaxOffset + 8 - ArgSizeA8);
9591
9592 // Branch to "overflowMBB" if offset >= max
9593 // Fall through to "offsetMBB" otherwise
9594 BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
9595 .addMBB(overflowMBB);
9596 }
9597
9598 // In offsetMBB, emit code to use the reg_save_area.
9599 if (offsetMBB) {
9600 assert(OffsetReg != 0);
9601
9602 // Read the reg_save_area address.
9603 unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
9604 BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
9605 .addOperand(Base)
9606 .addOperand(Scale)
9607 .addOperand(Index)
9608 .addDisp(Disp, 16)
9609 .addOperand(Segment)
9610 .setMemRefs(MMOBegin, MMOEnd);
9611
9612 // Zero-extend the offset
9613 unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
9614 BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
9615 .addImm(0)
9616 .addReg(OffsetReg)
9617 .addImm(X86::sub_32bit);
9618
9619 // Add the offset to the reg_save_area to get the final address.
9620 BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
9621 .addReg(OffsetReg64)
9622 .addReg(RegSaveReg);
9623
9624 // Compute the offset for the next argument
9625 unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
9626 BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
9627 .addReg(OffsetReg)
9628 .addImm(UseFPOffset ? 16 : 8);
9629
9630 // Store it back into the va_list.
9631 BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
9632 .addOperand(Base)
9633 .addOperand(Scale)
9634 .addOperand(Index)
9635 .addDisp(Disp, UseFPOffset ? 4 : 0)
9636 .addOperand(Segment)
9637 .addReg(NextOffsetReg)
9638 .setMemRefs(MMOBegin, MMOEnd);
9639
9640 // Jump to endMBB
9641 BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
9642 .addMBB(endMBB);
9643 }
9644
9645 //
9646 // Emit code to use overflow area
9647 //
9648
9649 // Load the overflow_area address into a register.
9650 unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
9651 BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
9652 .addOperand(Base)
9653 .addOperand(Scale)
9654 .addOperand(Index)
9655 .addDisp(Disp, 8)
9656 .addOperand(Segment)
9657 .setMemRefs(MMOBegin, MMOEnd);
9658
9659 // If we need to align it, do so. Otherwise, just copy the address
9660 // to OverflowDestReg.
9661 if (NeedsAlign) {
9662 // Align the overflow address
9663 assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
9664 unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
9665
9666 // aligned_addr = (addr + (align-1)) & ~(align-1)
9667 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
9668 .addReg(OverflowAddrReg)
9669 .addImm(Align-1);
9670
9671 BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
9672 .addReg(TmpReg)
9673 .addImm(~(uint64_t)(Align-1));
9674 } else {
9675 BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
9676 .addReg(OverflowAddrReg);
9677 }
9678
9679 // Compute the next overflow address after this argument.
9680 // (the overflow address should be kept 8-byte aligned)
9681 unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
9682 BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
9683 .addReg(OverflowDestReg)
9684 .addImm(ArgSizeA8);
9685
9686 // Store the new overflow address.
9687 BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
9688 .addOperand(Base)
9689 .addOperand(Scale)
9690 .addOperand(Index)
9691 .addDisp(Disp, 8)
9692 .addOperand(Segment)
9693 .addReg(NextAddrReg)
9694 .setMemRefs(MMOBegin, MMOEnd);
9695
9696 // If we branched, emit the PHI to the front of endMBB.
9697 if (offsetMBB) {
9698 BuildMI(*endMBB, endMBB->begin(), DL,
9699 TII->get(X86::PHI), DestReg)
9700 .addReg(OffsetDestReg).addMBB(offsetMBB)
9701 .addReg(OverflowDestReg).addMBB(overflowMBB);
9702 }
9703
9704 // Erase the pseudo instruction
9705 MI->eraseFromParent();
9706
9707 return endMBB;
9708}
9709
9710MachineBasicBlock *
Dan Gohmand6708ea2009-08-15 01:38:56 +00009711X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
9712 MachineInstr *MI,
9713 MachineBasicBlock *MBB) const {
9714 // Emit code to save XMM registers to the stack. The ABI says that the
9715 // number of registers to save is given in %al, so it's theoretically
9716 // possible to do an indirect jump trick to avoid saving all of them,
9717 // however this code takes a simpler approach and just executes all
9718 // of the stores if %al is non-zero. It's less code, and it's probably
9719 // easier on the hardware branch predictor, and stores aren't all that
9720 // expensive anyway.
9721
9722 // Create the new basic blocks. One block contains all the XMM stores,
9723 // and one block is the final destination regardless of whether any
9724 // stores were performed.
9725 const BasicBlock *LLVM_BB = MBB->getBasicBlock();
9726 MachineFunction *F = MBB->getParent();
9727 MachineFunction::iterator MBBIter = MBB;
9728 ++MBBIter;
9729 MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
9730 MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
9731 F->insert(MBBIter, XMMSaveMBB);
9732 F->insert(MBBIter, EndMBB);
9733
Dan Gohman14152b42010-07-06 20:24:04 +00009734 // Transfer the remainder of MBB and its successor edges to EndMBB.
9735 EndMBB->splice(EndMBB->begin(), MBB,
9736 llvm::next(MachineBasicBlock::iterator(MI)),
9737 MBB->end());
9738 EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
9739
Dan Gohmand6708ea2009-08-15 01:38:56 +00009740 // The original block will now fall through to the XMM save block.
9741 MBB->addSuccessor(XMMSaveMBB);
9742 // The XMMSaveMBB will fall through to the end block.
9743 XMMSaveMBB->addSuccessor(EndMBB);
9744
9745 // Now add the instructions.
9746 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9747 DebugLoc DL = MI->getDebugLoc();
9748
9749 unsigned CountReg = MI->getOperand(0).getReg();
9750 int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
9751 int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
9752
9753 if (!Subtarget->isTargetWin64()) {
9754 // If %al is 0, branch around the XMM save block.
9755 BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
Chris Lattnerbd13fb62010-02-11 19:25:55 +00009756 BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009757 MBB->addSuccessor(EndMBB);
9758 }
9759
9760 // In the XMM save block, save all the XMM argument registers.
9761 for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
9762 int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
Dan Gohmanc76909a2009-09-25 20:36:54 +00009763 MachineMemOperand *MMO =
Evan Chengff89dcb2009-10-18 18:16:27 +00009764 F->getMachineMemOperand(
Chris Lattnere8639032010-09-21 06:22:23 +00009765 MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
Chris Lattner59db5492010-09-21 04:39:43 +00009766 MachineMemOperand::MOStore,
Evan Chengff89dcb2009-10-18 18:16:27 +00009767 /*Size=*/16, /*Align=*/16);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009768 BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
9769 .addFrameIndex(RegSaveFrameIndex)
9770 .addImm(/*Scale=*/1)
9771 .addReg(/*IndexReg=*/0)
9772 .addImm(/*Disp=*/Offset)
9773 .addReg(/*Segment=*/0)
9774 .addReg(MI->getOperand(i).getReg())
Dan Gohmanc76909a2009-09-25 20:36:54 +00009775 .addMemOperand(MMO);
Dan Gohmand6708ea2009-08-15 01:38:56 +00009776 }
9777
Dan Gohman14152b42010-07-06 20:24:04 +00009778 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohmand6708ea2009-08-15 01:38:56 +00009779
9780 return EndMBB;
9781}
Mon P Wang63307c32008-05-05 19:05:59 +00009782
Evan Cheng60c07e12006-07-05 22:17:51 +00009783MachineBasicBlock *
Chris Lattner52600972009-09-02 05:57:00 +00009784X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009785 MachineBasicBlock *BB) const {
Chris Lattner52600972009-09-02 05:57:00 +00009786 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9787 DebugLoc DL = MI->getDebugLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00009788
Chris Lattner52600972009-09-02 05:57:00 +00009789 // To "insert" a SELECT_CC instruction, we actually have to insert the
9790 // diamond control-flow pattern. The incoming instruction knows the
9791 // destination vreg to set, the condition code register to branch on, the
9792 // true/false values to select between, and a branch opcode to use.
9793 const BasicBlock *LLVM_BB = BB->getBasicBlock();
9794 MachineFunction::iterator It = BB;
9795 ++It;
Daniel Dunbara279bc32009-09-20 02:20:51 +00009796
Chris Lattner52600972009-09-02 05:57:00 +00009797 // thisMBB:
9798 // ...
9799 // TrueVal = ...
9800 // cmpTY ccX, r1, r2
9801 // bCC copy1MBB
9802 // fallthrough --> copy0MBB
9803 MachineBasicBlock *thisMBB = BB;
9804 MachineFunction *F = BB->getParent();
9805 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
9806 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
Chris Lattner52600972009-09-02 05:57:00 +00009807 F->insert(It, copy0MBB);
9808 F->insert(It, sinkMBB);
Bill Wendling730c07e2010-06-25 20:48:10 +00009809
Bill Wendling730c07e2010-06-25 20:48:10 +00009810 // If the EFLAGS register isn't dead in the terminator, then claim that it's
9811 // live into the sink and copy blocks.
9812 const MachineFunction *MF = BB->getParent();
9813 const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
9814 BitVector ReservedRegs = TRI->getReservedRegs(*MF);
Bill Wendling730c07e2010-06-25 20:48:10 +00009815
Dan Gohman14152b42010-07-06 20:24:04 +00009816 for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
9817 const MachineOperand &MO = MI->getOperand(I);
9818 if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
Bill Wendling730c07e2010-06-25 20:48:10 +00009819 unsigned Reg = MO.getReg();
9820 if (Reg != X86::EFLAGS) continue;
9821 copy0MBB->addLiveIn(Reg);
9822 sinkMBB->addLiveIn(Reg);
9823 }
9824
Dan Gohman14152b42010-07-06 20:24:04 +00009825 // Transfer the remainder of BB and its successor edges to sinkMBB.
9826 sinkMBB->splice(sinkMBB->begin(), BB,
9827 llvm::next(MachineBasicBlock::iterator(MI)),
9828 BB->end());
9829 sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
9830
9831 // Add the true and fallthrough blocks as its successors.
9832 BB->addSuccessor(copy0MBB);
9833 BB->addSuccessor(sinkMBB);
9834
9835 // Create the conditional branch instruction.
9836 unsigned Opc =
9837 X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
9838 BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
9839
Chris Lattner52600972009-09-02 05:57:00 +00009840 // copy0MBB:
9841 // %FalseValue = ...
9842 // # fallthrough to sinkMBB
Dan Gohman3335a222010-04-30 20:14:26 +00009843 copy0MBB->addSuccessor(sinkMBB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00009844
Chris Lattner52600972009-09-02 05:57:00 +00009845 // sinkMBB:
9846 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
9847 // ...
Dan Gohman14152b42010-07-06 20:24:04 +00009848 BuildMI(*sinkMBB, sinkMBB->begin(), DL,
9849 TII->get(X86::PHI), MI->getOperand(0).getReg())
Chris Lattner52600972009-09-02 05:57:00 +00009850 .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
9851 .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
9852
Dan Gohman14152b42010-07-06 20:24:04 +00009853 MI->eraseFromParent(); // The pseudo instruction is gone now.
Dan Gohman3335a222010-04-30 20:14:26 +00009854 return sinkMBB;
Chris Lattner52600972009-09-02 05:57:00 +00009855}
9856
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009857MachineBasicBlock *
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009858X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009859 MachineBasicBlock *BB) const {
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009860 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9861 DebugLoc DL = MI->getDebugLoc();
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009862
9863 // The lowering is pretty easy: we're just emitting the call to _alloca. The
9864 // non-trivial part is impdef of ESP.
9865 // FIXME: The code should be tweaked as soon as we'll try to do codegen for
9866 // mingw-w64.
9867
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009868 const char *StackProbeSymbol =
9869 Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
9870
Dan Gohman14152b42010-07-06 20:24:04 +00009871 BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009872 .addExternalSymbol(StackProbeSymbol)
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009873 .addReg(X86::EAX, RegState::Implicit)
9874 .addReg(X86::ESP, RegState::Implicit)
9875 .addReg(X86::EAX, RegState::Define | RegState::Implicit)
Anton Korobeynikov9f7f83b2010-08-25 07:50:11 +00009876 .addReg(X86::ESP, RegState::Define | RegState::Implicit)
9877 .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009878
Dan Gohman14152b42010-07-06 20:24:04 +00009879 MI->eraseFromParent(); // The pseudo instruction is gone now.
Anton Korobeynikov043f3c22010-03-06 19:32:29 +00009880 return BB;
9881}
Chris Lattner52600972009-09-02 05:57:00 +00009882
9883MachineBasicBlock *
Eric Christopher30ef0e52010-06-03 04:07:48 +00009884X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
9885 MachineBasicBlock *BB) const {
9886 // This is pretty easy. We're taking the value that we received from
9887 // our load from the relocation, sticking it in either RDI (x86-64)
9888 // or EAX and doing an indirect call. The return value will then
9889 // be in the normal return register.
Michael J. Spencerec38de22010-10-10 22:04:20 +00009890 const X86InstrInfo *TII
Eric Christopher54415362010-06-08 22:04:25 +00009891 = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
Eric Christopher30ef0e52010-06-03 04:07:48 +00009892 DebugLoc DL = MI->getDebugLoc();
9893 MachineFunction *F = BB->getParent();
Eric Christopher722d3152010-09-27 06:01:51 +00009894
9895 assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
Eric Christopher54415362010-06-08 22:04:25 +00009896 assert(MI->getOperand(3).isGlobal() && "This should be a global");
Michael J. Spencerec38de22010-10-10 22:04:20 +00009897
Eric Christopher30ef0e52010-06-03 04:07:48 +00009898 if (Subtarget->is64Bit()) {
Dan Gohman14152b42010-07-06 20:24:04 +00009899 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9900 TII->get(X86::MOV64rm), X86::RDI)
Eric Christopher54415362010-06-08 22:04:25 +00009901 .addReg(X86::RIP)
9902 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009903 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +00009904 MI->getOperand(3).getTargetFlags())
9905 .addReg(0);
Eric Christopher722d3152010-09-27 06:01:51 +00009906 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
Chris Lattner599b5312010-07-08 23:46:44 +00009907 addDirectMem(MIB, X86::RDI);
Eric Christopher61025492010-06-15 23:08:42 +00009908 } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohman14152b42010-07-06 20:24:04 +00009909 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9910 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher61025492010-06-15 23:08:42 +00009911 .addReg(0)
9912 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009913 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher61025492010-06-15 23:08:42 +00009914 MI->getOperand(3).getTargetFlags())
9915 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +00009916 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +00009917 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009918 } else {
Dan Gohman14152b42010-07-06 20:24:04 +00009919 MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
9920 TII->get(X86::MOV32rm), X86::EAX)
Eric Christopher54415362010-06-08 22:04:25 +00009921 .addReg(TII->getGlobalBaseReg(F))
9922 .addImm(0).addReg(0)
Michael J. Spencerec38de22010-10-10 22:04:20 +00009923 .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
Eric Christopher54415362010-06-08 22:04:25 +00009924 MI->getOperand(3).getTargetFlags())
9925 .addReg(0);
Dan Gohman14152b42010-07-06 20:24:04 +00009926 MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
Chris Lattner599b5312010-07-08 23:46:44 +00009927 addDirectMem(MIB, X86::EAX);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009928 }
Michael J. Spencerec38de22010-10-10 22:04:20 +00009929
Dan Gohman14152b42010-07-06 20:24:04 +00009930 MI->eraseFromParent(); // The pseudo instruction is gone now.
Eric Christopher30ef0e52010-06-03 04:07:48 +00009931 return BB;
9932}
9933
9934MachineBasicBlock *
Evan Chengff9b3732008-01-30 18:18:23 +00009935X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009936 MachineBasicBlock *BB) const {
Evan Cheng60c07e12006-07-05 22:17:51 +00009937 switch (MI->getOpcode()) {
9938 default: assert(false && "Unexpected instr type to insert");
Michael J. Spencere9c253e2010-10-21 01:41:01 +00009939 case X86::WIN_ALLOCA:
9940 return EmitLoweredWinAlloca(MI, BB);
Eric Christopher30ef0e52010-06-03 04:07:48 +00009941 case X86::TLSCall_32:
9942 case X86::TLSCall_64:
9943 return EmitLoweredTLSCall(MI, BB);
Dan Gohmancbbea0f2009-08-27 00:14:12 +00009944 case X86::CMOV_GR8:
Evan Cheng60c07e12006-07-05 22:17:51 +00009945 case X86::CMOV_FR32:
9946 case X86::CMOV_FR64:
9947 case X86::CMOV_V4F32:
9948 case X86::CMOV_V2F64:
Chris Lattner52600972009-09-02 05:57:00 +00009949 case X86::CMOV_V2I64:
Chris Lattner314a1132010-03-14 18:31:44 +00009950 case X86::CMOV_GR16:
9951 case X86::CMOV_GR32:
9952 case X86::CMOV_RFP32:
9953 case X86::CMOV_RFP64:
9954 case X86::CMOV_RFP80:
Dan Gohmanaf1d8ca2010-05-01 00:01:06 +00009955 return EmitLoweredSelect(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +00009956
Dale Johannesen849f2142007-07-03 00:53:03 +00009957 case X86::FP32_TO_INT16_IN_MEM:
9958 case X86::FP32_TO_INT32_IN_MEM:
9959 case X86::FP32_TO_INT64_IN_MEM:
9960 case X86::FP64_TO_INT16_IN_MEM:
9961 case X86::FP64_TO_INT32_IN_MEM:
Dale Johannesena996d522007-08-07 01:17:37 +00009962 case X86::FP64_TO_INT64_IN_MEM:
9963 case X86::FP80_TO_INT16_IN_MEM:
9964 case X86::FP80_TO_INT32_IN_MEM:
9965 case X86::FP80_TO_INT64_IN_MEM: {
Chris Lattner52600972009-09-02 05:57:00 +00009966 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
9967 DebugLoc DL = MI->getDebugLoc();
9968
Evan Cheng60c07e12006-07-05 22:17:51 +00009969 // Change the floating point control register to use "round towards zero"
9970 // mode when truncating to an integer value.
9971 MachineFunction *F = BB->getParent();
David Greene3f2bf852009-11-12 20:49:22 +00009972 int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
Dan Gohman14152b42010-07-06 20:24:04 +00009973 addFrameReference(BuildMI(*BB, MI, DL,
9974 TII->get(X86::FNSTCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00009975
9976 // Load the old value of the high byte of the control word...
9977 unsigned OldCW =
Chris Lattner84bc5422007-12-31 04:13:23 +00009978 F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
Dan Gohman14152b42010-07-06 20:24:04 +00009979 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
Dale Johannesene4d209d2009-02-03 20:21:25 +00009980 CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00009981
9982 // Set the high part to be round to zero...
Dan Gohman14152b42010-07-06 20:24:04 +00009983 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +00009984 .addImm(0xC7F);
Evan Cheng60c07e12006-07-05 22:17:51 +00009985
9986 // Reload the modified control word now...
Dan Gohman14152b42010-07-06 20:24:04 +00009987 addFrameReference(BuildMI(*BB, MI, DL,
9988 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +00009989
9990 // Restore the memory image of control word to original value
Dan Gohman14152b42010-07-06 20:24:04 +00009991 addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
Evan Chengc0f64ff2006-11-27 23:37:22 +00009992 .addReg(OldCW);
Evan Cheng60c07e12006-07-05 22:17:51 +00009993
9994 // Get the X86 opcode to use.
9995 unsigned Opc;
9996 switch (MI->getOpcode()) {
Torok Edwinc23197a2009-07-14 16:55:14 +00009997 default: llvm_unreachable("illegal opcode!");
Dale Johannesene377d4d2007-07-04 21:07:47 +00009998 case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
9999 case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
10000 case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
10001 case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
10002 case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
10003 case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
Dale Johannesena996d522007-08-07 01:17:37 +000010004 case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
10005 case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
10006 case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
Evan Cheng60c07e12006-07-05 22:17:51 +000010007 }
10008
10009 X86AddressMode AM;
10010 MachineOperand &Op = MI->getOperand(0);
Dan Gohmand735b802008-10-03 15:45:36 +000010011 if (Op.isReg()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010012 AM.BaseType = X86AddressMode::RegBase;
10013 AM.Base.Reg = Op.getReg();
10014 } else {
10015 AM.BaseType = X86AddressMode::FrameIndexBase;
Chris Lattner8aa797a2007-12-30 23:10:15 +000010016 AM.Base.FrameIndex = Op.getIndex();
Evan Cheng60c07e12006-07-05 22:17:51 +000010017 }
10018 Op = MI->getOperand(1);
Dan Gohmand735b802008-10-03 15:45:36 +000010019 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010020 AM.Scale = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010021 Op = MI->getOperand(2);
Dan Gohmand735b802008-10-03 15:45:36 +000010022 if (Op.isImm())
Chris Lattner7fbe9722006-10-20 17:42:20 +000010023 AM.IndexReg = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010024 Op = MI->getOperand(3);
Dan Gohmand735b802008-10-03 15:45:36 +000010025 if (Op.isGlobal()) {
Evan Cheng60c07e12006-07-05 22:17:51 +000010026 AM.GV = Op.getGlobal();
10027 } else {
Chris Lattner7fbe9722006-10-20 17:42:20 +000010028 AM.Disp = Op.getImm();
Evan Cheng60c07e12006-07-05 22:17:51 +000010029 }
Dan Gohman14152b42010-07-06 20:24:04 +000010030 addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
Chris Lattnerac0ed5d2010-07-08 22:41:28 +000010031 .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
Evan Cheng60c07e12006-07-05 22:17:51 +000010032
10033 // Reload the original control word now.
Dan Gohman14152b42010-07-06 20:24:04 +000010034 addFrameReference(BuildMI(*BB, MI, DL,
10035 TII->get(X86::FLDCW16m)), CWFrameIdx);
Evan Cheng60c07e12006-07-05 22:17:51 +000010036
Dan Gohman14152b42010-07-06 20:24:04 +000010037 MI->eraseFromParent(); // The pseudo instruction is gone now.
Evan Cheng60c07e12006-07-05 22:17:51 +000010038 return BB;
10039 }
Eric Christopherb120ab42009-08-18 22:50:32 +000010040 // String/text processing lowering.
10041 case X86::PCMPISTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010042 case X86::VPCMPISTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010043 return EmitPCMP(MI, BB, 3, false /* in-mem */);
10044 case X86::PCMPISTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010045 case X86::VPCMPISTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010046 return EmitPCMP(MI, BB, 3, true /* in-mem */);
10047 case X86::PCMPESTRM128REG:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010048 case X86::VPCMPESTRM128REG:
Eric Christopherb120ab42009-08-18 22:50:32 +000010049 return EmitPCMP(MI, BB, 5, false /* in mem */);
10050 case X86::PCMPESTRM128MEM:
Bruno Cardoso Lopes98f98562010-07-30 19:54:33 +000010051 case X86::VPCMPESTRM128MEM:
Eric Christopherb120ab42009-08-18 22:50:32 +000010052 return EmitPCMP(MI, BB, 5, true /* in mem */);
10053
10054 // Atomic Lowering.
Mon P Wang63307c32008-05-05 19:05:59 +000010055 case X86::ATOMAND32:
10056 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010057 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010058 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010059 X86::NOT32r, X86::EAX,
10060 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010061 case X86::ATOMOR32:
Scott Michelfdc40a02009-02-17 22:15:04 +000010062 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
10063 X86::OR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010064 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010065 X86::NOT32r, X86::EAX,
10066 X86::GR32RegisterClass);
Mon P Wang63307c32008-05-05 19:05:59 +000010067 case X86::ATOMXOR32:
10068 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010069 X86::XOR32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010070 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010071 X86::NOT32r, X86::EAX,
10072 X86::GR32RegisterClass);
Andrew Lenharth507a58a2008-06-14 05:48:15 +000010073 case X86::ATOMNAND32:
10074 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010075 X86::AND32ri, X86::MOV32rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010076 X86::LCMPXCHG32,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010077 X86::NOT32r, X86::EAX,
10078 X86::GR32RegisterClass, true);
Mon P Wang63307c32008-05-05 19:05:59 +000010079 case X86::ATOMMIN32:
10080 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
10081 case X86::ATOMMAX32:
10082 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
10083 case X86::ATOMUMIN32:
10084 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
10085 case X86::ATOMUMAX32:
10086 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
Dale Johannesen140be2d2008-08-19 18:47:28 +000010087
10088 case X86::ATOMAND16:
10089 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10090 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010091 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010092 X86::NOT16r, X86::AX,
10093 X86::GR16RegisterClass);
10094 case X86::ATOMOR16:
Scott Michelfdc40a02009-02-17 22:15:04 +000010095 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010096 X86::OR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010097 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010098 X86::NOT16r, X86::AX,
10099 X86::GR16RegisterClass);
10100 case X86::ATOMXOR16:
10101 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
10102 X86::XOR16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010103 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010104 X86::NOT16r, X86::AX,
10105 X86::GR16RegisterClass);
10106 case X86::ATOMNAND16:
10107 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
10108 X86::AND16ri, X86::MOV16rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010109 X86::LCMPXCHG16,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010110 X86::NOT16r, X86::AX,
10111 X86::GR16RegisterClass, true);
10112 case X86::ATOMMIN16:
10113 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
10114 case X86::ATOMMAX16:
10115 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
10116 case X86::ATOMUMIN16:
10117 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
10118 case X86::ATOMUMAX16:
10119 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
10120
10121 case X86::ATOMAND8:
10122 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10123 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010124 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010125 X86::NOT8r, X86::AL,
10126 X86::GR8RegisterClass);
10127 case X86::ATOMOR8:
Scott Michelfdc40a02009-02-17 22:15:04 +000010128 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010129 X86::OR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010130 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010131 X86::NOT8r, X86::AL,
10132 X86::GR8RegisterClass);
10133 case X86::ATOMXOR8:
10134 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
10135 X86::XOR8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010136 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010137 X86::NOT8r, X86::AL,
10138 X86::GR8RegisterClass);
10139 case X86::ATOMNAND8:
10140 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
10141 X86::AND8ri, X86::MOV8rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010142 X86::LCMPXCHG8,
Dale Johannesen140be2d2008-08-19 18:47:28 +000010143 X86::NOT8r, X86::AL,
10144 X86::GR8RegisterClass, true);
10145 // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010146 // This group is for 64-bit host.
Dale Johannesena99e3842008-08-20 00:48:50 +000010147 case X86::ATOMAND64:
10148 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010149 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010150 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010151 X86::NOT64r, X86::RAX,
10152 X86::GR64RegisterClass);
10153 case X86::ATOMOR64:
Scott Michelfdc40a02009-02-17 22:15:04 +000010154 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
10155 X86::OR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010156 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010157 X86::NOT64r, X86::RAX,
10158 X86::GR64RegisterClass);
10159 case X86::ATOMXOR64:
10160 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
Scott Michelfdc40a02009-02-17 22:15:04 +000010161 X86::XOR64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010162 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010163 X86::NOT64r, X86::RAX,
10164 X86::GR64RegisterClass);
10165 case X86::ATOMNAND64:
10166 return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
10167 X86::AND64ri32, X86::MOV64rm,
Jakob Stoklund Olesenb5378ea2010-07-14 23:50:27 +000010168 X86::LCMPXCHG64,
Dale Johannesena99e3842008-08-20 00:48:50 +000010169 X86::NOT64r, X86::RAX,
10170 X86::GR64RegisterClass, true);
10171 case X86::ATOMMIN64:
10172 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
10173 case X86::ATOMMAX64:
10174 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
10175 case X86::ATOMUMIN64:
10176 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
10177 case X86::ATOMUMAX64:
10178 return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010179
10180 // This group does 64-bit operations on a 32-bit host.
10181 case X86::ATOMAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010182 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010183 X86::AND32rr, X86::AND32rr,
10184 X86::AND32ri, X86::AND32ri,
10185 false);
10186 case X86::ATOMOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010187 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010188 X86::OR32rr, X86::OR32rr,
10189 X86::OR32ri, X86::OR32ri,
10190 false);
10191 case X86::ATOMXOR6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010192 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010193 X86::XOR32rr, X86::XOR32rr,
10194 X86::XOR32ri, X86::XOR32ri,
10195 false);
10196 case X86::ATOMNAND6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010197 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010198 X86::AND32rr, X86::AND32rr,
10199 X86::AND32ri, X86::AND32ri,
10200 true);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010201 case X86::ATOMADD6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010202 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010203 X86::ADD32rr, X86::ADC32rr,
10204 X86::ADD32ri, X86::ADC32ri,
10205 false);
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010206 case X86::ATOMSUB6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010207 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen48c1bc22008-10-02 18:53:47 +000010208 X86::SUB32rr, X86::SBB32rr,
10209 X86::SUB32ri, X86::SBB32ri,
10210 false);
Dale Johannesen880ae362008-10-03 22:25:52 +000010211 case X86::ATOMSWAP6432:
Scott Michelfdc40a02009-02-17 22:15:04 +000010212 return EmitAtomicBit6432WithCustomInserter(MI, BB,
Dale Johannesen880ae362008-10-03 22:25:52 +000010213 X86::MOV32rr, X86::MOV32rr,
10214 X86::MOV32ri, X86::MOV32ri,
10215 false);
Dan Gohmand6708ea2009-08-15 01:38:56 +000010216 case X86::VASTART_SAVE_XMM_REGS:
10217 return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
Dan Gohman320afb82010-10-12 18:00:49 +000010218
10219 case X86::VAARG_64:
10220 return EmitVAARG64WithCustomInserter(MI, BB);
Evan Cheng60c07e12006-07-05 22:17:51 +000010221 }
10222}
10223
10224//===----------------------------------------------------------------------===//
10225// X86 Optimization Hooks
10226//===----------------------------------------------------------------------===//
10227
Dan Gohman475871a2008-07-27 21:46:04 +000010228void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
Dan Gohman977a76f2008-02-13 22:28:48 +000010229 const APInt &Mask,
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010230 APInt &KnownZero,
10231 APInt &KnownOne,
Dan Gohmanea859be2007-06-22 14:59:07 +000010232 const SelectionDAG &DAG,
Nate Begeman368e18d2006-02-16 21:11:51 +000010233 unsigned Depth) const {
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010234 unsigned Opc = Op.getOpcode();
Evan Cheng865f0602006-04-05 06:11:20 +000010235 assert((Opc >= ISD::BUILTIN_OP_END ||
10236 Opc == ISD::INTRINSIC_WO_CHAIN ||
10237 Opc == ISD::INTRINSIC_W_CHAIN ||
10238 Opc == ISD::INTRINSIC_VOID) &&
10239 "Should use MaskedValueIsZero if you don't know whether Op"
10240 " is a target node!");
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010241
Dan Gohmanf4f92f52008-02-13 23:07:24 +000010242 KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0); // Don't know anything.
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010243 switch (Opc) {
Evan Cheng865f0602006-04-05 06:11:20 +000010244 default: break;
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010245 case X86ISD::ADD:
10246 case X86ISD::SUB:
10247 case X86ISD::SMUL:
10248 case X86ISD::UMUL:
Dan Gohman076aee32009-03-04 19:44:21 +000010249 case X86ISD::INC:
10250 case X86ISD::DEC:
Dan Gohmane220c4b2009-09-18 19:59:53 +000010251 case X86ISD::OR:
10252 case X86ISD::XOR:
10253 case X86ISD::AND:
Evan Cheng97d0e0e2009-02-02 09:15:04 +000010254 // These nodes' second result is a boolean.
10255 if (Op.getResNo() == 0)
10256 break;
10257 // Fallthrough
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010258 case X86ISD::SETCC:
Dan Gohmanfd29e0e2008-02-13 00:35:47 +000010259 KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
10260 Mask.getBitWidth() - 1);
Nate Begeman368e18d2006-02-16 21:11:51 +000010261 break;
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010262 }
Evan Cheng3a03ebb2005-12-21 23:05:39 +000010263}
Chris Lattner259e97c2006-01-31 19:43:35 +000010264
Owen Andersonbc146b02010-09-21 20:42:50 +000010265unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
10266 unsigned Depth) const {
10267 // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
10268 if (Op.getOpcode() == X86ISD::SETCC_CARRY)
10269 return Op.getValueType().getScalarType().getSizeInBits();
Michael J. Spencerec38de22010-10-10 22:04:20 +000010270
Owen Andersonbc146b02010-09-21 20:42:50 +000010271 // Fallback case.
10272 return 1;
10273}
10274
Evan Cheng206ee9d2006-07-07 08:33:52 +000010275/// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
Evan Chengad4196b2008-05-12 19:56:52 +000010276/// node is a GlobalAddress + offset.
10277bool X86TargetLowering::isGAPlusOffset(SDNode *N,
Dan Gohman46510a72010-04-15 01:51:59 +000010278 const GlobalValue* &GA,
10279 int64_t &Offset) const {
Evan Chengad4196b2008-05-12 19:56:52 +000010280 if (N->getOpcode() == X86ISD::Wrapper) {
10281 if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
Evan Cheng206ee9d2006-07-07 08:33:52 +000010282 GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
Dan Gohman6520e202008-10-18 02:06:02 +000010283 Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
Evan Cheng206ee9d2006-07-07 08:33:52 +000010284 return true;
10285 }
Evan Cheng206ee9d2006-07-07 08:33:52 +000010286 }
Evan Chengad4196b2008-05-12 19:56:52 +000010287 return TargetLowering::isGAPlusOffset(N, GA, Offset);
Evan Cheng206ee9d2006-07-07 08:33:52 +000010288}
10289
Evan Cheng206ee9d2006-07-07 08:33:52 +000010290/// PerformShuffleCombine - Combine a vector_shuffle that is equal to
10291/// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
10292/// if the load addresses are consecutive, non-overlapping, and in the right
Nate Begemanfdea31a2010-03-24 20:49:50 +000010293/// order.
Dan Gohman475871a2008-07-27 21:46:04 +000010294static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
Nate Begeman9008ca62009-04-27 18:41:29 +000010295 const TargetLowering &TLI) {
Dale Johannesene4d209d2009-02-03 20:21:25 +000010296 DebugLoc dl = N->getDebugLoc();
Owen Andersone50ed302009-08-10 22:56:29 +000010297 EVT VT = N->getValueType(0);
Mon P Wang1e955802009-04-03 02:43:30 +000010298
Eli Friedman7a5e5552009-06-07 06:52:44 +000010299 if (VT.getSizeInBits() != 128)
10300 return SDValue();
10301
Nate Begemanfdea31a2010-03-24 20:49:50 +000010302 SmallVector<SDValue, 16> Elts;
10303 for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000010304 Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
Bruno Cardoso Lopes27f12792010-08-28 02:46:39 +000010305
Nate Begemanfdea31a2010-03-24 20:49:50 +000010306 return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +000010307}
Evan Chengd880b972008-05-09 21:53:03 +000010308
Bruno Cardoso Lopesb3e06692010-09-03 19:55:05 +000010309/// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
10310/// generation and convert it from being a bunch of shuffles and extracts
10311/// to a simple store and scalar loads to extract the elements.
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010312static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
10313 const TargetLowering &TLI) {
10314 SDValue InputVector = N->getOperand(0);
10315
10316 // Only operate on vectors of 4 elements, where the alternative shuffling
10317 // gets to be more expensive.
10318 if (InputVector.getValueType() != MVT::v4i32)
10319 return SDValue();
10320
10321 // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
10322 // single use which is a sign-extend or zero-extend, and all elements are
10323 // used.
10324 SmallVector<SDNode *, 4> Uses;
10325 unsigned ExtractedElements = 0;
10326 for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
10327 UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
10328 if (UI.getUse().getResNo() != InputVector.getResNo())
10329 return SDValue();
10330
10331 SDNode *Extract = *UI;
10332 if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
10333 return SDValue();
10334
10335 if (Extract->getValueType(0) != MVT::i32)
10336 return SDValue();
10337 if (!Extract->hasOneUse())
10338 return SDValue();
10339 if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
10340 Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
10341 return SDValue();
10342 if (!isa<ConstantSDNode>(Extract->getOperand(1)))
10343 return SDValue();
10344
10345 // Record which element was extracted.
10346 ExtractedElements |=
10347 1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
10348
10349 Uses.push_back(Extract);
10350 }
10351
10352 // If not all the elements were used, this may not be worthwhile.
10353 if (ExtractedElements != 15)
10354 return SDValue();
10355
10356 // Ok, we've now decided to do the transformation.
10357 DebugLoc dl = InputVector.getDebugLoc();
10358
10359 // Store the value to a temporary stack slot.
10360 SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
Chris Lattner8026a9d2010-09-21 17:50:43 +000010361 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
10362 MachinePointerInfo(), false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010363
10364 // Replace each use (extract) with a load of the appropriate element.
10365 for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
10366 UE = Uses.end(); UI != UE; ++UI) {
10367 SDNode *Extract = *UI;
10368
10369 // Compute the element's address.
10370 SDValue Idx = Extract->getOperand(1);
10371 unsigned EltSize =
10372 InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
10373 uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
10374 SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
10375
Eric Christopher90eb4022010-07-22 00:26:08 +000010376 SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(),
Chris Lattner51abfe42010-09-21 06:02:19 +000010377 StackPtr, OffsetVal);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010378
10379 // Load the scalar.
Eric Christopher90eb4022010-07-22 00:26:08 +000010380 SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
Chris Lattner51abfe42010-09-21 06:02:19 +000010381 ScalarAddr, MachinePointerInfo(),
10382 false, false, 0);
Dan Gohman1bbf72b2010-03-15 23:23:03 +000010383
10384 // Replace the exact with the load.
10385 DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
10386 }
10387
10388 // The replacement was made in place; don't return anything.
10389 return SDValue();
10390}
10391
Chris Lattner83e6c992006-10-04 06:57:07 +000010392/// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000010393static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
Chris Lattner47b4ce82009-03-11 05:48:52 +000010394 const X86Subtarget *Subtarget) {
10395 DebugLoc DL = N->getDebugLoc();
Dan Gohman475871a2008-07-27 21:46:04 +000010396 SDValue Cond = N->getOperand(0);
Chris Lattner47b4ce82009-03-11 05:48:52 +000010397 // Get the LHS/RHS of the select.
10398 SDValue LHS = N->getOperand(1);
10399 SDValue RHS = N->getOperand(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010400
Dan Gohman670e5392009-09-21 18:03:22 +000010401 // If we have SSE[12] support, try to form min/max nodes. SSE min/max
Dan Gohman8ce05da2010-02-22 04:03:39 +000010402 // instructions match the semantics of the common C idiom x<y?x:y but not
10403 // x<=y?x:y, because of how they handle negative zero (which can be
10404 // ignored in unsafe-math mode).
Chris Lattner83e6c992006-10-04 06:57:07 +000010405 if (Subtarget->hasSSE2() &&
Owen Anderson825b72b2009-08-11 20:47:22 +000010406 (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
Chris Lattner47b4ce82009-03-11 05:48:52 +000010407 Cond.getOpcode() == ISD::SETCC) {
10408 ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010409
Chris Lattner47b4ce82009-03-11 05:48:52 +000010410 unsigned Opcode = 0;
Dan Gohman670e5392009-09-21 18:03:22 +000010411 // Check for x CC y ? x : y.
Dan Gohmane8326932010-02-24 06:52:40 +000010412 if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
10413 DAG.isEqualTo(RHS, Cond.getOperand(1))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010414 switch (CC) {
10415 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010416 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010417 // Converting this to a min would handle NaNs incorrectly, and swapping
10418 // the operands would cause it to handle comparisons between positive
10419 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010420 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010421 if (!UnsafeFPMath &&
10422 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10423 break;
10424 std::swap(LHS, RHS);
10425 }
Dan Gohman670e5392009-09-21 18:03:22 +000010426 Opcode = X86ISD::FMIN;
10427 break;
10428 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010429 // Converting this to a min would handle comparisons between positive
10430 // and negative zero incorrectly.
10431 if (!UnsafeFPMath &&
10432 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
10433 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010434 Opcode = X86ISD::FMIN;
10435 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010436 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010437 // Converting this to a min would handle both negative zeros and NaNs
10438 // incorrectly, but we can swap the operands to fix both.
10439 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010440 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010441 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010442 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010443 Opcode = X86ISD::FMIN;
10444 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010445
Dan Gohman670e5392009-09-21 18:03:22 +000010446 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010447 // Converting this to a max would handle comparisons between positive
10448 // and negative zero incorrectly.
10449 if (!UnsafeFPMath &&
10450 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS))
10451 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010452 Opcode = X86ISD::FMAX;
10453 break;
Chris Lattner47b4ce82009-03-11 05:48:52 +000010454 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010455 // Converting this to a max would handle NaNs incorrectly, and swapping
10456 // the operands would cause it to handle comparisons between positive
10457 // and negative zero incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010458 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
Dan Gohmane8326932010-02-24 06:52:40 +000010459 if (!UnsafeFPMath &&
10460 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
10461 break;
10462 std::swap(LHS, RHS);
10463 }
Dan Gohman670e5392009-09-21 18:03:22 +000010464 Opcode = X86ISD::FMAX;
10465 break;
10466 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010467 // Converting this to a max would handle both negative zeros and NaNs
10468 // incorrectly, but we can swap the operands to fix both.
10469 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010470 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010471 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010472 case ISD::SETGE:
10473 Opcode = X86ISD::FMAX;
10474 break;
Chris Lattner83e6c992006-10-04 06:57:07 +000010475 }
Dan Gohman670e5392009-09-21 18:03:22 +000010476 // Check for x CC y ? y : x -- a min/max with reversed arms.
Dan Gohmane8326932010-02-24 06:52:40 +000010477 } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
10478 DAG.isEqualTo(RHS, Cond.getOperand(0))) {
Chris Lattner47b4ce82009-03-11 05:48:52 +000010479 switch (CC) {
10480 default: break;
Dan Gohman670e5392009-09-21 18:03:22 +000010481 case ISD::SETOGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010482 // Converting this to a min would handle comparisons between positive
10483 // and negative zero incorrectly, and swapping the operands would
10484 // cause it to handle NaNs incorrectly.
10485 if (!UnsafeFPMath &&
10486 !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
Evan Cheng60108e92010-07-15 22:07:12 +000010487 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010488 break;
10489 std::swap(LHS, RHS);
10490 }
Dan Gohman670e5392009-09-21 18:03:22 +000010491 Opcode = X86ISD::FMIN;
Dan Gohman8d44b282009-09-03 20:34:31 +000010492 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010493 case ISD::SETUGT:
Dan Gohmane8326932010-02-24 06:52:40 +000010494 // Converting this to a min would handle NaNs incorrectly.
10495 if (!UnsafeFPMath &&
10496 (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
10497 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010498 Opcode = X86ISD::FMIN;
10499 break;
10500 case ISD::SETUGE:
Dan Gohmane8326932010-02-24 06:52:40 +000010501 // Converting this to a min would handle both negative zeros and NaNs
10502 // incorrectly, but we can swap the operands to fix both.
10503 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010504 case ISD::SETOGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010505 case ISD::SETGT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010506 case ISD::SETGE:
10507 Opcode = X86ISD::FMIN;
10508 break;
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010509
Dan Gohman670e5392009-09-21 18:03:22 +000010510 case ISD::SETULT:
Dan Gohmane8326932010-02-24 06:52:40 +000010511 // Converting this to a max would handle NaNs incorrectly.
Evan Cheng60108e92010-07-15 22:07:12 +000010512 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010513 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010514 Opcode = X86ISD::FMAX;
Dan Gohman8d44b282009-09-03 20:34:31 +000010515 break;
Dan Gohman670e5392009-09-21 18:03:22 +000010516 case ISD::SETOLE:
Dan Gohmane8326932010-02-24 06:52:40 +000010517 // Converting this to a max would handle comparisons between positive
10518 // and negative zero incorrectly, and swapping the operands would
10519 // cause it to handle NaNs incorrectly.
10520 if (!UnsafeFPMath &&
10521 !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
Evan Cheng60108e92010-07-15 22:07:12 +000010522 if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
Dan Gohmane8326932010-02-24 06:52:40 +000010523 break;
10524 std::swap(LHS, RHS);
10525 }
Dan Gohman670e5392009-09-21 18:03:22 +000010526 Opcode = X86ISD::FMAX;
10527 break;
10528 case ISD::SETULE:
Dan Gohmane8326932010-02-24 06:52:40 +000010529 // Converting this to a max would handle both negative zeros and NaNs
10530 // incorrectly, but we can swap the operands to fix both.
10531 std::swap(LHS, RHS);
Dan Gohman670e5392009-09-21 18:03:22 +000010532 case ISD::SETOLT:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010533 case ISD::SETLT:
Dan Gohman670e5392009-09-21 18:03:22 +000010534 case ISD::SETLE:
Chris Lattner47b4ce82009-03-11 05:48:52 +000010535 Opcode = X86ISD::FMAX;
10536 break;
10537 }
Chris Lattner83e6c992006-10-04 06:57:07 +000010538 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000010539
Chris Lattner47b4ce82009-03-11 05:48:52 +000010540 if (Opcode)
10541 return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
Chris Lattner83e6c992006-10-04 06:57:07 +000010542 }
Eric Christopherfd179292009-08-27 18:07:15 +000010543
Chris Lattnerd1980a52009-03-12 06:52:53 +000010544 // If this is a select between two integer constants, try to do some
10545 // optimizations.
Chris Lattnercee56e72009-03-13 05:53:31 +000010546 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
10547 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
Chris Lattnerd1980a52009-03-12 06:52:53 +000010548 // Don't do this for crazy integer types.
10549 if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
10550 // If this is efficiently invertible, canonicalize the LHSC/RHSC values
Chris Lattnercee56e72009-03-13 05:53:31 +000010551 // so that TrueC (the true value) is larger than FalseC.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010552 bool NeedsCondInvert = false;
Eric Christopherfd179292009-08-27 18:07:15 +000010553
Chris Lattnercee56e72009-03-13 05:53:31 +000010554 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
Chris Lattnerd1980a52009-03-12 06:52:53 +000010555 // Efficiently invertible.
10556 (Cond.getOpcode() == ISD::SETCC || // setcc -> invertible.
10557 (Cond.getOpcode() == ISD::XOR && // xor(X, C) -> invertible.
10558 isa<ConstantSDNode>(Cond.getOperand(1))))) {
10559 NeedsCondInvert = true;
Chris Lattnercee56e72009-03-13 05:53:31 +000010560 std::swap(TrueC, FalseC);
Chris Lattnerd1980a52009-03-12 06:52:53 +000010561 }
Eric Christopherfd179292009-08-27 18:07:15 +000010562
Chris Lattnerd1980a52009-03-12 06:52:53 +000010563 // Optimize C ? 8 : 0 -> zext(C) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010564 if (FalseC->getAPIntValue() == 0 &&
10565 TrueC->getAPIntValue().isPowerOf2()) {
Chris Lattnerd1980a52009-03-12 06:52:53 +000010566 if (NeedsCondInvert) // Invert the condition if needed.
10567 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10568 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010569
Chris Lattnerd1980a52009-03-12 06:52:53 +000010570 // Zero extend the condition if needed.
10571 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010572
Chris Lattnercee56e72009-03-13 05:53:31 +000010573 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
Chris Lattnerd1980a52009-03-12 06:52:53 +000010574 return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010575 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010576 }
Eric Christopherfd179292009-08-27 18:07:15 +000010577
Chris Lattner97a29a52009-03-13 05:22:11 +000010578 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
Chris Lattnercee56e72009-03-13 05:53:31 +000010579 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
Chris Lattner97a29a52009-03-13 05:22:11 +000010580 if (NeedsCondInvert) // Invert the condition if needed.
10581 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10582 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010583
Chris Lattner97a29a52009-03-13 05:22:11 +000010584 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010585 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10586 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010587 return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
Chris Lattnercee56e72009-03-13 05:53:31 +000010588 SDValue(FalseC, 0));
Chris Lattner97a29a52009-03-13 05:22:11 +000010589 }
Eric Christopherfd179292009-08-27 18:07:15 +000010590
Chris Lattnercee56e72009-03-13 05:53:31 +000010591 // Optimize cases that will turn into an LEA instruction. This requires
10592 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010593 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010594 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010595 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010596
Chris Lattnercee56e72009-03-13 05:53:31 +000010597 bool isFastMultiplier = false;
10598 if (Diff < 10) {
10599 switch ((unsigned char)Diff) {
10600 default: break;
10601 case 1: // result = add base, cond
10602 case 2: // result = lea base( , cond*2)
10603 case 3: // result = lea base(cond, cond*2)
10604 case 4: // result = lea base( , cond*4)
10605 case 5: // result = lea base(cond, cond*4)
10606 case 8: // result = lea base( , cond*8)
10607 case 9: // result = lea base(cond, cond*8)
10608 isFastMultiplier = true;
10609 break;
10610 }
10611 }
Eric Christopherfd179292009-08-27 18:07:15 +000010612
Chris Lattnercee56e72009-03-13 05:53:31 +000010613 if (isFastMultiplier) {
10614 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10615 if (NeedsCondInvert) // Invert the condition if needed.
10616 Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
10617 DAG.getConstant(1, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010618
Chris Lattnercee56e72009-03-13 05:53:31 +000010619 // Zero extend the condition if needed.
10620 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10621 Cond);
10622 // Scale the condition by the difference.
10623 if (Diff != 1)
10624 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10625 DAG.getConstant(Diff, Cond.getValueType()));
Eric Christopherfd179292009-08-27 18:07:15 +000010626
Chris Lattnercee56e72009-03-13 05:53:31 +000010627 // Add the base if non-zero.
10628 if (FalseC->getAPIntValue() != 0)
10629 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10630 SDValue(FalseC, 0));
10631 return Cond;
10632 }
Eric Christopherfd179292009-08-27 18:07:15 +000010633 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010634 }
10635 }
Eric Christopherfd179292009-08-27 18:07:15 +000010636
Dan Gohman475871a2008-07-27 21:46:04 +000010637 return SDValue();
Chris Lattner83e6c992006-10-04 06:57:07 +000010638}
10639
Chris Lattnerd1980a52009-03-12 06:52:53 +000010640/// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
10641static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
10642 TargetLowering::DAGCombinerInfo &DCI) {
10643 DebugLoc DL = N->getDebugLoc();
Eric Christopherfd179292009-08-27 18:07:15 +000010644
Chris Lattnerd1980a52009-03-12 06:52:53 +000010645 // If the flag operand isn't dead, don't touch this CMOV.
10646 if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
10647 return SDValue();
Eric Christopherfd179292009-08-27 18:07:15 +000010648
Chris Lattnerd1980a52009-03-12 06:52:53 +000010649 // If this is a select between two integer constants, try to do some
10650 // optimizations. Note that the operands are ordered the opposite of SELECT
10651 // operands.
10652 if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
10653 if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
10654 // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
10655 // larger than FalseC (the false value).
10656 X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
Eric Christopherfd179292009-08-27 18:07:15 +000010657
Chris Lattnerd1980a52009-03-12 06:52:53 +000010658 if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
10659 CC = X86::GetOppositeBranchCondition(CC);
10660 std::swap(TrueC, FalseC);
10661 }
Eric Christopherfd179292009-08-27 18:07:15 +000010662
Chris Lattnerd1980a52009-03-12 06:52:53 +000010663 // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3. Likewise for any pow2/0.
Chris Lattnercee56e72009-03-13 05:53:31 +000010664 // This is efficient for any integer data type (including i8/i16) and
10665 // shift amount.
Chris Lattnerd1980a52009-03-12 06:52:53 +000010666 if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
10667 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010668 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10669 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010670
Chris Lattnerd1980a52009-03-12 06:52:53 +000010671 // Zero extend the condition if needed.
10672 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010673
Chris Lattnerd1980a52009-03-12 06:52:53 +000010674 unsigned ShAmt = TrueC->getAPIntValue().logBase2();
10675 Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
Owen Anderson825b72b2009-08-11 20:47:22 +000010676 DAG.getConstant(ShAmt, MVT::i8));
Chris Lattnerd1980a52009-03-12 06:52:53 +000010677 if (N->getNumValues() == 2) // Dead flag value?
10678 return DCI.CombineTo(N, Cond, SDValue());
10679 return Cond;
10680 }
Eric Christopherfd179292009-08-27 18:07:15 +000010681
Chris Lattnercee56e72009-03-13 05:53:31 +000010682 // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst. This is efficient
10683 // for any integer data type, including i8/i16.
Chris Lattner97a29a52009-03-13 05:22:11 +000010684 if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
10685 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010686 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10687 DAG.getConstant(CC, MVT::i8), Cond);
Eric Christopherfd179292009-08-27 18:07:15 +000010688
Chris Lattner97a29a52009-03-13 05:22:11 +000010689 // Zero extend the condition if needed.
Chris Lattnercee56e72009-03-13 05:53:31 +000010690 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
10691 FalseC->getValueType(0), Cond);
Chris Lattner97a29a52009-03-13 05:22:11 +000010692 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10693 SDValue(FalseC, 0));
Eric Christopherfd179292009-08-27 18:07:15 +000010694
Chris Lattner97a29a52009-03-13 05:22:11 +000010695 if (N->getNumValues() == 2) // Dead flag value?
10696 return DCI.CombineTo(N, Cond, SDValue());
10697 return Cond;
10698 }
Eric Christopherfd179292009-08-27 18:07:15 +000010699
Chris Lattnercee56e72009-03-13 05:53:31 +000010700 // Optimize cases that will turn into an LEA instruction. This requires
10701 // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
Owen Anderson825b72b2009-08-11 20:47:22 +000010702 if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
Chris Lattnercee56e72009-03-13 05:53:31 +000010703 uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
Owen Anderson825b72b2009-08-11 20:47:22 +000010704 if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
Eric Christopherfd179292009-08-27 18:07:15 +000010705
Chris Lattnercee56e72009-03-13 05:53:31 +000010706 bool isFastMultiplier = false;
10707 if (Diff < 10) {
10708 switch ((unsigned char)Diff) {
10709 default: break;
10710 case 1: // result = add base, cond
10711 case 2: // result = lea base( , cond*2)
10712 case 3: // result = lea base(cond, cond*2)
10713 case 4: // result = lea base( , cond*4)
10714 case 5: // result = lea base(cond, cond*4)
10715 case 8: // result = lea base( , cond*8)
10716 case 9: // result = lea base(cond, cond*8)
10717 isFastMultiplier = true;
10718 break;
10719 }
10720 }
Eric Christopherfd179292009-08-27 18:07:15 +000010721
Chris Lattnercee56e72009-03-13 05:53:31 +000010722 if (isFastMultiplier) {
10723 APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
10724 SDValue Cond = N->getOperand(3);
Owen Anderson825b72b2009-08-11 20:47:22 +000010725 Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10726 DAG.getConstant(CC, MVT::i8), Cond);
Chris Lattnercee56e72009-03-13 05:53:31 +000010727 // Zero extend the condition if needed.
10728 Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
10729 Cond);
10730 // Scale the condition by the difference.
10731 if (Diff != 1)
10732 Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
10733 DAG.getConstant(Diff, Cond.getValueType()));
10734
10735 // Add the base if non-zero.
10736 if (FalseC->getAPIntValue() != 0)
10737 Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
10738 SDValue(FalseC, 0));
10739 if (N->getNumValues() == 2) // Dead flag value?
10740 return DCI.CombineTo(N, Cond, SDValue());
10741 return Cond;
10742 }
Eric Christopherfd179292009-08-27 18:07:15 +000010743 }
Chris Lattnerd1980a52009-03-12 06:52:53 +000010744 }
10745 }
10746 return SDValue();
10747}
10748
10749
Evan Cheng0b0cd912009-03-28 05:57:29 +000010750/// PerformMulCombine - Optimize a single multiply with constant into two
10751/// in order to implement it with two cheaper instructions, e.g.
10752/// LEA + SHL, LEA + LEA.
10753static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
10754 TargetLowering::DAGCombinerInfo &DCI) {
Evan Cheng0b0cd912009-03-28 05:57:29 +000010755 if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
10756 return SDValue();
10757
Owen Andersone50ed302009-08-10 22:56:29 +000010758 EVT VT = N->getValueType(0);
Owen Anderson825b72b2009-08-11 20:47:22 +000010759 if (VT != MVT::i64)
Evan Cheng0b0cd912009-03-28 05:57:29 +000010760 return SDValue();
10761
10762 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
10763 if (!C)
10764 return SDValue();
10765 uint64_t MulAmt = C->getZExtValue();
10766 if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
10767 return SDValue();
10768
10769 uint64_t MulAmt1 = 0;
10770 uint64_t MulAmt2 = 0;
10771 if ((MulAmt % 9) == 0) {
10772 MulAmt1 = 9;
10773 MulAmt2 = MulAmt / 9;
10774 } else if ((MulAmt % 5) == 0) {
10775 MulAmt1 = 5;
10776 MulAmt2 = MulAmt / 5;
10777 } else if ((MulAmt % 3) == 0) {
10778 MulAmt1 = 3;
10779 MulAmt2 = MulAmt / 3;
10780 }
10781 if (MulAmt2 &&
10782 (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
10783 DebugLoc DL = N->getDebugLoc();
10784
10785 if (isPowerOf2_64(MulAmt2) &&
10786 !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
10787 // If second multiplifer is pow2, issue it first. We want the multiply by
10788 // 3, 5, or 9 to be folded into the addressing mode unless the lone use
10789 // is an add.
10790 std::swap(MulAmt1, MulAmt2);
10791
10792 SDValue NewMul;
Eric Christopherfd179292009-08-27 18:07:15 +000010793 if (isPowerOf2_64(MulAmt1))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010794 NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
Owen Anderson825b72b2009-08-11 20:47:22 +000010795 DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
Evan Cheng0b0cd912009-03-28 05:57:29 +000010796 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010797 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
Evan Cheng0b0cd912009-03-28 05:57:29 +000010798 DAG.getConstant(MulAmt1, VT));
10799
Eric Christopherfd179292009-08-27 18:07:15 +000010800 if (isPowerOf2_64(MulAmt2))
Evan Cheng0b0cd912009-03-28 05:57:29 +000010801 NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
Owen Anderson825b72b2009-08-11 20:47:22 +000010802 DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
Eric Christopherfd179292009-08-27 18:07:15 +000010803 else
Evan Cheng73f24c92009-03-30 21:36:47 +000010804 NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
Evan Cheng0b0cd912009-03-28 05:57:29 +000010805 DAG.getConstant(MulAmt2, VT));
10806
10807 // Do not add new nodes to DAG combiner worklist.
10808 DCI.CombineTo(N, NewMul, false);
10809 }
10810 return SDValue();
10811}
10812
Evan Chengad9c0a32009-12-15 00:53:42 +000010813static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
10814 SDValue N0 = N->getOperand(0);
10815 SDValue N1 = N->getOperand(1);
10816 ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
10817 EVT VT = N0.getValueType();
10818
10819 // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
10820 // since the result of setcc_c is all zero's or all ones.
10821 if (N1C && N0.getOpcode() == ISD::AND &&
10822 N0.getOperand(1).getOpcode() == ISD::Constant) {
10823 SDValue N00 = N0.getOperand(0);
10824 if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
10825 ((N00.getOpcode() == ISD::ANY_EXTEND ||
10826 N00.getOpcode() == ISD::ZERO_EXTEND) &&
10827 N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
10828 APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
10829 APInt ShAmt = N1C->getAPIntValue();
10830 Mask = Mask.shl(ShAmt);
10831 if (Mask != 0)
10832 return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
10833 N00, DAG.getConstant(Mask, VT));
10834 }
10835 }
10836
10837 return SDValue();
10838}
Evan Cheng0b0cd912009-03-28 05:57:29 +000010839
Nate Begeman740ab032009-01-26 00:52:55 +000010840/// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
10841/// when possible.
10842static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
10843 const X86Subtarget *Subtarget) {
Evan Chengad9c0a32009-12-15 00:53:42 +000010844 EVT VT = N->getValueType(0);
10845 if (!VT.isVector() && VT.isInteger() &&
10846 N->getOpcode() == ISD::SHL)
10847 return PerformSHLCombine(N, DAG);
10848
Nate Begeman740ab032009-01-26 00:52:55 +000010849 // On X86 with SSE2 support, we can transform this to a vector shift if
10850 // all elements are shifted by the same amount. We can't do this in legalize
10851 // because the a constant vector is typically transformed to a constant pool
10852 // so we have no knowledge of the shift amount.
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010853 if (!Subtarget->hasSSE2())
10854 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010855
Owen Anderson825b72b2009-08-11 20:47:22 +000010856 if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010857 return SDValue();
Scott Michelfdc40a02009-02-17 22:15:04 +000010858
Mon P Wang3becd092009-01-28 08:12:05 +000010859 SDValue ShAmtOp = N->getOperand(1);
Owen Andersone50ed302009-08-10 22:56:29 +000010860 EVT EltVT = VT.getVectorElementType();
Chris Lattner47b4ce82009-03-11 05:48:52 +000010861 DebugLoc DL = N->getDebugLoc();
Mon P Wangefa42202009-09-03 19:56:25 +000010862 SDValue BaseShAmt = SDValue();
Mon P Wang3becd092009-01-28 08:12:05 +000010863 if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
10864 unsigned NumElts = VT.getVectorNumElements();
10865 unsigned i = 0;
10866 for (; i != NumElts; ++i) {
10867 SDValue Arg = ShAmtOp.getOperand(i);
10868 if (Arg.getOpcode() == ISD::UNDEF) continue;
10869 BaseShAmt = Arg;
10870 break;
10871 }
10872 for (; i != NumElts; ++i) {
10873 SDValue Arg = ShAmtOp.getOperand(i);
10874 if (Arg.getOpcode() == ISD::UNDEF) continue;
10875 if (Arg != BaseShAmt) {
10876 return SDValue();
10877 }
10878 }
10879 } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
Nate Begeman9008ca62009-04-27 18:41:29 +000010880 cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
Mon P Wangefa42202009-09-03 19:56:25 +000010881 SDValue InVec = ShAmtOp.getOperand(0);
10882 if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
10883 unsigned NumElts = InVec.getValueType().getVectorNumElements();
10884 unsigned i = 0;
10885 for (; i != NumElts; ++i) {
10886 SDValue Arg = InVec.getOperand(i);
10887 if (Arg.getOpcode() == ISD::UNDEF) continue;
10888 BaseShAmt = Arg;
10889 break;
10890 }
10891 } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
10892 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
Evan Chengae3ecf92010-02-16 21:09:44 +000010893 unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
Mon P Wangefa42202009-09-03 19:56:25 +000010894 if (C->getZExtValue() == SplatIdx)
10895 BaseShAmt = InVec.getOperand(1);
10896 }
10897 }
10898 if (BaseShAmt.getNode() == 0)
10899 BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
10900 DAG.getIntPtrConstant(0));
Mon P Wang3becd092009-01-28 08:12:05 +000010901 } else
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010902 return SDValue();
Nate Begeman740ab032009-01-26 00:52:55 +000010903
Mon P Wangefa42202009-09-03 19:56:25 +000010904 // The shift amount is an i32.
Owen Anderson825b72b2009-08-11 20:47:22 +000010905 if (EltVT.bitsGT(MVT::i32))
10906 BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
10907 else if (EltVT.bitsLT(MVT::i32))
Mon P Wangefa42202009-09-03 19:56:25 +000010908 BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
Nate Begeman740ab032009-01-26 00:52:55 +000010909
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010910 // The shift amount is identical so we can do a vector shift.
10911 SDValue ValOp = N->getOperand(0);
10912 switch (N->getOpcode()) {
10913 default:
Torok Edwinc23197a2009-07-14 16:55:14 +000010914 llvm_unreachable("Unknown shift opcode!");
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010915 break;
10916 case ISD::SHL:
Owen Anderson825b72b2009-08-11 20:47:22 +000010917 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010918 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010919 DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010920 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010921 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010922 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010923 DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010924 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010925 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010926 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010927 DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010928 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010929 break;
10930 case ISD::SRA:
Owen Anderson825b72b2009-08-11 20:47:22 +000010931 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010932 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010933 DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010934 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010935 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010936 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010937 DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010938 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010939 break;
10940 case ISD::SRL:
Owen Anderson825b72b2009-08-11 20:47:22 +000010941 if (VT == MVT::v2i64)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010942 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010943 DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010944 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010945 if (VT == MVT::v4i32)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010946 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010947 DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010948 ValOp, BaseShAmt);
Owen Anderson825b72b2009-08-11 20:47:22 +000010949 if (VT == MVT::v8i16)
Chris Lattner47b4ce82009-03-11 05:48:52 +000010950 return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
Owen Anderson825b72b2009-08-11 20:47:22 +000010951 DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
Nate Begeman740ab032009-01-26 00:52:55 +000010952 ValOp, BaseShAmt);
Nate Begemanc2fd67f2009-01-26 03:15:31 +000010953 break;
Nate Begeman740ab032009-01-26 00:52:55 +000010954 }
10955 return SDValue();
10956}
10957
Evan Cheng760d1942010-01-04 21:22:48 +000010958static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng8b1190a2010-04-28 01:18:01 +000010959 TargetLowering::DAGCombinerInfo &DCI,
Evan Cheng760d1942010-01-04 21:22:48 +000010960 const X86Subtarget *Subtarget) {
Evan Cheng39cfeec2010-04-28 02:25:18 +000010961 if (DCI.isBeforeLegalizeOps())
Evan Cheng8b1190a2010-04-28 01:18:01 +000010962 return SDValue();
10963
Evan Cheng760d1942010-01-04 21:22:48 +000010964 EVT VT = N->getValueType(0);
Evan Cheng8b1190a2010-04-28 01:18:01 +000010965 if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
Evan Cheng760d1942010-01-04 21:22:48 +000010966 return SDValue();
10967
10968 // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
10969 SDValue N0 = N->getOperand(0);
10970 SDValue N1 = N->getOperand(1);
10971 if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
10972 std::swap(N0, N1);
10973 if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
10974 return SDValue();
Evan Cheng8b1190a2010-04-28 01:18:01 +000010975 if (!N0.hasOneUse() || !N1.hasOneUse())
10976 return SDValue();
Evan Cheng760d1942010-01-04 21:22:48 +000010977
10978 SDValue ShAmt0 = N0.getOperand(1);
10979 if (ShAmt0.getValueType() != MVT::i8)
10980 return SDValue();
10981 SDValue ShAmt1 = N1.getOperand(1);
10982 if (ShAmt1.getValueType() != MVT::i8)
10983 return SDValue();
10984 if (ShAmt0.getOpcode() == ISD::TRUNCATE)
10985 ShAmt0 = ShAmt0.getOperand(0);
10986 if (ShAmt1.getOpcode() == ISD::TRUNCATE)
10987 ShAmt1 = ShAmt1.getOperand(0);
10988
10989 DebugLoc DL = N->getDebugLoc();
10990 unsigned Opc = X86ISD::SHLD;
10991 SDValue Op0 = N0.getOperand(0);
10992 SDValue Op1 = N1.getOperand(0);
10993 if (ShAmt0.getOpcode() == ISD::SUB) {
10994 Opc = X86ISD::SHRD;
10995 std::swap(Op0, Op1);
10996 std::swap(ShAmt0, ShAmt1);
10997 }
10998
Evan Cheng8b1190a2010-04-28 01:18:01 +000010999 unsigned Bits = VT.getSizeInBits();
Evan Cheng760d1942010-01-04 21:22:48 +000011000 if (ShAmt1.getOpcode() == ISD::SUB) {
11001 SDValue Sum = ShAmt1.getOperand(0);
11002 if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
Dan Gohman4e39e9d2010-06-24 14:30:44 +000011003 SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
11004 if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
11005 ShAmt1Op1 = ShAmt1Op1.getOperand(0);
11006 if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
Evan Cheng760d1942010-01-04 21:22:48 +000011007 return DAG.getNode(Opc, DL, VT,
11008 Op0, Op1,
11009 DAG.getNode(ISD::TRUNCATE, DL,
11010 MVT::i8, ShAmt0));
11011 }
11012 } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
11013 ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
11014 if (ShAmt0C &&
Evan Cheng8b1190a2010-04-28 01:18:01 +000011015 ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
Evan Cheng760d1942010-01-04 21:22:48 +000011016 return DAG.getNode(Opc, DL, VT,
11017 N0.getOperand(0), N1.getOperand(0),
11018 DAG.getNode(ISD::TRUNCATE, DL,
11019 MVT::i8, ShAmt0));
11020 }
11021
11022 return SDValue();
11023}
11024
Chris Lattner149a4e52008-02-22 02:09:43 +000011025/// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011026static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
Evan Cheng536e6672009-03-12 05:59:15 +000011027 const X86Subtarget *Subtarget) {
Chris Lattner149a4e52008-02-22 02:09:43 +000011028 // Turn load->store of MMX types into GPR load/stores. This avoids clobbering
11029 // the FP state in cases where an emms may be missing.
Dale Johannesen079f2a62008-02-25 19:20:14 +000011030 // A preferable solution to the general problem is to figure out the right
11031 // places to insert EMMS. This qualifies as a quick hack.
Evan Cheng536e6672009-03-12 05:59:15 +000011032
11033 // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
Evan Cheng7e2ff772008-05-08 00:57:18 +000011034 StoreSDNode *St = cast<StoreSDNode>(N);
Owen Andersone50ed302009-08-10 22:56:29 +000011035 EVT VT = St->getValue().getValueType();
Evan Cheng536e6672009-03-12 05:59:15 +000011036 if (VT.getSizeInBits() != 64)
11037 return SDValue();
11038
Devang Patel578efa92009-06-05 21:57:13 +000011039 const Function *F = DAG.getMachineFunction().getFunction();
11040 bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
Eric Christopherfd179292009-08-27 18:07:15 +000011041 bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
Devang Patel578efa92009-06-05 21:57:13 +000011042 && Subtarget->hasSSE2();
Evan Cheng536e6672009-03-12 05:59:15 +000011043 if ((VT.isVector() ||
Owen Anderson825b72b2009-08-11 20:47:22 +000011044 (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
Dale Johannesen079f2a62008-02-25 19:20:14 +000011045 isa<LoadSDNode>(St->getValue()) &&
11046 !cast<LoadSDNode>(St->getValue())->isVolatile() &&
11047 St->getChain().hasOneUse() && !St->isVolatile()) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011048 SDNode* LdVal = St->getValue().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011049 LoadSDNode *Ld = 0;
11050 int TokenFactorIndex = -1;
Dan Gohman475871a2008-07-27 21:46:04 +000011051 SmallVector<SDValue, 8> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +000011052 SDNode* ChainVal = St->getChain().getNode();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011053 // Must be a store of a load. We currently handle two cases: the load
11054 // is a direct child, and it's under an intervening TokenFactor. It is
11055 // possible to dig deeper under nested TokenFactors.
Dale Johannesen14e2ea92008-02-25 22:29:22 +000011056 if (ChainVal == LdVal)
Dale Johannesen079f2a62008-02-25 19:20:14 +000011057 Ld = cast<LoadSDNode>(St->getChain());
11058 else if (St->getValue().hasOneUse() &&
11059 ChainVal->getOpcode() == ISD::TokenFactor) {
11060 for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +000011061 if (ChainVal->getOperand(i).getNode() == LdVal) {
Dale Johannesen079f2a62008-02-25 19:20:14 +000011062 TokenFactorIndex = i;
11063 Ld = cast<LoadSDNode>(St->getValue());
11064 } else
11065 Ops.push_back(ChainVal->getOperand(i));
11066 }
11067 }
Dale Johannesen079f2a62008-02-25 19:20:14 +000011068
Evan Cheng536e6672009-03-12 05:59:15 +000011069 if (!Ld || !ISD::isNormalLoad(Ld))
11070 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011071
Evan Cheng536e6672009-03-12 05:59:15 +000011072 // If this is not the MMX case, i.e. we are just turning i64 load/store
11073 // into f64 load/store, avoid the transformation if there are multiple
11074 // uses of the loaded value.
11075 if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
11076 return SDValue();
Dale Johannesen079f2a62008-02-25 19:20:14 +000011077
Evan Cheng536e6672009-03-12 05:59:15 +000011078 DebugLoc LdDL = Ld->getDebugLoc();
11079 DebugLoc StDL = N->getDebugLoc();
11080 // If we are a 64-bit capable x86, lower to a single movq load/store pair.
11081 // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
11082 // pair instead.
11083 if (Subtarget->is64Bit() || F64IsLegal) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011084 EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
Chris Lattner51abfe42010-09-21 06:02:19 +000011085 SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
11086 Ld->getPointerInfo(), Ld->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011087 Ld->isNonTemporal(), Ld->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011088 SDValue NewChain = NewLd.getValue(1);
Dale Johannesen079f2a62008-02-25 19:20:14 +000011089 if (TokenFactorIndex != -1) {
Evan Cheng536e6672009-03-12 05:59:15 +000011090 Ops.push_back(NewChain);
Owen Anderson825b72b2009-08-11 20:47:22 +000011091 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Dale Johannesen079f2a62008-02-25 19:20:14 +000011092 Ops.size());
11093 }
Evan Cheng536e6672009-03-12 05:59:15 +000011094 return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
Chris Lattner51abfe42010-09-21 06:02:19 +000011095 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011096 St->isVolatile(), St->isNonTemporal(),
11097 St->getAlignment());
Chris Lattner149a4e52008-02-22 02:09:43 +000011098 }
Evan Cheng536e6672009-03-12 05:59:15 +000011099
11100 // Otherwise, lower to two pairs of 32-bit loads / stores.
11101 SDValue LoAddr = Ld->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011102 SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
11103 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011104
Owen Anderson825b72b2009-08-11 20:47:22 +000011105 SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011106 Ld->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011107 Ld->isVolatile(), Ld->isNonTemporal(),
11108 Ld->getAlignment());
Owen Anderson825b72b2009-08-11 20:47:22 +000011109 SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
Chris Lattner51abfe42010-09-21 06:02:19 +000011110 Ld->getPointerInfo().getWithOffset(4),
David Greene67c9d422010-02-15 16:53:33 +000011111 Ld->isVolatile(), Ld->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011112 MinAlign(Ld->getAlignment(), 4));
11113
11114 SDValue NewChain = LoLd.getValue(1);
11115 if (TokenFactorIndex != -1) {
11116 Ops.push_back(LoLd);
11117 Ops.push_back(HiLd);
Owen Anderson825b72b2009-08-11 20:47:22 +000011118 NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
Evan Cheng536e6672009-03-12 05:59:15 +000011119 Ops.size());
11120 }
11121
11122 LoAddr = St->getBasePtr();
Owen Anderson825b72b2009-08-11 20:47:22 +000011123 HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
11124 DAG.getConstant(4, MVT::i32));
Evan Cheng536e6672009-03-12 05:59:15 +000011125
11126 SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011127 St->getPointerInfo(),
David Greene67c9d422010-02-15 16:53:33 +000011128 St->isVolatile(), St->isNonTemporal(),
11129 St->getAlignment());
Evan Cheng536e6672009-03-12 05:59:15 +000011130 SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
Chris Lattner8026a9d2010-09-21 17:50:43 +000011131 St->getPointerInfo().getWithOffset(4),
Evan Cheng536e6672009-03-12 05:59:15 +000011132 St->isVolatile(),
David Greene67c9d422010-02-15 16:53:33 +000011133 St->isNonTemporal(),
Evan Cheng536e6672009-03-12 05:59:15 +000011134 MinAlign(St->getAlignment(), 4));
Owen Anderson825b72b2009-08-11 20:47:22 +000011135 return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
Chris Lattner149a4e52008-02-22 02:09:43 +000011136 }
Dan Gohman475871a2008-07-27 21:46:04 +000011137 return SDValue();
Chris Lattner149a4e52008-02-22 02:09:43 +000011138}
11139
Chris Lattner6cf73262008-01-25 06:14:17 +000011140/// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
11141/// X86ISD::FXOR nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011142static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattner6cf73262008-01-25 06:14:17 +000011143 assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
11144 // F[X]OR(0.0, x) -> x
11145 // F[X]OR(x, 0.0) -> x
Chris Lattneraf723b92008-01-25 05:46:26 +000011146 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11147 if (C->getValueAPF().isPosZero())
11148 return N->getOperand(1);
11149 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11150 if (C->getValueAPF().isPosZero())
11151 return N->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +000011152 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011153}
11154
11155/// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
Dan Gohman475871a2008-07-27 21:46:04 +000011156static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
Chris Lattneraf723b92008-01-25 05:46:26 +000011157 // FAND(0.0, x) -> 0.0
11158 // FAND(x, 0.0) -> 0.0
11159 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
11160 if (C->getValueAPF().isPosZero())
11161 return N->getOperand(0);
11162 if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
11163 if (C->getValueAPF().isPosZero())
11164 return N->getOperand(1);
Dan Gohman475871a2008-07-27 21:46:04 +000011165 return SDValue();
Chris Lattneraf723b92008-01-25 05:46:26 +000011166}
11167
Dan Gohmane5af2d32009-01-29 01:59:02 +000011168static SDValue PerformBTCombine(SDNode *N,
11169 SelectionDAG &DAG,
11170 TargetLowering::DAGCombinerInfo &DCI) {
11171 // BT ignores high bits in the bit index operand.
11172 SDValue Op1 = N->getOperand(1);
11173 if (Op1.hasOneUse()) {
11174 unsigned BitWidth = Op1.getValueSizeInBits();
11175 APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
11176 APInt KnownZero, KnownOne;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011177 TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
11178 !DCI.isBeforeLegalizeOps());
Dan Gohmand858e902010-04-17 15:26:15 +000011179 const TargetLowering &TLI = DAG.getTargetLoweringInfo();
Dan Gohmane5af2d32009-01-29 01:59:02 +000011180 if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
11181 TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
11182 DCI.CommitTargetLoweringOpt(TLO);
11183 }
11184 return SDValue();
11185}
Chris Lattner83e6c992006-10-04 06:57:07 +000011186
Eli Friedman7a5e5552009-06-07 06:52:44 +000011187static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
11188 SDValue Op = N->getOperand(0);
11189 if (Op.getOpcode() == ISD::BIT_CONVERT)
11190 Op = Op.getOperand(0);
Owen Andersone50ed302009-08-10 22:56:29 +000011191 EVT VT = N->getValueType(0), OpVT = Op.getValueType();
Eli Friedman7a5e5552009-06-07 06:52:44 +000011192 if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
Eric Christopherfd179292009-08-27 18:07:15 +000011193 VT.getVectorElementType().getSizeInBits() ==
Eli Friedman7a5e5552009-06-07 06:52:44 +000011194 OpVT.getVectorElementType().getSizeInBits()) {
11195 return DAG.getNode(ISD::BIT_CONVERT, N->getDebugLoc(), VT, Op);
11196 }
11197 return SDValue();
11198}
11199
Evan Cheng2e489c42009-12-16 00:53:11 +000011200static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
11201 // (i32 zext (and (i8 x86isd::setcc_carry), 1)) ->
11202 // (and (i32 x86isd::setcc_carry), 1)
11203 // This eliminates the zext. This transformation is necessary because
11204 // ISD::SETCC is always legalized to i8.
11205 DebugLoc dl = N->getDebugLoc();
11206 SDValue N0 = N->getOperand(0);
11207 EVT VT = N->getValueType(0);
11208 if (N0.getOpcode() == ISD::AND &&
11209 N0.hasOneUse() &&
11210 N0.getOperand(0).hasOneUse()) {
11211 SDValue N00 = N0.getOperand(0);
11212 if (N00.getOpcode() != X86ISD::SETCC_CARRY)
11213 return SDValue();
11214 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
11215 if (!C || C->getZExtValue() != 1)
11216 return SDValue();
11217 return DAG.getNode(ISD::AND, dl, VT,
11218 DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
11219 N00.getOperand(0), N00.getOperand(1)),
11220 DAG.getConstant(1, VT));
11221 }
11222
11223 return SDValue();
11224}
11225
Dan Gohman475871a2008-07-27 21:46:04 +000011226SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
Evan Cheng9dd93b32008-11-05 06:03:38 +000011227 DAGCombinerInfo &DCI) const {
Evan Cheng206ee9d2006-07-07 08:33:52 +000011228 SelectionDAG &DAG = DCI.DAG;
11229 switch (N->getOpcode()) {
11230 default: break;
Dan Gohman1bbf72b2010-03-15 23:23:03 +000011231 case ISD::EXTRACT_VECTOR_ELT:
11232 return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
Chris Lattneraf723b92008-01-25 05:46:26 +000011233 case ISD::SELECT: return PerformSELECTCombine(N, DAG, Subtarget);
Chris Lattnerd1980a52009-03-12 06:52:53 +000011234 case X86ISD::CMOV: return PerformCMOVCombine(N, DAG, DCI);
Evan Cheng0b0cd912009-03-28 05:57:29 +000011235 case ISD::MUL: return PerformMulCombine(N, DAG, DCI);
Nate Begeman740ab032009-01-26 00:52:55 +000011236 case ISD::SHL:
11237 case ISD::SRA:
11238 case ISD::SRL: return PerformShiftCombine(N, DAG, Subtarget);
Evan Cheng8b1190a2010-04-28 01:18:01 +000011239 case ISD::OR: return PerformOrCombine(N, DAG, DCI, Subtarget);
Evan Cheng7e2ff772008-05-08 00:57:18 +000011240 case ISD::STORE: return PerformSTORECombine(N, DAG, Subtarget);
Chris Lattner6cf73262008-01-25 06:14:17 +000011241 case X86ISD::FXOR:
Chris Lattneraf723b92008-01-25 05:46:26 +000011242 case X86ISD::FOR: return PerformFORCombine(N, DAG);
11243 case X86ISD::FAND: return PerformFANDCombine(N, DAG);
Dan Gohmane5af2d32009-01-29 01:59:02 +000011244 case X86ISD::BT: return PerformBTCombine(N, DAG, DCI);
Eli Friedman7a5e5552009-06-07 06:52:44 +000011245 case X86ISD::VZEXT_MOVL: return PerformVZEXT_MOVLCombine(N, DAG);
Evan Cheng2e489c42009-12-16 00:53:11 +000011246 case ISD::ZERO_EXTEND: return PerformZExtCombine(N, DAG);
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011247 case X86ISD::SHUFPS: // Handle all target specific shuffles
11248 case X86ISD::SHUFPD:
Bruno Cardoso Lopesaace0f22010-09-04 02:36:07 +000011249 case X86ISD::PALIGN:
Bruno Cardoso Lopese8f279c2010-09-03 22:09:41 +000011250 case X86ISD::PUNPCKHBW:
11251 case X86ISD::PUNPCKHWD:
11252 case X86ISD::PUNPCKHDQ:
11253 case X86ISD::PUNPCKHQDQ:
11254 case X86ISD::UNPCKHPS:
11255 case X86ISD::UNPCKHPD:
11256 case X86ISD::PUNPCKLBW:
11257 case X86ISD::PUNPCKLWD:
11258 case X86ISD::PUNPCKLDQ:
11259 case X86ISD::PUNPCKLQDQ:
11260 case X86ISD::UNPCKLPS:
11261 case X86ISD::UNPCKLPD:
11262 case X86ISD::MOVHLPS:
11263 case X86ISD::MOVLHPS:
11264 case X86ISD::PSHUFD:
11265 case X86ISD::PSHUFHW:
11266 case X86ISD::PSHUFLW:
11267 case X86ISD::MOVSS:
11268 case X86ISD::MOVSD:
11269 case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
Evan Cheng206ee9d2006-07-07 08:33:52 +000011270 }
11271
Dan Gohman475871a2008-07-27 21:46:04 +000011272 return SDValue();
Evan Cheng206ee9d2006-07-07 08:33:52 +000011273}
11274
Evan Chenge5b51ac2010-04-17 06:13:15 +000011275/// isTypeDesirableForOp - Return true if the target has native support for
11276/// the specified value type and it is 'desirable' to use the type for the
11277/// given node type. e.g. On x86 i16 is legal, but undesirable since i16
11278/// instruction encodings are longer and some i16 instructions are slow.
11279bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
11280 if (!isTypeLegal(VT))
11281 return false;
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011282 if (VT != MVT::i16)
Evan Chenge5b51ac2010-04-17 06:13:15 +000011283 return true;
11284
11285 switch (Opc) {
11286 default:
11287 return true;
Evan Cheng4c26e932010-04-19 19:29:22 +000011288 case ISD::LOAD:
11289 case ISD::SIGN_EXTEND:
11290 case ISD::ZERO_EXTEND:
11291 case ISD::ANY_EXTEND:
Evan Chenge5b51ac2010-04-17 06:13:15 +000011292 case ISD::SHL:
Evan Chenge5b51ac2010-04-17 06:13:15 +000011293 case ISD::SRL:
11294 case ISD::SUB:
11295 case ISD::ADD:
11296 case ISD::MUL:
11297 case ISD::AND:
11298 case ISD::OR:
11299 case ISD::XOR:
11300 return false;
11301 }
11302}
11303
11304/// IsDesirableToPromoteOp - This method query the target whether it is
Evan Cheng64b7bf72010-04-16 06:14:10 +000011305/// beneficial for dag combiner to promote the specified node. If true, it
11306/// should return the desired promotion type by reference.
Evan Chenge5b51ac2010-04-17 06:13:15 +000011307bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011308 EVT VT = Op.getValueType();
11309 if (VT != MVT::i16)
11310 return false;
11311
Evan Cheng4c26e932010-04-19 19:29:22 +000011312 bool Promote = false;
11313 bool Commute = false;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011314 switch (Op.getOpcode()) {
Evan Cheng4c26e932010-04-19 19:29:22 +000011315 default: break;
11316 case ISD::LOAD: {
11317 LoadSDNode *LD = cast<LoadSDNode>(Op);
11318 // If the non-extending load has a single use and it's not live out, then it
11319 // might be folded.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011320 if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
11321 Op.hasOneUse()*/) {
11322 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
11323 UE = Op.getNode()->use_end(); UI != UE; ++UI) {
11324 // The only case where we'd want to promote LOAD (rather then it being
11325 // promoted as an operand is when it's only use is liveout.
11326 if (UI->getOpcode() != ISD::CopyToReg)
11327 return false;
11328 }
11329 }
Evan Cheng4c26e932010-04-19 19:29:22 +000011330 Promote = true;
11331 break;
11332 }
11333 case ISD::SIGN_EXTEND:
11334 case ISD::ZERO_EXTEND:
11335 case ISD::ANY_EXTEND:
11336 Promote = true;
11337 break;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011338 case ISD::SHL:
Evan Cheng2bce5f4b2010-04-28 08:30:49 +000011339 case ISD::SRL: {
Evan Chenge5b51ac2010-04-17 06:13:15 +000011340 SDValue N0 = Op.getOperand(0);
11341 // Look out for (store (shl (load), x)).
Evan Chengc82c20b2010-04-24 04:44:57 +000011342 if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
Evan Chenge5b51ac2010-04-17 06:13:15 +000011343 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011344 Promote = true;
Evan Chenge5b51ac2010-04-17 06:13:15 +000011345 break;
11346 }
Evan Cheng64b7bf72010-04-16 06:14:10 +000011347 case ISD::ADD:
11348 case ISD::MUL:
11349 case ISD::AND:
11350 case ISD::OR:
Evan Cheng4c26e932010-04-19 19:29:22 +000011351 case ISD::XOR:
11352 Commute = true;
11353 // fallthrough
11354 case ISD::SUB: {
Evan Cheng64b7bf72010-04-16 06:14:10 +000011355 SDValue N0 = Op.getOperand(0);
11356 SDValue N1 = Op.getOperand(1);
Evan Chengc82c20b2010-04-24 04:44:57 +000011357 if (!Commute && MayFoldLoad(N1))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011358 return false;
11359 // Avoid disabling potential load folding opportunities.
Evan Chengc82c20b2010-04-24 04:44:57 +000011360 if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011361 return false;
Evan Chengc82c20b2010-04-24 04:44:57 +000011362 if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
Evan Cheng64b7bf72010-04-16 06:14:10 +000011363 return false;
Evan Cheng4c26e932010-04-19 19:29:22 +000011364 Promote = true;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011365 }
11366 }
11367
11368 PVT = MVT::i32;
Evan Cheng4c26e932010-04-19 19:29:22 +000011369 return Promote;
Evan Cheng64b7bf72010-04-16 06:14:10 +000011370}
11371
Evan Cheng60c07e12006-07-05 22:17:51 +000011372//===----------------------------------------------------------------------===//
11373// X86 Inline Assembly Support
11374//===----------------------------------------------------------------------===//
11375
Chris Lattnerb8105652009-07-20 17:51:36 +000011376static bool LowerToBSwap(CallInst *CI) {
11377 // FIXME: this should verify that we are targetting a 486 or better. If not,
11378 // we will turn this bswap into something that will be lowered to logical ops
11379 // instead of emitting the bswap asm. For now, we don't support 486 or lower
11380 // so don't worry about this.
Eric Christopherfd179292009-08-27 18:07:15 +000011381
Chris Lattnerb8105652009-07-20 17:51:36 +000011382 // Verify this is a simple bswap.
Gabor Greife1c2b9c2010-06-30 13:03:37 +000011383 if (CI->getNumArgOperands() != 1 ||
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011384 CI->getType() != CI->getArgOperand(0)->getType() ||
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011385 !CI->getType()->isIntegerTy())
Chris Lattnerb8105652009-07-20 17:51:36 +000011386 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011387
Chris Lattnerb8105652009-07-20 17:51:36 +000011388 const IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
11389 if (!Ty || Ty->getBitWidth() % 16 != 0)
11390 return false;
Eric Christopherfd179292009-08-27 18:07:15 +000011391
Chris Lattnerb8105652009-07-20 17:51:36 +000011392 // Okay, we can do this xform, do so now.
11393 const Type *Tys[] = { Ty };
11394 Module *M = CI->getParent()->getParent()->getParent();
11395 Constant *Int = Intrinsic::getDeclaration(M, Intrinsic::bswap, Tys, 1);
Eric Christopherfd179292009-08-27 18:07:15 +000011396
Gabor Greif1cfe44a2010-06-26 11:51:52 +000011397 Value *Op = CI->getArgOperand(0);
Chris Lattnerb8105652009-07-20 17:51:36 +000011398 Op = CallInst::Create(Int, Op, CI->getName(), CI);
Eric Christopherfd179292009-08-27 18:07:15 +000011399
Chris Lattnerb8105652009-07-20 17:51:36 +000011400 CI->replaceAllUsesWith(Op);
11401 CI->eraseFromParent();
11402 return true;
11403}
11404
11405bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
11406 InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
John Thompson44ab89e2010-10-29 17:29:13 +000011407 InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
Chris Lattnerb8105652009-07-20 17:51:36 +000011408
11409 std::string AsmStr = IA->getAsmString();
11410
11411 // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011412 SmallVector<StringRef, 4> AsmPieces;
Peter Collingbourne98361182010-11-13 19:54:23 +000011413 SplitString(AsmStr, AsmPieces, ";\n");
Chris Lattnerb8105652009-07-20 17:51:36 +000011414
11415 switch (AsmPieces.size()) {
11416 default: return false;
11417 case 1:
11418 AsmStr = AsmPieces[0];
11419 AsmPieces.clear();
11420 SplitString(AsmStr, AsmPieces, " \t"); // Split with whitespace.
11421
11422 // bswap $0
11423 if (AsmPieces.size() == 2 &&
11424 (AsmPieces[0] == "bswap" ||
11425 AsmPieces[0] == "bswapq" ||
11426 AsmPieces[0] == "bswapl") &&
11427 (AsmPieces[1] == "$0" ||
11428 AsmPieces[1] == "${0:q}")) {
11429 // No need to check constraints, nothing other than the equivalent of
11430 // "=r,0" would be valid here.
11431 return LowerToBSwap(CI);
11432 }
11433 // rorw $$8, ${0:w} --> llvm.bswap.i16
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011434 if (CI->getType()->isIntegerTy(16) &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011435 AsmPieces.size() == 3 &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011436 (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011437 AsmPieces[1] == "$$8," &&
11438 AsmPieces[2] == "${0:w}" &&
Dan Gohman0ef701e2010-03-04 19:58:08 +000011439 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
11440 AsmPieces.clear();
Benjamin Kramer018cbd52010-03-12 13:54:59 +000011441 const std::string &Constraints = IA->getConstraintString();
11442 SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
Dan Gohman0ef701e2010-03-04 19:58:08 +000011443 std::sort(AsmPieces.begin(), AsmPieces.end());
11444 if (AsmPieces.size() == 4 &&
11445 AsmPieces[0] == "~{cc}" &&
11446 AsmPieces[1] == "~{dirflag}" &&
11447 AsmPieces[2] == "~{flags}" &&
11448 AsmPieces[3] == "~{fpsr}") {
11449 return LowerToBSwap(CI);
11450 }
Chris Lattnerb8105652009-07-20 17:51:36 +000011451 }
11452 break;
11453 case 3:
Peter Collingbourne948cf022010-11-13 19:54:30 +000011454 if (CI->getType()->isIntegerTy(32) &&
11455 IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
11456 SmallVector<StringRef, 4> Words;
11457 SplitString(AsmPieces[0], Words, " \t,");
11458 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
11459 Words[2] == "${0:w}") {
11460 Words.clear();
11461 SplitString(AsmPieces[1], Words, " \t,");
11462 if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
11463 Words[2] == "$0") {
11464 Words.clear();
11465 SplitString(AsmPieces[2], Words, " \t,");
11466 if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
11467 Words[2] == "${0:w}") {
11468 AsmPieces.clear();
11469 const std::string &Constraints = IA->getConstraintString();
11470 SplitString(StringRef(Constraints).substr(5), AsmPieces, ",");
11471 std::sort(AsmPieces.begin(), AsmPieces.end());
11472 if (AsmPieces.size() == 4 &&
11473 AsmPieces[0] == "~{cc}" &&
11474 AsmPieces[1] == "~{dirflag}" &&
11475 AsmPieces[2] == "~{flags}" &&
11476 AsmPieces[3] == "~{fpsr}") {
11477 return LowerToBSwap(CI);
11478 }
11479 }
11480 }
11481 }
11482 }
Duncan Sandsb0bc6c32010-02-15 16:12:20 +000011483 if (CI->getType()->isIntegerTy(64) &&
Owen Anderson1d0be152009-08-13 21:58:54 +000011484 Constraints.size() >= 2 &&
Chris Lattnerb8105652009-07-20 17:51:36 +000011485 Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
11486 Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
11487 // bswap %eax / bswap %edx / xchgl %eax, %edx -> llvm.bswap.i64
Benjamin Kramerd4f19592010-01-11 18:03:24 +000011488 SmallVector<StringRef, 4> Words;
Chris Lattnerb8105652009-07-20 17:51:36 +000011489 SplitString(AsmPieces[0], Words, " \t");
11490 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
11491 Words.clear();
11492 SplitString(AsmPieces[1], Words, " \t");
11493 if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
11494 Words.clear();
11495 SplitString(AsmPieces[2], Words, " \t,");
11496 if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
11497 Words[2] == "%edx") {
11498 return LowerToBSwap(CI);
11499 }
11500 }
11501 }
11502 }
11503 break;
11504 }
11505 return false;
11506}
11507
11508
11509
Chris Lattnerf4dff842006-07-11 02:54:03 +000011510/// getConstraintType - Given a constraint letter, return the type of
11511/// constraint it is for this target.
11512X86TargetLowering::ConstraintType
Chris Lattner4234f572007-03-25 02:14:49 +000011513X86TargetLowering::getConstraintType(const std::string &Constraint) const {
11514 if (Constraint.size() == 1) {
11515 switch (Constraint[0]) {
Chris Lattner4234f572007-03-25 02:14:49 +000011516 case 'R':
Chris Lattner4234f572007-03-25 02:14:49 +000011517 case 'q':
11518 case 'Q':
John Thompson44ab89e2010-10-29 17:29:13 +000011519 case 'f':
11520 case 't':
11521 case 'u':
Dale Johannesen2ffbcac2008-04-01 00:57:48 +000011522 case 'y':
John Thompson44ab89e2010-10-29 17:29:13 +000011523 case 'x':
Chris Lattner4234f572007-03-25 02:14:49 +000011524 case 'Y':
11525 return C_RegisterClass;
John Thompson44ab89e2010-10-29 17:29:13 +000011526 case 'a':
11527 case 'b':
11528 case 'c':
11529 case 'd':
11530 case 'S':
11531 case 'D':
11532 case 'A':
11533 return C_Register;
11534 case 'I':
11535 case 'J':
11536 case 'K':
11537 case 'L':
11538 case 'M':
11539 case 'N':
11540 case 'G':
11541 case 'C':
Dale Johannesen78e3e522009-02-12 20:58:09 +000011542 case 'e':
11543 case 'Z':
11544 return C_Other;
Chris Lattner4234f572007-03-25 02:14:49 +000011545 default:
11546 break;
11547 }
Chris Lattnerf4dff842006-07-11 02:54:03 +000011548 }
Chris Lattner4234f572007-03-25 02:14:49 +000011549 return TargetLowering::getConstraintType(Constraint);
Chris Lattnerf4dff842006-07-11 02:54:03 +000011550}
11551
John Thompson44ab89e2010-10-29 17:29:13 +000011552/// Examine constraint type and operand type and determine a weight value.
John Thompsoneac6e1d2010-09-13 18:15:37 +000011553/// This object must already have been set up with the operand type
11554/// and the current alternative constraint selected.
John Thompson44ab89e2010-10-29 17:29:13 +000011555TargetLowering::ConstraintWeight
11556 X86TargetLowering::getSingleConstraintMatchWeight(
John Thompsoneac6e1d2010-09-13 18:15:37 +000011557 AsmOperandInfo &info, const char *constraint) const {
John Thompson44ab89e2010-10-29 17:29:13 +000011558 ConstraintWeight weight = CW_Invalid;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011559 Value *CallOperandVal = info.CallOperandVal;
11560 // If we don't have a value, we can't do a match,
11561 // but allow it at the lowest weight.
11562 if (CallOperandVal == NULL)
John Thompson44ab89e2010-10-29 17:29:13 +000011563 return CW_Default;
11564 const Type *type = CallOperandVal->getType();
John Thompsoneac6e1d2010-09-13 18:15:37 +000011565 // Look at the constraint type.
11566 switch (*constraint) {
11567 default:
John Thompson44ab89e2010-10-29 17:29:13 +000011568 weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
11569 case 'R':
11570 case 'q':
11571 case 'Q':
11572 case 'a':
11573 case 'b':
11574 case 'c':
11575 case 'd':
11576 case 'S':
11577 case 'D':
11578 case 'A':
11579 if (CallOperandVal->getType()->isIntegerTy())
11580 weight = CW_SpecificReg;
11581 break;
11582 case 'f':
11583 case 't':
11584 case 'u':
11585 if (type->isFloatingPointTy())
11586 weight = CW_SpecificReg;
11587 break;
11588 case 'y':
11589 if (type->isX86_MMXTy() && !DisableMMX && Subtarget->hasMMX())
11590 weight = CW_SpecificReg;
11591 break;
11592 case 'x':
11593 case 'Y':
11594 if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1())
11595 weight = CW_Register;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011596 break;
11597 case 'I':
11598 if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
11599 if (C->getZExtValue() <= 31)
John Thompson44ab89e2010-10-29 17:29:13 +000011600 weight = CW_Constant;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011601 }
11602 break;
John Thompson44ab89e2010-10-29 17:29:13 +000011603 case 'J':
11604 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11605 if (C->getZExtValue() <= 63)
11606 weight = CW_Constant;
11607 }
11608 break;
11609 case 'K':
11610 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11611 if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
11612 weight = CW_Constant;
11613 }
11614 break;
11615 case 'L':
11616 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11617 if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
11618 weight = CW_Constant;
11619 }
11620 break;
11621 case 'M':
11622 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11623 if (C->getZExtValue() <= 3)
11624 weight = CW_Constant;
11625 }
11626 break;
11627 case 'N':
11628 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11629 if (C->getZExtValue() <= 0xff)
11630 weight = CW_Constant;
11631 }
11632 break;
11633 case 'G':
11634 case 'C':
11635 if (dyn_cast<ConstantFP>(CallOperandVal)) {
11636 weight = CW_Constant;
11637 }
11638 break;
11639 case 'e':
11640 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11641 if ((C->getSExtValue() >= -0x80000000LL) &&
11642 (C->getSExtValue() <= 0x7fffffffLL))
11643 weight = CW_Constant;
11644 }
11645 break;
11646 case 'Z':
11647 if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
11648 if (C->getZExtValue() <= 0xffffffff)
11649 weight = CW_Constant;
11650 }
11651 break;
John Thompsoneac6e1d2010-09-13 18:15:37 +000011652 }
11653 return weight;
11654}
11655
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011656/// LowerXConstraint - try to replace an X constraint, which matches anything,
11657/// with another that has more specific requirements based on the type of the
11658/// corresponding operand.
Chris Lattner5e764232008-04-26 23:02:14 +000011659const char *X86TargetLowering::
Owen Andersone50ed302009-08-10 22:56:29 +000011660LowerXConstraint(EVT ConstraintVT) const {
Chris Lattner5e764232008-04-26 23:02:14 +000011661 // FP X constraints get lowered to SSE1/2 registers if available, otherwise
11662 // 'f' like normal targets.
Duncan Sands83ec4b62008-06-06 12:08:01 +000011663 if (ConstraintVT.isFloatingPoint()) {
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011664 if (Subtarget->hasSSE2())
Chris Lattner5e764232008-04-26 23:02:14 +000011665 return "Y";
11666 if (Subtarget->hasSSE1())
11667 return "x";
11668 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011669
Chris Lattner5e764232008-04-26 23:02:14 +000011670 return TargetLowering::LowerXConstraint(ConstraintVT);
Dale Johannesenba2a0b92008-01-29 02:21:21 +000011671}
11672
Chris Lattner48884cd2007-08-25 00:47:38 +000011673/// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
11674/// vector. If it is invalid, don't add anything to Ops.
Dan Gohman475871a2008-07-27 21:46:04 +000011675void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
Chris Lattner48884cd2007-08-25 00:47:38 +000011676 char Constraint,
Dan Gohman475871a2008-07-27 21:46:04 +000011677 std::vector<SDValue>&Ops,
Chris Lattner5e764232008-04-26 23:02:14 +000011678 SelectionDAG &DAG) const {
Dan Gohman475871a2008-07-27 21:46:04 +000011679 SDValue Result(0, 0);
Scott Michelfdc40a02009-02-17 22:15:04 +000011680
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011681 switch (Constraint) {
11682 default: break;
Devang Patel84f7fd22007-03-17 00:13:28 +000011683 case 'I':
Chris Lattner188b9fe2007-03-25 01:57:35 +000011684 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011685 if (C->getZExtValue() <= 31) {
11686 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011687 break;
11688 }
Devang Patel84f7fd22007-03-17 00:13:28 +000011689 }
Chris Lattner48884cd2007-08-25 00:47:38 +000011690 return;
Evan Cheng364091e2008-09-22 23:57:37 +000011691 case 'J':
11692 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011693 if (C->getZExtValue() <= 63) {
Chris Lattnere4935152009-06-15 04:01:39 +000011694 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11695 break;
11696 }
11697 }
11698 return;
11699 case 'K':
11700 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Chris Lattner2e06dd22009-06-15 04:39:05 +000011701 if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
Evan Cheng364091e2008-09-22 23:57:37 +000011702 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11703 break;
11704 }
11705 }
11706 return;
Chris Lattner188b9fe2007-03-25 01:57:35 +000011707 case 'N':
11708 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +000011709 if (C->getZExtValue() <= 255) {
11710 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
Chris Lattner48884cd2007-08-25 00:47:38 +000011711 break;
11712 }
Chris Lattner188b9fe2007-03-25 01:57:35 +000011713 }
Chris Lattner48884cd2007-08-25 00:47:38 +000011714 return;
Dale Johannesen78e3e522009-02-12 20:58:09 +000011715 case 'e': {
11716 // 32-bit signed value
11717 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000011718 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
11719 C->getSExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011720 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000011721 Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
Dale Johannesen78e3e522009-02-12 20:58:09 +000011722 break;
11723 }
11724 // FIXME gcc accepts some relocatable values here too, but only in certain
11725 // memory models; it's complicated.
11726 }
11727 return;
11728 }
11729 case 'Z': {
11730 // 32-bit unsigned value
11731 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
Dan Gohman7720cb32010-06-18 14:01:07 +000011732 if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
11733 C->getZExtValue())) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011734 Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
11735 break;
11736 }
11737 }
11738 // FIXME gcc accepts some relocatable values here too, but only in certain
11739 // memory models; it's complicated.
11740 return;
11741 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011742 case 'i': {
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011743 // Literal immediates are always ok.
Chris Lattner48884cd2007-08-25 00:47:38 +000011744 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
Dale Johannesen78e3e522009-02-12 20:58:09 +000011745 // Widen to 64 bits here to get it sign extended.
Owen Anderson825b72b2009-08-11 20:47:22 +000011746 Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
Chris Lattner48884cd2007-08-25 00:47:38 +000011747 break;
11748 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011749
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000011750 // In any sort of PIC mode addresses need to be computed at runtime by
11751 // adding in a register or some sort of table lookup. These can't
11752 // be used as immediates.
Dale Johannesene2b448c2010-07-06 23:27:00 +000011753 if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
Dale Johannesene5ff9ef2010-06-24 20:14:51 +000011754 return;
11755
Chris Lattnerdc43a882007-05-03 16:52:29 +000011756 // If we are in non-pic codegen mode, we allow the address of a global (with
11757 // an optional displacement) to be used with 'i'.
Chris Lattner49921962009-05-08 18:23:14 +000011758 GlobalAddressSDNode *GA = 0;
Chris Lattnerdc43a882007-05-03 16:52:29 +000011759 int64_t Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +000011760
Chris Lattner49921962009-05-08 18:23:14 +000011761 // Match either (GA), (GA+C), (GA+C1+C2), etc.
11762 while (1) {
11763 if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
11764 Offset += GA->getOffset();
11765 break;
11766 } else if (Op.getOpcode() == ISD::ADD) {
11767 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
11768 Offset += C->getZExtValue();
11769 Op = Op.getOperand(0);
11770 continue;
11771 }
11772 } else if (Op.getOpcode() == ISD::SUB) {
11773 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
11774 Offset += -C->getZExtValue();
11775 Op = Op.getOperand(0);
11776 continue;
11777 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011778 }
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011779
Chris Lattner49921962009-05-08 18:23:14 +000011780 // Otherwise, this isn't something we can handle, reject it.
11781 return;
Chris Lattnerdc43a882007-05-03 16:52:29 +000011782 }
Eric Christopherfd179292009-08-27 18:07:15 +000011783
Dan Gohman46510a72010-04-15 01:51:59 +000011784 const GlobalValue *GV = GA->getGlobal();
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011785 // If we require an extra load to get this address, as in PIC mode, we
11786 // can't accept it.
Chris Lattner36c25012009-07-10 07:34:39 +000011787 if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
11788 getTargetMachine())))
Dale Johannesen76a1e2e2009-07-07 00:18:49 +000011789 return;
Scott Michelfdc40a02009-02-17 22:15:04 +000011790
Devang Patel0d881da2010-07-06 22:08:15 +000011791 Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
11792 GA->getValueType(0), Offset);
Chris Lattner49921962009-05-08 18:23:14 +000011793 break;
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011794 }
Chris Lattnerdc43a882007-05-03 16:52:29 +000011795 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011796
Gabor Greifba36cb52008-08-28 21:40:38 +000011797 if (Result.getNode()) {
Chris Lattner48884cd2007-08-25 00:47:38 +000011798 Ops.push_back(Result);
11799 return;
11800 }
Dale Johannesen1784d162010-06-25 21:55:36 +000011801 return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
Chris Lattner22aaf1d2006-10-31 20:13:11 +000011802}
11803
Chris Lattner259e97c2006-01-31 19:43:35 +000011804std::vector<unsigned> X86TargetLowering::
Chris Lattner1efa40f2006-02-22 00:56:39 +000011805getRegClassForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000011806 EVT VT) const {
Chris Lattner259e97c2006-01-31 19:43:35 +000011807 if (Constraint.size() == 1) {
11808 // FIXME: not handling fp-stack yet!
Chris Lattner259e97c2006-01-31 19:43:35 +000011809 switch (Constraint[0]) { // GCC X86 Constraint Letters
Chris Lattnerf4dff842006-07-11 02:54:03 +000011810 default: break; // Unknown constraint letter
Evan Cheng47e9fab2009-07-17 22:13:25 +000011811 case 'q': // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
11812 if (Subtarget->is64Bit()) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011813 if (VT == MVT::i32)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011814 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX,
11815 X86::ESI, X86::EDI, X86::R8D, X86::R9D,
11816 X86::R10D,X86::R11D,X86::R12D,
11817 X86::R13D,X86::R14D,X86::R15D,
11818 X86::EBP, X86::ESP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011819 else if (VT == MVT::i16)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011820 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX,
11821 X86::SI, X86::DI, X86::R8W,X86::R9W,
11822 X86::R10W,X86::R11W,X86::R12W,
11823 X86::R13W,X86::R14W,X86::R15W,
11824 X86::BP, X86::SP, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011825 else if (VT == MVT::i8)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011826 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL,
11827 X86::SIL, X86::DIL, X86::R8B,X86::R9B,
11828 X86::R10B,X86::R11B,X86::R12B,
11829 X86::R13B,X86::R14B,X86::R15B,
11830 X86::BPL, X86::SPL, 0);
11831
Owen Anderson825b72b2009-08-11 20:47:22 +000011832 else if (VT == MVT::i64)
Evan Cheng47e9fab2009-07-17 22:13:25 +000011833 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX,
11834 X86::RSI, X86::RDI, X86::R8, X86::R9,
11835 X86::R10, X86::R11, X86::R12,
11836 X86::R13, X86::R14, X86::R15,
11837 X86::RBP, X86::RSP, 0);
11838
11839 break;
11840 }
Eric Christopherfd179292009-08-27 18:07:15 +000011841 // 32-bit fallthrough
Chris Lattner259e97c2006-01-31 19:43:35 +000011842 case 'Q': // Q_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000011843 if (VT == MVT::i32)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000011844 return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011845 else if (VT == MVT::i16)
Chris Lattner80a7ecc2006-05-06 00:29:37 +000011846 return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011847 else if (VT == MVT::i8)
Evan Cheng12914382007-08-13 23:27:11 +000011848 return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
Owen Anderson825b72b2009-08-11 20:47:22 +000011849 else if (VT == MVT::i64)
Chris Lattner03e6c702007-11-04 06:51:12 +000011850 return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
11851 break;
Chris Lattner259e97c2006-01-31 19:43:35 +000011852 }
11853 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011854
Chris Lattner1efa40f2006-02-22 00:56:39 +000011855 return std::vector<unsigned>();
Chris Lattner259e97c2006-01-31 19:43:35 +000011856}
Chris Lattnerf76d1802006-07-31 23:26:50 +000011857
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011858std::pair<unsigned, const TargetRegisterClass*>
Chris Lattnerf76d1802006-07-31 23:26:50 +000011859X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
Owen Andersone50ed302009-08-10 22:56:29 +000011860 EVT VT) const {
Chris Lattnerad043e82007-04-09 05:11:28 +000011861 // First, see if this is a constraint that directly corresponds to an LLVM
11862 // register class.
11863 if (Constraint.size() == 1) {
11864 // GCC Constraint Letters
11865 switch (Constraint[0]) {
11866 default: break;
Chris Lattner0f65cad2007-04-09 05:49:22 +000011867 case 'r': // GENERAL_REGS
Chris Lattner0f65cad2007-04-09 05:49:22 +000011868 case 'l': // INDEX_REGS
Owen Anderson825b72b2009-08-11 20:47:22 +000011869 if (VT == MVT::i8)
Chris Lattner0f65cad2007-04-09 05:49:22 +000011870 return std::make_pair(0U, X86::GR8RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011871 if (VT == MVT::i16)
Chris Lattner1fa71982008-10-17 18:15:05 +000011872 return std::make_pair(0U, X86::GR16RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011873 if (VT == MVT::i32 || !Subtarget->is64Bit())
Scott Michelfdc40a02009-02-17 22:15:04 +000011874 return std::make_pair(0U, X86::GR32RegisterClass);
Chris Lattner1fa71982008-10-17 18:15:05 +000011875 return std::make_pair(0U, X86::GR64RegisterClass);
Dale Johannesen5f3663e2009-10-07 22:47:20 +000011876 case 'R': // LEGACY_REGS
11877 if (VT == MVT::i8)
11878 return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
11879 if (VT == MVT::i16)
11880 return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
11881 if (VT == MVT::i32 || !Subtarget->is64Bit())
11882 return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
11883 return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011884 case 'f': // FP Stack registers.
11885 // If SSE is enabled for this VT, use f80 to ensure the isel moves the
11886 // value to the correct fpstack register class.
Owen Anderson825b72b2009-08-11 20:47:22 +000011887 if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011888 return std::make_pair(0U, X86::RFP32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011889 if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
Chris Lattnerfce84ac2008-03-11 19:06:29 +000011890 return std::make_pair(0U, X86::RFP64RegisterClass);
11891 return std::make_pair(0U, X86::RFP80RegisterClass);
Chris Lattner6c284d72007-04-12 04:14:49 +000011892 case 'y': // MMX_REGS if MMX allowed.
11893 if (!Subtarget->hasMMX()) break;
11894 return std::make_pair(0U, X86::VR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000011895 case 'Y': // SSE_REGS if SSE2 allowed
11896 if (!Subtarget->hasSSE2()) break;
11897 // FALL THROUGH.
11898 case 'x': // SSE_REGS if SSE1 allowed
11899 if (!Subtarget->hasSSE1()) break;
Duncan Sands83ec4b62008-06-06 12:08:01 +000011900
Owen Anderson825b72b2009-08-11 20:47:22 +000011901 switch (VT.getSimpleVT().SimpleTy) {
Chris Lattner0f65cad2007-04-09 05:49:22 +000011902 default: break;
11903 // Scalar SSE types.
Owen Anderson825b72b2009-08-11 20:47:22 +000011904 case MVT::f32:
11905 case MVT::i32:
Chris Lattnerad043e82007-04-09 05:11:28 +000011906 return std::make_pair(0U, X86::FR32RegisterClass);
Owen Anderson825b72b2009-08-11 20:47:22 +000011907 case MVT::f64:
11908 case MVT::i64:
Chris Lattnerad043e82007-04-09 05:11:28 +000011909 return std::make_pair(0U, X86::FR64RegisterClass);
Chris Lattner0f65cad2007-04-09 05:49:22 +000011910 // Vector types.
Owen Anderson825b72b2009-08-11 20:47:22 +000011911 case MVT::v16i8:
11912 case MVT::v8i16:
11913 case MVT::v4i32:
11914 case MVT::v2i64:
11915 case MVT::v4f32:
11916 case MVT::v2f64:
Chris Lattner0f65cad2007-04-09 05:49:22 +000011917 return std::make_pair(0U, X86::VR128RegisterClass);
11918 }
Chris Lattnerad043e82007-04-09 05:11:28 +000011919 break;
11920 }
11921 }
Scott Michelfdc40a02009-02-17 22:15:04 +000011922
Chris Lattnerf76d1802006-07-31 23:26:50 +000011923 // Use the default implementation in TargetLowering to convert the register
11924 // constraint into a member of a register class.
11925 std::pair<unsigned, const TargetRegisterClass*> Res;
11926 Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
Chris Lattner1a60aa72006-10-31 19:42:44 +000011927
11928 // Not found as a standard register?
11929 if (Res.second == 0) {
Chris Lattner56d77c72009-09-13 22:41:48 +000011930 // Map st(0) -> st(7) -> ST0
11931 if (Constraint.size() == 7 && Constraint[0] == '{' &&
11932 tolower(Constraint[1]) == 's' &&
11933 tolower(Constraint[2]) == 't' &&
11934 Constraint[3] == '(' &&
11935 (Constraint[4] >= '0' && Constraint[4] <= '7') &&
11936 Constraint[5] == ')' &&
11937 Constraint[6] == '}') {
Daniel Dunbara279bc32009-09-20 02:20:51 +000011938
Chris Lattner56d77c72009-09-13 22:41:48 +000011939 Res.first = X86::ST0+Constraint[4]-'0';
11940 Res.second = X86::RFP80RegisterClass;
11941 return Res;
11942 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000011943
Chris Lattner56d77c72009-09-13 22:41:48 +000011944 // GCC allows "st(0)" to be called just plain "st".
Benjamin Kramer05872ea2009-11-12 20:36:59 +000011945 if (StringRef("{st}").equals_lower(Constraint)) {
Chris Lattner1a60aa72006-10-31 19:42:44 +000011946 Res.first = X86::ST0;
Chris Lattner9b4baf12007-09-24 05:27:37 +000011947 Res.second = X86::RFP80RegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000011948 return Res;
Chris Lattner1a60aa72006-10-31 19:42:44 +000011949 }
Chris Lattner56d77c72009-09-13 22:41:48 +000011950
11951 // flags -> EFLAGS
Benjamin Kramer05872ea2009-11-12 20:36:59 +000011952 if (StringRef("{flags}").equals_lower(Constraint)) {
Chris Lattner56d77c72009-09-13 22:41:48 +000011953 Res.first = X86::EFLAGS;
11954 Res.second = X86::CCRRegisterClass;
11955 return Res;
11956 }
Daniel Dunbara279bc32009-09-20 02:20:51 +000011957
Dale Johannesen330169f2008-11-13 21:52:36 +000011958 // 'A' means EAX + EDX.
11959 if (Constraint == "A") {
11960 Res.first = X86::EAX;
Dan Gohman68a31c22009-07-30 17:02:08 +000011961 Res.second = X86::GR32_ADRegisterClass;
Chris Lattner56d77c72009-09-13 22:41:48 +000011962 return Res;
Dale Johannesen330169f2008-11-13 21:52:36 +000011963 }
Chris Lattner1a60aa72006-10-31 19:42:44 +000011964 return Res;
11965 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011966
Chris Lattnerf76d1802006-07-31 23:26:50 +000011967 // Otherwise, check to see if this is a register class of the wrong value
11968 // type. For example, we want to map "{ax},i32" -> {eax}, we don't want it to
11969 // turn into {ax},{dx}.
11970 if (Res.second->hasType(VT))
11971 return Res; // Correct type already, nothing to do.
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000011972
Chris Lattnerf76d1802006-07-31 23:26:50 +000011973 // All of the single-register GCC register classes map their values onto
11974 // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp". If we
11975 // really want an 8-bit or 32-bit register, map to the appropriate register
11976 // class and return the appropriate register.
Chris Lattner6ba50a92008-08-26 06:19:02 +000011977 if (Res.second == X86::GR16RegisterClass) {
Owen Anderson825b72b2009-08-11 20:47:22 +000011978 if (VT == MVT::i8) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000011979 unsigned DestReg = 0;
11980 switch (Res.first) {
11981 default: break;
11982 case X86::AX: DestReg = X86::AL; break;
11983 case X86::DX: DestReg = X86::DL; break;
11984 case X86::CX: DestReg = X86::CL; break;
11985 case X86::BX: DestReg = X86::BL; break;
11986 }
11987 if (DestReg) {
11988 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000011989 Res.second = X86::GR8RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000011990 }
Owen Anderson825b72b2009-08-11 20:47:22 +000011991 } else if (VT == MVT::i32) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000011992 unsigned DestReg = 0;
11993 switch (Res.first) {
11994 default: break;
11995 case X86::AX: DestReg = X86::EAX; break;
11996 case X86::DX: DestReg = X86::EDX; break;
11997 case X86::CX: DestReg = X86::ECX; break;
11998 case X86::BX: DestReg = X86::EBX; break;
11999 case X86::SI: DestReg = X86::ESI; break;
12000 case X86::DI: DestReg = X86::EDI; break;
12001 case X86::BP: DestReg = X86::EBP; break;
12002 case X86::SP: DestReg = X86::ESP; break;
12003 }
12004 if (DestReg) {
12005 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012006 Res.second = X86::GR32RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012007 }
Owen Anderson825b72b2009-08-11 20:47:22 +000012008 } else if (VT == MVT::i64) {
Chris Lattner6ba50a92008-08-26 06:19:02 +000012009 unsigned DestReg = 0;
12010 switch (Res.first) {
12011 default: break;
12012 case X86::AX: DestReg = X86::RAX; break;
12013 case X86::DX: DestReg = X86::RDX; break;
12014 case X86::CX: DestReg = X86::RCX; break;
12015 case X86::BX: DestReg = X86::RBX; break;
12016 case X86::SI: DestReg = X86::RSI; break;
12017 case X86::DI: DestReg = X86::RDI; break;
12018 case X86::BP: DestReg = X86::RBP; break;
12019 case X86::SP: DestReg = X86::RSP; break;
12020 }
12021 if (DestReg) {
12022 Res.first = DestReg;
Duncan Sands005e7982009-04-21 09:44:39 +000012023 Res.second = X86::GR64RegisterClass;
Chris Lattner6ba50a92008-08-26 06:19:02 +000012024 }
Chris Lattnerf76d1802006-07-31 23:26:50 +000012025 }
Chris Lattner6ba50a92008-08-26 06:19:02 +000012026 } else if (Res.second == X86::FR32RegisterClass ||
12027 Res.second == X86::FR64RegisterClass ||
12028 Res.second == X86::VR128RegisterClass) {
12029 // Handle references to XMM physical registers that got mapped into the
12030 // wrong class. This can happen with constraints like {xmm0} where the
12031 // target independent register mapper will just pick the first match it can
12032 // find, ignoring the required type.
Owen Anderson825b72b2009-08-11 20:47:22 +000012033 if (VT == MVT::f32)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012034 Res.second = X86::FR32RegisterClass;
Owen Anderson825b72b2009-08-11 20:47:22 +000012035 else if (VT == MVT::f64)
Chris Lattner6ba50a92008-08-26 06:19:02 +000012036 Res.second = X86::FR64RegisterClass;
12037 else if (X86::VR128RegisterClass->hasType(VT))
12038 Res.second = X86::VR128RegisterClass;
Chris Lattnerf76d1802006-07-31 23:26:50 +000012039 }
Anton Korobeynikov12c49af2006-11-21 00:01:06 +000012040
Chris Lattnerf76d1802006-07-31 23:26:50 +000012041 return Res;
12042}